:root {
  /* Sticky header (~72px nav + border); keeps # anchor scroll from sitting under the bar */
  --header-sticky-offset: 80px;
  --site-header-height: 72px;
  --primary: #42b3e5;
  --secondary: #ff3b8a;
  --color-black: #1a1a1a;
  --color-light-black: #6f6f6f;
  --color-white: #ffffff;
  --page-bg: #fdf7fa;
  --color-blue: #42b3e5;
  --panel: var(--color-white);
  --ink: var(--color-black);
  --muted: var(--color-light-black);
  --primary-deep: #2f9aca;
  --line: #f2d8e5;
  --shadow: 0 10px 24px rgba(255, 59, 138, 0.12);
  --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);
  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: var(--color-white);
  border-bottom: 1px solid var(--line);
  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);
}

.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: var(--primary);
  color: var(--color-white);
}

.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: #2f9aca;
  box-shadow: 0 8px 18px rgba(47, 154, 202, 0.28);
}

.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 {
  background: var(--color-white);
  padding: 24px 0 20px;
}

.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(--muted);
  line-height: 1.6;
}

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

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

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

.trust-strip p span {
  color: var(--primary);
  font-weight: 700;
}

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

.hero-image-wrap img {
  border-radius: 14px;
  width: 100%;
  max-height: 264px;
  object-fit: cover;
}

.services {
  background: #f7f7f7;
  padding: clamp(1.25rem, 5vw, 5rem);
  border-radius: 12px;
  margin: 3rem 0;
}

.services h2,
.trust h2,
.faq h2 {
  text-align: center;
}

.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: 16px;
  align-items: stretch;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: var(--card-shadow-soft);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.why-card h2 {
  margin-bottom: 18px;
  line-height: 1.4;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.1rem;
  line-height: 1.45;
  color: #24304a;
}

.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 9px;
  background: linear-gradient(180deg, #4db8e6 0%, #2f9aca 100%);
  flex: 0 0 7px;
}

.side-image-wrap img {
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.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 {
  background: #f7f7f7;
  padding: 5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.section-subhead {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.5;
}

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

.trust-points p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 14px;
  text-align: center;
  padding: 16px 12px 14px;
  font-weight: 600;
  font-size: 0.98rem;
  color: #202539;
  box-shadow: 0px 0px 10px 0px rgba(25, 58, 108, 0.08);
}

.trust-points span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 38px;
  margin-bottom: 20px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffe8f1;
  border: 1px solid #f7bfd8;
  color: #b34477;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.doctor {
  background: #fff;
}

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

.testimonials {
  background: #fff;
}

.testimonials h2 {
  text-align: center;
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-controls {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f4f8ff;
  color: var(--primary-deep);
  font-size: 1.2rem;
  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: #e8f1ff;
  border-color: #bfd1f1;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(47, 154, 202, 0.2);
}

.carousel-btn:disabled {
  opacity: 0.45;
  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-item blockquote {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 28px;
}

.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: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

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

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

.doctor-image-wrap {
  height: 100%;
}

.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: 100%;
  min-height: 260px;
  object-fit: cover;
}

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

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

  .doctor-image-wrap img {
    min-height: 200px;
    max-height: 320px;
  }
}

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;
}

.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::-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, var(--primary) 0%, var(--secondary) 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(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--color-white);
}

.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;
}

.micro-wrap p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.92);
  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 {
  background: #f8f8f9;
  color: var(--color-black);
  border-top: 1px solid #ececec;
}

.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;
  }
}

@media (max-width: 899px) {

  .logo img {
    width: 58%;
  }

  .header-right {
    gap: 10px;
  }

  .header-right>.nav-cta {
    order: 1;
    gap: 4px;
    padding: 0px 6px 0px 5px;
  }

  .header-right>.header-toolbar {
    order: 2;
  }

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

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

  .hero-section {
    padding: 20px 0 18px;
  }

  .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);
  }

  .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;
  }

  /* 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 summary {
    font-size: calc(1rem - 2px);
    line-height: 1.28;
  }

  .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: 280px;
  }

  .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;
  }

  .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-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

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

  .hero-image-wrap {
    order: 0;
  }

  .hero-image-wrap img {
    max-height: 432px;
  }

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

  .side-image-wrap img {
    height: 100%;
    min-height: 288px;
  }

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

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

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

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

  .doctor-profile {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 15px 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 0.95fr;
  }

  .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%);
  }
}

/* Thank you page (global) */
.thankyou-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f1f1f1;
}

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

.thankyou-content-wrap {
  width: min(440px, 92%);
  margin: 0 auto;
  text-align: center;
}

.thankyou-logo img {
  width: 96px;
  margin: 0 auto 20px;
}

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

.thankyou-main h1,
.heading-text h1 {
  font-size: clamp(2.65rem, 6.5vw, 3.55rem);
  margin: 10px 0 0;
  line-height: 1.05;
  font-weight: 800;
  font-family: "Inter", Arial, sans-serif;
  text-transform: capitalize;
}

.thankyou-text {
  max-width: 390px;
  margin: 18px auto 24px;
  color: #464646;
  font-size: 1.02rem;
  line-height: 1.45;
}