/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #0A5C44;
  --green-dark: #073D2E;
  --green-mid:  #0D7A5C;
  --green-lt:   #EBF5F0;
  --gold:       #C9952A;
  --gold-lt:    #FDF6E9;
  --dark:       #0F1C14;
  --body:       #374151;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --bg:         #FAFAFA;
  --white:      #FFFFFF;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow:     0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);

  /* Layout */
  --max-w:      1200px;
  --section-y:  80px;
  --section-y-sm: 52px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ──────────────────────────────────────────────────────────── */
.serif { font-family: 'Playfair Display', Georgia, serif; }

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.01em;
}
h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}
p { color: var(--body); }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.section         { padding-block: var(--section-y); }
.section--sm     { padding-block: var(--section-y-sm); }
.section--cream  { background: #FDFAF6; }
.section--green  { background: var(--green-dark); color: var(--white); }
.section--ltgn   { background: var(--green-lt); }

.grid-2 {
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
  display: grid;
  gap: 24px;
}
@media (min-width: 600px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.tag--green { background: var(--green-lt); color: var(--green); }
.tag--gold  { background: var(--gold-lt);  color: var(--gold);  }
.tag--white { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }

.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 99px;
  margin-block: 18px;
}
.divider--center { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201,149,42,.35);
}
.btn--gold:hover { background: #b8841f; box-shadow: 0 8px 28px rgba(201,149,42,.45); }

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(10,92,68,.25);
}
.btn--green:hover { background: var(--green-dark); box-shadow: 0 8px 28px rgba(10,92,68,.35); }

.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 22px; font-size: .875rem; }
.btn--full { width: 100%; }

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 9px 20px;
  letter-spacing: .02em;
}
.topbar strong { color: var(--gold); font-weight: 700; }

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -.01em;
}
.navbar__logo span { color: var(--gold); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
/* Subtle pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,149,42,.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(13,122,92,.20) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-block: 72px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 480px;
    gap: 64px;
    padding-block: 88px;
  }
}
@media (min-width: 1200px) {
  .hero__grid { grid-template-columns: 1fr 520px; }
}

/* Left — content */
.hero__content { color: var(--white); }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.hero__price-current {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero__price-meta { line-height: 1.45; }
.hero__price-normal {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
}
.hero__price-save {
  display: inline-block;
  background: #22C55E;
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  margin-top: 4px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Right — promo card */
.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__card-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  padding: 28px 28px 24px;
  color: var(--white);
  position: relative;
}
.hero__card-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 24px;
  background: var(--white);
  border-radius: 20px 20px 0 0;
}
.hero__card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.hero__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 4px;
}
.hero__card-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}

.hero__card-body { padding: 28px; }

.hero__card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.hero__card-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hero__card-price-period {
  font-size: .85rem;
  color: var(--muted);
}
.hero__card-original {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 20px;
}

.checklist { list-style: none; margin-bottom: 24px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--body);
}
.checklist li:last-child { border-bottom: none; }
.check-icon {
  width: 20px; height: 20px;
  background: var(--green-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
}

.hero__card-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── Trust bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--gold-lt);
  border-top: 1px solid rgba(201,149,42,.15);
  border-bottom: 1px solid rgba(201,149,42,.15);
  padding-block: 16px;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
}
.trust-bar__item .dot {
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--white);
  flex-shrink: 0;
}

/* ── How it works ────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}
@media (min-width: 960px) {
  .step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: rgba(255,255,255,.25);
    z-index: 1;
  }
}
.step-num {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.step-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.step-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* ── Benefits grid ───────────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 600px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--green-lt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.benefit-card h3 { margin-bottom: 6px; color: var(--green); }
.benefit-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── What's included — desktop 2-col ─────────────────────────────────────── */
.offer-layout {
  display: grid;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .offer-layout { grid-template-columns: 3fr 2fr; }
}

