/* ═══════════════════════════════════════════════
   SNORPLE HISTORIC LAYOUT — CSS
   Clean white product-first design
═══════════════════════════════════════════════ */

/* ── Variables ──────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #f7f7f5;
  --light-gray:  #f0f0ee;
  --border:      #e0dedd;
  --text:        #1a1a1a;
  --text-muted:  #555;
  --green:       #2a8c4a;
  --blue:        #1a5fab;
  --gold:        #c9a227;
  --dark-btn:    #2d2d2d;
  --teal:        #1a7a6e;
  --salmon:      #d4704e;
  --media-bg:    #4d5f6e;
  --trust-bg:    #dce8d8;
  --trust-text:  #3a6a4a;
  --red-accent:  #cc2200;
  --radius:      8px;
  --max-width:   1100px;
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ────────────────────────────── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.body-copy { color: var(--text-muted); margin-bottom: 14px; font-size: 15.5px; }


/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo-img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  transition: color .15s;
}
.nav-links li:last-child .nav-link { border-right: none; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cart { position: relative; display: flex; }
.cart-badge {
  position: absolute;
  top: -5px; right: -7px;
  background: var(--blue);
  color: white;
  font-size: 10px; font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-login:hover { color: var(--text); }
.mobile-nav-btn {
  display: none;
  background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--text);
}
.mobile-nav-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-nav-menu.open { display: flex; }
.mobile-nav-menu a {
  padding: 12px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--white);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left */
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-headline {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1px;
}
.btn-shop {
  display: inline-flex;
  align-items: center;
  background: var(--salmon);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  align-self: flex-start;
  transition: background .15s, transform .1s;
  border: 2px solid transparent;
}
.btn-shop:hover { background: #bf5e3e; transform: translateY(-1px); }
.gauge-wrap { width: 100%; max-width: 320px; padding-top: 20px; overflow: visible; }
.gauge-img  { width: 100%; height: auto; display: block; }

/* Right */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.btn-guaranteed {
  display: inline-block;
  background: #2d2d2d;
  background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 40px;
  letter-spacing: 0.3px;
  transition: opacity .15s;
}
.btn-guaranteed:hover { opacity: .88; }
.jaw-wrap { width: 100%; max-width: 440px; }
.jaw-img  { width: 100%; height: auto; display: block; border-radius: 8px; }
.hero-sub-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}


/* ═══════════════════════════════════════════
   MEDIA BAR
═══════════════════════════════════════════ */
.media-bar {
  background: var(--media-bg);
  padding: 24px 32px;
}
.media-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}
.media-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Wix logos are on transparent/light bg — invert to white for the dark bar */
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity .15s;
}
.media-logo-img:hover { opacity: 1; }


