/* ============ DESIGN TOKENS ============ */
:root {
  --bg: #f7f8fc;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f1f3fa;
  --border: rgba(15,23,42,0.08);
  --border-strong: rgba(15,23,42,0.16);
  --text: #0b1437;
  --text-2: #475569;
  --text-3: #94a3b8;

  --brand: #2451ff;
  --brand-hover: #1a3fd6;
  --brand-2: #ff7a1a;
  --brand-3: #ff2e4d;
  --grad: linear-gradient(135deg, #ff7a1a 0%, #ff2e4d 100%);
  --grad-blue: linear-gradient(135deg, #2451ff 0%, #6b8aff 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,122,26,0.10), rgba(255,46,77,0.10));

  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow: 0 10px 40px rgba(11,20,55,0.08);
  --shadow-glow: 0 14px 40px rgba(36,81,255,0.30);

  --max-w: 1180px;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; font-size: inherit; color: inherit; }

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: #ffb27a; }
.section-title { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.section-lead { font-size: 18px; color: var(--text-2); max-width: 640px; margin-bottom: 48px; }
.center .section-lead { margin-left: auto; margin-right: auto; }
.grad {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-warm {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-display);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 24px rgba(36,81,255,0.25); }
.btn-primary:hover { transform: translateY(-2px); background: var(--brand-hover); box-shadow: 0 14px 36px rgba(36,81,255,0.40); }
.btn-warm { background: var(--grad); color: #fff; box-shadow: 0 8px 24px rgba(255,46,77,0.25); }
.btn-warm:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,46,77,0.40); }
.btn-ghost { background: rgba(36,81,255,0.06); color: var(--brand); border-color: rgba(36,81,255,0.18); }
.btn-ghost:hover { background: rgba(36,81,255,0.12); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--surface-2); border-color: var(--brand); color: var(--brand); }

/* ============ BADGE ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(36,81,255,0.08);
  border: 1px solid rgba(36,81,255,0.20);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.section-dark .badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #a9bbff; }
.badge-light { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); color: #ffb27a; }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
  animation: pulse 2s ease infinite;
}
.badge-light .dot { background: var(--brand-3); box-shadow: 0 0 10px var(--brand-3); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,248,252,0.80);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--text); }
.brand-mark { color: var(--brand); font-size: 22px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--text-2); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ============ HERO ============ */
.hero { position: relative; padding: 90px 0 140px; overflow: hidden; background: linear-gradient(180deg, #eef2ff 0%, #f7f8fc 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; width: 560px; height: 560px; filter: blur(50px); opacity: 0.45; }
.blob-1 { top: -180px; left: -180px; opacity: 0.30; animation: float 12s ease-in-out infinite; }
.blob-2 { bottom: -220px; right: -180px; opacity: 0.55; animation: float 14s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(20px,-30px) rotate(8deg); } }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,20,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,20,55,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero-title { font-size: clamp(36px, 5.2vw, 64px); margin-bottom: 22px; }
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--text-2); max-width: 540px; margin: 0 0 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
}

