/* ============================================================
   forma. — Design System v2
   Palette: bg #F5F6F7 · warm #FAFAF7 · surface #FFFFFF
            text #0D1117 · text-2 #3A4149 · text-3 #6B7280
            accent #FF4B3A · border #E5E7EB
   Font: Inter (variable)
   ============================================================ */

@import url('https://rsms.me/inter/inter.css');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --bg:           #F5F6F7;
  --bg-warm:      #FAFAF7;
  --surface:      #FFFFFF;
  --text:         #0D1117;
  --text-2:       #3A4149;
  --text-3:       #6B7280;
  --accent:       #FF4B3A;
  --accent-h:     #E03D2D;
  --accent-soft:  rgba(255,75,58,.09);
  --accent-soft2: rgba(255,75,58,.05);
  --border:       #E5E7EB;
  --border-2:     #D1D5DB;
  --dark:         #0D1117;
  --dark-surface: #161B22;
  --dark-border:  rgba(255,255,255,.08);

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(13,17,23,.06);
  --sh-sm: 0 2px 8px rgba(13,17,23,.08);
  --sh-md: 0 4px 16px rgba(13,17,23,.10);
  --sh-lg: 0 8px 32px rgba(13,17,23,.12);
  --sh-xl: 0 16px 48px rgba(13,17,23,.14);

  /* Radius */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  /* Spacing */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Transitions */
  --ease: cubic-bezier(.22,.68,0,1.2);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: 150ms; --t-base: 220ms; --t-slow: 380ms;

  /* Typography */
  --font: 'Inter', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── Typography Scale ─────────────────────────────────────── */
