:root {
  /* Sticky header (~72px nav + border); keeps # anchor scroll from sitting under the bar */
  --header-sticky-offset: 80px;
  --site-header-height: 72px;
  --primary: #379fd4;
  --secondary: #ef4d9a;
  --color-black: #1a1a1a;
  --color-light-black: #6f6f6f;
  --color-blue: #42b3e5;
  --color-white: #ffffff;
  --page-bg: #fdf7fa;
  --panel: var(--color-white);
  --ink: var(--color-black);
  --muted: var(--color-light-black);
  --primary-deep: #267fae;
  --line: #e4edf8;
  --shadow: 0 10px 24px rgba(49, 126, 179, 0.16);
  --card-shadow-soft: 0 8px 20px rgba(25, 58, 108, 0.08);
}

html {
  scroll-padding-top: var(--header-sticky-offset);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .top-nav {
    transition: none;
  }

  .nav-toggle-bar {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #f7fbff;
  overflow-x: hidden;
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(1120px, 94%);
  margin: 0 auto;
}

.section-spacing {
  padding: 32px 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  min-height: var(--site-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  gap: 20px;
}

.header-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 60;
}

.nav-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  white-space: nowrap;
  padding: 2px 10px 2px 2px;
  border-radius: 999px;
  border: 1px solid rgba(55, 159, 212, 0.55);
  background: rgba(255, 255, 255, 0.96);
  min-height: 44px;
}

.nav-cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(28, 98, 147, 0.16);
}

.nav-cta-icon i {
  font-size: 1.05rem;
  line-height: 1;
}

.nav-cta-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 8px 0 2px;
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: #ffffff;
  border-color: rgba(55, 159, 212, 0.72);
  box-shadow: 0 6px 14px rgba(40, 114, 162, 0.12);
}

.nav-cta:hover .nav-cta-icon {
  box-shadow: 0 6px 14px rgba(28, 98, 147, 0.2);
}

.header-toolbar .nav-cta {
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 80%;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.logo-top {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.1;
}

.logo-bottom {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 60;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: #fafafa;
  border-color: #e5d0dc;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(47, 154, 202, 0.55);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: #24304a;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(24, 30, 48, 0.35);
  cursor: pointer;
}

.top-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--site-header-height);
  z-index: 50;
  max-height: min(70vh, 360px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(25, 40, 70, 0.12);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.site-header.is-nav-open .top-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.top-nav a {
  text-decoration: none;
  color: var(--color-black);
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  padding: 16px 20px;
  border-top: 1px solid #f0e8ed;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.top-nav a:first-of-type {
  border-top: 0;
}

.btn {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 12px 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--color-white);
  border: 0;
  box-shadow: 0 8px 18px rgba(49, 126, 179, 0.24);
}

.btn-outline {
  background: var(--color-white);
  border-color: #f2b9d2;
  color: var(--primary-deep);
}

