/*
 * ============================================================
 *  DAYTON WEIGHT LOSS SECRET — THEME STYLES
 *  Paste this at the bottom of your Skeleton style.css
 *  Appearance → Theme File Editor → style.css
 *
 *  Once added here, every page gets these styles automatically.
 *  Individual pages only need pure HTML — no <style> blocks.
 * ============================================================
 */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════ */
:root {
  --teal:       #004542;
  --teal-mid:   #006560;
  --teal-dk:    #002e2b;
  --teal-light: #00706a;
  --aqua:       #24beca;
  --aqua-lt:    #e6f8fb;
  --aqua-mid:   rgba(36,190,202,.18);
  --charcoal:   #333333;
  --slate:      #56666f;
  --slate-lt:   #8a9aaa;
  --white:      #ffffff;
  --cream:      #f7fafa;
  --offwhite:   #eef4f4;
  --border:     #d5e8e6;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --radius:     6px;
  --shadow:     0 2px 20px rgba(0,69,66,.07);
  --shadow-md:  0 4px 32px rgba(0,69,66,.11);
  --shadow-lg:  0 10px 52px rgba(0,69,66,.16);
}

/* ══════════════════════════════════════════════
   RESET + BASE
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0 !important;
  padding: 0 !important;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
strong { font-weight: 600; }

/* ══════════════════════════════════════════════
   WORDPRESS / SKELETON THEME OVERRIDES
   Remove all theme spacing and blue hover links
══════════════════════════════════════════════ */
body, .site, #page, .wrapper,
.site-content, #content, #primary, #main {
  margin: 0 !important;
  padding: 0 !important;
}
.entry, .post, .hentry, article,
.entry-content, .post-content, .page-content,
.entry-header, .entry-footer {
  margin: 0 !important;
  padding: 0 !important;
}
#colophon, .site-footer, footer.site-footer {
  display: none !important;
}
html.wp-toolbar { padding-top: 0 !important; }