.offer-main {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.offer-main__head {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  padding: 28px 32px;
  color: var(--white);
}
.offer-main__head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.offer-main__head p {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}
.offer-main__body { padding: 28px 32px; }

.price-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.price-display__main {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.price-display__normal {
  font-size: .9rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-save {
  display: inline-block;
  background: #DEF7EC;
  color: #065F46;
  font-size: .8rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.include-list { list-style: none; margin-bottom: 28px; }
.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
}
.include-list li:last-child { border-bottom: none; }

.disclaimer-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .8rem;
  color: #92400E;
  line-height: 1.55;
  margin-top: 20px;
}

.offer-side { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 { margin-bottom: 10px; font-size: 1rem; }
.info-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.info-card__icon { font-size: 1.6rem; margin-bottom: 10px; }

/* ── Mounjaro explainer ──────────────────────────────────────────────────── */
.explainer-grid {
  display: grid;
  gap: 40px;
  margin-top: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .explainer-grid { grid-template-columns: 1fr 1fr; }
}

.explainer-visual {
  background: linear-gradient(135deg, var(--green-lt) 0%, #D1FAE5 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.explainer-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green);
}
.explainer-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.explainer-stat__label { font-size: .85rem; color: var(--muted); }

.explainer-content h2 { margin-bottom: 12px; }
.explainer-content p  { margin-bottom: 16px; color: var(--muted); font-size: .95rem; line-height: 1.75; }
.explainer-content p:last-child { margin-bottom: 0; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: #070F09;
  color: rgba(255,255,255,.45);
  padding-block: 48px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
@media (min-width: 640px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer__logo span { color: var(--gold); }
.footer__tagline { font-size: .85rem; margin-top: 4px; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: .85rem;
}
.footer__links a { transition: color .15s; }
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .8rem;
}

/* ── Google Reviews Section ──────────────────────────────────────────────── */
.reviews-section { background: var(--white); padding-block: var(--section-y); }

.reviews-header {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
  align-items: center;
}
@media (min-width: 760px) {
  .reviews-header { grid-template-columns: auto 1fr; gap: 56px; }
}

/* Left: overall score */
.reviews-summary { text-align: center; }

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.reviews-google-badge svg { flex-shrink: 0; }

.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 8px;
}
.star {
  width: 22px; height: 22px;
  color: #FBBC04;
}
.star svg { width: 100%; height: 100%; }
.reviews-count {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Right: histogram */
.reviews-histogram { display: flex; flex-direction: column; gap: 7px; }
.histogram-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
}
.histogram-label { width: 20px; text-align: right; flex-shrink: 0; font-weight: 600; color: var(--dark); }
.histogram-bar-wrap {
  flex: 1;
  background: #F3F4F6;
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
}
.histogram-bar {
  height: 100%;
  background: #FBBC04;
  border-radius: 99px;
  transition: width .6s ease;
}
.histogram-count { width: 24px; flex-shrink: 0; text-align: left; }

/* Carousel wrapper */
.reviews-carousel-outer {
  position: relative;
}
.reviews-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Individual review card */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  /* width set by JS — do not set flex-basis here */
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow); }

.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: .02em;
}
.review-card__meta { flex: 1; min-width: 0; }
.review-card__name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__date { font-size: .78rem; color: var(--muted); margin-top: 1px; }

/* Google "G" icon on card */
.review-g-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

.review-card__stars {
  display: flex;
  gap: 2px;
}
.review-card__stars .star { width: 16px; height: 16px; }

.review-card__text {
  font-size: .9rem;
  color: var(--body);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s, box-shadow .15s, transform .15s;
  flex-shrink: 0;
  color: var(--dark);
}
.carousel-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: scale(1.08);
}
.carousel-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
}
.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ── Form section ────────────────────────────────────────────────────────── */
.form-section { background: var(--green-lt); padding-block: var(--section-y); }
.form-section__head { margin-bottom: 40px; }
.form-section h2 { color: var(--green); }

.fillout-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.fillout-wrap iframe {
  width: 100%;
  min-height: 640px;
  border: none;
  display: block;
}

/* ── Sticky CTA (mobile only) ────────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px;
  border-radius: 99px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(201,149,42,.4);
}

/* ── Responsive: Mobile (<640px) ─────────────────────────────────────────── */
@media (max-width: 639px) {
  :root { --section-y: 52px; }
  body { padding-bottom: 76px; }
  .sticky-cta { display: block; }
  .hero__grid { padding-block: 52px; }
  .hero__card { display: none; } /* hide promo card on mobile — info is in hero content */
}

/* ── Responsive: Tablet (640–959px) ─────────────────────────────────────── */
@media (min-width: 640px) and (max-width: 959px) {
  .hero__card { display: none; }
  .hero__grid { grid-template-columns: 1fr; padding-block: 64px; }
}

/* ── Max width cap ───────────────────────────────────────────────────────── */
@media (min-width: 1400px) {
  .container { max-width: 1200px; }
}
