:root {
  --bg: #0B0D17;
  --surface: #161A2C;
  --border: rgba(129,140,248,0.12);
  --text: #C9CFE3;
  --text-bright: #F0F4FF;
  --text-muted: #94A3BF;
  --text-soft: #6B7390;
  --text-faint: #4B5273;

  --accent: #6366F1;
  --accent-bright: #818CF8;
  --accent-gradient-end: #A78BFA;
  --accent-soft: rgba(99,102,241,0.10);
  --accent-border: rgba(99,102,241,0.35);
  --accent-glow: rgba(99,102,241,0.14);
  --accent-glow-2: rgba(167,139,250,0.10);
  --accent-shadow: rgba(99,102,241,0.30);
  --accent-shadow-hover: rgba(99,102,241,0.45);
}

/* ========== RESET & BASE ========== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, var(--accent-glow) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, var(--accent-glow-2) 0%, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-bright); }
code, .mono { background: var(--surface); color: var(--accent); padding: 2px 8px; border-radius: 4px; font-size: 13px; font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace; border: 1px solid var(--border); }

/* ========== HEADER (sticky, transparent над hero) ========== */
.site-header {
  background: rgba(14,16,21,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--accent-bright); }
.logo-icon {
  font-size: 22px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 4px 16px var(--accent-shadow);
}
.nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav a:hover {
  background: var(--surface);
  color: var(--text);
}
.nav a.active {
  background: var(--accent);
  color: #fff;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-soft);
  padding: 20px 0 0;
}
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--accent-bright); }
.breadcrumbs .sep { margin: 0 8px; color: var(--text-faint); }

/* ========== HERO — big stats + glow ========== */
.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-tag {
  display: inline-block;
  background: var(--surface);
  color: var(--accent-bright);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--accent-border);
}
.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  max-width: 880px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0;
}
.hero .lead {
  font-size: 19px;
  margin: 0 0 36px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.55;
}
.hero-handwritten {
  /* в dark saas не используется — но оставим место для совместимости */
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--accent-bright);
  margin: -8px 0 24px 0;
  display: inline-block;
  font-weight: 500;
}
.hero-handwritten::before { content: '— '; }

/* ========== HERO DISCLAIMER (плашка под tag) ========== */
.hero-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-disclaimer::before {
  content: '✦';
  color: var(--accent-bright);
  font-size: 15px;
}

/* ========== HERO STATS (под H1) ========== */
.hero-stats {
  display: flex;
  gap: 48px;
  margin: 36px 0 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.hero-stats .stat-item {
  text-align: center;
}
.hero-stats .stat-val {
  font-size: 38px;
  font-weight: 800;
  display: block;
  color: var(--accent-bright);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stats .stat-lbl {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 6px;
  font-weight: 500;
}
.hero-stats-source {
  display: block;
  text-align: center;
  color: var(--text-faint);
  font-size: 11px;
  margin-top: 14px;
  letter-spacing: 0.03em;
}

/* ========== HERO CTA ROW (2 кнопки) ========== */
.hero-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--text-bright);
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--bg);
  border-color: var(--accent-border);
  color: var(--text-bright);
  transform: translateY(-2px);
}

/* ========== DOWNLOAD PLATFORM GRID (5 карточек) ========== */
.download-grid-section {
  margin: 56px 0 32px;
}
.download-grid-section h2 {
  margin-bottom: 8px;
}
.download-grid-section .subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 auto 32px;
  max-width: 540px;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.dl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 18px 22px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.2s;
}
.dl-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.dl-card .dl-icon {
  font-size: 44px;
  margin-bottom: 10px;
  line-height: 1;
}
.dl-card .dl-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.dl-card .dl-sub {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 16px;
  min-height: 30px;
}
.dl-card .dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  margin-top: auto;
  transition: transform .15s;
}
.dl-card:hover .dl-btn { transform: scale(1.02); }

