/* ===========================================================
   VerovaShield — shared stylesheet
   =========================================================== */

:root {
  --navy: #0a1428;
  --navy-deep: #060c18;
  --blue: #2f6fed;
  --blue-light: #5b8bff;
  --cyan: #22c3ee;
  --ink: #16202f;
  --ink-soft: #4d5b6c;
  --paper: #ffffff;
  --paper-soft: #f4f7fb;
  --border: #e3e8f0;
  --green: #1fa971;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(10, 20, 40, 0.12);
  --shadow-sm: 0 6px 18px rgba(10, 20, 40, 0.08);
  --max: 1160px;
}

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

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: "Inter", sans-serif;
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  background: #eaf1ff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: #bcd4ff; background: rgba(91,139,255,.16); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .97rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 10px 24px rgba(47,111,237,.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(47,111,237,.42); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--border);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--paper-soft); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img.logo { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn { padding: 11px 18px; font-size: .88rem; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 12% 15%, rgba(47,111,237,.35) 0%, transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(34,195,238,.22) 0%, transparent 40%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 88px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 { color: #fff; }
.hero p.lead {
  color: #c7d3e6;
  font-size: 1.12rem;
  max-width: 48ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-badge { display: flex; align-items: center; gap: 9px; color: #a9b9d0; font-size: .87rem; font-weight: 600; }
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex-shrink: 0;
}
.hero-video-card {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-video-card::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(34,195,238,.32) 0%, rgba(47,111,237,.16) 45%, transparent 72%);
  filter: blur(30px);
  z-index: 0;
}
.hero-video-inner {
  position: relative;
  z-index: 1;
  max-width: 280px;
  width: 100%;
}
.hero-video-frame {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,.4);
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, #000 45%, transparent 100%);
          mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, #000 45%, transparent 100%);
}
.hero-video-inner video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--navy-deep);
}
.hero-video-sound {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(6,12,24,.55);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.hero-video-sound:hover { background: rgba(6,12,24,.78); transform: scale(1.07); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 660px; margin: 0 auto 50px; text-align: center; }
.section-head p { margin: 0 auto; }
.alt { background: var(--paper-soft); }
.dark-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
}
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: #a9b9d0; }
.dark-section .section-head p { color: #a9b9d0; }

/* ---------- Feature grid (how it works) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.feature-card img.phone-shot {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 20px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(10,20,40,.16);
}
.feature-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.feature-card p { font-size: .92rem; margin-bottom: 0; }

/* ---------- Cards / grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.card.on-dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.card.on-dark h3, .card.on-dark strong { color: #fff; }
.card.on-dark p { color: #a9b9d0; }

.icon-tile {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: #eaf1ff;
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-tile.on-dark { background: rgba(91,139,255,.16); color: var(--cyan); }

.icon-tile img { width: 22px; height: 22px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.step:first-child { border-top: none; }
.step .num {
  counter-increment: step;
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.step .num::before { content: counter(step); }

/* ---------- Community stat band ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .stat-band { grid-template-columns: 1fr; } }
.stat-item .num { font-size: 2.1rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.stat-item .label { color: #a9b9d0; font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  color: #fff;
  border-radius: var(--radius);
  padding: 52px;
  text-align: center;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { color: #eaf4ff; margin: 0 auto 28px; max-width: 52ch; }

/* ---------- Store badges ---------- */
.store-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  min-width: 170px;
}
.store-badge svg { flex-shrink: 0; }
.store-badge .lines { display: flex; flex-direction: column; text-align: left; }
.store-badge .small { font-size: .68rem; opacity: .85; text-transform: uppercase; letter-spacing: .04em; }
.store-badge .big { font-size: .95rem; font-weight: 700; }

.qr-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.35);
  margin-top: 28px;
}
.qr-box .qr-placeholder {
  width: 96px; height: 96px;
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  color: #cfe0f0;
  text-align: center;
  padding: 8px;
}
.qr-box .caption { font-size: .82rem; color: #cfe0f0; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--navy-deep);
  color: #8ea0b8;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 { color: #fff; font-size: .9rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: .89rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 14px; }
.footer-brand img { height: 28px; width: auto; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-bottom .addr { max-width: 60ch; }

/* ---------- Page header (interior pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 64px 0 60px;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #c7d3e6; margin: 0; max-width: 62ch; }
.breadcrumb { font-size: .85rem; color: #8ea0b8; margin-bottom: 14px; }
.breadcrumb a:hover { color: #fff; }

.disclaimer {
  font-size: .85rem;
  color: var(--ink-soft);
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
}