.t-display {
  font-size: clamp(40px,6vw,72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.t-h1 {
  font-size: clamp(32px,4.5vw,56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.t-h2 {
  font-size: clamp(26px,3.5vw,40px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.t-h3 {
  font-size: clamp(20px,2.5vw,28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.t-h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.t-body-lg { font-size: 18px; line-height: 1.7; }
.t-body    { font-size: 16px; line-height: 1.65; }
.t-sm      { font-size: 14px; line-height: 1.6; }
.t-xs      { font-size: 12px; line-height: 1.5; letter-spacing: 0.01em; }
.t-label   { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.color-accent  { color: var(--accent); }
.color-muted   { color: var(--text-3); }
.color-text-2  { color: var(--text-2); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: var(--sp-24) 0; }
.section-sm { padding: var(--sp-16) 0; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--t-base), box-shadow var(--t-base);
}
.navbar.scrolled {
  background: rgba(250,250,247,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.logo .word { color: var(--text); }
.logo .dot  { color: var(--accent); font-size: 26px; line-height: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav-links a {
  padding: var(--sp-2) var(--sp-3);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-xs);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--text); background: rgba(13,17,23,.05); }
.nav-links a.active { color: var(--text); font-weight: 600; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  z-index: 899;
  flex-direction: column;
  gap: var(--sp-1);
  box-shadow: var(--sh-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: var(--sp-3) var(--sp-4);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-menu a:hover { background: var(--bg); color: var(--text); }
.mobile-menu .mobile-cta { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: 44px;
  padding: 0 var(--sp-6);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-full);
  letter-spacing: -0.01em;
  transition: background var(--t-fast), color var(--t-fast),
              box-shadow var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(255,75,58,.25), 0 4px 12px rgba(255,75,58,.2);
}
.btn-primary:hover {
  background: var(--accent-h);
  box-shadow: 0 2px 4px rgba(255,75,58,.3), 0 6px 18px rgba(255,75,58,.25);
}

.btn-dark {
  background: var(--text);
  color: #fff;
  box-shadow: 0 1px 2px rgba(13,17,23,.2), 0 4px 12px rgba(13,17,23,.15);
}
.btn-dark:hover {
  background: #1a2030;
  box-shadow: 0 2px 4px rgba(13,17,23,.25), 0 6px 18px rgba(13,17,23,.2);
}

.btn-outline {
  background: transparent;
  color: var(--text-2);
  box-shadow: inset 0 0 0 1.5px var(--border-2);
}
.btn-outline:hover {
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--text);
  background: rgba(13,17,23,.03);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
}
.btn-ghost:hover { color: var(--text); background: rgba(13,17,23,.05); }

.btn-sm { height: 36px; padding: 0 var(--sp-4); font-size: 13px; }
.btn-lg { height: 52px; padding: 0 var(--sp-8); font-size: 16px; }
.btn-icon { width: 44px; padding: 0; }
.btn-icon.btn-sm { width: 36px; }

.btn svg, .btn-icon svg { flex-shrink: 0; }

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.badge-accent { background: var(--accent-soft); color: var(--accent); }
.badge-dark   { background: var(--dark); color: #fff; }
.badge-muted  { background: var(--border); color: var(--text-2); }
.badge-green  { background: rgba(34,197,94,.1); color: #16a34a; }
.badge-yellow { background: rgba(234,179,8,.1); color: #a16207; }
.badge-red    { background: rgba(239,68,68,.1); color: #dc2626; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--border-2);
}
.card-lift:hover { transform: translateY(-2px); }

.card-p   { padding: var(--sp-6); }
.card-p-lg { padding: var(--sp-8); }

/* ── Form Controls ────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px var(--sp-4);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-hint { font-size: 12px; color: var(--text-3); }
.form-error { font-size: 12px; color: var(--accent); }

/* Input with icon */
.input-wrap { position: relative; }
.input-wrap .input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}
.input-wrap .form-input { padding-left: 42px; }

/* ── Section Header ───────────────────────────────────────── */
.section-header { margin-bottom: var(--sp-12); }
.section-header.center { text-align: center; }
.section-header .overline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.section-header .overline::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p  { font-size: 18px; color: var(--text-2); max-width: 560px; }
.section-header.center p { margin: 0 auto; }

/* ── Grid Utilities ───────────────────────────────────────── */
.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ── Divider ──────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: var(--sp-12) 0; }

/* ── Tags / Pills ─────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.tag:hover, .tag.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.tag.accent { background: var(--accent-soft); border-color: transparent; color: var(--accent); }

/* ── Progress bar ─────────────────────────────────────────── */
.progress { height: 4px; background: var(--border); border-radius: var(--r-full); overflow: hidden; }
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--r-full);
  transition: width var(--t-slow) var(--ease-out);
}
.progress-fill.green  { background: #22c55e; }
.progress-fill.yellow { background: #eab308; }

/* ── Avatar / Icon container ──────────────────────────────── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.icon-box-sm { width: 36px; height: 36px; border-radius: var(--r-sm); }
.icon-box-lg { width: 64px; height: 64px; border-radius: var(--r-lg); }

.icon-box-accent { background: var(--accent-soft); color: var(--accent); }
.icon-box-dark   { background: var(--dark); color: #fff; }
.icon-box-muted  { background: var(--bg); border: 1px solid var(--border); color: var(--text-3); }

/* ── Toast / Snackbar ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--sp-6); left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: #fff;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--sh-lg);
  z-index: 9999;
  opacity: 0;
  transition: transform var(--t-slow) var(--ease-out), opacity var(--t-slow);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Stat card ────────────────────────────────────────────── */
.stat-card { text-align: center; }
.stat-card .stat-num {
  font-size: clamp(36px,5vw,56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.stat-card .stat-num span { color: var(--accent); }
.stat-card .stat-label { font-size: 14px; color: var(--text-3); margin-top: var(--sp-2); }

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
  padding: 160px 0 var(--sp-24);
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,75,58,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}
.hero h1 { margin-bottom: var(--sp-6); }
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}
.hero-trust-item svg { color: var(--accent); flex-shrink: 0; }
.hero-trust-sep { width: 1px; height: 20px; background: var(--border); }

/* Hero UI mockup */
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(255,255,255,.8) inset;
  overflow: hidden;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.hero-card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-2);
}
.hero-card-dot:first-child  { background: #ff5f57; }
.hero-card-dot:nth-child(2) { background: #febc2e; }
.hero-card-dot:nth-child(3) { background: #28c840; }
.hero-card-title {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  margin-left: var(--sp-2);
}
.hero-card-body { padding: var(--sp-5); }

/* Doc preview rows inside hero card */
.doc-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px var(--sp-3);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
  cursor: default;
}
.doc-row:hover { background: var(--bg); }
.doc-row-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent-soft);
  color: var(--accent);
}
.doc-row-text { flex: 1; min-width: 0; }
.doc-row-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-row-meta { font-size: 11px; color: var(--text-3); margin-top: 1px; }
.doc-row-badge { flex-shrink: 0; }

/* Floating badge on hero */
.hero-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}
.hero-float svg { color: var(--accent); }
.hero-float-1 { top: -20px; left: -40px; animation-delay: 0s; }
.hero-float-2 { bottom: 40px; left: -50px; animation-delay: 1.5s; }
.hero-float-3 { top: 80px; right: -40px; animation-delay: 0.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-8) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}
.stats-sep {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-sep::before {
  content: '';
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px; left: calc(33.33% + 20px); right: calc(33.33% + 20px);
  height: 1px;
  background: var(--border);
}
.step-card { padding: var(--sp-8); }
.step-num {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--sp-6);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--r-full);
  border: 1px dashed var(--border-2);
}
.step-card h3 { margin-bottom: var(--sp-3); }
.step-card p  { color: var(--text-2); font-size: 15px; }

/* ── CATALOG ──────────────────────────────────────────────── */
.catalog-tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.catalog-tab {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.catalog-tab:hover { border-color: var(--text); color: var(--text); }
.catalog-tab.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.catalog-tab svg { width: 14px; height: 14px; }

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.doc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
  cursor: pointer;
}
.doc-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.doc-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.doc-card-name { font-size: 14px; font-weight: 650; color: var(--text); line-height: 1.4; }
.doc-card-desc { font-size: 12px; color: var(--text-3); line-height: 1.5; flex: 1; }
.doc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.doc-card-price { font-size: 13px; font-weight: 700; color: var(--text); }
.doc-card-action {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: gap var(--t-fast);
}
.doc-card:hover .doc-card-action { gap: 6px; }

/* ── FEATURES GRID ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.feature-card { padding: var(--sp-8); }
.feature-card .icon-box { margin-bottom: var(--sp-5); }
.feature-card h3 { margin-bottom: var(--sp-3); font-size: 18px; }
.feature-card p { color: var(--text-2); font-size: 14px; line-height: 1.65; }
.feature-card.wide { grid-column: span 2; }
.feature-card.tall { }

/* Audit demo inside feature card */
.audit-bars { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-5); }
.audit-bar-row { display: flex; flex-direction: column; gap: var(--sp-2); }
.audit-bar-label { display: flex; justify-content: space-between; font-size: 12px; font-weight: 500; color: var(--text-2); }
.audit-bar-label span:last-child { font-weight: 700; color: var(--text); }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  align-items: start;
}
.pricing-card { padding: var(--sp-8); position: relative; }
.pricing-card.featured {
  background: var(--dark);
  border-color: transparent;
}
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-feature,
.pricing-card.featured .pricing-price-label { color: rgba(255,255,255,.6); }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-card.featured .pricing-feature-icon { color: rgba(255,255,255,.4); }
.pricing-card.featured .divider { background: rgba(255,255,255,.1); }

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.pricing-name { font-size: 13px; font-weight: 700; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.pricing-price { font-size: 42px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-bottom: var(--sp-2); }
.pricing-price sup { font-size: 22px; vertical-align: super; font-weight: 600; }
.pricing-price-label { font-size: 13px; color: var(--text-3); margin-bottom: var(--sp-6); }
.pricing-desc { font-size: 14px; color: var(--text-2); margin-bottom: var(--sp-6); }
.pricing-features { display: flex; flex-direction: column; gap: var(--sp-4); margin: var(--sp-6) 0; }
.pricing-feature { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: 14px; color: var(--text-2); }
.pricing-feature-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.pricing-feature.dim { opacity: .45; }
.pricing-card.featured .pricing-feature:not(.dim) { color: rgba(255,255,255,.85); }

/* ── DARK SECTION ─────────────────────────────────────────── */
.section-dark {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,75,58,.08) 0%, transparent 65%);
  pointer-events: none;
}
.section-dark .section-header .overline { color: rgba(255,75,58,.8); }
.section-dark .section-header .overline::before { background: rgba(255,75,58,.8); }
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.55); }

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.security-features { display: flex; flex-direction: column; gap: var(--sp-5); }
.security-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.security-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,75,58,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.security-item-text h4 { color: rgba(255,255,255,.9); font-size: 15px; margin-bottom: 4px; }
.security-item-text p  { font-size: 13px; color: rgba(255,255,255,.45); }