/* ========== STATS — big numbers row ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 40px 0 36px;
  padding: 28px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.stat {
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat-val {
  font-size: 36px;
  font-weight: 800;
  display: block;
  color: var(--text-bright);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl { font-size: 12px; color: var(--text-soft); margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* ========== BUTTONS — gradient + glow ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 32px var(--accent-shadow);
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--accent-shadow-hover);
  color: #fff;
}
.btn-trust {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 14px;
  font-weight: 500;
}
.btn-trust::before { content: '✓ '; color: var(--accent-bright); font-weight: 700; }

/* ========== HEADINGS ========== */
.page-content { padding-bottom: 60px; }
h2 {
  font-size: 36px;
  margin: 64px 0 24px;
  color: var(--text-bright);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}
h2 .doodle { display: none; }
h3 { font-size: 19px; margin: 24px 0 10px; color: var(--text); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 12px 0; color: var(--text-muted); }

/* ========== FEATURES — bento grid 3 cols ========== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 40px;
}
.feature {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.feature:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}
.feature .ic {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature .tx { font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.feature .tx strong { display: block; font-size: 17px; margin-bottom: 6px; color: var(--text-bright); font-weight: 700; letter-spacing: -0.01em; }

/* ========== PLATFORM CARDS — bento with gradient backgrounds ========== */
.platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.platform-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.platform-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  border-radius: 50%;
}
.platform-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.platform-card .pic {
  font-size: 36px;
  margin-bottom: 12px;
  display: inline-block;
}
.platform-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--text-bright);
}
.platform-card p { margin: 0 0 18px; font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.platform-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.2s;
}
.platform-card:hover .card-cta { transform: translateX(4px); }

/* ========== STEPS ========== */
.steps {
  counter-reset: stepnum;
  margin: 28px 0;
}
.step {
  background: var(--surface);
  border-radius: 14px;
  padding: 22px 24px 22px 72px;
  margin: 12px 0;
  position: relative;
  border: 1px solid var(--border);
}
.step::before {
  counter-increment: stepnum;
  content: counter(stepnum);
  position: absolute;
  left: 20px;
  top: 22px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 16px var(--accent-shadow);
}
.step h3 { margin: 0 0 6px; font-size: 17px; color: var(--text-bright); }
.step p { margin: 4px 0; font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ========== QUOTES ========== */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.quote {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 56px;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
}
.quote-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 16px 0 0;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.quote-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.quote-meta { font-size: 13px; color: var(--text-soft); line-height: 1.3; }
.quote-meta strong { display: block; color: var(--text-bright); font-size: 14px; font-weight: 600; }

/* ========== COMPARISON — bento ========== */
.compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.compare-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid var(--border);
  text-align: left;
}
.compare-card.winner {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 60%);
  box-shadow: 0 8px 32px var(--accent-shadow);
}
.compare-card .name { font-weight: 800; font-size: 20px; margin: 8px 0 16px; color: var(--text-bright); }
.compare-card .winner-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: -4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card li { font-size: 14px; padding: 5px 0; color: var(--text-muted); }
.compare-card li.pro::before { content: '✓ '; color: var(--accent-bright); font-weight: 700; }
.compare-card li.con::before { content: '× '; color: var(--text-faint); font-weight: 700; }

