/* ================================================================
   ZAP ZONE DEFENDER — MASTER STYLESHEET
   Theme: Dark Navy + Electric Cyan/Purple (Bug Zapper Niche)
   Google Fonts: Outfit + Inter
================================================================ */

/* ── RESET + BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.6; color: #e8eaf6;
  background: #060b1a;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --cyan:       #00e5ff;
  --cyan-dark:  #00b8d4;
  --cyan-glow:  rgba(0,229,255,.35);
  --purple:     #7c4dff;
  --purple-glow:rgba(124,77,255,.3);
  --navy:       #060b1a;
  --navy-2:     #0a1228;
  --navy-3:     #0d1835;
  --card-bg:    rgba(255,255,255,.04);
  --card-border:rgba(0,229,255,.15);
  --text:       #e8eaf6;
  --text-muted: #8892b0;
  --green-ok:   #00e676;
  --orange-warn:#ff9100;
  --shadow-cyan: 0 8px 32px rgba(0,229,255,.22);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.6);
  --container:  1180px;
  --radius-card:20px;
}

/* ── UTILS ─────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-cyan   { color: var(--cyan); }
.text-purple { color: var(--purple); }
.text-muted  { color: var(--text-muted); }
.center { text-align: center; }
.section-eyebrow {
  display: block; text-align: center; font-size: 11px; font-weight: 700;
  color: var(--cyan); text-transform: uppercase; letter-spacing: .22em; margin-bottom: 12px;
}

/* CTA BUTTON */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--cyan) 0%, #00b8d4 100%);
  color: #060b1a; font-weight: 800; font-size: 15px;
  padding: 18px 38px; border-radius: 50px;
  letter-spacing: .05em; text-transform: uppercase;
  box-shadow: 0 0 30px var(--cyan-glow), 0 8px 24px rgba(0,0,0,.4);
  transition: .2s ease; position: relative; overflow: hidden;
}
.btn-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 0 50px var(--cyan-glow), 0 16px 40px rgba(0,0,0,.5); }
.btn-cta.large { font-size: 17px; padding: 22px 48px; }
.btn-cta.full  { width: 100%; }

/* PULSE ANIMATION on CTA */
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 30px var(--cyan-glow), 0 8px 24px rgba(0,0,0,.4); }
  50%       { box-shadow: 0 0 60px var(--cyan-glow), 0 8px 40px rgba(0,0,0,.5); }
}
.btn-cta.pulse { animation: pulse-cta 2.5s ease-in-out infinite; }

/* ── TOP ANNOUNCEMENT STRIP ────────────────────────────────── */
.top-strip {
  background: linear-gradient(90deg, #7c4dff 0%, #00b8d4 50%, #7c4dff 100%);
  background-size: 200% 100%; animation: strip-slide 6s linear infinite;
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 10px 20px; text-align: center;
  display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap;
}
@keyframes strip-slide { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }
.top-strip strong { font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.countdown-strip {
  display: inline-flex; align-items: center; gap: 6px;
  font-variant-numeric: tabular-nums; font-weight: 700;
}
.countdown-strip .cd-seg {
  background: rgba(0,0,0,.3); padding: 3px 9px; border-radius: 6px;
  min-width: 34px; text-align: center; display: inline-block;
  border: 1px solid rgba(255,255,255,.2); font-size: 14px; font-weight: 800;
}
.countdown-strip .cd-sep { opacity: .7; }

/* ── STICKY HEADER ─────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6,11,26,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,229,255,.12);
  transition: .3s ease;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--container); margin: 0 auto;
}
.logo {
  font-weight: 800; font-size: 26px; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: flex; align-items: center; gap: 6px;
}
.logo-icon { font-size: 24px; -webkit-text-fill-color: var(--cyan); }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: #9fa8c7; }
.nav-links a:hover { color: var(--cyan); transition: .18s; }
.header-cta-pill {
  background: linear-gradient(135deg, var(--cyan), #00b8d4);
  color: #060b1a; font-weight: 800; font-size: 13px;
  padding: 9px 22px; border-radius: 50px;
  letter-spacing: .05em; text-transform: uppercase;
  box-shadow: 0 0 16px var(--cyan-glow);
  transition: .2s;
}
.header-cta-pill:hover { transform: translateY(-1px); box-shadow: 0 0 28px var(--cyan-glow); }
@media (max-width: 768px) { .nav-links { display: none; } .logo { font-size: 20px; } }

/* ── MARQUEE TICKER ────────────────────────────────────────── */
.marquee {
  background: var(--navy-2); border-top: 1px solid rgba(0,229,255,.12);
  border-bottom: 1px solid rgba(0,229,255,.12);
  overflow: hidden; position: relative; padding: 13px 0;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--navy-2) 0%, transparent 100%); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--navy-2) 0%, transparent 100%); }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 32px; font-size: 13.5px; font-weight: 700; color: #c9d4f0;
  white-space: nowrap; border-right: 1px solid rgba(0,229,255,.15);
}
.marquee-dot { color: var(--cyan); font-size: 18px; line-height: 1; }

