:root {
  --bg: #0b1220;
  --bg-soft: #0e1626;
  --panel: #131b2e;
  --panel-2: #161f36;
  --border: #2c3752;
  --text: #e7ecf5;
  --muted: #93a2c0;
  --muted-2: #6b7a9c;
  --blue: #3b82f6;
  --blue-light: #5aa9f5;
  --blue-dark: #2f6fe0;
  --gold: #f0b93f;
  --green: #4ade80;
  --red: #f87171;
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 17px;
}
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand .sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--muted-2);
  display: block;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.15s ease;
}
nav.main-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  color: white;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--muted); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background:
    radial-gradient(700px 400px at 15% -10%, rgba(59, 130, 246, 0.22), transparent 60%),
    radial-gradient(600px 380px at 100% 0%, rgba(240, 185, 63, 0.10), transparent 55%);
}
.hero .wrap { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--blue-light);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 22px 0 20px;
  max-width: 720px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--blue-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 22px; }
.hero-note { font-size: 13px; color: var(--muted-2); }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 44px; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--muted);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.store-badge:hover { border-color: var(--muted); color: var(--text); }
.store-badge svg { width: 20px; height: 20px; flex-shrink: 0; }
.store-badge .label { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge .label small { font-size: 10.5px; color: var(--muted-2); }
.store-badge .label strong { font-size: 14px; }
.store-badge.disabled { opacity: 0.55; cursor: default; }

/* ---------- Section shared ---------- */
section { padding: 88px 0; }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 14px; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Findings grid ---------- */
.findings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.finding-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.finding-card:hover { border-color: var(--muted-2); transform: translateY(-3px); }
.finding-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.finding-icon svg { width: 22px; height: 22px; }
.icon-gold { background: rgba(240, 185, 63, 0.14); color: var(--gold); }
.icon-blue { background: rgba(59, 130, 246, 0.14); color: var(--blue-light); }
.icon-green { background: rgba(74, 222, 128, 0.14); color: var(--green); }
.finding-card h3 { font-size: 16.5px; margin: 0 0 8px; }
.finding-card p { font-size: 14px; color: var(--muted); margin: 0; }

.legal-note {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(240, 185, 63, 0.07);
  border: 1px solid rgba(240, 185, 63, 0.28);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.legal-note svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.legal-note p { margin: 0; font-size: 13.5px; color: var(--muted); }
.legal-note strong { color: var(--text); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step { position: relative; padding-left: 4px; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  margin-bottom: 18px;
}
.step h3 { font-size: 17px; margin: 0 0 8px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }
.step-methods {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.chip {
  font-size: 12px;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---------- Report mock ---------- */
.report-mock {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}
.report-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  font-size: 13px;
}
.report-preview .rp-head {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px; margin-bottom: 14px;
}
.report-preview .rp-head strong { font-size: 13px; }
.report-preview .rp-head span { color: var(--muted-2); font-size: 11px; }
.rp-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px dashed var(--border); }
.rp-row:last-child { border-bottom: none; }
.rp-row .rp-label { color: var(--muted); font-size: 12.5px; }

.rp-map {
  position: relative;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(160deg, #16324a, #0d2338 55%, #142a1f);
  border: 1px solid var(--border);
}
.rp-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(147,162,192,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,162,192,0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}
.rp-map-plot {
  position: absolute;
  top: 28px; left: 38%;
  width: 74px; height: 54px;
  border: 1.5px dashed var(--gold);
  border-radius: 4px;
  background: rgba(240, 185, 63, 0.08);
}
.rp-map-pin {
  position: absolute;
  width: 22px; height: 22px;
  top: 38px; left: 47%;
  color: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.rp-map-tag {
  position: absolute;
  bottom: 8px; left: 10px;
  font-size: 10.5px;
  color: var(--muted);
  background: rgba(11, 18, 32, 0.75);
  padding: 3px 8px;
  border-radius: 999px;
}

.rp-summary {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.rp-summary-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.4px; color: var(--blue-light); text-transform: uppercase; }
.rp-summary p { margin: 6px 0 0; font-size: 12.5px; color: var(--text); line-height: 1.5; }
.rp-chat { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.rp-chat-msg { font-size: 11.5px; line-height: 1.4; padding: 7px 10px; border-radius: 8px; max-width: 92%; }
.rp-chat-msg.user { align-self: flex-end; background: rgba(147, 162, 192, 0.14); color: var(--text); border-bottom-right-radius: 2px; }
.rp-chat-msg.ai { align-self: flex-start; background: rgba(59, 130, 246, 0.16); color: var(--text); border-bottom-left-radius: 2px; }

.rp-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rp-footer > span:first-child { font-size: 10.5px; color: var(--muted-2); line-height: 1.4; }
.rp-pdf-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  color: var(--red);
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.08);
  padding: 5px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.rp-pdf-btn svg { width: 13px; height: 13px; }
.tag {
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.3px;
}
.tag-var { background: rgba(74, 222, 128, 0.15); color: var(--green); }
.tag-olasi { background: rgba(240, 185, 63, 0.15); color: var(--gold); }
.tag-zayif { background: rgba(147, 162, 192, 0.15); color: var(--muted); }
.report-copy h3 { font-size: 20px; margin: 0 0 12px; }
.report-copy p { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
.report-copy ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.report-copy li { display: flex; gap: 10px; font-size: 14px; color: var(--text); }
.report-copy li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* ---------- Packages ---------- */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.package-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
}
.package-card.highlight {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), var(--panel) 40%);
}
.package-badge {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
  color: var(--blue-light);
  background: rgba(59, 130, 246, 0.14);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 14px;
}
.package-card h3 { font-size: 18px; margin: 0 0 6px; }
.package-card .package-desc { color: var(--muted); font-size: 13.5px; margin: 0 0 20px; }
.package-card .package-price { font-size: 13px; color: var(--muted-2); margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; color: var(--text);
  font-size: 15.5px; font-weight: 600;
  padding: 22px 4px;
  cursor: pointer;
  text-align: left;
}
.faq-q svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--muted);
  font-size: 14.5px;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 4px 22px; }

/* ---------- Final CTA ---------- */
.cta-band {
  border-radius: 24px;
  background: linear-gradient(135deg, #142244, #0e1626 60%);
  border: 1px solid var(--border);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 260px at 50% 0%, rgba(59, 130, 246, 0.25), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(24px, 3.2vw, 32px); margin: 0 0 14px; }
.cta-band p { color: var(--muted); margin: 0 0 28px; font-size: 15.5px; }
.cta-band .store-badges { justify-content: center; margin-top: 0; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--bg-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--muted); font-size: 13.5px; max-width: 280px; margin-top: 14px; }
.footer-col h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted-2); margin: 0 0 14px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--muted-2);
}

/* ---------- Legal pages ---------- */
.legal-page { padding: 64px 0 100px; }
.legal-page .wrap { max-width: 820px; }
.legal-page h1 { font-size: 32px; margin-bottom: 6px; }
.legal-page .updated { color: var(--muted-2); font-size: 13px; margin-bottom: 40px; }
.legal-page h2 { font-size: 19px; margin: 36px 0 12px; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.legal-page ul { padding-left: 20px; }
.legal-page strong { color: var(--text); }
.legal-page a.inline-link { color: var(--blue-light); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  nav.main-nav, .header-actions .btn-primary.desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .findings-grid, .steps, .packages { grid-template-columns: 1fr; }
  .report-mock { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  body.mnav-open nav.main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 18px;
  }
  body.mnav-open nav.main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  body.mnav-open nav.main-nav a:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 22px; }
  section { padding: 64px 0; }
}
