*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f172a;
  --ink-soft: #475569;
  --line: #e2e8f0;
  --brand: #047857;
  --brand-light: #10b981;
  --brand-dark: #064e3b;
  --bg-main: #f8fafc;
  --bg-alt: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg-main);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding: 4.6rem 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--brand);
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(4, 120, 87, 0.35);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.45rem;
  height: 2px;
  background: #1c5c43;
  border-radius: 2px;
}

.nav-toggle span + span {
  margin-top: 0.25rem;
}

.hero-form-section {
  padding: 0.8rem 0 0;
  background: var(--bg-main);
  position: relative;
}

.hero-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.hero-copy {
  padding: 1.2rem 0 0.5rem;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: #d1fae5;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid #a7f3d0;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.hook-highlight {
  color: var(--brand);
  position: relative;
  font-weight: 900;
}

.hook-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.3em;
  background: #a7f3d0;
  border-radius: 2px;
  z-index: -1;
}

.hero-cta-line {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0c4f3a;
  margin-bottom: 1rem;
  padding-left: 0.2rem;
  position: relative;
  animation: cta-glow 2.5s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.hero-call-btn {
  font-size: 1.1rem;
  padding: 0.65rem 1.6rem;
  margin-bottom: 1.2rem;
}

.hero-meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.meta-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  display: grid;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.meta-item strong {
  font-size: 1.2rem;
  color: var(--brand);
  line-height: 1.2;
}

.meta-item span {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-bottom-img {
  display: block;
  width: 100%;
  max-width: 440px;
  max-height: 220px;
  margin: 1.2rem auto 0;
  border-radius: 12px;
  object-fit: contain;
  object-position: top;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-wrap {
  max-width: 760px;
  width: 100%;
  margin-inline: auto;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.03);
  padding: 1.2rem 1.6rem 1.4rem;
  min-width: 0;
  position: relative;
  z-index: 10;
}

#formTop {
  scroll-margin-top: 92px;
}

.form-header {
  text-align: center;
  border-bottom: 2px solid #e8e8e8;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
  position: relative;
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0c4f3a, #1a8a5e);
  border-radius: 2px;
}

/* ── Hook Badges ── */
.form-hook-badges {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.hook-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.hook-free {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #1b5e20;
  border: 1px solid #a5d6a7;
  box-shadow: 0 2px 8px rgba(27, 94, 32, 0.12);
}

.hook-free-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e7d32;
  display: inline-block;
  animation: hook-pulse 1.8s ease-in-out infinite;
}

.hook-live {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e65100;
  border: 1px solid #ffcc80;
  box-shadow: 0 2px 8px rgba(230, 81, 0, 0.10);
}

.hook-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e53935;
  display: inline-block;
  animation: hook-pulse 1.4s ease-in-out infinite;
}

/* ── Hook Icon ── */
.form-hook-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.15rem;
  animation: hook-bounce 2.4s ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.12));
}

@keyframes hook-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 currentColor;
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 0 4px transparent;
  }
}

@keyframes hook-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.form-header h2 {
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 800;
}

.form-header p {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.btn-call {
  margin-top: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(140deg, #2f8ddb, #1f5ea6);
  color: #f9fcff;
  box-shadow: 0 8px 14px rgba(25, 92, 162, 0.32);
  padding: 0.38rem 1.1rem;
  font-size: 0.88rem;
  position: relative;
  overflow: hidden;
  animation: call-pop 2.1s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.btn-call::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-125%);
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 255, 255, 0.34) 50%,
    rgba(255, 255, 255, 0) 66%
  );
  animation: call-shine 2.6s ease-in-out infinite;
  pointer-events: none;
}

.form-group {
  margin-bottom: 0.5rem;
}

.form-group label,
.checkbox-group-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #2d2d2d;
}

.form-group input:not([type="checkbox"]) {
  width: 100%;
  height: 2.6rem;
  border: 1.5px solid #d0d5dd;
  border-radius: 8px;
  background: #f9fafb;
  padding: 0 0.9rem;
  font: inherit;
  font-size: 0.88rem;
  color: #1f2b22;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group input:not([type="checkbox"])::placeholder {
  color: #8a919a;
  font-weight: 500;
}

