/* SAB Security — Premium Design System v2 */
/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #000000;
  --bg2: #06060e;
  --bg3: #0e0e1e;
  --card: rgba(255,255,255,.05);
  --card2: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.10);
  --gold: #3b82f6;
  --gold2: #60a5fa;
  --gold3: #93c5fd;
  --text: #ffffff;
  --muted: #9ca3af;
  --green: #34d399;
  --red: #f87171;
  --shadow: 0 28px 80px rgba(0,0,0,.60);
  --shadow-lg: 0 40px 100px rgba(0,0,0,.70);
  --radius: 24px;
  --radius-sm: 16px;
  --font-headline: 'Syne', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 18% 8%, rgba(59,130,246,.15), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(59,130,246,.08), transparent 34%),
    radial-gradient(circle at 50% 88%, rgba(59,130,246,.04), transparent 35%),
    linear-gradient(180deg, #000000 0%, #06060e 44%, #000000 100%);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.62), transparent 75%);
  z-index: -1;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ===== KEYFRAMES ===== */
@keyframes fadeReveal {
  from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes fadeRevealLeft {
  from { opacity: 0; transform: translateX(-32px); filter: blur(4px); }
  to   { opacity: 1; transform: translateX(0); filter: blur(0); }
}
@keyframes fadeRevealRight {
  from { opacity: 0; transform: translateX(32px); filter: blur(4px); }
  to   { opacity: 1; transform: translateX(0); filter: blur(0); }
}
@keyframes scaleReveal {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 32px rgba(59,130,246,.15); }
  50%      { box-shadow: 0 0 64px rgba(59,130,246,.28); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(59,130,246,.35); }
  50%      { border-color: rgba(59,130,246,.65); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drawerSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes drawerSlideOut {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}
@keyframes fadeOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeOverlayOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ===== REVEAL CLASSES ===== */
.reveal {
  opacity: 0; transform: translateY(24px); filter: blur(4px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1), filter .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.reveal-left {
  opacity: 0; transform: translateX(-32px); filter: blur(4px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1), filter .7s cubic-bezier(.22,1,.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); filter: blur(0); }

.reveal-right {
  opacity: 0; transform: translateX(32px); filter: blur(4px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1), filter .7s cubic-bezier(.22,1,.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); filter: blur(0); }

.reveal-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children delays */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children > *:nth-child(7) { transition-delay: 480ms; }
.stagger-children > *:nth-child(8) { transition-delay: 560ms; }

.shimmer {
  position: relative; overflow: hidden;
}
.shimmer::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

/* ===== LAYOUT UTILITIES ===== */
.wrap   { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 76px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2 { margin: 0 0 14px; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.08rem; }

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.08rem;
  color: var(--text);
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  box-shadow: 0 0 32px rgba(59,130,246,.35), 0 8px 32px rgba(59,130,246,.2);
  flex-shrink: 0;
}

/* Desktop nav links */
.links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.76);
  font-size: .94rem;
}

.links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}

.links a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* Language switcher */
.lang {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.lang a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  transition: color .2s, border-color .2s, background .2s;
}

.lang a:hover,
.lang a.active {
  color: var(--gold2);
  border-color: rgba(59,130,246,.45);
  background: rgba(59,130,246,.08);
}

/* Hamburger button */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}

.hamburger:hover {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  position: relative;
  transition: background .2s;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  left: 0;
  transition: transform .25s ease, top .25s ease;
}

.hamburger span::before { top: -6px; }
.hamburger span::after  { top: 6px; }

/* Hamburger active (open) state */
.hamburger.active span { background: transparent; }
.hamburger.active span::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile drawer overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeOverlayIn .3s ease;
}

.nav-overlay.closing {
  animation: fadeOverlayOut .2s ease forwards;
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 85vw);
  z-index: 49;
  background: rgba(6,6,14,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  animation: drawerSlideIn .3s ease;
}

.mobile-drawer.closing {
  animation: drawerSlideOut .2s ease forwards;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 8px;
}

.mobile-drawer-header .brand {
  font-size: 1rem;
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}

.mobile-drawer-close:hover {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.mobile-drawer .drawer-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  transition: background .2s, color .2s;
}

.mobile-drawer .drawer-link:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}

.mobile-drawer .drawer-link.primary {
  color: var(--gold2);
  font-weight: 600;
}

.mobile-drawer .drawer-cta {
  margin-top: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #15100a;
  font-weight: 700;
  text-align: center;
  font-size: .95rem;
}