/* ── HERO SECTION ──────────────────────────────────────────── */
.hero {
  padding: 50px 0 70px;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124,77,255,.15) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0,229,255,.12) 0%, transparent 60%),
              var(--navy);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,229,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 50px; align-items: center; position: relative; z-index: 1;
}

/* Media / Gallery */
.hero-media { position: sticky; top: 80px; }
.hero-stage {
  position: relative; border-radius: var(--radius-card);
  background: linear-gradient(145deg, rgba(0,229,255,.08) 0%, rgba(124,77,255,.08) 100%);
  border: 1px solid var(--card-border);
  padding: 28px; display: flex; align-items: center; justify-content: center;
  min-height: 480px;
  box-shadow: 0 0 60px rgba(0,229,255,.12), inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-stage::before {
  content: ''; position: absolute; inset: -1px; border-radius: calc(var(--radius-card) + 1px);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  z-index: -1; opacity: .25;
}
.hero-main-img {
  max-height: 420px; width: auto; margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,229,255,.4));
  transition: .4s ease;
}
.hero-main-img:hover { transform: scale(1.03); filter: drop-shadow(0 24px 50px rgba(0,229,255,.55)); }

/* Thumbs */
.hero-thumbs-row { display: flex; gap: 10px; margin-top: 14px; justify-content: center; }
.hero-thumb {
  width: 72px; height: 72px; border-radius: 12px;
  border: 2px solid rgba(0,229,255,.2); overflow: hidden;
  cursor: pointer; transition: .2s; background: var(--navy-2);
  display: flex; align-items: center; justify-content: center;
}
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-thumb:hover { border-color: var(--cyan); }
.hero-thumb.active { border-color: var(--cyan); box-shadow: 0 0 12px var(--cyan-glow); }

/* Scarcity badge */
.scarcity-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,145,0,.15); border: 1px solid rgba(255,145,0,.4);
  color: var(--orange-warn); font-size: 11px; font-weight: 800;
  padding: 5px 12px; border-radius: 50px; letter-spacing: .06em;
  display: flex; align-items: center; gap: 6px; backdrop-filter: blur(8px);
  z-index: 10;
}
.scarcity-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-warn); animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }

/* Hero Copy */
.hero-copy { padding-right: 10px; }
.hero-rating {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap;
}
.stars { color: #ffd740; font-size: 16px; letter-spacing: 2px; }
.rating-text { font-size: 13.5px; color: var(--text-muted); font-weight: 500; }
.rating-text strong { color: var(--text); font-weight: 700; }
.badge-verified {
  background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.3);
  color: var(--green-ok); font-size: 10.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px; letter-spacing: .06em;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 800; color: var(--purple);
  text-transform: uppercase; letter-spacing: .2em; margin-bottom: 12px; display: block;
}
.hero-title {
  font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.08;
  letter-spacing: -.025em; margin-bottom: 16px; color: #fff;
}
.hero-title .hl-cyan { color: var(--cyan); }
.hero-subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }

/* Benefit chips */
.benefit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
  padding: 18px 0; border-top: 1px solid rgba(0,229,255,.12); border-bottom: 1px solid rgba(0,229,255,.12);
  margin-bottom: 22px;
}
.benefit-chip {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: #c9d4f0;
}
.chip-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #00b8d4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 11px; color: #060b1a; font-weight: 800;
}

/* Price row */
.price-row {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; flex-wrap: wrap;
}
.price-current { font-size: 42px; font-weight: 800; color: var(--cyan); line-height: 1; }
.price-old     { font-size: 20px; color: var(--text-muted); text-decoration: line-through; }
.price-save {
  background: linear-gradient(135deg, #00e676, #00b248);
  color: #060b1a; font-weight: 800; font-size: 12px;
  padding: 6px 14px; border-radius: 6px; letter-spacing: .06em; text-transform: uppercase;
}

/* Trust micro-strip */
.hero-trust-strip {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px;
  font-size: 12px; color: var(--text-muted); padding-top: 16px;
  border-top: 1px dashed rgba(0,229,255,.12);
}
.hero-trust-strip span { display: flex; align-items: center; gap: 6px; font-weight: 500; }
.hero-trust-strip .ico { font-size: 14px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { position: static; }
  .hero-copy  { padding-right: 0; }
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ── HOW IT WORKS / SCIENCE ────────────────────────────────── */
.science {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative; overflow: hidden;
}
.science::before {
  content: ''; position: absolute; left: 50%; top: 0;
  width: 600px; height: 600px; margin-left: -300px;
  background: radial-gradient(ellipse, rgba(124,77,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  line-height: 1.1; letter-spacing: -.02em; color: #fff; margin-bottom: 12px;
}
.section-sub {
  font-size: 16px; color: var(--text-muted); max-width: 620px;
  margin: 0 auto 50px; line-height: 1.65; text-align: center;
}

/* 3-step how-it-works */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.step-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-card); padding: 34px 26px;
  text-align: center; transition: .25s ease; position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-cyan); border-color: rgba(0,229,255,.4); }
.step-number {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #060b1a;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.step-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-card p  { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }
.step-icon    { font-size: 36px; margin-bottom: 14px; }

/* Science image */
.science-img-wrap {
  border-radius: var(--radius-card); overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(0,229,255,.12);
  max-width: 860px; margin: 0 auto;
}
.science-img-wrap img { width: 100%; height: auto; display: block; }

@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── FEATURES / 4 CARDS ────────────────────────────────────── */
.features {
  padding: 90px 0;
  background: var(--navy-3);
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px;
}
.feature-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-card); padding: 30px 22px;
  transition: .25s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-cyan); border-color: rgba(0,229,255,.35); }
.feature-ico {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(0,229,255,.15), rgba(124,77,255,.15));
  border: 1px solid rgba(0,229,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* ── LIFESTYLE IMAGE BAND ──────────────────────────────────── */
.lifestyle-band {
  padding: 0; position: relative; overflow: hidden;
}
.lifestyle-band img {
  width: 100%; max-height: 500px; object-fit: cover; display: block;
}
.lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,11,26,.9) 0%, rgba(6,11,26,.4) 60%, transparent 100%);
  display: flex; align-items: center;
}
.lifestyle-copy {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  max-width: 500px;
}
.lifestyle-copy h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.lifestyle-copy p  { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 24px; }

