/* ══════════════════════════════════════════════════
   METAL GEAR — Main Stylesheet (Light Theme)
   Palette: White · Light Blue · Deep Blue Accent
   Typography: Space Grotesk (headings) · Inter (body)
══════════════════════════════════════════════════ */

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

:root {
  --black:        #ffffff;
  --deep:         #f8fafb;
  --surface:      #f0f4f9;
  --surface-2:    #e8ecf1;
  --gunmetal:     #dce3eb;
  --steel:        #c8d5e3;
  --muted:        #8895a7;
  --subtle:       #5a6b7d;
  --text:         #2d3748;
  --text-strong:  #0f172a;
  --cyan:         #0066cc;
  --cyan-dim:     rgba(0, 102, 204, 0.08);
  --cyan-border:  rgba(0, 102, 204, 0.25);
  --border:       rgba(0, 0, 0, 0.06);
  --border-2:     rgba(0, 0, 0, 0.10);
  --radius:       4px;
  --radius-lg:    8px;
  --shadow:       0 2px 24px rgba(0, 0, 0, 0.08);
  --font-head:    'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --container:    1240px;
  --section-pad:  96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

img { display: block; max-width: 100%; border-radius: 8px; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
address { font-style: normal; }

/* ── UTILITY ───────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  background: var(--cyan-dim);
  padding: 5px 14px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.18;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--subtle);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.accent { color: var(--cyan); }

.body-text {
  font-size: 16px;
  color: var(--subtle);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--black);
}
.btn-primary:hover { background: #33ebff; text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
}
.btn-outline:hover { background: var(--cyan-dim); text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--steel); background: var(--surface); text-decoration: none; }

/* ── IMAGE PLACEHOLDERS ────────────────────────── */
.img-placeholder {
  width: 100%;
  background: var(--surface-2);
  border: 1px dashed var(--steel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  color: var(--muted);
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

.placeholder-label { color: var(--subtle); font-size: 13px; }
.placeholder-dims   { color: var(--steel); font-size: 11px; }

.hero-placeholder   { height: 380px; }
.about-placeholder  { height: 360px; }
.why-placeholder    { height: 460px; }
.product-placeholder{ height: 140px; }
.step-placeholder   { height: 120px; }
.security-placeholder { height: 440px; }

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 251, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }

.brand-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  background: var(--cyan-dim);
  padding: 5px 12px;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-icon { width: 14px; height: 14px; flex-shrink: 0; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--subtle);
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active { color: var(--text-strong); background: var(--surface); text-decoration: none; }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  background: var(--cyan-dim);
  padding: 9px 20px;
  border-radius: var(--radius);
  margin-left: 12px;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-cta:hover { background: var(--cyan); color: var(--black); text-decoration: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.label-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--subtle);
  line-height: 1.68;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.risk-notice {
  font-size: 11px;
  color: var(--steel);
  line-height: 1.5;
  max-width: 480px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.hero-img-frame {
  position: relative;
}
.frame-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--cyan);
  border-style: solid;
}
.frame-corner--tl { top: -4px; left: -4px; border-width: 2px 0 0 2px; }
.frame-corner--tr { top: -4px; right: -4px; border-width: 2px 2px 0 0; }
.frame-corner--bl { bottom: -4px; left: -4px; border-width: 0 0 2px 2px; }
.frame-corner--br { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 1px;
}
.stat-card {
  background: var(--surface);
  padding: 18px 16px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-inner {
  display: flex;
  align-items: stretch;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  flex: 1;
}
.trust-icon { width: 28px; height: 28px; flex-shrink: 0; }
.trust-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.3;
}
.trust-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  background: var(--border);
  margin: 12px 28px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   ABOUT PREVIEW
══════════════════════════════════════════════════ */
.about-preview {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text { }
.about-text .btn-outline { margin-top: 8px; }
.about-visual { }
.about-badge-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--subtle);
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  padding: 8px 16px;
  border-radius: 24px;
}
.badge-pill img { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.service-card {
  background: var(--deep);
  padding: 36px 30px;
}
.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
}
.service-icon { width: 24px; height: 24px; }
.service-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 14px;
  color: var(--subtle);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  padding: 4px 10px;
  border-radius: var(--radius);
}

/* ══════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════ */
.why-us {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}
.why-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 14px;
  color: var(--subtle);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   PRODUCTS / PLANS