/* Kill browser-blue hover on all links */
a, a:link, a:visited { color: inherit; text-decoration: none; }
a:hover, a:focus { text-decoration: none; }

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.container     { max-width: 1160px; margin: 0 auto; padding: 0 clamp(20px, 3.5vw, 40px); }
.section-pad   { padding: 100px 0; }
.section-pad-sm{ padding: 64px 0; }
.text-center   { text-align: center; }
.section-divider { height: 1px; background: var(--border); }

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 16px; display: block;
}
.h2 { font-family: var(--serif); font-size: clamp(26px,3vw,40px); font-weight: 400; line-height: 1.22; color: var(--teal); }
.h3 { font-family: var(--serif); font-size: clamp(18px,2vw,26px); font-weight: 600; color: var(--teal); line-height: 1.3; }
.body-lg { font-size: 17px; color: var(--slate); line-height: 1.75; }
.body    { font-size: 15px; color: var(--slate); line-height: 1.72; }
.body-sm { font-size: 13px; color: var(--slate-lt); line-height: 1.65; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 600;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: all .22s ease; border: none; text-align: center;
  text-decoration: none !important;
}
.btn-teal    { background: var(--teal); color: #fff !important; padding: 18px 42px; }
.btn-teal:hover  { background: var(--teal-mid); color: #fff !important; transform: translateY(-1px); box-shadow: 0 7px 28px rgba(0,69,66,.3); }
.btn-teal-lg { background: var(--teal); color: #fff !important; padding: 22px 52px; font-size: 14px; }
.btn-teal-lg:hover { background: var(--teal-mid); color: #fff !important; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,69,66,.3); }
.btn-aqua    { background: var(--aqua); color: var(--teal) !important; padding: 20px 48px; font-size: 14px; font-weight: 700; }
.btn-aqua:hover  { background: #1fb4bf; color: var(--teal) !important; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(36,190,202,.38); }
.btn-aqua-lg { background: var(--aqua); color: var(--teal) !important; padding: 22px 56px; font-size: 15px; font-weight: 700; }
.btn-aqua-lg:hover { background: #1fb4bf; color: var(--teal) !important; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(36,190,202,.42); }
.btn-outline { background: transparent; color: var(--teal) !important; padding: 16px 36px; border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff !important; }
.btn-white   { background: #fff; color: var(--teal) !important; padding: 20px 52px; font-size: 14px; font-weight: 700; }
.btn-white:hover { background: var(--aqua-lt); color: var(--teal) !important; transform: translateY(-1px); }
.btn-full    { width: 100%; display: block; padding: 20px; font-size: 14px; }

/* ══════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR
══════════════════════════════════════════════ */
.top-bar { background: var(--teal); padding: 11px 0; text-align: center; }
.top-bar span { font-size: 12px; color: rgba(255,255,255,.72); letter-spacing: .04em; }
.top-bar a { color: var(--aqua) !important; font-weight: 600; transition: opacity .15s; }
.top-bar a:hover { opacity: .8; }

/* ══════════════════════════════════════════════
   STICKY NAVIGATION
══════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 300;
  background: rgba(247,250,250,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,69,66,.1); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; min-height: 76px;
  max-width: 1160px; margin: 0 auto;
}
.nav-logo     { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; display: block; }
.nav-links    { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links li { display: flex; align-items: center; }
.nav-links a  { font-size: 12.5px; font-weight: 500; color: var(--slate) !important; letter-spacing: .02em; transition: color .15s; white-space: nowrap; line-height: 1; padding: 0; margin: 0; text-decoration: none !important; }
.nav-links a:hover, .nav-links a:focus, .nav-links a.active { color: var(--teal) !important; }
.nav-cta  { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone{ font-size: 12px; font-weight: 600; color: var(--teal); letter-spacing: .02em; }

/* ══════════════════════════════════════════════
   MOBILE HAMBURGER MENU
══════════════════════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; padding: 8px; border-radius: var(--radius);
  transition: background .18s; z-index: 400; flex-shrink: 0;
}
.hamburger:hover { background: var(--aqua-lt); }
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--teal);
  border-radius: 2px; transition: transform .28s ease, opacity .2s ease, width .2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.mobile-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,29,26,.55); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .28s ease;
}
.mobile-menu-drawer {
  position: absolute; top: 0; right: 0;
  width: min(340px, 88vw); height: 100%;
  background: var(--white); box-shadow: -8px 0 48px rgba(0,69,66,.18);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { pointer-events: all; }
.mobile-menu.open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu.open .mobile-menu-drawer   { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mobile-menu-header img { height: 40px; width: auto; }
.mobile-menu-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--teal); transition: background .18s;
}
.mobile-menu-close:hover { background: var(--aqua-lt); }
.mobile-nav-links { list-style: none; padding: 16px 0; flex: 1; }
.mobile-nav-links li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; font-family: var(--serif); font-size: 20px;
  font-weight: 400; color: var(--teal) !important;
  border-bottom: 1px solid var(--border); transition: background .15s;
}
.mobile-nav-links li a::after { content: '→'; font-size: 16px; color: var(--aqua); transition: transform .18s; }
.mobile-nav-links li a:hover { background: var(--aqua-lt); }
.mobile-nav-links li a:hover::after { transform: translateX(4px); }
.mobile-menu-footer { padding: 24px 28px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.mobile-menu-footer .btn-aqua-lg { display: block; text-align: center; padding: 18px; font-size: 13px; }
.mobile-menu-phone { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--teal); }
.mobile-menu-phone::before { content: '📞'; font-size: 14px; }

/* ══════════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
══════════════════════════════════════════════ */
.page-hero {
  background: var(--teal); padding: 80px 0 72px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(36,190,202,.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(36,190,202,.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 20px; }
.page-hero .eyebrow { color: var(--aqua); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(36px,4.5vw,58px); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.page-hero h1 em { font-style: italic; color: var(--aqua); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.72; max-width: 540px; margin: 0 auto; }

/* ══════════════════════════════════════════════
   HOMEPAGE HERO
══════════════════════════════════════════════ */
#hero {
  position: relative; overflow: hidden;
  min-height: 680px; background: var(--cream);
  display: flex; align-items: center;
}
.hero-photo-pane { position: absolute; top: 0; right: 0; width: 54%; height: 100%; z-index: 1; }
.hero-photo-pane img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.hero-photo-pane::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right, var(--cream) 0%, rgba(247,250,250,.92) 18%, rgba(247,250,250,.55) 38%, rgba(247,250,250,.15) 54%, transparent 68%);
}
.hero-photo-pane::before {
  content: ''; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,69,66,.08) 100%);
}
.hero-content-pane { position: relative; z-index: 4; width: 100%; padding: 96px 0 88px; }
.hero-text { max-width: 560px; }
.hero-eyebrow-row { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--aqua); margin-bottom: 24px; }
.hero-eyebrow-row::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--aqua); }
.hero-headline { font-family: var(--serif); font-size: clamp(44px,5.2vw,72px); font-weight: 300; line-height: 1.05; color: var(--teal); margin-bottom: 10px; letter-spacing: -.01em; }
.hero-headline em { font-style: italic; display: block; }
.hero-sub { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--aqua); margin-bottom: 20px; font-style: italic; }
.hero-body { font-size: 16px; color: var(--slate); line-height: 1.77; margin-bottom: 40px; }
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-micros  { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 18px; }
.hero-micro   { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--slate-lt); }
.hero-micro::before { content: '✓'; color: var(--aqua); font-weight: 700; font-size: 13px; }

