/* ImpactGuard — Tactical ops design system */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #080808;
  --bg-elev: #111111;
  --bg-panel: #0d0d0d;
  --card: rgba(14, 14, 14, 0.92);
  --text: #f2f2f2;
  --text-soft: #9a9a9a;
  --text-dim: #666;
  --accent: #ff5c1a;
  --accent-bright: #ff7a3d;
  --accent-dim: #cc4a15;
  --accent-glow: rgba(255, 92, 26, 0.35);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 92, 26, 0.45);
  --ok: #3dd68c;
  --warn: #ffb020;
  --danger: #ff4d5a;
  --radius: 4px;
  --radius-sm: 2px;
  --font: 'Barlow Condensed', 'Segoe UI', system-ui, sans-serif;
  --mono: 'JetBrains Mono', Consolas, monospace;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: clip;
  letter-spacing: 0.02em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 92, 26, 0.12), transparent 55%);
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; }

.container {
  width: min(1180px, 100% - 2rem);
  margin-inline: auto;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.nav-brand small {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-top: 0.1rem;
}

.nav-logo {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  background: var(--accent);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
  border-color: var(--line);
  background: rgba(255, 92, 26, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.4rem;
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #0a0a0a;
  background: var(--accent);
  border-color: var(--accent-bright);
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 32px var(--accent-glow);
}

.btn-outline {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  color: var(--text-soft);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-soft);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.88rem;
}

/* ── Hero ── */
.hero-premium {
  position: relative;
  padding: calc(var(--nav-h) + 3.5rem) 0 0;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}

.hero-glow { display: none; }

.hero-inner.hero-split {
  display: block;
  flex: 1;
}

.hero-copy {
  max-width: 820px;
  padding-bottom: 2.5rem;
}

.hero-sys {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
}

.status-led {
  width: 7px;
  height: 7px;
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
  flex-shrink: 0;
}

.hero-badge {
  display: none;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.gradient-text,
.hero-title .accent,
.hero-title span.gradient-text {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-trust-row span::before {
  content: '// ';
  color: var(--accent);
}

/* Tactical stats bar (reference layout) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: auto;
  background: rgba(0, 0, 0, 0.5);
}

.hero-stat {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Ops console — tactical panel */
.hero-console {
  display: none;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  max-width: 480px;
}

@media (min-width: 1100px) {
  .hero-inner.hero-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    align-items: start;
  }
  .hero-console { display: block; }
  .hero-stats {
    grid-column: 1 / -1;
  }
}

.console-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.console-topbar span {
  width: 8px;
  height: 8px;
  background: var(--line);
}

.console-topbar strong { margin-left: auto; color: var(--accent); }

.console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.console-metric {
  padding: 0.85rem;
  background: var(--bg-panel);
}

.console-metric.wide { grid-column: 1 / -1; }

.console-metric small {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.console-metric strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.console-metric em {
  display: block;
  font-size: 0.65rem;
  font-style: normal;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

.console-progress {
  height: 4px;
  background: var(--line);
  margin: 0.4rem 0;
}

.console-progress span {
  display: block;
  height: 100%;
  background: var(--accent);
}

.console-timeline {
  padding: 0.65rem;
  border-top: 1px solid var(--line);
}

.console-timeline > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.35rem;
}

.pulse-dot.ok { background: var(--ok); box-shadow: 0 0 6px var(--ok); }
.pulse-dot.warn { background: var(--warn); }
.pulse-dot.danger { background: var(--danger); }

.console-timeline small { grid-column: 2; color: var(--text-dim); font-size: 0.68rem; }

/* ── Sections ── */
.section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}

.section-dark {
  background: rgba(0, 0, 0, 0.35);
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.section-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-badge::before { content: '// '; }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card {
  padding: 1.5rem;
  background: var(--bg-panel);
  transition: background 0.15s;
}

.feature-card:hover {
  background: var(--bg-elev);
}

.feature-icon { font-size: 1.25rem; margin-bottom: 0.75rem; opacity: 0.9; }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Modules */
.module-suite {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.module-category {
  padding: 1.25rem;
  background: var(--bg-panel);
}

.module-category-kicker {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.module-category h3 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.module-list span {
  font-family: var(--mono);
  font-size: 0.65rem;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(0,0,0,0.3);
}

.modules-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.module-detail-card {
  padding: 1.15rem;
  border: 1px solid var(--line);
  background: var(--bg-panel);
}

.module-detail-card h4 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.module-detail-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* Plugin download */
.plugin-download-card {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.plugin-download-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.plugin-download-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plugin-download-subtitle {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-top: 0.35rem;
}

.plugin-download-status {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--ok);
  color: var(--ok);
}

.plugin-download-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.plugin-meta-chip {
  padding: 0.85rem;
  background: var(--bg);
}

.plugin-meta-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.plugin-meta-chip strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.plugin-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pricing-card {
  padding: 1.5rem;
  background: var(--bg-panel);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-card.featured {
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 40px rgba(255, 92, 26, 0.06);
}

.pricing-name {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.pricing-period,
.pricing-usd {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--mono);
}

.pricing-features {
  list-style: none;
  flex: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-soft);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li.included::before { content: '+ '; color: var(--ok); font-weight: 700; }
.pricing-features li.excluded { opacity: 0.45; text-decoration: line-through; }

.pricing-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.8rem;
}

/* FAQ */
.faq-list {
  border: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover { color: var(--accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s var(--ease);
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CTA */
.cta-section {
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 92, 26, 0.08), transparent);
}

.cta-inner { text-align: center; max-width: 640px; margin-inline: auto; }

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta-subtitle {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.cta-inner .hero-actions { justify-content: center; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  background: #050505;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2.5rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-soft);
  padding: 0.25rem 0;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Supported payments — tactical */
.ig-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ig-pay-card {
  display: flex;
  gap: 0.95rem;
  padding: 1.15rem;
  background: var(--bg-panel);
}

.ig-pay-card__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(255, 92, 26, 0.08);
  color: var(--accent);
}

.ig-pay-card[data-tone="crypto"] .ig-pay-card__icon {
  border-color: rgba(255, 176, 32, 0.4);
  color: var(--warn);
  background: rgba(255, 176, 32, 0.06);
}

.ig-pay-card[data-tone="bank"] .ig-pay-card__icon {
  border-color: rgba(61, 214, 140, 0.4);
  color: var(--ok);
  background: rgba(61, 214, 140, 0.06);
}

.ig-pay-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig-pay-card__hint {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 0.35rem 0 0.5rem;
}

.ig-pay-card__list {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.ig-pay-note {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}

.ig-pay-compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg-panel);
}

.ig-pay-compact__label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ig-pay-chip {
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ig-pay-chip[data-tone="card"] { border-color: var(--line-strong); color: var(--accent); }

/* Nav responsive */
@media (max-width: 1120px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(4) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav-actions .btn-ghost { display: none; }
  .features-grid,
  .module-suite,
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--line); }
  .hero-stat:last-child { border-bottom: none; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

.module-kicker--ok { color: var(--ok) !important; }
.module-kicker--cs16 { color: var(--warn) !important; }
.module-category-note {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0 0 0.65rem;
  line-height: 1.45;
}


/* i18n locale typography */
html[lang="bg"] .hero-title {
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
html[lang="bg"] .hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.6;
}
html[lang="bg"] .nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.45rem;
}
html[lang="bg"] .section-title {
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  line-height: 1.15;
}
html[lang="bg"] .hero-stat-value {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}
html[lang="bg"] .hero-stat-label {
  font-size: 0.58rem;
  line-height: 1.35;
}
html[lang="bg"] .pricing-name,
html[lang="bg"] .pricing-price,
html[lang="bg"] .module-category h3 {
  font-size: 0.92rem;
  line-height: 1.35;
}
html[lang="bg"] .pricing-features li {
  font-size: 0.78rem;
}
html[lang="bg"] .faq-question span {
  font-size: 0.88rem;
}
html[lang="tr"] .hero-title {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
}
html[lang="tr"] .nav-links a {
  font-size: 0.7rem;
}