══════════════════════════════════════════════════ */
.products {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
  background: var(--deep);
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card--featured {
  background: var(--surface-2);
  border: 1px solid var(--cyan-border);
}
.product-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--cyan);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}
.product-header { margin-bottom: 20px; }
.product-tier {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.product-price { display: flex; align-items: baseline; gap: 4px; }
.price-amount {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-strong);
}
.price-period { font-size: 13px; color: var(--muted); }
.product-img-wrap { margin-bottom: 20px; }
.product-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.product-features li {
  font-size: 13px;
  color: var(--subtle);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--cyan);
}
.product-btn { width: 100%; text-align: center; margin-top: auto; }

/* ══════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.step-card {
  flex: 1;
  padding: 0 28px;
  border-left: 1px solid var(--border);
}
.step-card:first-child { padding-left: 0; border-left: none; }
.step-connector { display: none; }
.step-number {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1px var(--steel);
}
.step-img-wrap { margin-bottom: 16px; }
.step-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--subtle);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   SECURITY
══════════════════════════════════════════════════ */
.security {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.security-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sec-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sec-feature img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}
.sec-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 4px;
}
.sec-feature p {
  font-size: 13px;
  color: var(--subtle);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   RISK SECTION
══════════════════════════════════════════════════ */
.risk-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  background: var(--deep);
}
.risk-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid rgba(255, 193, 7, 0.22);
  border-left: 3px solid #ffc107;
  padding: 36px 40px;
}
.risk-icon-wrap { flex-shrink: 0; }
.risk-icon-large { width: 40px; height: 40px; }
.risk-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 12px;
}
.risk-text p {
  font-size: 14px;
  color: var(--subtle);
  line-height: 1.7;
  margin-bottom: 10px;
}
.risk-text a { color: var(--cyan); }
.risk-license {
  font-size: 12px !important;
  color: var(--steel) !important;
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════
   CONTACTS
══════════════════════════════════════════════════ */
.contacts {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.contact-card {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 4px;
}
.contact-icon { width: 22px; height: 22px; }
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-strong);
  text-decoration: none;
}
.contact-value:hover { color: var(--cyan); }
.contact-address { line-height: 1.6; }

/* ══════════════════════════════════════════════════
   CENTER-ALIGNED SECTIONS (Home Page)
══════════════════════════════════════════════════ */
.about-preview,
.services,
.why-us,
.products,
.how-it-works,
.security {
  text-align: center;
}

.security .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.security-visual {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.security-diagram {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo-icon { width: 30px; height: 30px; }
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer-license {
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.04em;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-strong);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.footer-link:hover { color: var(--cyan); text-decoration: none; }
.footer-address {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--steel);
}
.footer-disclaimer {
  font-size: 11px;
  color: var(--steel);
  max-width: 420px;
  text-align: right;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-inner {
    flex-wrap: wrap;
    gap: 0;
  }
  .trust-item {
    flex: 0 0 50%;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .trust-divider { display: none; }
}

@media (max-width: 900px) {
  :root { --section-pad: 64px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-placeholder { height: 280px; }

  .about-grid,
  .why-us-inner,
  .security-inner { grid-template-columns: 1fr; gap: 40px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }

  .steps-grid {
    flex-direction: column;
    gap: 32px;
  }
  .step-card {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 24px 0 0;
  }
  .step-card:first-child { border-top: none; padding-top: 0; }

  .contacts-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .header-badge { display: none; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 99;
  }
  .main-nav.is-open { display: flex; }
  .nav-link { padding: 12px 8px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-cta { margin: 16px 0 8px; text-align: center; }

  .hero { padding: 48px 0 40px; }
  .hero-title { font-size: 32px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }

  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
  .footer-disclaimer { text-align: left; }

  .risk-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-card { padding: 14px; }
}

/* ══════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--cyan-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.4);
  z-index: 1000;
  display: none;
}
.cookie-banner.show { display: block; }

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-content {
  flex: 1;
  min-width: 280px;
}
.cookie-banner-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.cookie-banner-text {
  font-size: 13px;
  color: var(--subtle);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner-link {
  color: var(--cyan);
  font-weight: 500;
  text-decoration: none;
}
.cookie-banner-link:hover { text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn-reject {
  background: transparent;
  color: var(--subtle);
  border: 1px solid var(--border);
}
.cookie-btn-reject:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-2);
}
.cookie-btn-accept {
  background: var(--cyan);
  color: var(--black);
  border: none;
}
.cookie-btn-accept:hover {
  background: #00ccdd;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    padding: 16px;
  }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; }
}