.mobile-drawer .drawer-lang {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mobile-drawer .drawer-lang a {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  transition: border-color .2s, color .2s, background .2s;
}

.mobile-drawer .drawer-lang a:hover {
  border-color: rgba(59,130,246,.45);
  color: var(--gold2);
  background: rgba(59,130,246,.06);
}

/* ===== TYPOGRAPHY ===== */
h1 {
  margin: 0 0 24px;
  font-family: var(--font-headline);
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.05em;
  color: #fff;
  text-wrap: balance;
}

h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
  text-wrap: balance;
}

h3 { font-family: var(--font-headline); letter-spacing: -.02em; }

.gold-text {
  background: linear-gradient(135deg, #fff 0%, #93c5fd 30%, #60a5fa 52%, #3b82f6 70%, #1d4ed8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease infinite;
}

.lead {
  margin: 0;
  max-width: 760px;
  color: rgba(248,244,236,.78);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

/* ===== BUTTONS ===== */
.btn {
  min-height: 50px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  font-size: .94rem;
}

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

.btn.gold {
  color: #15100a;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 0 40px rgba(59,130,246,.2), 0 18px 48px rgba(59,130,246,.26);
}

.btn.gold:hover {
  box-shadow: 0 0 56px rgba(59,130,246,.3), 0 22px 56px rgba(59,130,246,.36);
  transform: translateY(-3px);
}

.btn.dark {
  color: #fff;
  background: rgba(255,255,255,.075);
}

.btn.dark:hover { background: rgba(255,255,255,.11); }

.btn.outline {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255,255,255,.16);
}

.btn.outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 56px;
  padding: 78px 0 70px;
}

.hero.compact {
  min-height: auto;
  grid-template-columns: 1fr;
  padding: 92px 0 42px;
}

.hero.compact h1  { max-width: 920px; }
.hero.compact .lead { max-width: 760px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.25);
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: subtlePulse 2s ease-in-out infinite;
}

.hero-badge span {
  color: var(--gold2);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(59,130,246,.42);
  border-radius: 999px;
  background: rgba(59,130,246,.1);
  color: var(--gold2);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Trust row */
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.trust-pill {
  padding: 13px 14px;
  border-radius: 17px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.82);
  font-size: .94rem;
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 70px;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  line-height: 1.7;
}

.trust-strip strong { color: var(--text); }

/* Hero visual (score card) */
.visual {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055)),
    radial-gradient(circle at 12% 0%, rgba(59,130,246,.22), transparent 35%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.17), transparent 35%);
  pointer-events: none;
}

.score {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  border-radius: 22px;
  margin-bottom: 18px;
}

.score strong { font-size: 2.4rem; color: var(--gold2); letter-spacing: -.06em; }

.scan-list {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.scan-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 15px;
  border-radius: 17px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
}

.ok  { color: var(--green); font-weight: 850; }
.warn { color: var(--gold2); font-weight: 850; }

/* ===== GRIDS ===== */
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

/* 2x2 services grid (for service cards) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* 4-column pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* ===== CARDS ===== */
.card {
  position: relative;
  padding: 27px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.055));
  box-shadow: 0 20px 55px rgba(0,0,0,.25);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card.featured {
  border-color: rgba(59,130,246,.55);
  background:
    linear-gradient(180deg, rgba(59,130,246,.16), rgba(255,255,255,.06)),
    rgba(255,255,255,.07);
  box-shadow: 0 0 60px rgba(59,130,246,.08), 0 20px 55px rgba(0,0,0,.25);
  animation: borderGlow 4s ease-in-out infinite;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59,130,246,.48), transparent 38%, rgba(255,255,255,.14));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(0,0,0,.36), 0 0 0 1px rgba(59,130,246,.15);
}

.card:hover::before {
  background: linear-gradient(135deg, rgba(59,130,246,.72), transparent 38%, rgba(255,255,255,.22));
}

/* Service card variant */
.service-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59,130,246,.35), transparent 45%, rgba(255,255,255,.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,.35), 0 0 0 1px rgba(59,130,246,.12);
  border-color: rgba(59,130,246,.35);
}

.service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.18);
  font-size: 1.3rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 8px;
  letter-spacing: -.02em;
}

.service-card p {
  color: rgba(248,244,236,.68);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold2);
  font-weight: 600;
  font-size: .9rem;
  transition: gap .2s;
}

.service-card .service-link:hover { gap: 10px; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59,130,246,.22), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.stat-number {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--gold2);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--muted);
  font-size: .88rem;
  letter-spacing: .03em;
}