/* ══════════════════════════════════════════════
   TRUST BADGES BAR
══════════════════════════════════════════════ */
#trust-badges { background: var(--teal); padding: 0; }
.badges-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.1); }
.badge-item { display: flex; align-items: center; gap: 14px; padding: 28px 24px; background: var(--teal); }
.badge-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: rgba(36,190,202,.18); border: 1px solid rgba(36,190,202,.3); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.badge-text strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 600; color: #fff; line-height: 1.2; }
.badge-text span { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }

/* ══════════════════════════════════════════════
   DJ TRUST BRIDGE
══════════════════════════════════════════════ */
#dj-bridge { background: var(--cream); padding: 100px 0; border-bottom: 1px solid var(--border); }
.bridge-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 60px; display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: center; box-shadow: var(--shadow-lg); }
.bridge-video-wrap { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.bridge-video-wrap iframe { width: 100%; aspect-ratio: 9/16; border: none; display: block; }
.bridge-video-meta { margin-top: 14px; display: flex; align-items: center; gap: 12px; }
.bridge-station-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--aqua-lt); color: var(--teal); border: 1px solid rgba(36,190,202,.3); border-radius: 4px; padding: 7px 12px; font-size: 11px; font-weight: 700; letter-spacing: .05em; flex-shrink: 0; }
.bridge-dj-name { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--teal); }
.bridge-dj-title { font-size: 12px; color: var(--slate-lt); letter-spacing: .05em; }
.bridge-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--aqua); margin-bottom: 16px; }
.bridge-eyebrow::before { content: '📻'; font-size: 13px; }
.bridge-quote { font-family: var(--serif); font-size: clamp(20px,2.3vw,27px); font-style: italic; font-weight: 300; color: var(--teal); line-height: 1.52; margin-bottom: 28px; padding-left: 34px; position: relative; }
.bridge-quote::before { content: '\201C'; position: absolute; left: 0; top: -10px; font-size: 80px; color: var(--aqua); font-family: var(--serif); line-height: 1; opacity: .35; }
.stations-strip { background: var(--aqua-lt); border: 1px solid rgba(36,190,202,.22); border-radius: 8px; padding: 14px 20px; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.stations-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); flex-shrink: 0; white-space: nowrap; }
.stations-strip img { height: 22px; width: auto; opacity: .72; }
.bridge-body { font-size: 15px; color: var(--slate); line-height: 1.72; margin-bottom: 28px; }

