/* ============================================================
   GAMING VANGUARD — Your Gaming and Streaming Concierge
   Stylesheet · gamingvanguard.net
   ============================================================ */

:root {
  --bg: #14171d;
  --bg-soft: #171b23;
  --panel: #1d222b;
  --panel-2: #222834;
  --line: rgba(148, 163, 184, 0.14);
  --text: #f4f6fa;
  --muted: #9aa5b5;
  --cyan: #2ab6e0;
  --violet: #7a5cd6;
  --cyan-soft: rgba(42, 182, 224, 0.12);
  --violet-soft: rgba(122, 92, 214, 0.14);
  --grad: linear-gradient(100deg, #2ab6e0 0%, #7a5cd6 100%);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  --header-h: 74px;
  --font-head: "Chakra Petch", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

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

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #56c9ec; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); text-transform: uppercase; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); text-transform: uppercase; }
h3 { font-size: 1.25rem; }

p { color: var(--muted); }

.container { width: min(1180px, 92%); margin-inline: auto; }

.section { padding: 76px 0; }
.section-tight { padding: 52px 0; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 12px; font-size: 1.05rem; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan);
  color: #0b0d12;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #0b0d12; }

/* ---------- Eyebrow pill ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(42, 182, 224, 0.3);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 18px;
}
.eyebrow.violet { color: #b39bff; background: var(--violet-soft); border-color: rgba(122, 92, 214, 0.35); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 26px rgba(42, 182, 224, 0.28);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(122, 92, 214, 0.4);
}

.btn-ghost {
  border-color: rgba(42, 182, 224, 0.45);
  color: var(--cyan);
  background: rgba(42, 182, 224, 0.07);
}
.btn-ghost:hover {
  color: var(--cyan);
  background: rgba(42, 182, 224, 0.15);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 18px; font-size: 0.8rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: #101318;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar a { color: var(--cyan); font-weight: 600; }
.topbar .topbar-areas { display: flex; align-items: center; gap: 8px; }
.topbar svg { width: 13px; height: 13px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* matches the logo JPEG's baked-in background so it blends seamlessly */
  background: #21232e;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; border-radius: 6px; display: block; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-link:hover { color: var(--text); background: rgba(148, 163, 184, 0.08); }
.nav-link.active { color: var(--cyan); }

.nav-cta { margin-left: 10px; }

/* Support dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.drop a svg { width: 16px; height: 16px; flex: none; }
.drop a:hover { color: var(--text); background: rgba(148, 163, 184, 0.1); }
.has-drop:hover .drop,
.has-drop:focus-within .drop,
.has-drop.open .drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.drop-trigger svg.chev { width: 12px; height: 12px; transition: transform 0.2s; }
.has-drop:hover .drop-trigger svg.chev,
.has-drop.open .drop-trigger svg.chev { transform: rotate(180deg); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding: 96px 0 90px;
  overflow: hidden;
}
.hero::before {
  /* subtle grid pattern */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(42, 182, 224, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 182, 224, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
}
.hero::after {
  /* color glows */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 320px at 12% 0%, rgba(42, 182, 224, 0.16), transparent 70%),
    radial-gradient(600px 320px at 88% 10%, rgba(122, 92, 214, 0.18), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin: 18px 0 20px; }
.hero .lead { font-size: 1.14rem; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-trust svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero-media .photo-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(42, 182, 224, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(42, 182, 224, 0.12);
}
.hero-media .photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 11; display: block; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel-2);
  border: 1px solid rgba(122, 92, 214, 0.4);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.hero-badge svg { width: 20px; height: 20px; color: var(--cyan); flex: none; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  isolation: isolate;
  padding: 72px 0;
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 23, 29, 0.5), rgba(20, 23, 29, 0.92)),
    radial-gradient(700px 340px at 20% 10%, rgba(42, 182, 224, 0.18), transparent 70%),
    radial-gradient(700px 340px at 80% 20%, rgba(122, 92, 214, 0.2), transparent 70%);
}
.page-hero h1 { margin-top: 16px; }
.page-hero .lead { max-width: 680px; margin: 16px auto 0; font-size: 1.08rem; }

/* ---------- Cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 182, 224, 0.4);
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.96rem; }

.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-soft);
  border: 1px solid rgba(42, 182, 224, 0.3);
  margin-bottom: 18px;
}
.icon-chip svg { width: 22px; height: 22px; color: var(--cyan); }
.icon-chip.violet { background: var(--violet-soft); border-color: rgba(122, 92, 214, 0.35); }
.icon-chip.violet svg { color: #a78bf0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.card-link:hover svg { transform: translateX(4px); }

/* Service pillar cards with photo header */
.pillar .pillar-photo {
  margin: -30px -30px 24px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.pillar .pillar-photo img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transition: transform 0.4s ease;
}
.pillar:hover .pillar-photo img { transform: scale(1.04); }

/* ---------- Check lists ---------- */
.check-list { list-style: none; display: grid; gap: 13px; margin-top: 16px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-size: 0.97rem;
}
.check-list li strong { color: var(--text); font-weight: 600; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  border-radius: 6px;
  background: var(--cyan-soft);
  border: 1px solid rgba(42, 182, 224, 0.35);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  counter-increment: step;
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(42, 182, 224, 0.3);
}
.step::before {
  content: "STEP " counter(step);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.95rem; }

