/* ===== Yuva SpermX - Professional ecommerce product page (mobile-first) ===== */
:root {
  --navy: #1a2a4a;
  --navy-2: #223660;
  --bottle-black: #111;
  --bottle-black-2: #222;
  --gold: #c8961e;
  --gold-2: #e0ac2e;
  --gold-3: #f0c850;
  --green: #1a7f37;
  --red: #c0392b;
  --bg: #f7f6f3;
  --white: #ffffff;
  --ink: #22262e;
  --ink-soft: #4a4f58;
  --border: #e5e2db;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12);
  --maxw: 480px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-head: "Poppins", "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: #dcd9d2;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* Centered phone canvas */
.phone-shell {
  width: 100%;
  max-width: var(--maxw);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  box-shadow: 0 0 40px rgba(0,0,0,.15);
}

/* ===== Announcement bar ===== */
.announce-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: calc(8px + var(--safe-top)) 16px 8px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.brand img { height: 44px; width: auto; display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 24px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-head);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:active { transform: scale(.98); }
.btn:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 2px; }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.btn-icon { font-size: 17px; line-height: 1; }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold) 100%);
  color: var(--bottle-black);
  border: 1px solid rgba(0,0,0,.2);
  box-shadow: 0 3px 10px rgba(200,150,30,.35);
}
.btn-cta {
  background: linear-gradient(180deg, #2b2b2b 0%, var(--bottle-black) 100%);
  color: var(--gold-3);
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0,0,0,.4), inset 0 1px 0 rgba(240,200,80,.25);
  width: 100%;
  letter-spacing: .3px;
}
.btn-cta:active { background: #000; }
.btn-cta { min-height: 58px; font-size: 19px; }

/* ===== Sections ===== */
.section { padding: 26px 18px; }
.section.light { background: var(--white); }
.section.dark { background: var(--navy); color: #fff; }

.section-title {
  margin: 0 0 16px;
  font-size: 21px;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--gold-2);
  text-align: center;
}
.section-title-dark {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--navy);
  text-align: center;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: -.2px;
}
.section-title-dark::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  margin: 10px auto 0;
  border-radius: 2px;
}
.sub-title {
  margin: 20px 0 12px;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--bottle-black);
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  line-height: 1.35;
}
.content-text {
  margin: 0 0 16px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.75;
}
.content-text strong { color: var(--bottle-black); font-weight: 700; }
.formula-line {
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--bottle-black);
  text-align: center;
  background: linear-gradient(120deg, rgba(200,150,30,.12), rgba(240,200,80,.2));
  border: 1px solid rgba(200,150,30,.35);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.hl {
  background: linear-gradient(180deg, transparent 55%, rgba(240,200,80,.55) 55%);
  font-weight: 700;
  color: var(--bottle-black);
  padding: 0 1px;
}

/* ===== Hero ===== */
.hero {
  padding: 22px 18px 26px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-head);
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-title {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--bottle-black);
  line-height: 1.1;
  letter-spacing: -.5px;
}
.hero-title .title-sub {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
  margin-top: 4px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
}
.stars { color: var(--gold-2); font-size: 17px; letter-spacing: 2px; }
.rating-text { font-size: 13px; color: var(--ink-soft); }
.hero-products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px auto 20px;
  width: 100%;
}
.hero-products img {
  width: 100%;
  max-width: 360px;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.2));
  transition: transform .3s ease;
}
.hero-products img:first-child { height: auto; }
.hero-products img:only-child {
  width: 100%;
  max-width: 390px;
  height: auto;
  max-height: 440px;
}

/* Price row */
.price-box {
  background: linear-gradient(135deg, rgba(200,150,30,.08), rgba(240,200,80,.12));
  border: 1px solid rgba(200,150,30,.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0 0 14px;
}
.price-main-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.price-now { font-size: 36px; font-weight: 900; font-family: var(--font-head); color: var(--bottle-black); line-height: 1; }
.price-old { font-size: 18px; color: var(--ink-soft); text-decoration: line-through; }
.discount-badge {
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-head);
  color: #fff;
  background: var(--red);
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: .3px;
}
.price-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 10px;
}
.save-amount { font-size: 14px; font-weight: 700; color: var(--red); }
.price-note { font-size: 12px; color: var(--ink-soft); margin: 0; }
.offer-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.offer-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.3); }
}