/* ══════════════════════════════════════════════
   HOW IT WORKS (homepage summary cards)
══════════════════════════════════════════════ */
#how-it-works { background: var(--white); padding: 100px 0; }
.hiw-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.hiw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 52px; }
.phase-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s; }
.phase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.phase-header { padding: 32px 36px 24px; display: flex; align-items: flex-start; gap: 18px; border-bottom: 1px solid var(--border); }
.phase-number { font-family: var(--serif); font-size: 68px; font-weight: 300; line-height: 1; flex-shrink: 0; }
.phase-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.phase-title { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.2; }
.phase-sub { font-size: 13px; font-style: italic; margin-top: 4px; }
.phase-body { padding: 28px 36px; background: var(--white); }
.phase-body p { font-size: 15px; color: var(--slate); line-height: 1.72; }
.phase-stat { margin-top: 20px; border-radius: 5px; padding: 14px 18px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.phase-stat::before { content: '→'; font-size: 16px; }
.phase-card.p1 .phase-header { background: var(--aqua-lt); }
.phase-card.p1 .phase-number { color: var(--aqua); opacity: .5; }
.phase-card.p1 .phase-label  { color: var(--aqua); }
.phase-card.p1 .phase-title  { color: var(--teal); }
.phase-card.p1 .phase-sub    { color: var(--slate-lt); }
.phase-card.p1 .phase-stat   { background: var(--aqua-lt); color: var(--teal); }
.phase-card.p1 .phase-stat::before { color: var(--aqua); }
.phase-card.p2 .phase-header { background: var(--teal); }
.phase-card.p2 .phase-number { color: rgba(255,255,255,.15); opacity: 1; }
.phase-card.p2 .phase-label  { color: var(--aqua); }
.phase-card.p2 .phase-title  { color: #fff; }
.phase-card.p2 .phase-sub    { color: rgba(255,255,255,.5); }
.phase-card.p2 .phase-stat   { background: rgba(0,101,96,.08); color: var(--aqua); }

/* ══════════════════════════════════════════════
   COMPARISON CHART
══════════════════════════════════════════════ */
#comparison { background: var(--cream); padding: 100px 0; }
.comparison-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.compare-wrap { overflow-x: auto; border-radius: 12px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare-table thead tr { background: var(--teal); }
.compare-table thead th { padding: 24px 28px; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); border-right: 1px solid rgba(255,255,255,.08); }
.compare-table thead th.col-dwl { color: #fff; background: var(--teal-mid); }
.compare-table thead th.col-dwl::before { content: '★ RECOMMENDED'; display: block; font-size: 9px; color: var(--aqua); margin-bottom: 4px; letter-spacing: .14em; }
.compare-table thead th:first-child { background: transparent; width: 21%; }
.compare-table tbody tr:nth-child(odd)  { background: var(--white); }
.compare-table tbody tr:nth-child(even) { background: var(--cream); }
.compare-table tbody td { padding: 22px 28px; border-right: 1px solid var(--border); font-size: 14px; color: var(--slate); line-height: 1.58; vertical-align: top; }
.compare-table tbody td:first-child { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); background: var(--aqua-lt); border-right: 1px solid var(--border); vertical-align: middle; }
.compare-table tbody td.col-dwl { color: var(--teal); font-weight: 500; background: rgba(36,190,202,.07); border-right: 2px solid rgba(36,190,202,.25); border-left: 2px solid rgba(36,190,202,.25); }
.neg { color: #b03030; }
.pos { color: var(--teal); font-weight: 600; }
.compare-mobile { display: none; }
.cmp-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.cmp-card.featured { border: 2px solid var(--aqua); }
.cmp-card-head { padding: 20px 24px; background: var(--teal); color: #fff; }
.cmp-card.featured .cmp-card-head { background: var(--teal-mid); }
.cmp-badge { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua); margin-bottom: 4px; display: block; }
.cmp-card-head h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: #fff; }
.cmp-card-head p  { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 3px; }
.cmp-row { display: flex; align-items: flex-start; padding: 14px 24px; border-bottom: 1px solid var(--border); gap: 12px; }
.cmp-row:last-child { border-bottom: none; }
.cmp-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--aqua); min-width: 90px; flex-shrink: 0; padding-top: 2px; }
.cmp-val { font-size: 14px; color: var(--slate); line-height: 1.55; }
.cmp-val.pos { color: var(--teal); font-weight: 600; }
.cmp-val.neg { color: #b03030; }

/* ══════════════════════════════════════════════
   SCIENCE OF SUSTAINABILITY
══════════════════════════════════════════════ */
#science { background: var(--white); padding: 100px 0; }
.science-header { text-align: center; max-width: 620px; margin: 0 auto 72px; }
.pillars-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.pillar { background: var(--white); padding: 52px 48px; transition: background .2s; }
.pillar:hover { background: var(--aqua-lt); }
.pillar-num { font-family: var(--serif); font-size: 13px; font-weight: 600; color: var(--aqua); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.pillar-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.pillar-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--teal); line-height: 1.3; margin-bottom: 14px; }
.pillar p { font-size: 14px; color: var(--slate); line-height: 1.72; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
#testimonials { background: var(--teal); padding: 100px 0; }
.testi-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.testi-header .eyebrow { color: var(--aqua); }
.testi-header .h2 { color: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 52px; }
.testi-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; overflow: hidden; transition: transform .2s, background .2s; }
.testi-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.12); }
.testi-photo { width: 100%; aspect-ratio: 3/2; overflow: hidden; position: relative; }
.testi-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform .35s; }
.testi-card:hover .testi-photo img { transform: scale(1.04); }
.ba-strip { position: absolute; top: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr; pointer-events: none; }
.ba-strip span { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px; text-align: center; backdrop-filter: blur(2px); }
.ba-strip .bef { background: rgba(0,0,0,.38); color: rgba(255,255,255,.8); }
.ba-strip .aft { background: rgba(36,190,202,.75); color: var(--teal); }
.testi-body { padding: 20px 22px; }
.testi-result { font-family: var(--serif); font-size: 21px; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.testi-story { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.56; margin-bottom: 12px; }
.testi-attr  { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--aqua); }