/* ── COMPARISON TABLE ──────────────────────────────────────── */
.comparison {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
}
.compare-table {
  width: 100%; border-collapse: collapse; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--card-border);
  margin-top: 50px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px; text-align: center; font-size: 14.5px;
  border-bottom: 1px solid rgba(0,229,255,.08);
}
.compare-table th {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  padding: 18px 20px;
}
.compare-table thead tr { background: linear-gradient(135deg, rgba(0,229,255,.12), rgba(124,77,255,.12)); }
.compare-table thead th:first-child { text-align: left; color: var(--text-muted); }
.compare-table thead .col-ours { color: var(--cyan); }
.compare-table tbody tr { background: rgba(255,255,255,.02); transition: .18s; }
.compare-table tbody tr:hover { background: rgba(0,229,255,.04); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: #c9d4f0; }
.compare-table td.col-ours    { color: var(--cyan); font-weight: 700; }
.compare-table td.col-no      { color: #ef5350; }
.compare-table td.col-part    { color: var(--orange-warn); }
.check-icon { font-size: 18px; }
.ours-col-head {
  background: linear-gradient(135deg, var(--cyan), #00b8d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── 30-DAY TIMELINE ───────────────────────────────────────── */
.timeline {
  padding: 90px 0;
  background: var(--navy-3);
}
.timeline-track {
  display: flex; gap: 0; margin-top: 50px;
  position: relative;
}
.timeline-track::before {
  content: ''; position: absolute; top: 32px; left: 60px; right: 60px; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  z-index: 0;
}
.timeline-item {
  flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 10px;
}
.timeline-dot {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #060b1a;
  box-shadow: 0 0 20px var(--cyan-glow); border: 3px solid var(--navy-3);
}
.timeline-item h4 { font-size: 14px; font-weight: 700; color: var(--cyan); margin-bottom: 6px; }
.timeline-item p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 768px) {
  .timeline-track { flex-direction: column; }
  .timeline-track::before { display: none; }
  .timeline-item { display: flex; gap: 18px; text-align: left; align-items: flex-start; padding: 0 0 24px; }
  .timeline-dot  { flex-shrink: 0; }
}

/* ── REVIEWS / TESTIMONIALS ────────────────────────────────── */
.reviews {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}
.reviews-header {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-bottom: 50px; flex-wrap: wrap;
}
.agg-rating-box { text-align: center; }
.agg-num { font-size: 64px; font-weight: 800; color: var(--cyan); line-height: 1; }
.agg-stars { font-size: 24px; color: #ffd740; letter-spacing: 3px; margin: 4px 0; }
.agg-count { font-size: 14px; color: var(--text-muted); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-card); padding: 26px;
  transition: .22s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-cyan); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.reviewer-avatar {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(0,229,255,.3);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,229,255,.2), rgba(124,77,255,.2));
}
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-info { flex: 1; min-width: 0; }
.reviewer-name { font-weight: 700; color: #fff; font-size: 15px; }
.reviewer-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.review-stars { color: #ffd740; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.review-title  { font-weight: 700; color: #fff; font-size: 15px; margin-bottom: 6px; }
.review-body   { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.verified-tag {
  display: inline-block; margin-top: 12px; font-size: 10.5px; font-weight: 700;
  color: var(--green-ok); background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.25);
  padding: 3px 10px; border-radius: 50px; letter-spacing: .04em;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── GUARANTEE / SAFETY BOX ────────────────────────────────── */
.guarantee-section {
  padding: 90px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,229,255,.08) 0%, transparent 70%),
              var(--navy-3);
}
.guarantee-box {
  max-width: 900px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(0,229,255,.06) 0%, rgba(124,77,255,.06) 100%);
  border: 1px solid var(--card-border); border-radius: 28px; padding: 50px 48px;
  display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(0,229,255,.08);
}
.guarantee-img { width: 200px; height: auto; filter: drop-shadow(0 10px 24px rgba(255,215,0,.3)); }
.guarantee-copy h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.guarantee-copy p  { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.ssl-badges {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px;
}
.ssl-badge {
  display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #c9d4f0;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  padding: 7px 14px; border-radius: 8px;
}
.ssl-badge .ico { font-size: 16px; }
@media (max-width: 768px) {
  .guarantee-box { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; }
  .guarantee-img { margin: 0 auto; width: 160px; }
  .ssl-badges    { justify-content: center; }
}

/* ── FAQ SECTION ───────────────────────────────────────────── */
.faq {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
}
.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,229,255,.1);
  position: relative;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 50px 22px 0;
  font-weight: 700; font-size: 16px; color: #e8eaf6;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; transition: .2s; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 26px; color: var(--cyan); font-weight: 300;
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  transition: .25s ease;
}
.faq-item[open] summary { color: var(--cyan); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 0 22px; font-size: 14.5px; color: var(--text-muted);
  line-height: 1.75; animation: faq-open .25s ease;
}
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ── FINAL CTA BAND ────────────────────────────────────────── */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0,229,255,.15) 0%, rgba(124,77,255,.15) 100%),
              var(--navy-2);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,229,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.final-cta h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.final-cta p  { font-size: 17px; color: var(--text-muted); margin-bottom: 34px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: #030610; border-top: 1px solid rgba(0,229,255,.1);
  padding: 50px 0 30px; color: var(--text-muted);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo-text {
  font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 320px; }
.footer-col h4 { font-size: 12px; font-weight: 800; color: var(--cyan); text-transform: uppercase; letter-spacing: .15em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: .18s; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.06); margin-bottom: 26px; }
.footer-bottom { font-size: 12px; color: rgba(136,146,176,.6); line-height: 1.8; }
.footer-bottom strong { color: rgba(136,146,176,.9); }
.footer-legal { font-size: 11px; color: rgba(136,146,176,.5); line-height: 1.75; margin-top: 14px; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float { animation: float-y 4s ease-in-out infinite; }

/* Glow orb decorative */
.glow-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); z-index: 0;
}
.glow-orb.cyan   { background: rgba(0,229,255,.18); }
.glow-orb.purple { background: rgba(124,77,255,.18); }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(0,229,255,.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,255,.6); }