.btn-light {
  background: var(--color-white);
  color: var(--primary);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.carousel-btn:focus-visible {
  outline: 2px solid rgba(47, 154, 202, 0.55);
  outline-offset: 2px;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #2e93c7 0%, #de428a 100%);
  box-shadow: 0 10px 20px rgba(43, 112, 161, 0.3);
}

.btn-outline:hover {
  background: #fff3f8;
  border-color: #eca3c3;
  color: #1f80ac;
  box-shadow: 0 8px 18px rgba(255, 59, 138, 0.14);
}

.btn-light:hover {
  background: #f4f9ff;
  border-color: rgba(255, 255, 255, 0.85);
  color: #247ea9;
  box-shadow: 0 8px 18px rgba(35, 132, 177, 0.2);
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0a2741;
  padding: 24px 0 20px;
  background-image: url(../hero-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(104deg, rgba(6, 23, 41, 0.97) 0%, rgba(10, 37, 62, 0.94) 42%, rgba(19, 72, 112, 0.76) 72%, rgba(47, 154, 202, 0.5) 100%),
    radial-gradient(circle at 78% 16%, rgba(255, 59, 138, 0.26) 0%, rgba(255, 59, 138, 0) 44%);
  z-index: -1;
}

.hero-section .container {
  width: min(1000px, 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.eyebrow {
  color: var(--secondary);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.eyebrow.center {
  text-align: center;
  margin-bottom: 8px;
}

h1 {
  font-size: clamp(1.8rem, 7.4vw, 2.35rem);
  line-height: 1.12;
  margin-top: 8px;
}

h2 {
  font-size: clamp(1.45rem, 5.5vw, 1.95rem);
  line-height: 1.2;
}

.lead {
  margin-top: 14px;
  color: var(--color-black);
  line-height: 1.6;
}

.hero-content {
  padding: 12px 0;
  max-width: 600px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9f1ff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  backdrop-filter: blur(2px);
}

.hero-content h1 {
  margin-top: 16px;
  color: #ffffff;
  max-width: 16ch;
}

.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.trust-strip p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-white);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.trust-strip p span {
  color: #9cdfff;
  font-weight: 700;
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 56ch;
}

.mini-form-card.hero-form-card {
  position: relative;
  margin-top: 0;
  margin-left: auto;
  width: min(390px, calc(100% - 16px));
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(25, 58, 108, 0.2);
  z-index: 2;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 180% at 8% 0%, rgba(66, 179, 229, 0.2) 0%, rgba(133, 130, 210, 0.2) 48%, rgba(255, 59, 138, 0.2) 100%),
    linear-gradient(120deg, rgba(78, 184, 231, 0.2) 0%, rgba(255, 67, 149, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 14px;
  margin: 3rem 0;
  box-shadow: 0 14px 30px rgba(45, 87, 152, 0.24);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
}

.services-head {
  text-align: center;
}

.services h2 {
  text-align: center;
  color: var(--color-black);
  margin-top: 0.8rem;
}

.faq h2 {
  text-align: center;
  color: #1f2a40;
}

.services-subhead {
  margin: 10px auto 0;
  max-width: 660px;
  text-align: center;
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.5;
}

.services .eyebrow {
  color: var(--color-black);
}

.service-tile-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-tile {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 16px 16px 14px;
  min-height: 176px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(57, 96, 166, 0.2);
  border-color: rgba(255, 255, 255, 0.9);
}

.service-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-tile .card-icon {
  margin: 0 0 10px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(180deg, #e8f6ff 0%, #dff2ff 100%);
  border: 1px solid rgba(101, 180, 219, 0.45);
}

.service-index {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.06em;
}

.service-tile h3 {
  margin-bottom: 6px;
  color: #1f2a40;
  font-size: 1.05rem;
  line-height: 1.3;
}

.service-tile p {
  line-height: 1.45;
  color: #5b6a7f;
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .service-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .service-tile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.card {
  background: #fff;
  border-radius: 12px;
  min-height: 190px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(25, 58, 108, 0.08);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: #eaf1ff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
  line-height: 26px;
}

.card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 26px;
}

.why-choose {
  background: #fff;
}

.tri-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.why-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #e5eef9;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 12px 24px rgba(25, 58, 108, 0.08);
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.why-label {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(66, 179, 229, 0.12);
  border: 1px solid rgba(66, 179, 229, 0.28);
  color: #1f7aa2;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.why-card h2 {
  margin: 14px 0 0;
  line-height: 1.4;
}

.why-intro {
  margin-top: 10px;
  color: #607089;
  line-height: 1.55;
  font-size: 0.95rem;
}

.check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.4;
  color: #24304a;
  background: #f7fbff;
  border: 1px solid #e1edf9;
  border-radius: 10px;
  padding: 11px 12px;
}

.check-list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(66, 179, 229, 0.18);
  color: #1f88b9;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.side-image-wrap {
  position: relative;
}

.side-image-wrap img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 16px;
  border: 1px solid #e1ebf9;
  box-shadow: 0 14px 28px rgba(25, 58, 108, 0.14);
}

.why-image-tag {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(18, 35, 60, 0.72);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.82rem;
  text-align: center;
  backdrop-filter: blur(2px);
}

.mini-form-card {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 24px 22px 20px;
  color: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(30, 72, 126, 0.2);
}

.mini-form-card h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.mini-form-card p {
  color: #dce8ff;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.mini-form-card form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.mini-form-card input {
  border: 1px solid #f1bad2;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 1rem;
  width: 100%;
}

.mini-form-card textarea {
  border: 1px solid #f1bad2;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 1rem;
  width: 100%;
}

.mini-form-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #f1bad2;
  border-radius: 8px;
  padding: 13px 42px 13px 14px;
  font-size: 1rem;
  line-height: 1.2;
  width: 100%;
  color: #24304a;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f9aca' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mini-form-card select:focus {
  outline: none;
  border-color: #9ec7ef;
  box-shadow: 0 0 0 3px rgba(47, 154, 202, 0.2);
}

.full {
  width: 100%;
}

.mini-form-card .btn-primary {
  background: var(--secondary);
  min-height: 46px;
  margin-top: 2px;
}

.form-note {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.95rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

.form-status {
  margin-top: 10px;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 500;
}

.form-status.is-hidden {
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-pending {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.form-status.is-success {
  background: #e9fbef;
  border-color: #9dd8ae;
  color: #11692d;
}

.form-status.is-error {
  background: #ffe9ed;
  border-color: #efb7c3;
  color: #9b1830;
}

.trust {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(115% 160% at 0% 0%, rgba(66, 179, 229, 0.18) 0%, rgba(66, 179, 229, 0) 52%),
    linear-gradient(140deg, #f8fbff 0%, #fef7fb 100%);
  border: 1px solid #e5eef9;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 14px 30px rgba(25, 58, 108, 0.1);
}

.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.trust .eyebrow {
  color: #c6457c;
}

.trust h2 {
  text-align: center;
  color: #16253f;
  margin-top: 10px;
}

.section-subhead {
  margin-top: 12px;
  color: #5f6d82;
  text-align: center;
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.5;
}

.trust-points {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.trust-points p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 12px;
  border: 1px solid #e7edf8;
  text-align: center;
  padding: 14px 12px 13px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #202539;
  box-shadow: 0 8px 18px rgba(25, 58, 108, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-points p:hover {
  transform: translateY(-2px);
  border-color: #d7e5f8;
  box-shadow: 0 12px 22px rgba(25, 58, 108, 0.1);
}

.trust-points span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff1f7 0%, #ffe7f2 100%);
  border: 1px solid #f7c6dd;
  color: #b23f73;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.doctor {
  background: #fff;
}

.doctor .container {
  width: min(1240px, 94%);
}

.doctor h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.testimonials {
  background: #fff;
}

.testimonials h2 {
  text-align: center;
}

.testimonial-subhead {
  margin: 0;
  color: #6b768e;
  font-size: 0.9rem;
  line-height: 1.45;
}

.testimonial-head {
  display: block;
  margin-bottom: 10px;
}

.testimonial-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.carousel-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #aebfe5;
  background: #d7e4ff;
  color: transparent;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

.carousel-btn:hover:not(:disabled) {
  background: #a8c2fb;
  border-color: #93b2f5;
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(90, 130, 220, 0.14);
}

.carousel-btn:disabled {
  background: #5f89ef;
  border-color: #5f89ef;
  opacity: 1;
  cursor: not-allowed;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.32s ease;
  align-items: stretch;
}

.testimonial-item {
  flex: 0 0 100%;
  padding: 6px 4px;
  display: flex;
}

.testimonial-card {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 9px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #dfe9f7;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 10px 20px rgba(25, 58, 108, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: #d2e2f7;
  box-shadow: 0 14px 24px rgba(25, 58, 108, 0.12);
}

.testimonial-card p {
  margin: 0;
  color: #33415d;
  line-height: 1.55;
  font-size: 0.92rem;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #eef3fb;
}

.testimonial-stars {
  color: #f6b100;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
}

.testimonial-card cite {
  color: #2d3a57;
  font-style: normal;
  font-weight: 600;
  font-size: 0.86rem;
}

.expert-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--card-shadow-soft);
}

.info-card h2 {
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.doctor-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: center;
}

.doctor-card h2 {
  margin-top: 6px;
  text-align: center;
}

.doctor-card .eyebrow {
  text-align: center;
}

.doctor-image-wrap {
  width: min(300px, 100%);
  margin: 0 auto;
}

.doctor-profile h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.doctor-profile p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.doctor-image-wrap img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 280px;
  object-fit: cover;
}

@media (max-width: 639px) {
  .doctor-profile {
    grid-template-columns: 1fr;
  }

  .doctor-image-wrap {
    max-height: 260px;
  }

  .doctor-image-wrap img {
    min-height: 190px;
    max-height: 260px;
  }
}

blockquote {
  margin: 0 0 14px;
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  color: var(--color-black);
  font-size: 0.92rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}

cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-weight: 600;
}

.solution-blend {
  background: #f7f7f7;
  padding: clamp(1.25rem, 5vw, 5rem);
  border-radius: 12px;
}

.two-col-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.two-col-copy article {
  background: #fff;
  border: 1px solid #d9e2f2;
  border-radius: 12px;
  padding: clamp(1rem, 3vw, 22px);
  box-shadow: var(--card-shadow-soft);
}

.two-col-copy p {
  margin-top: 10px;
  color: var(--muted);
}

.two-col-copy article:first-child {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
  border-color: #f1d7da;
}

.two-col-copy article:last-child {
  background: linear-gradient(180deg, #ffffff 0%, #f3fcf8 100%);
  border-color: #cfe8dc;
}

.persuasive-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.persuasive-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f7faff;
  border: 1px solid #d9e5f8;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-black);
}

.risk-list li::before,
.benefit-list li::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: 0 0 22px;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 1px;
}

.risk-list li::before {
  content: "!";
  color: #b5473f;
  background: #fdebec;
  border: 1px solid #f3c2c8;
}

.benefit-list li::before {
  content: "✓";
  color: #17663d;
  background: #e8f6ef;
  border: 1px solid #bfe2cf;
}

.risk-list li {
  background: #fff7f8;
  border-color: #f1d7da;
}

.benefit-list li {
  background: #f4fbf7;
  border-color: #cfe8dc;
}

.offer-label {
  font-weight: 500;
  color: #1f6a46;
}

/* Thank you page */
.thankyou-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.thankyou-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.thankyou-content-wrap {
  width: 100%;
  text-align: center;
}

.thankyou-text {
  max-width: 420px;
  margin: 1rem auto 2rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.thankyou-main h1 {
  font-size: clamp(2.9rem, 8vw, 4.1rem);
  margin-top: 0.9rem;
  margin-bottom: 0;
  line-height: 1.05;
}

.thankyou-logo img {
  width: 6.2rem;
  margin: 0 auto 1.4rem;
}

.heading-text span {
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
}

.heading-text h1 {
  font-weight: 800;
  font-family: "Inter", Arial, sans-serif;
  text-transform: capitalize;
  margin-top: 0.8rem;
  display: block;
}

.theme-button {
  padding: 1.4rem 2.4rem;
  border-radius: 1.2rem;
  border: 0;
  background: var(--color-blue);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: 0.3s;
  border: 1px solid transparent;
  max-width: 100%;
}

.theme-button:hover {
  border: 1px solid var(--color-blue);
  background: transparent;
  color: var(--color-blue);
}

.theme-button:hover img {
  filter: brightness(0) saturate(100%) invert(66%) sepia(38%) saturate(1800%) hue-rotate(170deg) brightness(95%) contrast(90%);
}

a.theme-button {
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}


.faq {
  background: #fff;
}

.faq .container {
  width: min(760px, 94%);
}

.faq-grid {
  margin-top: 16px;
}

.faq details {
  background: #fff;
  border-radius: 9px;
  padding: 14px 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq details[open] {
  box-shadow: 0 10px 22px rgba(110, 114, 121, 0.14);
  transform: translateY(-1px);
}

.faq summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  list-style: none;
  line-height: 1.35;
  hyphens: auto;
  overflow-wrap: break-word;
}

.faq summary span {
  flex: 1;
  font-size: 18px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  background: #eef5ff;
  border: 1px solid #d2e3f8;
  color: #2d7ea9;
  font-size: 0.9rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  background: #edf3ff;
  border: 1px solid #d3e0f6;
  color: #2f7eb0;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq details[open] summary::after {
  content: "−";
  background: #e5f0ff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.faq details[open] .faq-answer {
  opacity: 1;
}

.faq details p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.micro-cta {
  background: linear-gradient(90deg, rgba(55, 159, 212, 0.2) 0%, rgba(239, 77, 154, 0.2) 100%);
  color: var(--color-white);
  padding: clamp(1rem, 2.5vw, 1.2rem) clamp(1rem, 4vw, 5rem);
  border-radius: 12px;
  margin-bottom: clamp(1rem, 4vw, 1rem);
}

.micro-card {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
}

.micro-call-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--color-black);
}

.micro-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.micro-wrap>div:last-child {
  min-width: 0;
}

.micro-wrap h3 {
  font-size: clamp(1.15rem, 4.2vw, 1.55rem);
  line-height: 1.2;
  color: var(--color-black);
}

.micro-wrap p {
  margin-top: 4px;
  color: var(--color-black);
  font-size: 0.93rem;
}

.micro-card .btn-light {
  border: 1px solid rgba(255, 255, 255, 0.65);
  min-width: 0;
  background: var(--color-white);
  color: var(--primary-deep);
  font-weight: 700;
  gap: 8px;
  width: 100%;
}

.site-footer {
  color: var(--color-black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 12px 0 14px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100%;
}

.footer-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #d9d9de;
  color: var(--color-light-black);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-item h4 {
  font-size: 1.08rem;
  line-height: 1.15;
  margin-bottom: 0;
}

.footer-item p {
  margin-top: 8px;
  color: var(--color-light-black);
  font-size: 0.86rem;
  line-height: 1.2;
}

.footer-item a {
  color: var(--color-black);
  text-decoration: none;
}

/* Whatsapp Btn */
.btn-whatsapp-pulse {
  background: #76b737;
  color: white;
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 99;
  border: 3px solid black;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #76b737;
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 479px) {
  :root {
    --header-sticky-offset: 72px;
    --site-header-height: 64px;
  }

  .container {
    width: min(1120px, 92%);
  }

  .nav-wrap {
    min-height: 64px;
    gap: 10px;
  }

  .site-header .btn {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .hero-cta .btn {
    min-height: 46px;
  }

  .nav-cta-text {
    font-size: 0.78rem;
  }

  .nav-cta-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 899px) {
  .header-toolbar .nav-cta {
    margin: 0;
    gap: 4px;
    padding: 0px 4px 0px 4px;
    min-height: 40px;
  }

  .logo img {
    width: 58%;
  }

  .hero-section {
    padding: 20px 0 18px;
    background-position: 58% center;
  }

  .hero-section .container {
    width: min(1000px, 92%);
  }

  .hero-section .eyebrow,
  .eyebrow {
    font-size: calc(0.72rem - 2px);
  }

  h1 {
    font-size: calc(clamp(1.8rem, 7.4vw, 2.35rem) - 2px);
    line-height: 1.1;
  }

  h2 {
    font-size: calc(clamp(1.45rem, 5.5vw, 1.95rem) - 2px);
    line-height: 1.16;
  }

  .lead {
    font-size: calc(1rem - 2px);
    line-height: 1.52;
  }

  .trust-strip p {
    font-size: calc(0.88rem - 2px);
    line-height: 1.45;
  }

  .hero-cta .btn {
    font-size: calc(1rem - 2px);
  }

  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .mini-form-card.hero-form-card {
    margin-top: 14px;
    width: 100%;
  }

  .card h3 {
    font-size: calc(1.02rem - 2px);
    line-height: calc(26px - 2px);
  }

  .card p {
    font-size: calc(0.86rem - 2px);
    line-height: calc(26px - 2px);
  }

  .card-icon {
    font-size: calc(0.95rem - 2px);
  }

  .card {
    min-height: 0;
  }

  .why-card {
    padding: clamp(1.1rem, 3.5vw, 24px) clamp(1rem, 3vw, 22px);
  }

  .check-list {
    gap: 18px;
  }

  .check-list li {
    font-size: calc(1.1rem - 2px);
    line-height: 1.38;
  }

  .mini-form-card h3 {
    font-size: calc(1.45rem - 2px);
    line-height: 1.12;
  }

  .mini-form-card p {
    font-size: calc(0.98rem - 2px);
    line-height: 1.28;
  }

  .mini-form-card input,
  .mini-form-card textarea,
  .mini-form-card select {
    font-size: calc(1rem - 2px);
  }

  .form-note {
    font-size: calc(0.95rem - 2px);
    line-height: 1.15;
  }

  .trust {
    padding: clamp(1.25rem, 5vw, 5rem);
  }

  .section-subhead {
    font-size: calc(1.05rem - 2px);
    line-height: 1.42;
  }

  .trust-points p {
    font-size: calc(0.98rem - 2px);
    line-height: 1.35;
  }

  .trust-points span {
    font-size: calc(0.84rem - 2px);
  }

  .testimonial-item blockquote {
    font-size: calc(0.92rem - 2px);
    line-height: 1.48;
  }

  blockquote {
    font-size: calc(0.92rem - 2px);
  }

  cite {
    font-size: calc(0.9rem - 2px);
    line-height: 1.35;
  }

  .two-col-copy p {
    font-size: calc(1rem - 2px);
    line-height: 1.55;
  }

  .persuasive-list li {
    font-size: calc(0.92rem - 2px);
    line-height: 1.38;
  }

  .risk-list li::before,
  .benefit-list li::before {
    font-size: calc(0.82rem - 2px);
  }

  .offer-label {
    font-size: calc(1rem - 2px);
    line-height: 1.4;
  }

  .faq summary {
    font-size: calc(1rem - 2px);
    line-height: 1.28;
  }

  .faq summary span {
    font-size: calc(16px - 2px);
  }

  .faq summary::after {
    font-size: calc(0.95rem - 2px);
  }

  .faq details p {
    font-size: calc(0.92rem - 2px);
    line-height: 1.42;
  }

  .footer-item h4 {
    font-size: calc(1.08rem - 2px);
    line-height: 1.12;
  }

  .footer-item p {
    font-size: calc(0.86rem - 2px);
    line-height: 1.18;
  }

  .footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .micro-cta {
    border-radius: 16px;
    padding: 1.35rem 1.2rem 1.3rem;
  }

  .micro-card {
    min-height: 0;
    justify-content: flex-start;
    gap: 1.1rem;
    padding: 0;
  }

  .micro-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .micro-wrap>div:last-child {
    width: 100%;
  }

  .micro-wrap h3,
  .micro-wrap p {
    text-align: left;
  }

  .micro-wrap h3 {
    font-size: calc(1.3rem - 2px);
    line-height: 1.22;
  }

  .micro-wrap p {
    margin-top: 0.4rem;
    font-size: calc(0.93rem - 2px);
    line-height: 1.55;
  }

  .micro-call-icon {
    width: 44px;
    height: 44px;
    font-size: calc(1.2rem - 2px);
  }

  .micro-card .btn-light {
    font-size: calc(0.95rem - 2px);
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
  }
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid,
  .trust-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-image-wrap img {
    height: auto;
  }

  .testimonial-item {
    flex-basis: 50%;
  }
}

@media (min-width: 900px) {
  .section-spacing {
    padding: 44px 0;
  }

  .nav-toggle {
    display: none;
  }

  .top-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    max-height: none;
    overflow: visible;
    -webkit-overflow-scrolling: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    order: 3;
    margin-left: 14px;
  }

  .logo {
    margin-right: auto;
  }

  .header-toolbar .nav-cta {
    display: inline-flex;
    margin: 0 6px 0 0;
    width: auto;
    min-height: 44px;
    padding: 2px 10px 2px 2px;
    border: 1px solid rgba(55, 159, 212, 0.55);
  }

  .top-nav a {
    padding: 4px 0;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    border: 0;
  }

  .top-nav a:first-of-type {
    border: 0;
  }

  .nav-backdrop {
    display: none !important;
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-header .btn {
    width: auto;
  }

  .hero-section {
    border-radius: 14px;
    /* margin-top: 16px; */
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 34px;
  }

  .hero-section {
    padding: 36px 0 28px;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 4.2vw, 3.35rem);
    line-height: 1.08;
  }

  .hero-content {
    padding: 20px 0;
  }

  .mini-form-card.hero-form-card {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    width: min(390px, 100%);
  }

  .tri-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .side-image-wrap {
    width: 78%;
    margin-inline: auto;
  }

  .side-image-wrap img {
    height: auto;
    min-height: 0;
  }

  .mini-form-card h3 {
    font-size: 1.7rem;
  }

  .expert-row {
    grid-template-columns: 1.1fr 1.9fr;
  }

  .testimonial-item {
    flex-basis: 33.333%;
  }

  .testimonial-card {
    min-height: 190px;
    padding: 20px 18px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .doctor-profile {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
  }

  .doctor-image-wrap img {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 320px;
  }

  .two-col-copy {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 14px 4px 34px 4px;
  }

  .footer-item {
    gap: 14px;
  }

  .micro-wrap h3 {
    font-size: 1.85rem;
  }

  .micro-card {
    flex-direction: row;
    align-items: center;
    min-height: 92px;
  }

  .micro-card .btn-light {
    width: auto;
    min-width: 260px;
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .tri-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0px;
  }

  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(1240px, 90%);
  }
}