/* ══════════════════════════════════════════════
   VIDEO TESTIMONIALS
══════════════════════════════════════════════ */
.video-testi-section { margin-bottom: 52px; }
.video-testi-eyebrow { text-align: center; margin-bottom: 32px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; gap: 10px; }
.video-testi-eyebrow::before,
.video-testi-eyebrow::after { content: ''; flex: 0 0 40px; height: 1px; background: rgba(255,255,255,.15); }
.video-testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vt-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.22); transition: transform .25s, box-shadow .25s; }
.vt-card:hover { transform: translateY(-6px); box-shadow: 0 20px 64px rgba(0,0,0,.3); }
.vt-preview { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--teal-dk); cursor: pointer; }
.vt-preview iframe { position: absolute; inset: -2px; width: calc(100% + 4px); height: calc(100% + 4px); border: none; pointer-events: none; }
.vt-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(0,69,66,.1) 0%, rgba(0,69,66,.5) 100%); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.vt-card:hover .vt-overlay { background: linear-gradient(to bottom, rgba(0,69,66,.05) 0%, rgba(0,69,66,.38) 100%); }
.vt-play-btn { width: 70px; height: 70px; border-radius: 50%; background: var(--aqua); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 0 rgba(36,190,202,.5); animation: pulse-play 2.4s ease-in-out infinite; transition: transform .2s, background .2s; flex-shrink: 0; }
.vt-play-btn:hover { transform: scale(1.1); background: #1fb4bf; animation: none; }
.vt-play-btn svg { width: 26px; height: 26px; fill: var(--teal); margin-left: 4px; }
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 rgba(36,190,202,.5); }
  50%       { box-shadow: 0 0 0 18px rgba(36,190,202,0); }
}
.vt-info { padding: 20px 24px; background: var(--white); display: flex; align-items: center; justify-content: space-between; }
.vt-name { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--teal); margin-bottom: 4px; }
.vt-result { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--aqua); }
.vt-watch-btn { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal) !important; border: 1.5px solid var(--aqua); border-radius: 4px; padding: 8px 14px; background: transparent; cursor: pointer; transition: background .18s, color .18s; white-space: nowrap; flex-shrink: 0; }
.vt-watch-btn:hover { background: var(--aqua); color: var(--teal) !important; }
.vt-watch-btn svg { width: 12px; height: 12px; fill: currentColor; }