/* ---------- Trust strip ---------- */
.trust-band {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-sm);
}
.trust-item svg { width: 26px; height: 26px; color: var(--cyan); flex: none; margin-top: 3px; }
.trust-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.trust-item p { font-size: 0.88rem; }

/* ---------- Partner strip ---------- */
.partner-strip {
  background:
    radial-gradient(500px 240px at 85% 50%, rgba(122, 92, 214, 0.16), transparent 70%),
    var(--panel);
  border: 1px solid rgba(122, 92, 214, 0.3);
  border-radius: var(--radius);
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.partner-strip h3 { margin-bottom: 8px; }
.partner-strip p { max-width: 620px; }

/* ---------- Form honeypot (anti-spam) ---------- */
.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ---------- Pricing ---------- */
.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured {
  background:
    linear-gradient(var(--panel-2), var(--panel-2)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 44px rgba(42, 182, 224, 0.16);
}
.price-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.04em; }
.price-tag {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 14px 0 2px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-tag small { font-size: 0.95rem; color: var(--muted); -webkit-text-fill-color: var(--muted); }
.price-card .price-sub { font-size: 0.86rem; margin-bottom: 18px; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-card ul { margin: 18px 0 24px; }
.price-card.wide {
  grid-column: 1 / -1;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
}
.price-card.wide h3 { flex-basis: 100%; }
.price-card.wide .price-tag { margin: 0 6px 0 0; }
.price-card.wide .price-sub { margin: 0 20px 0 0; }
.price-card.wide ul { margin: 0; flex: 1 1 320px; }
.price-card.wide .btn { width: auto; margin: 0; }

/* ---------- Gear guide cards ---------- */
.gear-card .pick {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.gear-card .pick-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}
.gear-card .pick-label.budget { color: #34d399; }
.gear-card .pick-label.premium { color: #a78bf5; }

.gear-card .pick-name {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2px;
}
.gear-card .pick-desc {
  margin-top: 3px;
  font-size: 0.88rem;
  color: var(--muted);
}

.gear-card .shop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.gear-card .shop-link:hover { color: #56c9ec; }
.gear-card .shop-link svg { width: 13px; height: 13px; transition: transform 0.2s; }
.gear-card .shop-link:hover svg { transform: translate(2px, -2px); }

.gear-card .gear-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--muted);
}

/* ---------- Area chips ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 500;
  font-size: 0.93rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.chip svg { width: 14px; height: 14px; color: var(--cyan); flex: none; }
.chip:hover { border-color: rgba(42, 182, 224, 0.5); background: var(--panel-2); transform: translateY(-2px); color: var(--text); }

/* ---------- Map placeholder ---------- */
.map-placeholder {
  border: 1px dashed rgba(42, 182, 224, 0.4);
  border-radius: var(--radius);
  background:
    radial-gradient(500px 260px at 50% 40%, rgba(42, 182, 224, 0.08), transparent 70%),
    var(--bg-soft);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--cyan); }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { text-align: center; padding: 34px 26px; }
.contact-card .icon-chip { margin-inline: auto; }
.contact-card h3 { font-size: 1.1rem; }
.contact-card .contact-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 6px 0 12px;
  letter-spacing: 0.02em;
}
.contact-card p { font-size: 0.9rem; }

/* Form */
.form-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(42, 182, 224, 0.6);
  box-shadow: 0 0 0 3px rgba(42, 182, 224, 0.15);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-note { font-size: 0.85rem; margin-top: 14px; }
.form-status { margin-top: 14px; color: var(--cyan); font-weight: 600; display: none; }
.form-status.show { display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 14px; }
.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--cyan);
  transition: transform 0.25s;
  flex: none;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(42, 182, 224, 0.2), transparent 70%),
    radial-gradient(600px 300px at 85% 100%, rgba(122, 92, 214, 0.22), transparent 70%),
    var(--panel-2);
  border: 1px solid rgba(42, 182, 224, 0.25);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; margin-top: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #101318;
  border-top: 1px solid var(--line);
  margin-top: 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.footer-logo { height: 64px; border-radius: 6px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; }
.footer-contact { display: grid; gap: 8px; margin-top: 18px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.footer-contact a svg { width: 15px; height: 15px; color: var(--cyan); flex: none; }
.footer-contact a:hover { color: var(--cyan); }

.site-footer h4 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer ul a { color: var(--muted); font-size: 0.92rem; }
.site-footer ul a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--muted);
}
.footer-bottom .tagline { color: var(--cyan); font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-3, .grid-4, .trust-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero .lead { max-width: 640px; }
  .hero-media { max-width: 560px; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: calc(var(--header-h) + 38px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 19, 24, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 6%;
    gap: 4px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav-link { padding: 15px 12px; font-size: 1rem; width: 100%; }
  .drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .has-drop.open .drop { display: block; }
  .nav-cta { margin: 16px 0 0; }
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4, .steps, .contact-cards, .form-grid, .trust-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0; }
  .topbar .topbar-areas { display: none; }
  .form-wrap, .cta-band, .partner-strip { padding: 30px 22px; }
  .hero-badge { font-size: 0.78rem; padding: 10px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  h1 { text-transform: none; }
}