/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features-section {
  padding: 72px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.section-heading-plain {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 18px;
}
.feat-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #1a2d5a;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-label { font-size: 17px; font-weight: 500; color: var(--text); }

.device-col { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.device-diagram-wrap { width: 100%; max-width: 460px; }
.device-gif { width: 100%; height: auto; display: block; }


/* ═══════════════════════════════════════════
   CLINICALLY PROVEN
═══════════════════════════════════════════ */
.proven-section {
  padding: 72px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.h2-green {
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}
.h2-blue {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}
.link-blue {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 500;
}
.promise-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.price-from {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.3px;
}

/* Right column */
.proven-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.product-photo {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Guarantee badge image */
.guarantee-badge-img {
  width: 100%;
  max-width: 264px;
  height: auto;
  display: block;
}


/* ═══════════════════════════════════════════
   STARS / SOCIAL PROOF
═══════════════════════════════════════════ */
.stars-section {
  padding: 56px 32px 40px;
  text-align: center;
  background: var(--white);
}
.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.star {
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}
.h2-green-center {
  font-size: 30px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
}


/* ═══════════════════════════════════════════
   PRODUCTS SECTION (3 cards)
═══════════════════════════════════════════ */
.products-section {
  padding: 64px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.products-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
}
.products-sub {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Individual card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product-card-featured {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(42,140,74,0.15);
}
.product-card-featured:hover {
  box-shadow: 0 10px 36px rgba(42,140,74,0.22);
}

/* Badge labels */
.product-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 1;
}
.product-card-badge-alt {
  background: var(--salmon);
}

/* Product image */
.product-img-wrap {
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  aspect-ratio: 1 / 1;
}
.product-card-img {
  width: 100%;
  max-width: 240px;
  height: 100%;
  max-height: 240px;
  object-fit: contain;
  display: block;
}

/* Card body */
.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.product-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}
.product-card-features li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}
.product-card-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.product-card-featured .product-card-price {
  color: var(--green);
}
.btn-order {
  display: block;
  width: 100%;
  background: var(--dark-btn);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0.3px;
  transition: background .15s, transform .1s;
  margin-bottom: 10px;
}
.btn-order:hover { background: #111; transform: translateY(-1px); }
.product-card-featured .btn-order {
  background: var(--green);
}
.product-card-featured .btn-order:hover { background: #1e6e37; }
.product-card-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}


/* ═══════════════════════════════════════════
   SHARED BUTTONS
═══════════════════════════════════════════ */
.btn-dark {
  display: inline-block;
  background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 40px;
  letter-spacing: 0.3px;
  transition: opacity .15s;
}
.btn-dark:hover { opacity: 0.88; }


/* ═══════════════════════════════════════════
   MAD & TSD
═══════════════════════════════════════════ */
.mad-section {
  padding: 72px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.mad-inner {
  max-width: 820px;
  text-align: center;
}
.mad-eyebrow-green {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.mad-headline {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 40px;
}
.mad-body {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.mad-body p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   HELPED THOUSANDS
═══════════════════════════════════════════ */
.helped-section {
  padding: 64px 0;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}
.helped-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.3;
}
.group-photo-wrap {
  display: flex;
  justify-content: center;
}
.group-photo {
  width: 100%;
  max-width: 820px;
  border-radius: var(--radius);
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section {
  padding: 72px 0;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.t-card {
  padding: 40px 32px;
  border-right: 1px solid #d0ccc8;
  text-align: center;
  background: var(--light-gray);
}
.t-card:last-child { border-right: none; }
.t-card-mid { background: #efefeb; }
.t-quote {
  font-size: 64px;
  line-height: 0.8;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: Georgia, serif;
}
.t-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.t-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}


/* ═══════════════════════════════════════════
   TRUST BADGES
═══════════════════════════════════════════ */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--trust-bg);
}
.trust-tile {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(58,106,74,0.2);
  text-align: center;
}
.trust-tile:last-child { border-right: none; }
.trust-icon-svg { width: 48px; height: 48px; }
.trust-tile p {
  font-size: 14px;
  font-weight: 600;
  color: var(--trust-text);
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer-tagline-row {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.footer-copy-col { flex: 1; }
.footer-tagline-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  border-left: 3px solid var(--green);
  padding-left: 20px;
}
.footer-logo-col { flex-shrink: 0; }
.footer-logo { height: 40px; width: auto; }
.footer-links-row {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links-row a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .15s;
}
.footer-links-row a:hover { color: var(--text); }
.footer-legal-row {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 32px 32px;
  border-top: 1px solid var(--border);
}
.footer-legal-row p {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   BASE OVERRIDES (applied at all sizes)
═══════════════════════════════════════════ */

/* Unify testimonial backgrounds so they lift off section bg */
.testimonials-section { background: var(--white); }
.t-card               { background: var(--white); }
.t-card-mid           { background: var(--off-white); }

/* Lock group photo to widescreen crop so tall images don't dominate scroll */
.group-photo {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Guard combo product image against portrait-orientation blowout */
.combo-img {
  max-height: 380px;
  object-fit: contain;
}

/* Unify all purchase CTAs to a single salmon color — remove teal orphan */
.btn-order {
  background: var(--salmon);
}
.btn-order:hover { background: #bf5e3e; }

/* Use gold on feature callout numbers for premium consistency */
.feat-num {
  background: var(--gold);
  color: #1a1a1a;
}


/* Gauge SVG needs overflow visible so negative-Y segments don't clip */
.gauge-wrap {
  padding-top: 20px;
  overflow: visible;
}


/* ═══════════════════════════════════════════
   TABLET — max-width: 900px
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Grid collapse */
  .two-col,
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }

  /* ── Hero ── */
  .hero { padding: 28px 0 32px; }
  .hero-left { align-items: center; text-align: center; }
  .hero-headline { text-align: center; }
  .btn-shop { align-self: center; }
  .gauge-wrap { width: 240px; max-width: calc(100vw - 64px); margin: 0 auto; }

  /* Correct stacking: headline first, visuals below */
  .hero-left  { order: 0; }
  .hero-right { order: 1; }
  .jaw-wrap   { max-width: 280px; }

  /* ── Features ── */
  .features-section .col-left  { order: 1; text-align: center; }
  .features-section .device-col { order: 2; }

  /* ── Clinically Proven ── */
  .proven-right { order: -1; }

  /* ── Products grid ── */
  .products-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; }
  .t-card {
    border-right: none;
    border-bottom: 1px solid #b8b3ae;
    padding: 28px 20px;
  }
  .t-card:last-child { border-bottom: none; }
  .t-card:nth-child(odd)  { background: var(--white); }
  .t-card:nth-child(even) { background: var(--off-white); }

  /* ── Trust badges: 2×2 grid with gap-based gutters ── */
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(58,106,74,0.2);
  }
  .trust-tile {
    border-right: none;
    border-top: none;
  }
  .trust-tile:nth-child(2),
  .trust-tile:nth-child(3),
  .trust-tile:nth-child(4) { border: none; }

  /* ── Media bar ── */
  .media-bar-inner { justify-content: center; gap: 20px; }

  /* ── Footer ── */
  .footer-tagline-row { flex-direction: column; gap: 20px; }
  .footer-logo-col    { order: -1; }
  /* Keep left border — don't swap to top border */
  .footer-tagline-text {
    border-left: 3px solid var(--green);
    padding-left: 16px;
    border-top: none;
    padding-top: 0;
    text-align: left;
  }
}


/* ═══════════════════════════════════════════
   MOBILE — max-width: 640px
═══════════════════════════════════════════ */
@media (max-width: 640px) {

  /* ── Nav ── */
  .nav-links      { display: none; }
  .nav-login      { display: none; }   /* hide login, keep cart */
  .mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    border-radius: 6px;
  }
  .mobile-nav-btn:hover { background: var(--light-gray); }
  .nav-inner    { padding: 0 16px; height: 56px; }
  .nav-logo-img { height: 30px; }
  .cart-badge   { width: 20px; height: 20px; font-size: 11px; top: -6px; right: -8px; }

  /* Mobile menu tap targets */
  .mobile-nav-menu a {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: background .12s;
  }
  .mobile-nav-menu a:hover { background: var(--light-gray); }
  .mobile-nav-menu { padding: 4px 0 12px; }

  /* ── Global padding ── */
  .section-inner,
  .hero-inner,
  .mad-inner,
  .combo-section .section-inner,
  .mad-section .section-inner { padding: 0 20px; }

  /* ── Standardise section vertical rhythm ── */
  .features-section,
  .proven-section,
  .combo-section,
  .mad-section,
  .helped-section,
  .testimonials-section { padding: 48px 0; }
  .stars-section  { padding: 48px 20px 40px; }
  .hero           { padding: 20px 0 28px; }

  /* ── Hero ── */
  .hero-inner { gap: 20px; }
  .hero-left  { gap: 16px; }
  .hero-headline {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.1;
    letter-spacing: -1px;
  }
  .btn-shop {
    align-self: stretch;
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 18px;
    padding: 14px 24px;
  }
  .gauge-wrap {
    width: 260px;
    max-width: calc(100vw - 40px);
    margin: 0 auto;
    order: 1;
  }
  .btn-shop { order: 2; }
  .jaw-wrap { max-width: 320px; }

  /* ── Buttons — all full-width with 52px tap targets ── */
  .btn-guaranteed {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 52px;
    padding: 14px 20px;
    font-size: 17px;
  }
  .btn-dark {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 52px;
    padding: 15px 24px;
    font-size: 17px;
  }
  .btn-order {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 52px;
    padding: 16px 24px;
    font-size: 18px;
  }

  /* ── Media bar: scrollable single row ── */
  .media-bar { padding: 16px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .media-bar-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 28px;
    min-width: max-content;
    padding: 0 20px;
  }
  .media-logo-img { height: 38px; }

  /* ── Features ── */
  .features-section { padding: 40px 0; }
  .features-list li { align-items: flex-start; }
  .feat-num         { width: 34px; height: 34px; font-size: 15px; margin-top: 2px; }
  .device-diagram-wrap { max-width: 320px; }

  /* ── Clinically Proven ── */
  .product-photo  { max-width: 100%; }
  .guarantee-badge-img { max-width: 200px; }
  .promise-block  { margin-top: 24px; padding-top: 20px; }
  .promise-block .price-from { text-align: center; letter-spacing: 0.6px; }

  /* ── Stars section ── */
  .star       { font-size: 42px; }
  .stars-row  { gap: 10px; margin-bottom: 20px; }
  .h2-green-center {
    font-size: 24px;
    line-height: 1.3;
    padding: 0 16px;
  }

  /* ── Products grid ── */
  .products-heading { font-size: 26px; }
  .product-card-title { font-size: 16px; }
  .product-card-price { font-size: 28px; }

  /* ── Testimonials ── */
  .t-quote { font-size: 40px; margin-bottom: 12px; }
  .t-name  { font-size: 17px; margin-bottom: 10px; }
  .t-text  { font-size: 15px; color: #444; }

  /* ── Trust badges ── */
  .trust-tile   { padding: 20px 16px; gap: 8px; }
  .trust-icon-svg { width: 56px; height: 56px; }
  .trust-tile p { font-size: 15px; line-height: 1.35; }

  /* ── MAD & TSD ── */
  .mad-eyebrow-green { font-size: 26px; }
  .mad-headline {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.3;
    letter-spacing: -0.2px;
  }
  .mad-body   { gap: 26px; text-align: left; }
  .mad-body p { font-size: 15px; }
  .mad-inner  { text-align: center; display: block; }

  /* ── Helped Thousands ── */
  .helped-title {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }
  .helped-section { padding: 40px 0; }
  .group-photo    { max-height: 240px; }

  /* ── Typography ── */
  .body-copy  { font-size: 15px; }
  .price-from { font-size: 13px; text-align: center; }

  /* ── Footer ── */
  .footer-logo        { height: 48px; }
  .footer-tagline-text { font-size: 15px; }
  .footer-links-row   { grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px 20px; }
  .footer-links-row a { font-size: 14px; }
  .footer-legal-row p { font-size: 13px; color: #767676; line-height: 1.7; }
  .footer-legal-row   { padding: 16px 20px 32px; }
  .footer-tagline-row { padding: 32px 20px 24px; }
}