/* ===== TOOLS GRID ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  color: var(--text);
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}

.tool-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,.18), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,.35);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  background: linear-gradient(165deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}

.tool-card:hover::after { opacity: 1; }

.tool-icon   { font-size: 1.9rem; line-height: 1; margin-bottom: 4px; }
.tool-card span:not(.tool-icon) { font-weight: 600; font-size: 1.02rem; color: var(--text); }
.tool-card small { color: var(--muted); font-size: .84rem; line-height: 1.5; }

/* ===== PRICING / CHOICE CARDS ===== */
.choice-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.choice-card {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  transition: transform .35s ease, box-shadow .35s ease;
}

.choice-card.featured {
  border-color: rgba(59,130,246,.55);
  background: linear-gradient(180deg, rgba(59,130,246,.13), rgba(255,255,255,.055));
  box-shadow: 0 0 60px rgba(59,130,246,.08), 0 18px 50px rgba(0,0,0,.22);
  animation: borderGlow 4s ease-in-out infinite;
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
}

.choice-card .badge {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(59,130,246,.16);
  color: var(--gold2);
  border: 1px solid rgba(59,130,246,.35);
  font-weight: 800;
  font-size: .82rem;
  margin-bottom: 12px;
}

.choice-card h2 { margin: 12px 0 10px; font-size: clamp(1.25rem, 2vw, 1.75rem); }
.choice-card p  { color: var(--muted); line-height: 1.7; }
.choice-card ul { padding-left: 18px; color: var(--muted); line-height: 1.8; margin: 12px 0 20px; }
.choice-card li { margin: 6px 0; }

.choice-card .price {
  color: var(--gold2);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -.05em;
  margin: 12px 0;
}

.choice-card .price small {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.choice-card .btn { margin-top: 4px; }

/* Pricing tier card variant */
.pricing-tier {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}

.pricing-tier::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59,130,246,.35), transparent 50%, rgba(255,255,255,.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,.35), 0 0 0 1px rgba(59,130,246,.12);
  border-color: rgba(59,130,246,.3);
}

.pricing-tier.featured-tier {
  border-color: rgba(59,130,246,.45);
  background: linear-gradient(180deg, rgba(59,130,246,.12), rgba(255,255,255,.05));
  box-shadow: 0 0 50px rgba(59,130,246,.06), 0 18px 50px rgba(0,0,0,.22);
}

.pricing-tier .tier-name {
  color: var(--gold2);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-tier .tier-title {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.03em;
}

.pricing-tier .tier-desc {
  color: rgba(248,244,236,.65);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.pricing-tier .tier-price {
  color: var(--gold2);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -.05em;
  margin: 0 0 4px;
}

.pricing-tier .tier-price-label {
  color: var(--muted);
  font-size: .82rem;
  margin: 0 0 16px;
}

.pricing-tier ul {
  padding-left: 1.1rem;
  color: rgba(248,244,236,.68);
  line-height: 1.7;
  font-size: .88rem;
  margin: 0 0 20px;
}

.pricing-tier ul li { margin: 5px 0; }

.pricing-tier .btn { width: 100%; }

/* Popular badge */
.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #15100a;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(59,130,246,.3);
  z-index: 3;
  animation: subtlePulse 3s ease-in-out infinite;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,.35);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.testimonial-card .quote {
  color: var(--gold2);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
  opacity: .8;
}

.testimonial-card blockquote {
  color: rgba(248,244,236,.82);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 14px;
  font-style: italic;
  position: relative;
}

.testimonial-card blockquote::before {
  content: open-quote;
  font-family: var(--font-headline);
  font-size: 3rem;
  color: var(--gold);
  opacity: .3;
  position: absolute;
  top: -8px;
  left: -4px;
  line-height: 1;
}

.testimonial-card .author {
  color: var(--gold2);
  font-size: .85rem;
  font-weight: 700;
}

.testimonial-card .author span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: .82rem;
  margin-top: 2px;
}