/* ========== PROBLEMS ========== */
.problem {
  background: var(--surface);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 14px 0;
  border-left: 4px solid var(--accent);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem strong { color: var(--accent-bright); display: block; font-size: 16px; margin-bottom: 6px; font-weight: 700; }
.problem p { margin: 6px 0 0; font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ========== CTA BLOCKS — big gradient ========== */
.cta-block {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 50%, var(--accent-gradient-end) 100%);
  color: #fff;
  padding: 60px 48px;
  border-radius: 24px;
  margin: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px var(--accent-shadow);
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.cta-block h3 {
  color: #fff;
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-block p {
  margin: 0 0 24px;
  opacity: 0.95;
  font-size: 17px;
  color: #fff;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  position: relative;
}
.cta-block .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  position: relative;
}
.cta-block .btn-primary:hover {
  background: #fff;
  color: var(--accent-bright);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.cta-block .check-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
  font-size: 14px;
  color: #fff;
  opacity: 0.9;
  position: relative;
}
.cta-block .check-row span { display: inline-flex; align-items: center; gap: 6px; }

.cta-mini {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 40px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--accent-border);
}
.cta-mini .ic {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-mini .tx { flex: 1; min-width: 240px; }
.cta-mini .tx strong { display: block; font-size: 17px; margin-bottom: 4px; color: var(--text-bright); font-weight: 700; }
.cta-mini .tx span { font-size: 14px; color: var(--text-muted); }
.cta-mini a {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s;
  box-shadow: 0 6px 20px var(--accent-shadow);
}
.cta-mini a:hover { transform: translateY(-2px); }

/* ========== FAQ ========== */
.faq-item {
  border-radius: 14px;
  margin: 10px 0;
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  list-style: none;
  position: relative;
  color: var(--text-bright);
  font-size: 16px;
  transition: background 0.15s;
}
.faq-item summary:hover { background: rgba(255,255,255,0.02); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 16px;
  font-size: 24px;
  color: var(--accent-bright);
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 0 24px 20px; font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* ========== RELATED PAGES ========== */
.related-pages {
  margin-top: 56px;
  padding: 28px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.related-pages h3 { margin: 0 0 16px; font-size: 17px; color: var(--text-bright); }
.related-pages .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.related-pages .grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.15s;
}
.related-pages .grid a:hover {
  background: var(--surface);
  border-color: var(--accent-border);
  color: var(--text-bright);
  transform: translateX(2px);
}
.related-pages .grid a .ic { font-size: 20px; }

/* ========== POSTS (blog) ========== */
.posts {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}
.post-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 26px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.2s;
}
.post-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}
.post-card .date { font-size: 12px; color: var(--text-soft); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.post-card h3 { margin: 6px 0 8px; font-size: 19px; color: var(--text-bright); }
.post-card p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ========== FOOTER ========== */
.site-footer {
  margin-top: 80px;
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-soft);
  background: var(--surface);
}
.site-footer .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.site-footer .col h4 { font-size: 15px; color: var(--text-bright); margin: 0 0 16px; font-weight: 700; letter-spacing: -0.01em; }
.site-footer .col a {
  display: block;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.15s;
}
.site-footer .col a:hover { color: var(--accent-bright); }
.site-footer .copyright {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-soft);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .site-header .wrap { gap: 12px; }
  .nav { gap: 0; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; padding-bottom: 4px; }
  .nav a { white-space: nowrap; padding: 6px 12px; font-size: 13px; }
  .logo { font-size: 16px; }

  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: 36px; }
  .hero .lead { font-size: 16px; }
  .stats { grid-template-columns: 1fr; padding: 16px 0; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); padding: 16px 24px; }
  .stat:last-child { border-bottom: 0; }
  .stat-val { font-size: 28px; }
  h2 { font-size: 26px; }
  .features, .platforms, .quotes, .compare { grid-template-columns: 1fr; }
  .related-pages .grid { grid-template-columns: 1fr; }
  .cta-block { padding: 36px 24px; }
  .cta-block h3 { font-size: 26px; }
  .cta-block p { font-size: 15px; }
  .cta-mini { padding: 18px 20px; }
  .step { padding: 18px 18px 18px 64px; }
  .step::before { left: 16px; top: 18px; width: 32px; height: 32px; line-height: 32px; font-size: 14px; }
  .site-footer .wrap { grid-template-columns: 1fr; gap: 28px; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-card .dl-name { font-size: 16px; }
  .dl-card .dl-icon { font-size: 36px; }
  .hero-stats { gap: 32px; }
  .hero-stats .stat-val { font-size: 30px; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row a { width: 100%; justify-content: center; }
}