/* Delivery estimate */
.delivery-estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 10px 12px;
  background: rgba(26,127,55,.07);
  border: 1px solid rgba(26,127,55,.25);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ink-soft);
}
.delivery-estimate strong { color: var(--green); }
.delivery-estimate svg { flex-shrink: 0; }
.delivery-estimate.in-order { margin: 0 0 14px; }

/* ===== Variant cards ===== */
.variant-cards-container {
  display: flex;
  gap: 12px;
  margin: 0 0 18px;
}
.variant-card {
  position: relative;
  flex: 1;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 10px 14px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.variant-card h3 { margin: 0 0 6px; font-size: 15px; font-weight: 700; font-family: var(--font-head); color: var(--bottle-black); }
.variant-card p { margin: 0 0 10px; font-size: 12px; color: var(--ink-soft); line-height: 1.5; }
.variant-card .price { font-size: 20px; font-weight: 900; color: var(--ink); }
.variant-card .old-price { font-size: 13px; color: var(--ink-soft); text-decoration: line-through; }
.variant-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,30,.15), var(--shadow);
}
.variant-card .badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: .3px;
}
.variant-card:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 2px; }

/* Hero trust */
.hero-trust {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.hero-trust li::before { content: "\2713  "; color: var(--green); font-weight: 700; }

/* ===== Benefits box ===== */
.custom-benefits-box { max-width: 420px; margin: 0 auto; }
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.benefit-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 10px 12px;
  text-align: center;
}
.benefit-item img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 8px; }
.benefit-item p { margin: 0; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.45; }
.benefit-description {
  background: var(--bg);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 14px;
}
.benefit-description p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ===== Consumption ===== */
.custom-consumption-section { max-width: 420px; margin: 0 auto; }
.custom-consumption-section h3 {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--bottle-black);
  text-align: center;
}
.consumption-row {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.consumption-item {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 6px 12px;
  text-align: center;
}
.consumption-item img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 8px; }
.consumption-item p { margin: 0; font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.4; }

/* ===== Content blocks ===== */
.content-block { background: var(--bg); }
.benefit-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
  border-left: 3px solid var(--gold);
}
.benefit-list li strong { color: var(--bottle-black); font-weight: 700; }

/* ===== Visual story images ===== */
.inline-image {
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.inline-image img { display: block; width: 100%; height: auto; }

/* Very tall poster artwork - show full height, no crop */
.feature-tall img { width: 100%; height: auto; object-fit: contain; }

/* Panoramic artwork - contain so no baked-in text is cropped */
.feature-wide img { width: 100%; height: auto; object-fit: contain; }

/* Doctor videos stacked with spacing */
.doctor-videos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

/* Square story carousel slides */
.carousel-square .carousel-slide { flex: 0 0 78%; }

/* Hero carousel - sits below bottle/box images */
.hero-carousel {
  margin: 10px -18px 18px;
  padding-bottom: 4px;
}
.hero-carousel .carousel-track { padding: 4px 18px; }

/* Generic carousel slide border already handled by .carousel-slide */

.quote-block {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  margin: 16px 0;
  box-shadow: var(--shadow);
}
.quote-block p { margin: 0; font-size: 15px; font-style: italic; color: var(--ink); }

.important-note {
  background: rgba(192,57,43,.06);
  border: 1px solid rgba(192,57,43,.25);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 16px;
}
.important-note strong { color: var(--red); }

.badge-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-list li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200,150,30,.14);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== Video ===== */
.video-wrap {
  margin: 0 auto;
  max-width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.video-square { aspect-ratio: 1 / 1; }
.video-wrap video { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Play button overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.25);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 0;
  transition: opacity .2s ease;
}
.video-play-btn .play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200,150,30,.92);
  color: #111;
  font-size: 24px;
  padding-left: 5px;
  box-shadow: 0 4px 18px rgba(0,0,0,.5), 0 0 0 6px rgba(200,150,30,.3);
  pointer-events: none;
}
.video-play-btn:active .play-icon { transform: scale(.92); }
.video-play-btn.is-playing { opacity: 0; pointer-events: none; }
.carousel-slide .video-play-btn .play-icon { width: 52px; height: 52px; font-size: 20px; }

/* ===== Carousel ===== */
.carousel { position: relative; margin: 0 -6px; }
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 10px;
  padding: 4px 8px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 78%;
  margin: 0;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.carousel-slide img,