.form-group input:not([type="checkbox"]):hover {
  border-color: #0c4f3a;
}

.form-group input:not([type="checkbox"]):focus {
  border-color: #0c4f3a;
  box-shadow: 0 0 0 3px rgba(12, 79, 58, 0.12);
  background: #fff;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  padding: 0.3rem 0 0.1rem;
}

.cb-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #3d3d3d;
  cursor: pointer;
  padding: 0.15rem 0;
  transition: color 0.2s ease;
}

.cb-label:hover {
  color: #0c4f3a;
}

.cb-label input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #0c4f3a;
  cursor: pointer;
}

.error {
  min-height: 0;
  color: #a7371b;
  font-size: 0.7rem;
  font-weight: 700;
  display: block;
}

.btn-submit-dark,
.btn-primary {
  width: min(220px, 100%);
  margin: 0.8rem auto 0;
  min-height: 2.8rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(4, 120, 87, 0.25);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit-dark:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(4, 120, 87, 0.35);
}

.btn-submit-dark:active,
.btn-primary:active {
  transform: translateY(0);
}

.doctor-col {
  max-width: 1120px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-width: 0;
}

.doctor-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.doctor-info {
  padding: 1rem 1.1rem 1.2rem;
  min-width: 0;
}

.doctor-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: #5d6b5d;
}

.doctor-info h3 {
  margin-top: 0.2rem;
  font-size: 1.3rem;
}

.doctor-tagline {
  margin-top: 0.22rem;
  font-size: 0.9rem;
  color: #5a665b;
}

.feature-list {
  list-style: none;
  margin-top: 0.72rem;
}

.feature-list li {
  position: relative;
  padding: 0.22rem 0 0.22rem 1.05rem;
  font-size: 0.85rem;
  color: #2d3c31;
}

.feature-list li::before {
  content: "";
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #cf9d40;
  position: absolute;
  left: 0;
  top: 0.78rem;
}

.online-status {
  margin-top: 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #34513f;
  font-weight: 600;
}

.online-dot {
  width: 0.52rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #20b15d;
  box-shadow: 0 0 0 4px rgba(32, 177, 93, 0.18);
  display: inline-block;
}

.call-bar .online-dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  position: relative;
  flex-shrink: 0;
}

.call-bar .online-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #20b15d;
  background: #fff;
}

.btn-call-lg {
  width: 100%;
  margin-top: 0.82rem;
  font-size: 0.95rem;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 800;
}

.serif-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.3;
  margin-top: 0.4rem;
  color: var(--ink);
}

.left-align {
  text-align: left;
}

.section-sub {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.symptoms-section {
  background: var(--bg-main);
}

.symptoms-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.symptom-card {
  background: var(--bg-main);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.symptom-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.plan-container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.15rem;
}

.plan-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 14px;
  object-fit: cover;
}

.plan-sub {
  margin-top: 0.5rem;
  color: #586458;
}

.plan-steps {
  list-style: none;
  margin-top: 0.9rem;
}

.plan-steps li {
  padding: 0.58rem 0;
  border-bottom: 1px solid var(--line);
}

.why-section {
  background: var(--bg-main);
}

.why-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.gallery-section {
  background: var(--bg-main);
}

.gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.reviews-section {
  background: var(--bg-main);
}

.count-big {
  color: #1f6a4f;
  font-size: 1.14em;
}

