/* ==========================================================================
   GarudaShield — Landing Page
   ========================================================================== */

:root {
  --bg: #0a0e14;
  --bg-soft: #0d131c;
  --bg-elev: #111826;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #e9edf4;
  --muted: #97a1b3;
  --muted-2: #6b7587;

  --accent: #f5a524;
  --accent-soft: rgba(245, 165, 36, 0.12);
  --accent-glow: rgba(245, 165, 36, 0.35);

  --green: #3ecf8e;

  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;

  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent-soft); color: var(--accent); }

img, svg { display: block; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.container-narrow { max-width: 820px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

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

.btn-primary {
  background: var(--accent);
  color: #1a1205;
  box-shadow: 0 0 0 1px rgba(245, 165, 36, 0.4), 0 8px 24px -8px var(--accent-glow);
}
.btn-primary:hover { background: #ffb73d; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); background: var(--accent-soft); }

.btn-block { width: 100%; }

.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

/* ===== Navbar ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brand-mark { width: 34px; height: 34px; color: var(--accent); }
.brand-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(10, 14, 20, 0.97);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a {
  padding: 12px 4px;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: 0; margin-top: 8px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 72px;
  overflow: hidden;
  isolation: isolate;
}

#net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 260px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-inner { max-width: 900px; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(62, 207, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.grad-text {
  background: linear-gradient(100deg, #ffb73d, #f5a524 55%, #e08b00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(233, 237, 244, 0.85);
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.01));
}
.stat { text-align: center; }
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted-2);
  margin-top: 4px;
}

/* ===== Trust strip ===== */
.trust { padding: 40px 0 72px; }
.trust-label {
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  margin-bottom: 28px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 56px;
}
.trust-logos span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: #5d6779;
  letter-spacing: -0.01em;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }

.section-alt {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245, 165, 36, 0.05), transparent 70%),
    var(--bg-soft);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 14px 0 16px;
}
.section-head p { color: var(--muted); }

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(245, 165, 36, 0.25);
  padding: 6px 12px;
  border-radius: 6px;
}

/* ===== Cards / Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.8);
}

.card-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(245, 165, 36, 0.22);
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 0.93rem; }

/* ===== Attack grid ===== */
.attack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.attack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.93rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.attack-item:hover { border-color: rgba(245, 165, 36, 0.45); background: var(--surface-hover); }
.attack-layer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(245, 165, 36, 0.22);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 36px 30px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(245, 165, 36, 0.35); }
.step-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--muted-2);
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(245, 165, 36, 0.22);
  margin-bottom: 20px;
}
.step-icon svg { width: 26px; height: 26px; }
.step h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ===== Network ===== */
.network {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 50% 60% at 50% 45%, rgba(245, 165, 36, 0.06), transparent 70%),
    var(--surface);
  padding: 20px 20px 30px;
}
.network-map { width: 100%; overflow: hidden; }
.network-map svg { width: 100%; height: auto; }
.map-graticule path {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
}
.map-links path {
  stroke: rgba(245, 165, 36, 0.3);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 5 7;
  animation: dash 14s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -120; } }
.map-pops circle {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
.map-pops circle:nth-child(even) { fill: #fff; }

.network-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-inline: 10px;
}
.pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.pill:hover { color: var(--accent); border-color: rgba(245, 165, 36, 0.4); }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.price-card:hover { transform: translateY(-5px); }

.price-featured {
  background: linear-gradient(180deg, rgba(245, 165, 36, 0.09), var(--surface) 45%);
  border-color: rgba(245, 165, 36, 0.5);
  box-shadow: 0 24px 60px -30px var(--accent-glow);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1a1205;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-top { margin-bottom: 22px; }
.price-top h3 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 6px; }
.price-desc { color: var(--muted); font-size: 0.88rem; }

.price-amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.price-cur { font-size: 1.1rem; color: var(--muted); margin-right: 3px; }
.price-per { font-size: 0.95rem; color: var(--muted-2); font-weight: 500; }

.price-list {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}
.price-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a524' stroke-width='2.4'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi { padding: 30px; display: flex; flex-direction: column; }
.testi p {
  font-size: 0.98rem;
  color: var(--text);
  flex-grow: 1;
  margin-bottom: 24px;
}
.testi footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi footer strong { display: block; font-size: 0.93rem; }
.testi footer span { font-size: 0.8rem; color: var(--muted-2); }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}
.avatar-a { background: rgba(245, 165, 36, 0.18); color: var(--accent); }
.avatar-b { background: rgba(62, 207, 142, 0.15); color: var(--green); }
.avatar-c { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.18s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: rgba(245, 165, 36, 0.35); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 400;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(245, 165, 36, 0.3);
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 70ch;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(245, 165, 36, 0.14), transparent 65%),
    var(--bg-soft);
  border-block: 1px solid var(--border);
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta-inner > p { color: var(--muted); max-width: 560px; margin: 0 auto 34px; }

.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto 18px;
}
.cta-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.cta-form input::placeholder { color: var(--muted-2); }
.cta-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

.cta-note { font-size: 0.85rem; color: var(--muted-2); }
.cta-note a { color: var(--accent); }
.cta-note a:hover { text-decoration: underline; }

/* ===== Footer ===== */
.footer {
  padding: 72px 0 36px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-about {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36ch;
  margin: 18px 0 20px;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--green);
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(62, 207, 142, 0.25);
  background: rgba(62, 207, 142, 0.06);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col a, .footer-addr {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-addr { line-height: 1.7; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
}
.footer-bottom p { color: var(--muted-2); font-size: 0.84rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--muted-2); font-size: 0.84rem; }
.footer-legal a:hover { color: var(--accent); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  #net { display: none; }
  .map-links path { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .attack-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .nav-mobile.hidden { display: none; }

  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .attack-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .attack-grid { grid-template-columns: 1fr 1fr; }
  .cta-form { flex-direction: column; }
  .cta-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}