.carousel-slide video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.carousel-slide.video-slide { aspect-ratio: 9 / 16; background: #000; }
.carousel-slide.video-slide video { height: 100%; }

/* Smaller video review slides */
.carousel-video .carousel-slide { flex: 0 0 48%; }
.carousel-video .carousel-slide.video-slide { max-height: 340px; }

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(26,42,74,.85);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: var(--shadow);
}
.carousel-prev { left: 2px; }
.carousel-next { right: 2px; }
.carousel-prev:active,
.carousel-next:active { background: var(--gold); color: var(--navy); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(26,42,74,.2);
  cursor: pointer;
}
.carousel-dots button.active { background: var(--gold); }

/* ===== CTA strip ===== */
.cta-strip { text-align: center; padding: 22px 18px; background: var(--white); }
.cta-strip .btn { max-width: 320px; }

/* ===== Order section ===== */
.order-section { padding: 26px 18px 40px; background: var(--bg); }
.order-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 18px 26px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.order-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--bottle-black);
}
.order-price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.order-price-now { font-size: 24px; font-weight: 900; font-family: var(--font-head); color: var(--green); }
.order-price-old { font-size: 14px; color: var(--ink-soft); text-decoration: line-through; }

.order-plan-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin: 0 0 12px;
  font-size: 14px;
}
.plan-label { color: var(--ink-soft); font-weight: 600; }
.plan-name { font-weight: 800; color: var(--bottle-black); }

.order-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.timer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 10px 14px;
  background: rgba(200,150,30,.08);
  border: 1px dashed rgba(200,150,30,.5);
  border-radius: var(--radius-sm);
}
.timer-icon { font-size: 18px; }
.timer-label { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.timer {
  font-size: 22px;
  font-weight: 900;
  font-family: var(--font-head);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.timer.expired { color: var(--red); }

/* ===== Custom form (clean professional panel) ===== */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  padding: 24px 18px 20px;
  background: linear-gradient(180deg, #faf8f3 0%, #f5f2ea 100%);
  border-radius: 14px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(200,150,30,.12);
}
.form-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--bottle-black);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 4px;
}
.form-heading-icon { font-size: 16px; color: var(--gold); }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--bottle-black);
}
.req { color: var(--red); }
.input-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.input-icon {
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 16px;
  opacity: .45;
  pointer-events: none;
}
.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
  resize: vertical;
}
.input-wrap input:focus,
.input-wrap textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,30,.12);
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: #bbb; }
.input-wrap textarea { padding-top: 13px; }
.form-field.has-error input,
.form-field.has-error textarea { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.field-error {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  min-height: 0;
  transition: min-height .15s ease;
}
.form-field.has-error .field-error { min-height: 16px; }

.form-submit-btn {
  margin-top: 6px;
  font-size: 17px;
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold) 100%);
  color: var(--bottle-black);
  border: 1.5px solid var(--gold-2);
  box-shadow: 0 4px 14px rgba(200,150,30,.35);
}
.form-submit-btn:active { background: var(--gold); }
.form-submit-btn:disabled { opacity: .6; }

.form-success {
  text-align: center;
  padding: 24px 16px;
  background: rgba(26,127,55,.06);
  border: 2px solid rgba(26,127,55,.25);
  border-radius: var(--radius);
}
.form-success .success-icon { font-size: 40px; display: block; margin-bottom: 8px; }
.form-success h3 { margin: 0 0 6px; font-size: 18px; font-family: var(--font-head); color: var(--green); }
.form-success p { margin: 0; font-size: 14px; color: var(--ink-soft); }

.form-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ===== Footer ===== */
.site-footer {
  padding: 26px 18px calc(90px + var(--safe-bottom));
  text-align: center;
  background: var(--navy);
  color: rgba(255,255,255,.8);
}
.site-footer img { height: 52px; width: auto; margin: 0 auto 10px; opacity: .9; }
.site-footer p { margin: 4px 0; font-size: 12px; }
.footer-disclaimer { font-size: 11px; opacity: .65; margin-top: 10px; }

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--maxw);
  padding: 10px 16px calc(10px + var(--safe-bottom));
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  z-index: 60;
}
.sticky-btn { width: 100%; }
.sticky-cta.hidden { display: none; }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel-track { scroll-behavior: auto; }
  .btn, .variant-card { transition: none; }
}