/* ===== CARD INNER ELEMENTS ===== */
.card small {
  display: inline-flex;
  color: var(--gold2);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.card p, .card li { color: rgba(248,244,236,.72); }
.card ul { padding-left: 1.05rem; margin: 18px 0 24px; }
.card li { margin: .55rem 0; }

.price {
  color: var(--gold2);
  font-size: 2.1rem;
  font-weight: 950;
  letter-spacing: -.06em;
  margin: 16px 0;
}

.price small {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* ===== PROCESS STEPS ===== */
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
}

.step b { color: var(--gold2); font-size: 1.1rem; }
.step h3 { margin: 10px 0 6px; color: #fff; font-size: 1.1rem; }
.step p { color: rgba(248,244,236,.72); font-size: .92rem; line-height: 1.55; }

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== PANELS ===== */
.panel {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.13);
  transition: transform .3s ease, box-shadow .3s ease;
}

.panel:hover { transform: translateY(-2px); }
.panel h3 { margin-top: 0; color: #fff; }
.panel li { color: rgba(248,244,236,.74); margin: .5rem 0; }

/* ===== CTA SECTION ===== */
.cta {
  margin: 80px auto;
  padding: 52px 46px;
  border-radius: 34px;
  border: 1px solid rgba(59,130,246,.4);
  background:
    radial-gradient(circle at 10% 0%, rgba(59,130,246,.28), transparent 32%),
    radial-gradient(circle at 90% 100%, rgba(59,130,246,.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  box-shadow: 0 0 80px rgba(59,130,246,.06), var(--shadow);
  text-align: center;
}

.cta h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.cta p { max-width: 720px; margin: 0 auto 24px; color: rgba(248,244,236,.74); }

/* ===== FAQ ===== */
.faq-item {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: border-color .2s;
}

.faq-item:hover { border-color: rgba(255,255,255,.14); }

.faq-item summary {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold2);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .25s;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item .faq-answer {
  color: rgba(248,244,236,.68);
  margin-top: 14px;
  line-height: 1.7;
  font-size: .92rem;
}

/* ===== SERVICE HIGHLIGHT ===== */
.service-highlight {
  max-width: 1180px;
  margin: 56px auto;
  padding: 0 20px;
}

.service-highlight-inner {
  border: 1px solid rgba(59,130,246,.35);
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.service-highlight .eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 10px;
  display: block;
  border: none;
  padding: 0;
  background: none;
}

.service-highlight h2 { margin: 0 0 12px; }
.service-highlight p  { max-width: 820px; margin-bottom: 22px; color: rgba(248,244,236,.72); }
.service-highlight ul { color: rgba(248,244,236,.72); padding-left: 1.1rem; margin-bottom: 22px; }
.service-highlight li { margin: .45rem 0; }

/* ===== SCANNER PROMO ===== */
.scanner-promo {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.scanner-promo strong { color: var(--text); font-size: 1.08rem; }
.scanner-promo p { color: var(--muted); font-size: .92rem; margin: 5px 0 0; }

/* ===== REPORT CARDS ===== */
.report-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 18px;
}

.report-card h3 { color: var(--gold); font-size: 1.02rem; margin: 0 0 9px; font-weight: 700; }
.report-card p  { color: var(--muted); font-size: .94rem; line-height: 1.6; margin: 0; }

.report-table { width: 100%; border-collapse: collapse; }

.report-table th {
  text-align: left;
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
}

.report-table td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--text);
  font-size: .92rem;
  vertical-align: top;
}

.report-note {
  background: rgba(59,130,246,.06);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 18px 0;
}

.report-note p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin: 0; }
.report-note strong { color: var(--text); }

/* ===== BADGES ===== */
.badge { display: inline-block; padding: 4px 12px; border-radius: 12px; font-size: .82rem; font-weight: 700; }
.badge-good { background: rgba(125,211,168,.12); color: var(--green); }
.badge-warn { background: rgba(59,130,246,.12); color: var(--gold); }
.badge-bad  { background: rgba(255,138,138,.12); color: var(--red); }

/* ===== DNS BLOCK ===== */
.dns-block {
  font-family: 'SF Mono', 'Consolas', 'Courier New', monospace;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 12px 0;
  font-size: .84rem;
  color: var(--muted);
  overflow-x: auto;
  line-height: 1.7;
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}

table { width: 100%; border-collapse: collapse; }

th {
  text-align: left;
  padding: 14px 16px;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}

td {
  padding: 14px 16px;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: middle;
}

tr:last-child td { border-bottom: none; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 36px 0;
  color: rgba(255,255,255,.64);
  font-size: .92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a { color: rgba(255,255,255,.64); }
.footer a:hover { color: var(--gold2); }

/* ===== MISC ===== */
hr.gold {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,.35), transparent);
  margin: 48px 0;
}

.warning {
  border: 1px solid rgba(59,130,246,.3);
  background: rgba(59,130,246,.07);
  border-radius: 24px;
  padding: 24px;
}

.warning h3 { margin-top: 0; }