/* ── PRESS / AS SEEN ON ────────────────────────────────────── */
.press-strip {
  background: var(--navy-3);
  border-top: 1px solid rgba(0,229,255,.08); border-bottom: 1px solid rgba(0,229,255,.08);
  padding: 26px 0;
}
.press-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center;
}
.press-label {
  font-size: 11px; font-weight: 800; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .18em; white-space: nowrap;
}
.press-logos {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center;
}
.press-logo {
  font-size: 15px; font-weight: 800; color: rgba(136,146,176,.4);
  letter-spacing: -.01em; transition: .2s; white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.press-logo:hover { color: rgba(136,146,176,.7); }

/* ── STATS COUNTER BAND ────────────────────────────────────── */
.stats-band {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(0,229,255,.1) 0%, rgba(124,77,255,.12) 100%),
              var(--navy-2);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,229,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}
.stat-card { text-align: center; }
.stat-number {
  font-size: clamp(38px, 5vw, 60px); font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--cyan), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px; letter-spacing: -.03em;
}
.stat-label { font-size: 14px; font-weight: 600; color: var(--text-muted); line-height: 1.45; }
.stat-label strong { display: block; font-size: 16px; color: #e8eaf6; font-weight: 700; margin-bottom: 2px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── WHO IT'S FOR (use-case cards) ─────────────────────────── */
.usecases {
  padding: 90px 0;
  background: var(--navy);
}
.usecases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px;
}
.usecase-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-card); padding: 30px 26px;
  transition: .25s ease; position: relative; overflow: hidden;
}
.usecase-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0; transition: .25s;
}
.usecase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-cyan); }
.usecase-card:hover::after { opacity: 1; }
.usecase-emoji { font-size: 40px; margin-bottom: 16px; display: block; }
.usecase-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.usecase-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.usecase-tag {
  display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700;
  color: var(--cyan); background: rgba(0,229,255,.08); border: 1px solid rgba(0,229,255,.2);
  padding: 4px 12px; border-radius: 50px; letter-spacing: .06em;
}
@media (max-width: 900px) { .usecases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .usecases-grid { grid-template-columns: 1fr; } }