/* ══════════════════════════════════════════════
   VIDEO MODAL
══════════════════════════════════════════════ */
.video-modal { position: fixed; inset: 0; z-index: 9000; display: none; align-items: center; justify-content: center; }
.video-modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,29,26,.88); backdrop-filter: blur(6px); cursor: pointer; }
.modal-inner { position: relative; z-index: 2; width: min(90vw,900px); background: var(--teal-dk); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.6); }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15); border: none; cursor: pointer; color: #fff; font-size: 17px; font-weight: 600; display: flex; align-items: center; justify-content: center; transition: background .18s; }
.modal-close:hover { background: rgba(255,255,255,.28); }
.modal-video { position: relative; width: 100%; aspect-ratio: 16/9; }
.modal-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════════
   HOW TO GET STARTED
══════════════════════════════════════════════ */
#get-started { background: var(--cream); padding: 100px 0; }
.started-header { text-align: center; max-width: 640px; margin: 0 auto 80px; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 36px; left: 12%; width: 76%; height: 1px; background: linear-gradient(to right, var(--border), var(--aqua) 50%, var(--border)); }
.step { text-align: center; padding: 0 20px 36px; position: relative; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 2px solid var(--aqua); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--teal); position: relative; z-index: 2; box-shadow: var(--shadow); }
.step-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--teal); margin-bottom: 12px; line-height: 1.25; }
.step p { font-size: 13px; color: var(--slate); line-height: 1.68; }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
#faq { background: var(--white); padding: 100px 0; }
.faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left .h2 { margin-bottom: 18px; }
.faq-left .body { max-width: 260px; margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: box-shadow .15s; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 26px; cursor: pointer; background: var(--white); font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--teal); user-select: none; gap: 16px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--aqua-lt); color: var(--aqua); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: transform .22s, background .2s; font-weight: 300; line-height: 1; }
.faq-item.open .faq-icon { background: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 26px 22px; font-size: 14px; color: var(--slate); line-height: 1.78; border-top: 1px solid var(--border); background: var(--cream); }
.faq-a p + p { margin-top: 10px; }
.faq-item.open .faq-a { display: block; }
/* Two-column FAQ variant (How It Works page) */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hiw-faq { background: var(--white); padding: 100px 0; }
.hiw-faq-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }

/* ══════════════════════════════════════════════
   FINAL CTA (homepage)
══════════════════════════════════════════════ */
#final-cta { background: var(--teal); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
#final-cta::before { content: ''; position: absolute; bottom: -220px; left: 50%; transform: translateX(-50%); width: 900px; height: 450px; background: radial-gradient(circle, rgba(36,190,202,.14) 0%, transparent 70%); pointer-events: none; }
#final-cta::after  { content: ''; position: absolute; top: -180px; right: -180px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(36,190,202,.08) 0%, transparent 65%); pointer-events: none; }
.cta-eyebrow  { color: var(--aqua); }
.cta-headline { font-family: var(--serif); font-size: clamp(34px,4vw,58px); font-weight: 300; color: #fff; line-height: 1.12; margin-bottom: 22px; }
.cta-headline em { font-style: italic; color: var(--aqua); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.62); max-width: 500px; margin: 0 auto 52px; line-height: 1.68; }

/* CTA Band (inner pages) */
.cta-band { background: var(--teal); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(circle, rgba(36,190,202,.14) 0%, transparent 70%); pointer-events: none; }
.cta-band .eyebrow { color: var(--aqua); }
.cta-band h2 { font-family: var(--serif); font-size: clamp(32px,4vw,52px); font-weight: 300; color: #fff; line-height: 1.12; margin-bottom: 20px; }
.cta-band h2 em { font-style: italic; color: var(--aqua); }
.cta-band > div > p { font-size: 16px; color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto 44px; line-height: 1.68; }

/* Shared form styles */
.cta-form { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; padding: 44px; max-width: 520px; margin: 0 auto 44px; }
.cta-form-title { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 26px; display: block; }
.form-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.form-fields input { padding: 17px 20px; border-radius: 6px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); color: #fff; font-size: 15px; font-family: var(--sans); outline: none; width: 100%; transition: border-color .2s, background .2s; }
.form-fields input::placeholder { color: rgba(255,255,255,.38); }
.form-fields input:focus { border-color: var(--aqua); background: rgba(255,255,255,.14); }
.form-privacy { font-size: 11px; color: rgba(255,255,255,.28); text-align: center; margin-top: 14px; }
.cta-trust-row { display: flex; align-items: center; justify-content: center; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.cta-trust-item { font-size: 12px; color: rgba(255,255,255,.48); display: flex; align-items: center; gap: 7px; }
.cta-trust-item::before { content: '✓'; color: var(--aqua); font-weight: 700; font-size: 14px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: var(--teal-dk); padding: 60px 0 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 32px; }
.footer-brand img { height: 54px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; max-width: 290px; }
.footer-phone { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--aqua) !important; letter-spacing: .03em; display: block; }
.footer-address { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
.footer-address a { font-size: 13px; color: rgba(255,255,255,.4) !important; transition: color .15s; }
.footer-address a:hover { color: var(--aqua) !important; }
.footer-address span { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,.5) !important; transition: color .15s; }
.footer-col li a:hover { color: rgba(255,255,255,.9) !important; }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.18); line-height: 1.65; max-width: 940px; margin: 24px auto 0; text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); }