.page-shell  { max-width: 1120px; margin: 0 auto; padding: 48px 20px; }

.content-card {
  margin: 28px auto;
  padding: 28px;
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}

.content-card h2 { margin-top: 0; }

/* Utility classes */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.card-dark   { background: var(--bg2); border: 1px solid rgba(255,255,255,.10); border-radius: 18px; padding: 28px 32px; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }

.gold-sep {
  width: 100%;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ===== TOPBAR (alternative header pattern for some pages) ===== */
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
}

.topbar .wrap, .topbar .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.topbar .brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--text);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .94rem;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
}

.topbar nav a:hover, .topbar nav a.active { color: var(--gold2); }

/* ===== SITE HEADER (legal pages pattern) ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px max(28px, calc((100% - 1180px) / 2 + 20px));
  margin: 0 auto;
}

.site-header nav { display: flex; gap: 10px; }

.site-header nav a {
  color: var(--muted);
  font-size: .92rem;
  text-decoration: none;
}

.site-header nav a:hover { color: var(--text); }

.site-footer {
  max-width: min(1180px, calc(100% - 48px));
  margin: 60px auto 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #5a5752;
  font-size: .82rem;
  text-align: center;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: #15100a;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 800;
  z-index: 1000;
  font-size: .9rem;
}

.skip-link:focus { top: 0; }

/* ===== FOCUS & ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e1e24; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a32; }

::selection { background: rgba(59,130,246,.2); color: #f5f3f0; }

/* ===== LEGACY CARD ICON ===== */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.18);
  font-size: 1.15rem;
  margin-bottom: 8px;
  opacity: 1;
}

.choice-card.featured .card-icon {
  background: rgba(59,130,246,.18);
  border-color: rgba(59,130,246,.35);
  box-shadow: 0 0 18px rgba(59,130,246,.1);
}

.choice-card.featured::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59,130,246,.45), transparent 45%, rgba(59,130,246,.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* ===== FORM ELEMENTS ===== */
.privacy-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0 4px;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--muted);
}

.privacy-consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--gold2);
}

.privacy-consent a {
  color: var(--gold2);
  text-decoration: underline;
}

.privacy-consent a:hover {
  color: var(--gold3);
}

.error {
  display: none;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet: 980px and below */
@media (max-width: 980px) {
  .hero, .split { grid-template-columns: minmax(0, 1fr); }
  .hero { min-height: auto; padding: 58px 0 44px; }
  .hero > * { min-width: 0; }
  .grid3, .process, .choice-grid { grid-template-columns: 1fr 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: 768px and below — hamburger menu kicks in */
@media (max-width: 768px) {
  .wrap { width: min(100% - 28px, 1180px); }

  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex; }
  .links { display: none; }
  .header .lang { display: none; }

  /* Mobile drawer visible when open */
  .mobile-drawer.open { display: flex; }
  .nav-overlay.open { display: block; }

  .nav {
    min-height: auto;
    padding: 12px 0;
    flex-direction: row;
    align-items: center;
  }

  .brand { font-size: .95rem; gap: 8px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 10px; }

  .hero { padding: 46px 0 34px; gap: 28px; }
  .hero.compact { padding: 64px 0 34px; }
  .hero-badge { white-space: normal; text-align: left; }

  h1 { font-size: clamp(1.7rem, 6.5vw, 2.8rem); line-height: 1.1; overflow-wrap: break-word; }
  h2 { font-size: clamp(1.45rem, 5vw, 2.2rem); line-height: 1.1; }
  .lead { font-size: clamp(.95rem, 2.8vw, 1.1rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }

  .trust-row,
  .grid3,
  .grid4,
  .process,
  .choice-grid,
  .pricing-grid,
  .services-grid,
  .stats-grid { grid-template-columns: 1fr; }

  .visual, .card, .panel, .cta { border-radius: 22px; padding: 21px; }
  .section { padding: 50px 0; }

  .scanner-promo { padding: 18px 20px; flex-direction: column; text-align: center; }

  /* Topbar mobile */
  .topbar .wrap, .topbar .container {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 12px;
  }

  .topbar nav a { font-size: .85rem; padding: 10px 14px; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .hero-actions { gap: 10px; }
  .section-head h2, h2 { font-size: 1.55rem; }
  .mobile-drawer { width: 100vw; }
  .trust-pill { overflow-wrap: break-word; hyphens: auto; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .card:hover, .choice-card:hover, .pricing-tier:hover, .btn:hover { transform: none; }
  .popular-badge { animation: none; }
}
