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

:root {
  --accent: #84cc16;
  --accent-dark: #65a30d;
  --bg: #080b07;
  --panel: #0f130d;
  --panel2: #141a11;
  --border: rgba(132,204,22,.15);
  --border2: rgba(255,255,255,.07);
  --ink: #f0f4ee;
  --muted: #8a9e7a;
  --danger: #ef4444;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,11,7,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.6); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 22px; }
.logo-text { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: .04em; }
.logo-accent { color: var(--accent); }
.nav-links { display: flex; gap: 28px; margin-left: 8px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 600; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-mobile { display: none; flex-direction: column; padding: 12px 24px 20px; gap: 12px; border-top: 1px solid var(--border2); }
.nav-mobile a { color: var(--muted); font-size: 16px; font-weight: 600; text-decoration: none; }
.nav-mobile.open { display: flex; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #0a0a0a;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px;
  padding: 9px 18px; border-radius: 8px; border: none; cursor: pointer;
  text-decoration: none; transition: background .2s, transform .1s;
  white-space: nowrap;
}
.btn-primary:hover { background: #a3e635; transform: translateY(-1px); }
.btn-primary.btn-lg { font-size: 16px; padding: 13px 28px; border-radius: 10px; }
.btn-primary.btn-glow { box-shadow: 0 0 32px rgba(132,204,22,.4); }
.btn-primary.btn-glow:hover { box-shadow: 0 0 48px rgba(132,204,22,.6); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px;
  padding: 9px 18px; border-radius: 8px; border: 1px solid var(--border2); cursor: pointer;
  text-decoration: none; transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost.btn-lg { font-size: 16px; padding: 13px 28px; border-radius: 10px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: 120px 24px 80px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; flex-wrap: wrap; gap: 48px;
}
.hero-inner { max-width: 560px; position: relative; z-index: 2; }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0;
}
.hero-glow-1 { width: 600px; height: 500px; background: rgba(132,204,22,.13); top: -80px; left: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: rgba(101,163,13,.09); bottom: 0; right: -60px; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .04;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(132,204,22,.1); border: 1px solid rgba(132,204,22,.25);
  border-radius: 20px; padding: 5px 14px; font-size: 13px; font-weight: 600; color: var(--accent);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title {
  font-family: 'Orbitron', sans-serif; font-size: clamp(36px, 5vw, 58px);
  font-weight: 900; line-height: 1.08; color: var(--ink); margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-title .accent { color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-n { font-family: 'Orbitron', sans-serif; font-size: 28px; font-weight: 800; color: var(--accent); }
.stat-l { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border2); }

/* ── HERO PREVIEW ── */
.hero-preview { position: relative; z-index: 2; }
.preview-window {
  width: min(520px, calc(100vw - 48px));
  background: var(--panel); border: 1px solid var(--border2);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(132,204,22,.08);
}
.preview-bar {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: #0d1309; border-bottom: 1px solid var(--border2);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca41; }
.preview-url { margin-left: 10px; font-size: 12px; color: var(--muted); background: var(--panel2); padding: 3px 12px; border-radius: 6px; }
.preview-screen { display: flex; height: 280px; }
.ps-sidebar {
  width: 140px; background: #0b0f09; padding: 16px 10px; flex-shrink: 0;
  border-right: 1px solid var(--border2); display: flex; flex-direction: column; gap: 4px;
}
.ps-logo { font-family: 'Orbitron', sans-serif; font-size: 9px; font-weight: 800; color: var(--accent); padding: 0 6px 12px; letter-spacing: .04em; }
.ps-nav-item { font-size: 11px; font-weight: 600; color: var(--muted); padding: 7px 10px; border-radius: 6px; cursor: default; }
.ps-nav-item.active { background: rgba(132,204,22,.12); color: var(--accent); }
.ps-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.ps-cards { display: flex; gap: 8px; }
.ps-card { flex: 1; background: var(--panel2); border-radius: 8px; padding: 10px; border: 1px solid var(--border2); }
.ps-card-accent { border-color: rgba(132,204,22,.3); }
.ps-card-label { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.ps-card-val { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 800; color: var(--ink); }
.ps-card-accent .ps-card-val { color: var(--accent); }
.ps-recipe-list { display: flex; flex-direction: column; gap: 6px; }
.ps-recipe-item { display: flex; align-items: center; gap: 8px; font-size: 11px; background: var(--panel2); border-radius: 6px; padding: 7px 10px; border: 1px solid var(--border2); }
.ps-recipe-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.ps-recipe-item span:nth-child(2) { flex: 1; color: var(--ink); font-weight: 600; }
.ps-recipe-cost { color: var(--accent); font-weight: 700; font-size: 10px; }

/* ── TRUST BAR ── */
.trust-bar { border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); padding: 16px 24px; background: var(--panel); }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.trust-items { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.trust-item { font-size: 13px; color: #c4d8b0; font-weight: 600; }
.trust-sep { color: var(--muted); }

/* ── SECTIONS ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.section-title { font-family: 'Orbitron', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 56px; }

/* ── FEATURES ── */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--panel); border: 1px solid var(--border2); border-radius: var(--radius);
  padding: 28px; transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--border); transform: translateY(-3px); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how { padding: 80px 0; background: var(--panel); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }
.steps { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; }
.step-num { font-family: 'Orbitron', sans-serif; font-size: 36px; font-weight: 900; color: rgba(132,204,22,.3); margin-bottom: 10px; }
.step h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-arrow { font-size: 24px; color: var(--accent); padding-top: 30px; flex-shrink: 0; }

/* ── PRICING ── */
.pricing { padding: 100px 0; position: relative; }
.pricing-glow { width: 600px; height: 400px; background: rgba(132,204,22,.1); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.pricing-toggle { display: flex; gap: 4px; background: var(--panel); border: 1px solid var(--border2); border-radius: 10px; padding: 4px; width: fit-content; margin-bottom: 48px; }
.ptoggle-btn { background: none; border: none; border-radius: 7px; padding: 8px 18px; font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; color: var(--muted); cursor: pointer; transition: .2s; white-space: nowrap; }
.ptoggle-btn.active { background: var(--panel2); color: var(--ink); }
.save-badge { display: inline-block; background: rgba(132,204,22,.2); color: var(--accent); font-size: 11px; padding: 1px 6px; border-radius: 4px; margin-left: 6px; }

.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; position: relative; z-index: 1; }
.plan {
  background: var(--panel); border: 1px solid var(--border2); border-radius: 16px;
  padding: 32px; display: flex; flex-direction: column; position: relative; transition: transform .2s;
}
.plan:hover { transform: translateY(-4px); }
.plan-popular {
  border-color: rgba(132,204,22,.4);
  box-shadow: 0 0 40px rgba(132,204,22,.1), inset 0 0 40px rgba(132,204,22,.03);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0a0a0a; font-size: 11px; font-weight: 800;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap; letter-spacing: .04em;
  text-transform: uppercase;
}
.plan-name { font-family: 'Orbitron', sans-serif; font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.price-amount { font-family: 'Orbitron', sans-serif; font-size: 40px; font-weight: 900; color: var(--ink); }
.price-period { font-size: 14px; color: var(--muted); font-weight: 600; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.feat { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.feat::before { content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900; }
.feat.yes { color: var(--ink); }
.feat.yes::before { content: '✓'; background: rgba(132,204,22,.15); color: var(--accent); font-size: 11px; display: flex; align-items: center; justify-content: center; }
.feat.no { color: #3a4035; }
.feat.no::before { content: '–'; background: rgba(255,255,255,.04); color: #3a4035; font-size: 11px; display: flex; align-items: center; justify-content: center; }
.plan-btn {
  display: block; text-align: center; padding: 13px; border-radius: 10px;
  font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: .2s;
}
.plan-btn-primary { background: var(--accent); color: #0a0a0a; }
.plan-btn-primary:hover { background: #a3e635; }
.plan-btn-ghost { background: var(--panel2); color: var(--ink); border: 1px solid var(--border2); }
.plan-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.pricing-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 28px; }

/* ── QUOTE ── */
.quote-section { padding: 80px 24px; }
.quote-icon { font-size: 48px; color: var(--accent); opacity: .4; margin-bottom: 16px; font-family: Georgia, serif; }
.quote-text { font-size: 20px; color: var(--ink); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.quote-author { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ── FAQ ── */
.faq { padding: 80px 0; background: var(--panel); border-top: 1px solid var(--border2); }
.faq-list { max-width: 700px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border2); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 0; font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-q::after { content: '+'; font-size: 20px; color: var(--accent); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; padding-bottom: 16px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BANNER ── */
.cta-banner { padding: 100px 24px; position: relative; overflow: hidden; }
.cta-glow { width: 700px; height: 400px; background: rgba(132,204,22,.12); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.cta-title { font-family: 'Orbitron', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--ink); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-sub { font-size: 18px; color: var(--muted); margin-bottom: 36px; position: relative; z-index: 1; }

/* ── FOOTER ── */
.footer { background: var(--panel); border-top: 1px solid var(--border2); padding: 60px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 8px; }
.footer-tagline { font-size: 13px; color: var(--muted); margin-top: 4px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 140px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border2); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #4a5e3a; }

/* ── LOGO SVG ── */
.logo-svg { flex-shrink: 0; }

/* ── HERO SCREENSHOT ── */
.preview-img {
  width: 100%; display: block;
  border-radius: 0 0 13px 13px;
  max-height: 420px; object-fit: cover; object-position: top;
}

/* ── PROBLEM SECTION ── */
.problem { padding: 100px 0; background: var(--panel); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }
.problem-sub { margin-bottom: 48px; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.problem-card { display: flex; flex-direction: column; gap: 12px; }
.problem-img-wrap { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--border2); aspect-ratio: 16/10; }
.problem-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) brightness(.8); transition: filter .3s; }
.problem-card:hover .problem-img-wrap img { filter: saturate(.9) brightness(.9); }
.problem-overlay {
  position: absolute; inset: 0;
  background: rgba(239,68,68,.15);
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 12px;
}
.problem-x {
  background: rgba(239,68,68,.9); color: #fff;
  font-size: 18px; font-weight: 900; width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.problem-label { font-size: 17px; font-weight: 700; color: var(--ink); }
.problem-desc { font-size: 13px; color: var(--muted); }
.problem-arrow-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.problem-divider-line { flex: 1; height: 1px; background: var(--border2); }
.problem-arrow-badge {
  background: rgba(132,204,22,.12); border: 1px solid rgba(132,204,22,.3);
  color: var(--accent); font-size: 13px; font-weight: 700;
  padding: 7px 18px; border-radius: 20px; white-space: nowrap;
}
.problem-quote {
  font-size: 20px; color: var(--ink); font-style: italic; line-height: 1.7;
  text-align: center; max-width: 700px; margin: 0 auto;
  border-left: 3px solid var(--accent); padding-left: 24px; text-align: left;
}

/* ── SCREENSHOTS SECTION ── */
.screenshots { padding: 100px 0; }
.screens-tabs {
  display: flex; gap: 4px; background: var(--panel);
  border: 1px solid var(--border2); border-radius: 10px;
  padding: 4px; width: fit-content; margin-bottom: 32px; flex-wrap: wrap;
}
.stab {
  background: none; border: none; border-radius: 7px;
  padding: 9px 20px; font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--muted);
  cursor: pointer; transition: .2s; white-space: nowrap;
}
.stab.active { background: var(--panel2); color: var(--ink); }
.stab:hover:not(.active) { color: var(--ink); }
.screens-display { position: relative; }
.screen-panel { display: none; }
.screen-panel.active { display: block; }
.screen-panel img {
  width: 100%; border-radius: 14px;
  border: 1px solid var(--border2);
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.screen-caption {
  margin-top: 16px; text-align: center;
  font-size: 14px; color: var(--muted);
}
.screen-caption strong { color: var(--ink); }

/* ── QUOTE INNER ── */
.quote-inner { text-align: center; max-width: 700px; }

/* ── CTA INNER ── */
.cta-inner { text-align: center; }

/* ── FOOTER EXTRAS ── */
.footer-logo { margin-bottom: 4px; }
.footer-company { margin-top: 4px; }

/* ── FAQ LINK ── */
.faq-link { color: var(--accent); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: #0d110b; border-top: 1px solid rgba(132,204,22,.2);
  padding: 16px 24px;
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-text {
  flex: 1; min-width: 260px;
  font-size: 13px; color: var(--muted); line-height: 1.6;
  display: flex; flex-direction: column; gap: 4px;
}
.cookie-text strong { color: var(--ink); font-size: 14px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-primary {
  background: var(--accent); color: #0a0a0a;
  border: none; border-radius: 8px; padding: 9px 20px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.cookie-btn-primary:hover { background: #a3e635; }
.cookie-btn-secondary {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border2); border-radius: 8px; padding: 9px 20px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: .2s;
}
.cookie-btn-secondary:hover { border-color: var(--accent); color: var(--ink); }

/* ── MODALS ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.8); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 24px; align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #0f130d; border: 1px solid rgba(132,204,22,.2);
  border-radius: 16px; padding: 36px; max-width: 640px; width: 100%;
  max-height: 80vh; overflow-y: auto; position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--muted);
  font-size: 18px; cursor: pointer; padding: 4px 8px; border-radius: 6px;
  transition: color .2s;
}
.modal-close:hover { color: var(--ink); }
.modal-box h2 {
  font-family: 'Orbitron', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--ink); margin-bottom: 24px;
}
.modal-content { display: flex; flex-direction: column; gap: 16px; }
.modal-content h3 { font-size: 15px; font-weight: 700; color: var(--accent); margin-top: 8px; }
.modal-content p, .modal-content li { font-size: 14px; color: var(--muted); line-height: 1.7; }
.modal-content ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.modal-content strong { color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .hero { padding: 100px 20px 60px; flex-direction: column; align-items: flex-start; }
  .hero-preview { width: 100%; }
  .step-arrow { display: none; }
  .steps { flex-direction: column; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-quote { font-size: 17px; }
  .screens-tabs { width: 100%; }
  .stab { flex: 1; text-align: center; font-size: 13px; padding: 8px 10px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-btns { width: 100%; }
  .cookie-btn-primary, .cookie-btn-secondary { flex: 1; text-align: center; }
  .modal-box { padding: 24px; }
}