/* ══════════════════════════════════════════════
   HOW IT WORKS PAGE — TIMELINE
══════════════════════════════════════════════ */
.timeline-section { background: var(--white); padding: 100px 0; }
.timeline-intro { text-align: center; max-width: 680px; margin: 0 auto 80px; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--aqua), var(--teal)); transform: translateX(-50%); }
.tl-item { display: grid; grid-template-columns: 1fr 80px 1fr; margin-bottom: 60px; align-items: start; }
.tl-item:last-child { margin-bottom: 0; }
.tl-item.left  .tl-content { grid-column: 1; text-align: right; padding-right: 48px; }
.tl-item.left  .tl-dot     { grid-column: 2; }
.tl-item.left  .tl-empty   { grid-column: 3; }
.tl-item.right .tl-empty   { grid-column: 1; }
.tl-item.right .tl-dot     { grid-column: 2; }
.tl-item.right .tl-content { grid-column: 3; text-align: left; padding-left: 48px; }
.tl-dot { display: flex; align-items: flex-start; justify-content: center; padding-top: 6px; }
.tl-dot-inner { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 3px solid var(--aqua); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--teal); box-shadow: 0 0 0 6px var(--cream); flex-shrink: 0; position: relative; z-index: 2; }
.tl-dot-inner.phase-dot { width: 56px; height: 56px; background: var(--teal); border-color: var(--teal); color: #fff; font-size: 22px; box-shadow: 0 0 0 8px var(--cream), 0 4px 20px rgba(0,69,66,.2); }
.tl-week { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--aqua); margin-bottom: 6px; display: block; }
.tl-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--teal); margin-bottom: 10px; line-height: 1.25; }
.tl-body { font-size: 15px; color: var(--slate); line-height: 1.72; }
.tl-callout { margin-top: 14px; padding: 12px 16px; background: var(--aqua-lt); border-left: 3px solid var(--aqua); border-radius: 0 4px 4px 0; font-size: 13px; font-weight: 600; color: var(--teal); }
.tl-item.left .tl-callout { border-right: 3px solid var(--aqua); border-left: none; border-radius: 4px 0 0 4px; text-align: right; }
.phase-banner { background: var(--teal); border-radius: 12px; padding: 40px 48px; margin-bottom: 52px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.phase-banner.p2 { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%); }
.phase-num-big { font-family: var(--serif); font-size: 80px; font-weight: 300; color: rgba(255,255,255,.15); line-height: 1; flex-shrink: 0; }
.phase-banner-label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--aqua); margin-bottom: 6px; display: block; }
.phase-banner-title { font-family: var(--serif); font-size: 32px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.phase-banner-sub { font-size: 15px; color: rgba(255,255,255,.6); }
.phase-banner-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 20px 28px; text-align: center; flex-shrink: 0; }
.phase-banner-stat strong { display: block; font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--aqua); line-height: 1.2; }
.phase-banner-stat span   { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }
.mechanism-section { background: var(--cream); padding: 100px 0; }
.mechanism-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mechanism-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.mech-step { display: flex; gap: 20px; align-items: flex-start; }
.mech-num { width: 36px; height: 36px; border-radius: 50%; background: var(--aqua); color: var(--teal); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; font-weight: 700; flex-shrink: 0; }
.mech-step-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--teal); margin-bottom: 6px; }
.mech-step-body { font-size: 14px; color: var(--slate); line-height: 1.68; }
.mechanism-visual { background: var(--teal); border-radius: 16px; padding: 48px 40px; position: relative; overflow: hidden; }
.mechanism-visual::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(36,190,202,.2) 0%, transparent 65%); }
.mv-label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--aqua); margin-bottom: 24px; display: block; }
.mv-stat-list { display: flex; flex-direction: column; gap: 20px; }
.mv-stat { display: flex; align-items: center; gap: 16px; }
.mv-stat-val { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--aqua); line-height: 1; min-width: 70px; }
.mv-stat-label { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.5; }
.mv-divider { height: 1px; background: rgba(255,255,255,.1); margin: 4px 0; }
.not-section { background: var(--teal); padding: 100px 0; }
.not-header { text-align: center; max-width: 580px; margin: 0 auto 64px; }
.not-header h2 { color: #fff; margin-bottom: 16px; }
.not-header p  { color: rgba(255,255,255,.6); font-size: 16px; }
.not-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.08); border-radius: 12px; overflow: hidden; }
.not-item { background: rgba(255,255,255,.04); padding: 40px 36px; transition: background .2s; }
.not-item:hover { background: rgba(255,255,255,.09); }
.not-icon  { font-size: 32px; margin-bottom: 16px; display: block; }
.not-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.not-body  { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.68; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .container   { padding: 0 clamp(20px, 4vw, 36px); }
  .section-pad { padding: 68px 0; }
  /* Hero */
  #hero { flex-direction: column; min-height: unset; align-items: flex-start; }
  .hero-content-pane { padding: 56px 0 48px; width: 100%; }
  .hero-photo-pane { position: relative; width: 100%; height: 300px; order: -1; }
  .hero-photo-pane::after  { background: linear-gradient(to bottom, transparent 40%, var(--cream) 100%); }
  .hero-photo-pane::before { display: none; }
  /* Grids */
  .hiw-grid          { grid-template-columns: 1fr; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .testi-grid        { grid-template-columns: 1fr 1fr; }
  .video-testi-grid  { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: 1fr 1fr; }
  .steps-grid::before{ display: none; }
  .badges-grid       { grid-template-columns: 1fr 1fr; }
  .bridge-card       { grid-template-columns: 1fr; gap: 36px; padding: 40px 28px; }
  .bridge-video-wrap iframe { max-height: 420px; }
  .faq-wrap          { grid-template-columns: 1fr; gap: 44px; }
  .faq-left          { position: static; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  /* Nav */
  .nav-links  { display: none !important; }
  .nav-cta    { display: none !important; }
  .hamburger  { display: flex !important; }
  .nav-inner  { padding: 14px 20px; }
  /* Comparison */
  .compare-desktop { display: none !important; }
  .compare-mobile  { display: block !important; }
  /* How It Works timeline */
  .timeline::before { left: 28px; }
  .tl-item { grid-template-columns: 56px 1fr; }
  .tl-item.left .tl-content,
  .tl-item.right .tl-content { grid-column: 2; text-align: left; padding: 0 0 0 24px; }
  .tl-item.left .tl-dot,
  .tl-item.right .tl-dot     { grid-column: 1; }
  .tl-item.left .tl-empty,
  .tl-item.right .tl-empty   { display: none; }
  .tl-item.left .tl-callout  { border-left: 3px solid var(--aqua); border-right: none; border-radius: 0 4px 4px 0; text-align: left; }
  .phase-banner { grid-template-columns: 1fr; gap: 20px; padding: 32px 28px; }
  .phase-num-big { display: none; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .not-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 52px; }
}
@media (max-width: 600px) {
  .testi-grid   { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .badges-grid  { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr; }
  .cta-form     { padding: 28px 20px; }
  .cta-trust-row{ gap: 14px; flex-direction: column; align-items: flex-start; max-width: 240px; margin: 28px auto 0; }
  .hero-headline{ font-size: 40px; }
  .hero-text    { max-width: 100%; }
  .modal-inner  { width: 96vw; }
}
