/* ============ TOKENS ============ */
:root {
  --bg-light: #f6f6f3;
  --bg-card: #ffffff;
  --bg-dark-1: #0a1a3a;
  --bg-dark-2: #1a3a7a;
  --text: #0f1530;
  --text-muted: #6b7280;
  --text-on-dark: #e8ecf5;
  --text-on-dark-muted: #a9b4cf;
  --border: #e6e7ea;
  --blue: #3b7cff;
  --blue-soft: #e8efff;
  --green: #22c55e;
  --green-soft: #e7f8ee;
  --orange: #f59e3a;
  --orange-soft: #fdeed7;
  --navy: #1f2a5e;
  --navy-soft: #e1e4f0;
  --purple: #8b5cf6;
  --purple-soft: #ece4ff;
  --sky: #38bdf8;
  --sky-soft: #def4ff;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(15,21,48,0.04), 0 2px 8px rgba(15,21,48,0.04);
  --shadow-md: 0 4px 24px rgba(15,21,48,0.07);
  --container: 1280px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; }
h1, h2, h3, h4, h5, p, a { overflow-wrap: break-word; word-wrap: break-word; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  transition: transform .2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .2s ease, background .2s ease;
}
.btn span { transition: transform .2s ease; }
.btn:hover span { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
}
.btn-dark {
  background: #0f1530;
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 21, 48, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-dark:hover {
  transform: translateY(-2px);
  background: #1c264a;
  box-shadow: 0 10px 24px rgba(15, 21, 48, 0.35);
}

/* ============ HERO SHELL (rounded panel containing header + hero) ============ */
.hero-shell {
  position: relative;
  margin: 18px;
  border-radius: 28px;
  overflow: hidden;
  background: 
    /* Soft sky blue glow in the top-left */
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 80%),
    /* Vibrant deep blue/indigo ambient glow from the bottom-left */
    radial-gradient(circle at 20% 80%, rgba(29, 78, 216, 0.3) 0%, rgba(30, 58, 138, 0.08) 50%, transparent 80%),
    /* Gorgeous glowing teal/sky-blue light leak coming from the bottom-right and right edge */
    radial-gradient(circle at 95% 75%, rgba(56, 189, 248, 0.28) 0%, rgba(14, 165, 233, 0.08) 45%, transparent 85%),
    /* Soft indigo/purple glow in the middle-top */
    radial-gradient(circle at 50% -10%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    /* Deep dark blue base colors */
    linear-gradient(135deg, #020813 0%, #07152e 50%, #030a18 100%);
  box-shadow: 0 30px 80px rgba(2, 6, 16, 0.5);
}

/* ============ HEADER ============ */
.site-header {
  position: relative;
  z-index: 5;
  background: rgba(10, 25, 54, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}
.brand-mark svg { width: 32px; height: 32px; }
.brand-text { font-size: 18px; letter-spacing: -0.01em; font-weight: 700; }
.brand-text-sub {
  font-weight: 400 !important;
  color: #3b7cff !important;
  opacity: 1 !important;
  margin-left: 2px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.primary-nav a {
  font-size: 14px;
  color: #d6dceb;
  font-weight: 500;
  transition: color .15s;
}
.primary-nav a:hover { color: #3b7cff; }
.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  color: #fff;
  padding: 90px 0 110px;
  background: transparent;
}
.hero-bg { display: none; }
.hero-inner { text-align: center; }
.hero h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 44px;
  color: var(--text-on-dark-muted);
  font-size: 16.5px;
  line-height: 1.6;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}

/* Premium Glassmorphic Cards */
.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 22px 26px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.15), 
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Distinct glowing auras inside card backdrops */
.stat-card--pink {
  background: 
    radial-gradient(circle at 10% 10%, rgba(236, 72, 153, 0.08) 0%, rgba(236, 72, 153, 0.02) 40%, transparent 70%),
    rgba(255, 255, 255, 0.02);
}
.stat-card--pink::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 0%, rgba(236, 72, 153, 0.22) 0%, transparent 50%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.stat-card--orange {
  background: 
    radial-gradient(circle at 10% 10%, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.02) 40%, transparent 70%),
    rgba(255, 255, 255, 0.02);
}
.stat-card--orange::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.22) 0%, transparent 50%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.stat-card--blue {
  background: 
    radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 40%, transparent 70%),
    rgba(255, 255, 255, 0.02);
}
.stat-card--blue::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.22) 0%, transparent 50%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.stat-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.stat-icon svg { width: 24px; height: 24px; }