.security-visual {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}
.security-checklist { display: flex; flex-direction: column; gap: var(--sp-3); }
.security-check {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm);
}
.security-check-icon { color: #22c55e; flex-shrink: 0; }
.security-check-text { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); }

/* ── AUDIENCE CARDS ───────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.audience-card { padding: var(--sp-6); }
.audience-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--border);
  line-height: 1;
  margin-bottom: var(--sp-4);
  font-variant-numeric: tabular-nums;
}
.audience-card h3 { font-size: 16px; margin-bottom: var(--sp-3); }
.audience-card p  { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-info h2 { margin-bottom: var(--sp-4); }
.contact-info p  { color: var(--text-2); font-size: 16px; line-height: 1.7; margin-bottom: var(--sp-8); }
.contact-links { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  transition: color var(--t-fast);
}
.contact-link:hover { color: var(--accent); }
.contact-link-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-disclaimer {
  margin-top: var(--sp-8);
  padding: var(--sp-4);
  background: var(--accent-soft2);
  border: 1px solid rgba(255,75,58,.12);
  border-radius: var(--r-md);
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}
.contact-form-card { padding: var(--sp-8); }
.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,75,58,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2  { color: #fff; margin-bottom: var(--sp-4); position: relative; }
.cta-band p   { color: rgba(255,255,255,.55); font-size: 18px; margin-bottom: var(--sp-8); position: relative; }
.cta-band-actions { display: flex; justify-content: center; gap: var(--sp-3); flex-wrap: wrap; position: relative; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: var(--sp-16) 0 var(--sp-8);
  margin-top: var(--sp-1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-brand .logo { margin-bottom: var(--sp-4); }
.footer-brand .logo .word { color: rgba(255,255,255,.9); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-5); }
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--sp-3);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: var(--sp-6); }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.3); transition: color var(--t-fast); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.07s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.21s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .hero-text       { max-width: 100%; }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .feature-card.wide { grid-column: span 2; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: var(--sp-16) 0; }
  .section-sm { padding: var(--sp-10) 0; }

  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero { padding: 100px 0 var(--sp-16); }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-trust { flex-wrap: wrap; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr; }

  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; gap: var(--sp-4); text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .stats-sep { display: none; }

  .cta-band { padding: var(--sp-10) var(--sp-6); border-radius: var(--r-lg); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .audience-grid { grid-template-columns: 1fr; }
  .catalog-tabs { gap: var(--sp-2); }
}