/* Phone mockup */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 320px;
  height: 640px;
  background: #0b1437;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 30px 80px rgba(11,20,55,0.25),
    0 0 0 1px rgba(11,20,55,0.10);
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}
.phone:hover { transform: rotate(0deg) translateY(-6px); }
.phone-notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 24px;
  background: #0b1437; border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #fff6ee 0%, #f7f8fc 100%);
  border-radius: 32px;
  padding: 40px 16px 16px;
  overflow: hidden;
}
.phone-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; padding: 0 4px; }
.phone-brand { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--text); }
.phone-brand span { color: var(--brand-3); margin-right: 4px; }
.phone-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-3); }
.phone-tab {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--text);
  margin: 8px 4px 16px;
}
.offer-card {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(11,20,55,0.06);
  border: 1px solid rgba(11,20,55,0.04);
}
.offer-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 12px; color: #fff;
  flex-shrink: 0;
}
.av-blue { background: var(--grad-blue); }
.av-orange { background: var(--grad); }
.offer-name { font-size: 13px; font-weight: 700; color: var(--text); }
.offer-meta { font-size: 11px; color: var(--text-3); }
.offer-value {
  margin-left: auto;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.offer-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.offer-tags { display: flex; gap: 6px; margin-bottom: 10px; }
.tag {
  font-size: 10px; font-weight: 700;
  background: rgba(36,81,255,0.10); color: var(--brand);
  padding: 3px 8px; border-radius: 999px;
}
.offer-cta {
  background: var(--grad); color: #fff;
  text-align: center; font-size: 12px; font-weight: 700;
  padding: 8px; border-radius: 10px;
}

.float-pill {
  position: absolute;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 10px 28px rgba(11,20,55,0.12);
  border: 1px solid rgba(11,20,55,0.06);
}
.pill-1 { top: 60px; left: -20px; color: var(--brand); animation: bob 4s ease-in-out infinite; }
.pill-2 { bottom: 100px; right: -10px; color: var(--brand-3); animation: bob 5s ease-in-out infinite reverse; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 920px) {
  .hero-phone { margin-top: 40px; }
  .phone { transform: rotate(0deg); }
}

/* Section divider waves */
.section-divider {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  width: 100%; height: 80px;
  display: block;
  z-index: 2;
}
.section { position: relative; }
.wave { position: absolute; left: 0; right: 0; width: 100%; height: 80px; display: block; z-index: 2; pointer-events: none; }
.wave-top { top: -1px; }
.has-wave-top { padding-top: 140px; }

/* Trust grid with media-kit mockup */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.trust-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
@media (max-width: 920px) { .trust-grid { grid-template-columns: 1fr; } }

.kit-wrap { position: relative; display: flex; justify-content: center; }
.kit-card {
  position: relative;
  width: 340px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(11,20,55,0.18), 0 0 0 1px rgba(11,20,55,0.06);
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}
.kit-card:hover { transform: rotate(0); }
.kit-cover {
  height: 90px;
  background: var(--grad-blue);
  position: relative;
}
.kit-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255,122,26,0.35), transparent 50%);
}
.kit-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: -40px 0 0 22px;
  border: 4px solid #fff;
  position: relative;
}
.kit-body { padding: 12px 22px 22px; }
.kit-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--text); }
.kit-handle { font-size: 13px; color: var(--text-3); margin-bottom: 14px; }
.kit-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tag-blue { background: rgba(36,81,255,0.10); color: var(--brand); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.kit-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.kit-stat { text-align: center; }
.kit-stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--brand); }
.kit-stat span { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.kit-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 13px; }
.kit-label { color: var(--text-3); font-weight: 600; }
.kit-stars { color: #ffb800; font-weight: 700; }
.kit-stars small { color: var(--text); margin-left: 4px; }
.kit-pill { background: rgba(36,81,255,0.10); color: var(--brand); padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.kit-verified {
  margin-top: 12px;
  text-align: center;
  background: var(--grad-blue);
  color: #fff;
  padding: 8px;
  border-radius: 10px;
  font-size: 12px; font-weight: 700;
}
.kit-pill-1 { top: 30px; right: -10px; color: var(--brand); animation: bob 4s ease-in-out infinite; }
.kit-pill-2 { bottom: 60px; left: -20px; color: var(--brand-3); animation: bob 5s ease-in-out infinite reverse; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-family: var(--font-display); font-size: 36px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { font-size: 13px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section-dark { background: linear-gradient(180deg, #0b1437 0%, #122067 100%); color: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark .section-lead, .section-dark .card p, .section-dark .pillar p, .section-dark .audience li { color: rgba(255,255,255,0.75); }
.section-dark .card, .section-dark .pillar, .section-dark .audience { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.10); color: #fff; }
.section-dark .audience li { border-color: rgba(255,255,255,0.10); }
.section-dark .pillar::before { background: linear-gradient(135deg, rgba(255,122,26,0.20), rgba(36,81,255,0.20)); }
.section-dark .pillar-num { color: var(--brand-2); }
.section-dark .audience li::before { color: var(--brand-2); }

/* ============ CARDS / GRIDS ============ */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.card-icon { font-size: 36px; margin-bottom: 18px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--text-2); }

/* Pillars */
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; }
.pillar-num { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--brand); letter-spacing: 0.1em; margin-bottom: 16px; }
.pillar h3 { font-size: 22px; margin-bottom: 10px; }
.pillar p { color: var(--text-2); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; counter-reset: step; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s ease;
}
.step:hover { border-color: var(--brand); transform: translateY(-3px); }
.step-n {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step h4 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 15px; }

/* Audience */
.audience {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.audience-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.audience-tag.pro { background: rgba(36,81,255,0.12); color: var(--brand); }
.audience-tag.inf { background: rgba(255,46,77,0.12); color: var(--brand-3); }
.section-dark .audience-tag.pro { background: rgba(107,138,255,0.18); color: #a9bbff; }
.section-dark .audience-tag.inf { background: rgba(255,122,26,0.20); color: #ffb27a; }
.audience h3 { font-size: 22px; margin-bottom: 20px; line-height: 1.3; }
.audience ul { list-style: none; margin-bottom: 28px; }
.audience li { padding: 10px 0 10px 28px; position: relative; color: var(--text-2); border-bottom: 1px solid var(--border); }
.audience li:last-child { border: none; }
.audience li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 800; }

/* Trust */
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.trust-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.trust-card h4 { font-size: 16px; margin-bottom: 4px; }
.trust-card p { font-size: 14px; color: var(--text-3); }

/* ============ CTA ============ */
.cta-section { padding: 80px 0; }
.cta-card {
  position: relative;
  background: linear-gradient(135deg, #0b1437 0%, #1a2d80 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; inset: -2px;
  background: var(--grad);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.45;
  filter: blur(50px);
}
.cta-card > p { color: rgba(255,255,255,0.75); }
.cta-card h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.cta-card > p { color: var(--text-2); max-width: 520px; margin: 0 auto 36px; }

.form { max-width: 640px; margin: 0 auto; }
.role-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 20px;
}
.role-opt { position: relative; cursor: pointer; }
.role-opt input { position: absolute; opacity: 0; }
.role-opt span {
  display: block;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  transition: all 0.2s ease;
}
.role-opt input:checked + span { background: var(--grad); color: #fff; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 150px auto;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px;
}
.form-row input, .form-row select {
  background: transparent;
  border: none;
  padding: 12px 18px;
  outline: none;
  color: var(--text);
  font-size: 15px;
}
.form-row select { color: var(--text-2); cursor: pointer; }
.form-row select option { background: #fff; color: var(--text); }
.form-row input::placeholder { color: var(--text-3); }
.form-fine { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 16px; }
.form-fine-link { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 2px; }
.form-fine-link:hover { color: #fff; }
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; border-radius: var(--radius); }
  .form-row button { width: 100%; justify-content: center; }
}

.form-success {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  margin: 0 auto;
  color: #fff;
}
.form-success p { color: rgba(255,255,255,0.75); }
.check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.form-success h3 { font-size: 24px; margin-bottom: 8px; }
.form-success p { color: var(--text-2); }

/* ============ FAQ ============ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--brand); box-shadow: 0 8px 24px rgba(36,81,255,0.08); }
.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  color: var(--brand);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: var(--text-2); }

/* ============ FOOTER ============ */
.footer { padding: 48px 0; border-top: 1px solid var(--border); background: var(--surface-2); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text-2); font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-3); font-size: 13px; }

/* ============ ANIMATIONS ============ */
@media (prefers-reduced-motion: no-preference) {
  .card, .pillar, .step, .audience, .trust-card {
    opacity: 0;
    transform: translateY(20px);
    animation: rise 0.6s ease forwards;
  }
  @keyframes rise { to { opacity: 1; transform: translateY(0); } }
}