/* ── TECH SPECS TABLE ───────────────────────────────────────── */
.specs-section {
  padding: 90px 0;
  background: var(--navy-2);
}
.specs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  margin-top: 50px;
}
.specs-table {
  width: 100%; border-collapse: collapse;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
}
.specs-table tr { border-bottom: 1px solid rgba(0,229,255,.07); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
  padding: 14px 20px; font-size: 14px; vertical-align: middle;
}
.specs-table td:first-child {
  font-weight: 700; color: var(--text-muted); background: rgba(255,255,255,.02);
  width: 42%; font-size: 13px; text-transform: uppercase; letter-spacing: .06em;
}
.specs-table td:last-child { color: #e8eaf6; font-weight: 500; }
.specs-table tr:hover td { background: rgba(0,229,255,.04); }
.specs-highlight { color: var(--cyan) !important; font-weight: 700 !important; }
.specs-img-wrap {
  border-radius: var(--radius-card); overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 0 40px rgba(0,229,255,.1);
}
.specs-img-wrap img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) { .specs-grid { grid-template-columns: 1fr; } }

/* ── FOUNDER QUOTE ─────────────────────────────────────────── */
.founder-section {
  padding: 90px 0;
  background: var(--navy-3);
  position: relative; overflow: hidden;
}
.founder-box {
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(0,229,255,.06), rgba(124,77,255,.06));
  border: 1px solid var(--card-border); border-radius: 28px; padding: 52px 50px;
  display: grid; grid-template-columns: 180px 1fr; gap: 44px; align-items: center;
  position: relative; z-index: 1;
}
.founder-box::before {
  content: '"'; position: absolute; top: 20px; left: 32px;
  font-size: 120px; line-height: 1; color: var(--cyan); opacity: .12;
  font-family: Georgia, serif; pointer-events: none;
}
.founder-avatar-wrap {
  text-align: center;
}
.founder-avatar {
  width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; border: 3px solid rgba(0,229,255,.3);
  box-shadow: 0 0 30px var(--cyan-glow);
}
.founder-name { font-size: 14px; font-weight: 700; color: #fff; }
.founder-title { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.founder-quote p {
  font-size: 17px; line-height: 1.8; color: #c9d4f0; font-style: italic; margin-bottom: 18px;
}
.founder-quote cite { font-style: normal; font-size: 13px; color: var(--cyan); font-weight: 700; }
@media (max-width: 768px) {
  .founder-box { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; }
  .founder-box::before { font-size: 70px; }
}

/* ── MID-PAGE URGENCY CTA ──────────────────────────────────── */
.mid-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--cyan-dark) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.mid-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.mid-cta h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.mid-cta p  { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.mid-cta .btn-cta {
  background: #fff; color: var(--navy);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.mid-cta .btn-cta:hover { background: #f0f9ff; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.mid-cta-badges {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.7); font-weight: 600;
}
.mid-cta-badges span { display: flex; align-items: center; gap: 6px; }

/* ── BENEFIT DEEPDIVE LIST ─────────────────────────────────── */
.benefits-deep {
  padding: 90px 0;
  background: var(--navy);
}
.benefits-deep-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 50px;
}
.benefit-deep-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 26px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: .2s ease;
}
.benefit-deep-item:hover { border-color: rgba(0,229,255,.35); background: rgba(0,229,255,.04); }
.benefit-num {
  min-width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #060b1a;
}
.benefit-deep-item h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.benefit-deep-item p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 768px) { .benefits-deep-grid { grid-template-columns: 1fr; } }