.stat-icon--pink {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(219, 39, 119, 0.35);
}
.stat-icon--orange {
  background: linear-gradient(135deg, #ff9f55 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
}
.stat-icon--blue {
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.stat-num {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  color: #fff;
}
.stat-label {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.hero-footnote {
  margin-top: 48px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ============ SECTIONS ============ */
.section {
  padding: 96px 0;
  position: relative;
}
.section.light { background: var(--bg-light); }
.section.dark {
  color: #fff;
  overflow: hidden;
  margin: 24px 18px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(2, 6, 16, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.dark-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(30, 58, 138, 0.30) 0%, transparent 65%),
    linear-gradient(135deg, #020813 0%, #07152e 50%, #030a18 100%);
  z-index: 0;
}
.section.dark > .container { position: relative; z-index: 1; }

.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-title.centered { text-align: center; }
.section-title.light-text { color: #fff; }
.section-sub {
  color: var(--text-muted);
  max-width: 640px;
  margin: 14px auto 48px;
  font-size: 16px;
  line-height: 1.6;
}
.section-sub.centered { text-align: center; }

/* ============ HOW IT WORKS ============ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.how-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.how-step-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.how-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.how-icon svg { width: 26px; height: 26px; }
.how-icon--blue   { background: var(--blue-soft);   color: var(--blue); }
.how-icon--orange { background: var(--orange-soft); color: var(--orange); }
.how-icon--green  { background: var(--green-soft);  color: var(--green); }
.how-card h3 {
  font-size: 18.5px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.how-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============ TYPES ============ */
#types {
  background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 100%);
}
.types-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.types-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.types-item { 
  border-bottom: 1px solid var(--border); 
  transition: background 0.2s ease;
}
.types-item.open {
  background: rgba(59, 124, 255, 0.015);
}
.types-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  transition: color 0.2s;
}
.types-row:hover {
  color: var(--blue);
}
.types-row .chev {
  font-size: 22px;
  color: var(--text-muted);
  transition: transform .25s ease;
  font-weight: 400;
}
.types-item.open .types-row .chev { transform: rotate(90deg); color: var(--blue); }
.types-body {
  display: none;
  padding: 0 8px 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.types-item.open .types-body { display: block; }
.types-note {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 6px 0 24px;
}

.types-right { display: flex; justify-content: center; padding-bottom: 40px; }
.types-image {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(135deg, #d8e2f5, #f0e7d4);
  box-shadow: var(--shadow-md);
}
.types-image img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 24px;
}
.revenue-card {
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 60%;
  min-width: 240px;
  max-width: 300px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px 26px;
  box-shadow: 0 24px 60px rgba(15,21,48,0.18);
}
.revenue-card-top {
  border-bottom: 1px solid #eef0f3;
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.revenue-label {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.revenue-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.revenue-card-bottom { display: grid; place-items: center; }
.ring {
  position: relative;
  width: 150px;
  height: 150px;
}
.ring svg { width: 100%; height: 100%; }
.ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.ring-label {
  font-size: 12px;
  color: var(--text-muted);
}
.ring-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ============ WHO ============ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.who-left p { color: var(--text-muted); margin-top: 18px; line-height: 1.6; }
.who-left .muted { font-size: 14.5px; }
.who-left .btn { margin-top: 26px; }
.who-right {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 28px;
  box-shadow: var(--shadow-sm);
}
.who-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.who-item:last-child { border-bottom: 0; }
.who-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.who-icon svg { width: 22px; height: 22px; }
.who-icon--blue   { background: var(--blue-soft);   color: var(--blue); }
.who-icon--green  { background: var(--green-soft);  color: var(--green); }
.who-icon--orange { background: var(--orange-soft); color: var(--orange); }
.who-icon--purple { background: var(--purple-soft); color: var(--purple); }
.who-item h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.who-item p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

/* ============ WHY (dark) ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dashboard-wrap {
  position: relative;
}
.dash-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.why-right h2 { margin-bottom: 18px; }
.why-right p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
}
.why-right .btn { margin-top: 14px; }

/* ============ TRUST ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trust-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-icon--blue   { background: var(--blue-soft);   color: var(--blue); }
.trust-icon--green  { background: var(--green-soft);  color: var(--green); }
.trust-icon--orange { background: var(--orange-soft); color: var(--orange); }
.trust-icon--navy   { background: var(--navy-soft);   color: var(--navy); }
.trust-icon--purple { background: var(--purple-soft); color: var(--purple); }
.trust-icon--sky    { background: var(--sky-soft);    color: var(--sky); }
.trust-card h4 { font-size: 16.5px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.trust-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.trust-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 13.5px;
  margin-top: 36px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}

/* ============ TESTIMONIALS ============ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.video-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  padding: 18px 18px 22px;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px rgba(2,6,16,0.18);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-card:hover { transform: translateY(-4px); }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-card .handle {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 22px;
  padding: 8px 18px;
  background: #2a2a2a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
}
.video-card .snippet {
  margin-top: 14px;
  font-size: 15px;
  color: #fff;
  line-height: 1.45;
}

/* ===== Image review screenshots grid ===== */
.image-reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.image-review {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-review:hover {
  transform: translateY(-4px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-card header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card strong { font-size: 14.5px; font-weight: 600; color: var(--text); }
.stars-sm { color: #f5b54a; font-size: 12px; letter-spacing: 1px; }
.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============ START CTA ============ */
.cta-wrap { padding: 40px 0 60px; }
.start-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 88px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 36px rgba(37,99,255,0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.start-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(37,99,255,0.45);
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}
.start-bar .arrow { font-size: 22px; transition: transform .2s ease; }
.start-bar:hover .arrow { transform: translateX(4px); }

/* ============ FAQ ============ */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(255,255,255,0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}
.faq-item[open] {
  background: linear-gradient(180deg, rgba(110,160,255,0.10), rgba(255,255,255,0.04));
  border-color: rgba(110,160,255,0.45);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 30px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  color: #fff;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: inline-grid;
  place-items: center;
  font-size: 0;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), color .25s ease;
  color: #fff;
}
.faq-item summary .chev::before {
  content: '';
  width: 14px; height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 2px;
  transform: rotate(45deg) translate(-2px, -2px);
}
.faq-item[open] summary .chev {
  transform: rotate(180deg);
  color: #6ea0ff;
}
.faq-answer {
  padding: 0 30px 28px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.65;
}
.faq-answer p + p,
.faq-answer p + ul { margin-top: 10px; }
.faq-answer ul { padding-left: 20px; }
.faq-answer li { margin-bottom: 4px; }

/* ============ FOOTER ============ */
.site-footer {
  background: #050a16;
  color: #cdd4e6;
  padding: 70px 0 32px;
  margin: 24px 18px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2,6,16,0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.brand--footer { margin-bottom: 16px; }
.footer-meta {
  font-size: 13.5px;
  color: #93a0c2;
  line-height: 1.75;
}
.footer-col h5 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: #93a0c2;
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: #3b82f6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom small { color: #7e8aaa; font-size: 12.5px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  color: #cdd4e6;
  transition: background .15s, color .15s;
}
.socials a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.socials svg { width: 16px; height: 16px; }

/* Mockup Steel Grey Button */
.btn-steel {
  background: #8e9aaf;
  color: #fff;
  box-shadow: 0 6px 18px rgba(142, 154, 175, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-steel:hover {
  transform: translateY(-2px);
  background: #9ba8bd;
  box-shadow: 0 10px 24px rgba(142, 154, 175, 0.35);
}

/* Centered Footnote Card in Trust Section */
.trust-footnote-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 24px;
  background: #fff;
  max-width: 680px;
  margin: 44px auto 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.trust-footnote-card .trust-footnote {
  margin-top: 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* 10-Review Text Grid (Mockup Specification) */
.reviews-text-grid {
  columns: 3;
  column-gap: 20px;
  margin-top: 40px;
}
.review-text-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin: 0 0 20px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.review-text-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-text-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
}
.review-avatar--brown { background: #8b5a2b; }
.review-avatar--pink { background: #ec4899; }
.review-avatar--green { background: #22c55e; }
.review-avatar--orange { background: #f97316; }
.review-avatar--teal { background: #0d9488; }
.review-avatar--red { background: #ef4444; }
.review-avatar--lightgreen { background: #84cc16; }
.review-avatar--deepgreen { background: #15803d; }

.review-user-info {
  display: flex;
  flex-direction: column;
}
.review-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.flag-icon {
  font-size: 13.5px;
}
.review-meta {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars-green {
  color: #22c55e;
  letter-spacing: 1px;
}
.review-time {
  color: var(--text-muted);
}
.review-body strong {
  display: block;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.review-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============ LEGAL PAGES ============ */
.legal-hero {
  padding: 60px 0 50px;
  text-align: center;
  color: #fff;
}
.legal-hero .eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.legal-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: #fff;
}
.legal-content {
  padding: 72px 0 96px;
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 4px;
}
.legal-intro {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.legal-intro strong { color: var(--text); }
.legal-wrap h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 44px 0 16px;
  color: var(--text);
}
.legal-wrap h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
}
.legal-wrap p,
.legal-wrap li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
}
.legal-wrap p + p { margin-top: 12px; }
.legal-wrap ul,
.legal-wrap ol { padding-left: 22px; margin: 12px 0; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-wrap a:hover { opacity: 0.8; }
.legal-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 0 0 40px;
}
.legal-toc strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 28px;
}
.legal-toc li {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.5;
  break-inside: avoid;
}
.legal-toc a { color: var(--text); text-decoration: none; }
.legal-toc a:hover { color: var(--blue); text-decoration: underline; }
.legal-company-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 24px 0;
}
.legal-company-box dl {
  margin: 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px 18px;
}
.legal-company-box dt {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.legal-company-box dd {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .legal-hero { padding: 44px 0 36px; }
  .legal-content { padding: 56px 0 72px; }
  .legal-toc ol { columns: 1; }
  .legal-company-box dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-company-box dt { margin-top: 12px; }
  .legal-company-box dt:first-child { margin-top: 0; }
}

/* ============ RESPONSIVE ============ */
/* ============================================================
   RESPONSIVE
   Breakpoints: 1199 (small desktop) · 1023 (tablet) · 768 (small tablet) · 640 (mobile) · 480 (small mobile)
   ============================================================ */

/* ---- Small desktop (≤1199) ---- */
@media (max-width: 1199px) {
  .container { padding: 0 28px; }
  .reviews-text-grid { columns: 3; }
  .why-grid { gap: 40px; }
  .types-grid, .who-grid { gap: 40px; }
  .faq-wrap { gap: 50px; }
}

/* ---- Tablet (≤1023) ---- */
@media (max-width: 1023px) {
  .container { padding: 0 24px; }
  .hero { padding: 64px 0 90px; }
  .hero h1 { font-size: clamp(30px, 4.5vw, 44px); }
  .section { padding: 72px 0; }

  /* Show hamburger, hide nav */
  .primary-nav {
    position: absolute;
    top: 100%; left: 12px; right: 12px;
    background: rgba(10,26,58,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 22px;
    gap: 14px;
    display: none;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    z-index: 20;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  }
  body.menu-open .primary-nav { display: flex; }
  .primary-nav a { font-size: 15px; padding: 4px 0; }
  .hamburger { display: block; }
  .header-inner { padding: 22px 24px; }

  /* Hero stats: stack into rows */
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 64px; }
  .stat-card { padding: 22px 20px; }
  .stat-num { font-size: 26px; }

  /* Multi-col grids → 2-col */
  .how-grid,
  .trust-grid,
  .videos-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-text-grid { columns: 2; }

  /* Two-col layouts → stacked */
  .types-grid,
  .who-grid,
  .why-grid,
  .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
  .why-right { order: 2; }
  .why-left  { order: 1; }
  .types-right { justify-content: flex-start; padding-bottom: 60px; }

  /* Footer 4-col → 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  /* Rounded panels — smaller margin */
  .hero-shell,
  .section.dark,
  .site-footer { margin: 14px; border-radius: 24px; }
}

/* ---- Small tablet (≤768) ---- */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: clamp(24px, 5vw, 32px); }

  /* All multi-col grids → single column with comfortable vertical spacing */
  .stat-grid,
  .how-grid,
  .trust-grid,
  .videos-grid,
  .reviews-grid,
  .image-reviews-grid { grid-template-columns: 1fr; gap: 22px; }

  .stat-grid { max-width: 480px; margin-left: auto; margin-right: auto; margin-top: 48px; }
  .stat-card { padding: 22px; }

  /* Videos */
  .video-card { padding: 14px 14px 18px; }
  .video-card .handle { font-size: 13px; padding: 6px 14px; margin-top: 16px; }
  .video-card .snippet { font-size: 14px; margin-top: 10px; }

  /* Reviews masonry → single column with row spacing */
  .reviews-text-grid { columns: 1; column-gap: 0; }
  .review-text-card { margin-bottom: 22px; }

  /* Types image: revenue card scales down */
  .revenue-card { width: 70%; min-width: 200px; padding: 18px 18px 22px; }
  .revenue-amount { font-size: 20px; }
  .ring { width: 120px; height: 120px; }
  .ring-value { font-size: 22px; }

  /* Who section card padding */
  .who-right { padding: 4px 18px; }

  /* FAQ items tighter */
  .faq-item summary { padding: 22px 22px; font-size: 16px; gap: 16px; }
  .faq-answer { padding: 0 22px 22px; font-size: 14.5px; }
  .faq-heading h2 { font-size: clamp(28px, 6vw, 40px); }

  /* CTA START bar */
  .start-bar { height: 72px; font-size: 18px; }

  /* Hero text */
  .hero { padding: 56px 0 80px; }
  .hero h1 { font-size: clamp(28px, 6vw, 40px); margin-bottom: 22px; }
  .hero-sub { font-size: 15px; margin-bottom: 34px; }
  .hero-footnote { margin-top: 32px; }
}

/* ---- Mobile (≤640) ---- */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }

  /* Header — keep logo readable */
  .header-inner { padding: 18px 20px; }
  .brand-text { font-size: 16px; }

  /* Buttons full-width-ish */
  .btn { padding: 13px 22px; font-size: 14.5px; }

  /* Hero */
  .hero { padding: 44px 0 70px; }
  .hero h1 { font-size: clamp(26px, 7vw, 34px); line-height: 1.15; margin-bottom: 18px; }
  .hero-sub { font-size: 14.5px; margin-bottom: 28px; }
  .stat-grid { margin-top: 44px; max-width: none; }

  /* All multi-col grids stay 1-col with row gap */
  .stat-grid,
  .how-grid,
  .trust-grid,
  .videos-grid,
  .reviews-grid,
  .image-reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .reviews-text-grid { columns: 1; column-gap: 0; }
  .review-text-card { margin-bottom: 20px; }

  .how-card, .trust-card { padding: 24px; }

  /* Footer single col */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* Rounded panels — tighter margin on phones */
  .hero-shell,
  .section.dark,
  .site-footer { margin: 10px; border-radius: 20px; }

  /* Types section */
  .types-image { aspect-ratio: 4/5; max-width: 100%; }
  .revenue-card { width: 75%; min-width: 0; left: -12px; bottom: -20px; padding: 16px 16px 20px; }
  .revenue-amount { font-size: 18px; }
  .revenue-label { font-size: 11.5px; }
  .ring { width: 100px; height: 100px; }
  .ring-value { font-size: 20px; }
  .ring-label { font-size: 11px; }
  .types-right { padding-bottom: 40px; }
  .types-row { font-size: 14.5px; padding: 16px 4px; }
  .types-body { font-size: 13.5px; }

  /* Who section */
  .who-right { padding: 4px 16px; }
  .who-item { padding: 18px 0; gap: 14px; grid-template-columns: 44px 1fr; }

  /* FAQ */
  .faq-list { gap: 12px; }
  .faq-item summary { padding: 20px 20px; font-size: 15px; gap: 14px; }
  .faq-item summary .chev { width: 24px; height: 24px; }
  .faq-item summary .chev::before { width: 11px; height: 11px; }
  .faq-answer { padding: 0 20px 20px; font-size: 14px; line-height: 1.6; }
  .faq-heading h2 { font-size: clamp(26px, 8vw, 34px); }

  /* CTA */
  .start-bar { height: 64px; font-size: 16px; gap: 12px; }
  .cta-wrap { padding: 20px 0 40px; }

  /* Section subtitles */
  .section-sub { font-size: 14.5px; margin-bottom: 36px; }

  /* Wistia iframes: keep 16:9 */
  .video-frame { border-radius: 12px; }
}

/* ---- Small mobile (≤480) ---- */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 12.5px; }
  .section-title { font-size: 24px; }
  .how-card h3, .trust-card h4 { font-size: 16px; }
  .how-card p, .trust-card p { font-size: 13.5px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .revenue-card { width: 80%; }
  .ring { width: 90px; height: 90px; }
  .ring-value { font-size: 18px; }
}