.reviews-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.review-card {
  background: var(--bg-main);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.review-card p {
  color: var(--ink);
  font-style: italic;
  font-size: 0.95rem;
}

.reviewer {
  margin-top: 1rem;
  display: grid;
}

.reviewer strong {
  color: var(--brand-dark);
}

.reviewer small {
  color: var(--ink-soft);
}

.offer-section {
  padding: 4rem 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  transform: rotate(15deg);
  pointer-events: none;
}

.offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.offer-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.34rem 0.74rem;
  font-size: 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.offer-text h2 {
  margin-top: 0.55rem;
  font-family: "Merriweather", serif;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
}

.offer-text h2 span {
  color: #ffd789;
}

.offer-text p {
  margin-top: 0.42rem;
}

.btn-white {
  margin-top: 0.9rem;
  border-radius: 999px;
  background: #f7fbf7;
  color: #1a4934;
  padding: 0.64rem 1.14rem;
}

.countdown-label {
  text-align: center;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.44rem;
  flex-wrap: wrap;
  justify-content: center;
}

.time-block {
  min-width: 64px;
  border-radius: 8px;
  padding: 0.52rem 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.17);
  text-align: center;
}

.offer-text,
.countdown-wrap {
  min-width: 0;
}

.time-block span {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
}

.time-block small {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sep {
  font-size: 1.2rem;
  font-weight: 800;
}

.footer {
  text-align: center;
  padding: 1.8rem 0;
  background: #101813;
  color: rgba(242, 247, 243, 0.75);
}

.footer-inner {
  display: grid;
  gap: 0.35rem;
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e8cb9d;
}

.sticky-cta {
  display: none;
}

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 96;
  min-height: 44px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(90deg, #022c22, #064e3b, #022c22);
  background-size: 200% 100%;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  animation: call-bar-flow 3.2s linear infinite;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.call-bar .btn-call {
  margin-top: 0;
  padding: 0.42rem 0.78rem;
  font-size: 0.88rem;
}

.whatsapp-btn {
  position: fixed;
  right: 0.9rem;
  bottom: 56px;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #25d366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  z-index: 98;
  box-shadow: 0 8px 18px rgba(16, 77, 41, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(16, 77, 41, 0.45);
  animation: none; /* Stop pulsing on hover */
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@keyframes call-pop {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 14px rgba(25, 92, 162, 0.32);
  }
  35% {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(25, 92, 162, 0.45);
  }
  52% {
    transform: scale(0.98);
  }
  68% {
    transform: scale(1.03);
  }
}

@keyframes call-shine {
  0%,
  68% {
    transform: translateX(-125%);
  }
  100% {
    transform: translateX(125%);
  }
}

@keyframes call-bar-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-call,
  .btn-call::after,
  .call-bar,
  .form-hook-icon,
  .hook-free-dot,
  .hook-live-dot,
  .hero-cta-line {
    animation: none !important;
  }
}

/* ══ DESKTOP ≥960px ══ */
@media (min-width: 960px) {
  .hero-shell {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    gap: 2.5rem;
  }

  .hero-copy {
    padding: 2rem 0 1.5rem;
    position: sticky;
    top: 90px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .hero-cta-line {
    font-size: 1.15rem;
  }

  .hero-call-btn {
    font-size: 1.05rem;
    padding: 0.6rem 1.5rem;
  }

  .meta-item {
    padding: 0.6rem 1rem;
  }

  .meta-item strong {
    font-size: 1.25rem;
  }

  .form-wrap {
    max-width: 480px;
  }

  .form-header h2 {
    font-size: 1.15rem;
  }
}

/* ══ LARGE DESKTOP ≥1200px ══ */
@media (min-width: 1200px) {
  .hero-shell {
    gap: 3rem;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .form-wrap {
    max-width: 500px;
    padding: 1.2rem 1.6rem 1.4rem;
  }

  .form-header h2 {
    font-size: 1.25rem;
  }
}

/* ══ TABLET LANDSCAPE ≤1060px ══ */
@media (max-width: 1060px) {
  .symptoms-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

/* ══ TABLET PORTRAIT ≤860px ══ */
@media (max-width: 860px) {
  .doctor-col,
  .plan-container {
    grid-template-columns: 1fr;
  }

  .doctor-photo {
    max-height: 330px;
  }

  .offer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .countdown-wrap {
    width: 100%;
  }

  .countdown {
    justify-content: center;
  }
}

/* ══ MOBILE ≤760px ══ */
@media (max-width: 760px) {
  body {
    padding-bottom: 54px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f4f0e8;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.4rem 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 0.72rem 1.1rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-copy {
    padding: 0.8rem 0 0.3rem;
  }

  .hero-kicker {
    font-size: 0.74rem;
    padding: 0.28rem 0.7rem;
    margin-bottom: 0.6rem;
  }

  .hero-copy h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .hero-cta-line {
    font-size: 0.92rem;
    margin-bottom: 0.7rem;
  }

  .hero-call-btn {
    font-size: 0.9rem;
    padding: 0.45rem 1.1rem;
    margin-bottom: 0.8rem;
  }

  .hero-meta {
    gap: 0.5rem;
  }

  .meta-item {
    padding: 0.4rem 0.65rem;
  }

  .meta-item strong {
    font-size: 0.95rem;
  }

  .meta-item span {
    font-size: 0.62rem;
  }

  .form-wrap {
    padding: 0.6rem 0.6rem 0.75rem;
    border-radius: 10px;
  }

  .form-header {
    padding-bottom: 0.25rem;
    margin-bottom: 0.35rem;
  }

  .form-hook-badges {
    gap: 0.2rem;
    margin-bottom: 0.15rem;
  }

  .hook-badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.4rem;
  }

  .form-hook-icon {
    font-size: 1.1rem;
    margin-bottom: 0.05rem;
  }

  .form-header h2 {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .form-header p {
    font-size: 0.65rem;
    margin-top: 0.15rem;
  }

  /* Hide the redundant call button in form header on mobile to save vertical space */
  .form-header .btn-call {
    display: none;
  }

  .form-group {
    margin-bottom: 0.35rem;
  }

  .form-group label,
  .checkbox-group-label {
    font-size: 0.7rem;
    margin-bottom: 0.15rem;
  }

  .form-group input:not([type="checkbox"]) {
    height: 2.15rem;
    font-size: 0.76rem;
    padding: 0 0.6rem;
  }

  .checkbox-group {
    gap: 0.15rem 0.5rem;
    padding: 0.15rem 0 0.05rem;
  }

  .cb-label {
    font-size: 0.68rem;
    padding: 0.1rem 0;
    gap: 0.25rem;
  }

  .cb-label input {
    width: 0.85rem;
    height: 0.85rem;
  }

  .btn-submit-dark,
  .btn-primary {
    min-height: 2.3rem;
    font-size: 0.85rem;
    margin-top: 0.4rem;
  }

  .btn-call {
    font-size: 0.82rem;
    padding: 0.35rem 0.85rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .doctor-info {
    padding: 0.9rem 0.9rem 1rem;
  }

  .doctor-info h3 {
    font-size: 1.15rem;
  }

  .feature-list li {
    font-size: 0.8rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .section-eyebrow,
  .serif-title,
  .section-sub,
  .left-align {
    text-align: center;
  }

  .why-card,
  .symptom-card,
  .review-card {
    text-align: center;
  }

  .plan-text-col {
    text-align: center;
  }

  .plan-steps {
    text-align: left; /* Keep the actual list items readable */
    display: inline-block;
  }

  .call-bar {
    justify-content: space-between;
    gap: 0.4rem;
    min-height: 46px;
    padding: 0.4rem 0.6rem;
  }

  .call-bar span:not(.online-dot) {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.75rem;
  }

  .call-bar .btn-call {
    font-size: 0.74rem;
    padding: 0.35rem 0.6rem;
    white-space: nowrap;
  }

  .hook-highlight::after {
    height: 2px;
  }
}

/* ══ SMALL MOBILE ≤560px ══ */
@media (max-width: 560px) {
  .container {
    width: min(1140px, 100% - 1rem);
  }

  .hero-form-section {
    padding: 0.5rem 0 0;
  }

  .hero-copy {
    padding: 0.5rem 0 0.2rem;
  }

  .hero-kicker {
    font-size: 0.68rem;
    padding: 0.22rem 0.6rem;
    margin-bottom: 0.4rem;
  }

  .hero-copy h1 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.4rem;
  }

  .hero-cta-line {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
  }

  .hero-call-btn {
    font-size: 0.82rem;
    padding: 0.38rem 0.9rem;
    margin-bottom: 0.6rem;
  }

  .hero-meta {
    gap: 0.35rem;
  }

  .meta-item {
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    flex: 1;
    min-width: 0;
  }

  .meta-item strong {
    font-size: 0.85rem;
  }

  .meta-item span {
    font-size: 0.58rem;
  }

  .form-wrap {
    padding: 0.7rem 0.75rem 0.85rem;
    border-radius: 10px;
  }

  .form-header h2 {
    font-size: 0.95rem;
  }

  .form-hook-icon {
    font-size: 1.1rem;
  }

  .hook-badge {
    font-size: 0.56rem;
    padding: 0.15rem 0.42rem;
    gap: 0.2rem;
  }

  .hook-free-dot,
  .hook-live-dot {
    width: 5px;
    height: 5px;
  }

  .form-group input:not([type="checkbox"]) {
    height: 2.25rem;
    font-size: 0.78rem;
  }

  .checkbox-group {
    flex-wrap: wrap;
    gap: 0.15rem 0.55rem;
  }

  .cb-label {
    font-size: 0.7rem;
  }

  .btn-submit-dark,
  .btn-primary {
    min-height: 2.35rem;
    font-size: 0.82rem;
    width: 100%;
  }

  .symptoms-grid,
  .why-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .call-bar {
    font-size: 0.7rem;
    padding-inline: 0.45rem;
    min-height: 38px;
  }

  .time-block {
    min-width: 54px;
  }

  .time-block span {
    font-size: 1.2rem;
  }

  .whatsapp-btn {
    width: 42px;
    bottom: 48px;
    right: 0.6rem;
    font-size: 0.76rem;
  }
}

/* ══ EXTRA SMALL ≤400px ══ */
@media (max-width: 400px) {
  .container {
    width: min(1140px, 100% - 0.8rem);
  }

  .nav-container {
    min-height: 62px;
  }

  .logo-img {
    height: 38px;
  }

  .hero-copy h1 {
    font-size: 1.05rem;
  }

  .hero-cta-line {
    font-size: 0.75rem;
  }

  .hero-kicker {
    font-size: 0.62rem;
  }

  .hero-call-btn {
    font-size: 0.76rem;
    padding: 0.32rem 0.7rem;
  }

  .meta-item strong {
    font-size: 0.78rem;
  }

  .meta-item span {
    font-size: 0.52rem;
  }

  .form-wrap {
    padding: 0.6rem 0.6rem 0.75rem;
  }

  .form-header h2 {
    font-size: 0.85rem;
  }

  .form-header p {
    font-size: 0.66rem;
  }

  .form-hook-badges {
    gap: 0.25rem;
  }

  .hook-badge {
    font-size: 0.52rem;
    padding: 0.12rem 0.35rem;
  }

  .form-hook-icon {
    font-size: 0.95rem;
  }

  .form-group label,
  .checkbox-group-label {
    font-size: 0.7rem;
  }

  .cb-label {
    font-size: 0.65rem;
  }

  .form-group input:not([type="checkbox"]) {
    height: 2.1rem;
    font-size: 0.74rem;
    padding: 0 0.6rem;
  }

  .form-group input:not([type="checkbox"])::placeholder {
    font-size: 0.7rem;
  }

  .btn-submit-dark,
  .btn-primary {
    min-height: 2.2rem;
    font-size: 0.78rem;
  }

  .btn-call {
    font-size: 0.74rem;
    padding: 0.28rem 0.6rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .serif-title {
    font-size: 1.2rem;
  }

  .doctor-info h3 {
    font-size: 1.05rem;
  }

  .feature-list li {
    font-size: 0.78rem;
  }

  .plan-steps li {
    font-size: 0.85rem;
  }

  .offer-text h2 {
    font-size: 1.2rem;
  }

  .time-block {
    min-width: 48px;
    padding: 0.4rem 0.35rem;
  }

  .time-block span {
    font-size: 1rem;
  }

  .whatsapp-btn {
    width: 38px;
    bottom: 46px;
    right: 0.5rem;
    font-size: 0.7rem;
  }
}

