/* ═══════════════════════════════════════════════════
   SPS Security — Global Design System
   security.spsnet.com
   Aesthetic: Dark military-grade, architectural precision
   Fonts: Syne (display) + DM Sans (body)
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Tokens ──────────────────────────────────────── */
:root {
  --ink:       #0a0c0f;
  --ink-mid:   #0e1218;
  --ink-card:  #12171f;
  --ink-high:  #1a2030;
  --steel:     #8a95a8;
  --steel-dim: rgba(138,149,168,0.4);
  --wire:      rgba(138,149,168,0.1);
  --wire-med:  rgba(138,149,168,0.18);
  --red:       #e63946;
  --red-glow:  rgba(230,57,70,0.18);
  --amber:     #f4a261;
  --cyan:      #00c8e0;
  --cyan-dim:  rgba(0,200,224,0.1);
  --green:     #2ec27e;
  --white:     #e8ecf2;
  --white-dim: rgba(232,236,242,0.55);
  --white-muted:rgba(232,236,242,0.3);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl:28px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: all 0.2s var(--ease);
}

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

/* ── Nav ─────────────────────────────────────────── */
#site-nav {
  background: transparent;
  padding: 0;
  transition: var(--trans);
}
#site-nav.scrolled {
  background: rgba(10,12,15,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--wire);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.nav-logo { height: 30px; width: auto; }
.nav-logo-sq {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .75rem;
  padding: .35rem .5rem;
  border-radius: var(--r-sm);
  letter-spacing: .05em;
}
.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.nav-brand-accent { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: var(--white-dim);
  padding: .5rem .875rem;
  border-radius: var(--r-md);
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: var(--wire); }
.chevron { font-size: .75rem; color: var(--steel-dim); transition: var(--trans); }
.nav-item:hover .chevron { transform: rotate(90deg); color: var(--red); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + .75rem);
  left: -1rem;
  background: var(--ink-card);
  border: 1px solid var(--wire-med);
  border-radius: var(--r-lg);
  padding: .5rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--trans);
  box-shadow: 0 24px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
  z-index: 100;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .625rem .875rem;
  border-radius: var(--r-md);
  transition: var(--trans);
  color: var(--white-dim);
}
.dropdown-item:hover { background: var(--wire); color: var(--white); }
.dropdown-item.cta-item { background: var(--red-glow); border: 1px solid rgba(230,57,70,.2); margin-top: .25rem; }
.dropdown-item.cta-item:hover { background: rgba(230,57,70,.25); }
.di-icon { font-size: .7rem; color: var(--red); flex-shrink: 0; margin-top: .25rem; }
.dropdown-item strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: .82rem; color: var(--white); }
.dropdown-item small { display: block; font-size: .72rem; color: var(--steel); margin-top: .1rem; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-myid {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  color: var(--cyan);
  border: 1px solid rgba(0,200,224,.2);
  padding: .45rem .875rem;
  border-radius: var(--r-md);
  background: rgba(0,200,224,.05);
  transition: var(--trans);
}
.nav-myid:hover { background: rgba(0,200,224,.1); border-color: rgba(0,200,224,.35); }
.nav-myid-icon { height: 16px; width: 16px; border-radius: 3px; }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  background: var(--red);
  color: #fff;
  padding: .55rem 1.25rem;
  border-radius: var(--r-md);
  transition: var(--trans);
  letter-spacing: .01em;
}
.nav-cta:hover { background: #c8303d; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(230,57,70,.3); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ink-mid);
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--wire);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white-dim);
  padding: .75rem 0;
  border-bottom: 1px solid var(--wire);
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--white); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-myid { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.h-eyebrow {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  margin-bottom: .75rem;
}
.h-eyebrow-cyan { color: var(--cyan); }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.75;
}
.grad-text {
  background: linear-gradient(135deg, var(--white) 40%, rgba(230,57,70,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-cyan {
  background: linear-gradient(135deg, var(--white) 30%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ──────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-lg { padding: 8rem 0; }
.section-sm { padding: 4rem 0; }

/* ── Cards ───────────────────────────────────────── */
.card {
  background: var(--ink-card);
  border: 1px solid var(--wire);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: var(--trans);
}
.card:hover {
  border-color: var(--wire-med);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card-icon-red { background: var(--red-glow); border: 1px solid rgba(230,57,70,.2); }
.card-icon-cyan { background: var(--cyan-dim); border: 1px solid rgba(0,200,224,.15); }
.card-icon-amber { background: rgba(244,162,97,.1); border: 1px solid rgba(244,162,97,.18); }
.card-icon-green { background: rgba(46,194,126,.1); border: 1px solid rgba(46,194,126,.18); }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.card p { font-size: .9rem; color: var(--white-dim); line-height: 1.7; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: #c8303d;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230,57,70,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white-dim);
  border: 1px solid var(--wire-med);
}
.btn-ghost:hover { background: var(--wire); color: var(--white); }
.btn-cyan {
  background: rgba(0,200,224,.12);
  color: var(--cyan);
  border: 1px solid rgba(0,200,224,.25);
}
.btn-cyan:hover { background: rgba(0,200,224,.2); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .8rem; }
.btn-arrow::after { content: ' →'; }

/* ── Stat blocks ─────────────────────────────────── */
.stat-block { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-num.cyan { color: var(--cyan); }
.stat-label { font-size: .8rem; color: var(--white-muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

/* ── Dividers + accents ──────────────────────────── */
.red-line {
  width: 3rem;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.wire-line { border: none; border-top: 1px solid var(--wire); margin: 0; }

/* ── Tags / badges ───────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.tag-red { background: var(--red-glow); color: var(--red); border: 1px solid rgba(230,57,70,.25); }
.tag-cyan { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(0,200,224,.2); }
.tag-amber { background: rgba(244,162,97,.1); color: var(--amber); border: 1px solid rgba(244,162,97,.2); }
.tag-green { background: rgba(46,194,126,.08); color: var(--green); border: 1px solid rgba(46,194,126,.2); }
.cert-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .6rem;
  border-radius: var(--r-sm);
  background: var(--wire);
  color: var(--steel);
  border: 1px solid var(--wire-med);
}

/* ── Feature list ────────────────────────────────── */
.feat-list { display: flex; flex-direction: column; gap: .75rem; padding: 0; list-style: none; }
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--white-dim);
  line-height: 1.55;
}
.feat-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: .45em;
}
.feat-list.cyan li::before { background: var(--cyan); }

/* ── Grid helpers ────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Process steps ───────────────────────────────── */
.process-step {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 2.5rem;
}
.process-num {
  position: absolute;
  left: 0; top: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid rgba(230,57,70,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .75rem;
  color: var(--red);
}
.process-step::after {
  content: '';
  position: absolute;
  left: 1rem;
  top: 2rem;
  bottom: -2.5rem;
  width: 1px;
  background: var(--wire);
}
.process-step:last-child::after { display: none; }
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.process-step p { font-size: .875rem; color: var(--white-dim); }

/* ── Table ───────────────────────────────────────── */
.sps-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.sps-table th {
  font-family: var(--font-display);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--steel);
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--wire-med);
}
.sps-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--wire);
  color: var(--white-dim);
  vertical-align: middle;
}
.sps-table tr:last-child td { border-bottom: none; }
.sps-table tr:hover td { background: var(--wire); color: var(--white); }
.sps-table .check { color: var(--green); font-size: 1rem; }
.sps-table .cross { color: var(--steel-dim); }

/* ── Tier pricing ────────────────────────────────── */
.tier-card {
  background: var(--ink-card);
  border: 1px solid var(--wire);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--trans);
}
.tier-card.featured {
  border-color: rgba(230,57,70,.4);
  background: linear-gradient(160deg, rgba(230,57,70,.06), var(--ink-card));
}
.tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; right: 2rem;
  background: var(--red);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: .3rem .75rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
}
.tier-name { font-family: var(--font-display); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--steel); margin-bottom: .5rem; }
.tier-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: .25rem; }
.tier-period { font-size: .8rem; color: var(--steel); }
.tier-desc { font-size: .875rem; color: var(--white-dim); margin: 1.25rem 0; line-height: 1.65; }
.tier-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.tier-features li { font-size: .85rem; color: var(--white-dim); display: flex; align-items: center; gap: .5rem; }
.tier-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── MYID promo block ────────────────────────────── */
.myid-block {
  background: linear-gradient(135deg, #001a2e, #0a1825);
  border: 1px solid rgba(0,200,224,.2);
  border-radius: var(--r-2xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.myid-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(0,200,224,.08), transparent 70%);
  pointer-events: none;
}

/* ── Hero sections ───────────────────────────────── */
.page-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138,149,168,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,149,168,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-red {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(230,57,70,.12), transparent 70%);
  top: -100px; right: -100px;
}
.hero-glow-cyan {
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,200,224,.08), transparent 70%);
  bottom: 0; left: 10%;
}
.hero-content { position: relative; z-index: 1; }
.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}

/* ── Ticker / broadcast bar ──────────────────────── */
.alert-bar {
  background: rgba(230,57,70,.1);
  border-bottom: 1px solid rgba(230,57,70,.2);
  padding: .5rem 0;
  overflow: hidden;
}
.alert-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.alert-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse-dot 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.alert-bar span { color: var(--red); text-transform: uppercase; font-size: .65rem; letter-spacing: .15em; }
.alert-bar p { color: var(--white-dim); }

/* ── Testimonial ─────────────────────────────────── */
.testimonial {
  background: var(--ink-card);
  border: 1px solid var(--wire);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.testimonial blockquote { font-size: 1rem; line-height: 1.75; color: var(--white-dim); font-style: italic; margin-bottom: 1.25rem; }
.testimonial cite { font-style: normal; display: flex; align-items: center; gap: .75rem; }
.cite-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink-high);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  color: var(--red);
  border: 2px solid var(--wire-med);
  flex-shrink: 0;
}
.cite-name { font-family: var(--font-display); font-weight: 700; font-size: .875rem; }
.cite-title { font-size: .78rem; color: var(--steel); }

/* ── Accordion / FAQ ─────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--wire);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  text-align: left;
  gap: 1rem;
}
.faq-q:hover { color: var(--red); }
.faq-icon { flex-shrink: 0; font-size: 1.25rem; color: var(--steel); transition: var(--trans); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-a {
  display: none;
  padding-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--white-dim);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ── Contact form ────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--steel);
  margin-bottom: .45rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--ink-high);
  border: 1px solid var(--wire-med);
  border-radius: var(--r-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  outline: none;
  transition: var(--trans);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red);
  background: var(--ink-card);
  box-shadow: 0 0 0 3px rgba(230,57,70,.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--white-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--ink-mid); }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--ink-mid);
  border-top: 1px solid var(--wire);
  margin-top: 0;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: span 3; }
  .footer-contact { grid-column: span 3; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-contact { grid-column: span 1; }
}
.footer-logo-wrap { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-logo { height: 26px; width: auto; }
.footer-logo-text { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.footer-tagline { font-size: .85rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-certs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .5rem; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-md);
  background: var(--wire);
  border: 1px solid var(--wire-med);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  color: var(--steel);
  transition: var(--trans);
}
.social-icon:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: var(--white-dim);
  margin-bottom: .6rem;
  transition: var(--trans);
}
.footer-col a:hover { color: var(--white); padding-left: .25rem; }
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-contact p { font-size: .85rem; color: var(--white-dim); margin-bottom: .75rem; display: flex; flex-direction: column; gap: .2rem; }
.fc-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--steel); }
.footer-contact a { color: var(--white-dim); transition: var(--trans); }
.footer-contact a:hover { color: var(--red); }
.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: .65rem 1.5rem;
  background: var(--red);
  color: #fff;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  transition: var(--trans);
}
.footer-cta:hover { background: #c8303d; transform: translateY(-1px); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--wire);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--white-muted);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--white-muted); margin-left: 1.25rem; transition: var(--trans); }
.footer-bottom a:hover { color: var(--white); }

/* ── Animations ──────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up .6s var(--ease) both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }

/* ── Misc utilities ──────────────────────────────── */
.text-red { color: var(--red); }
.text-cyan { color: var(--cyan); }
.text-amber { color: var(--amber); }
.text-green { color: var(--green); }
.text-steel { color: var(--steel); }
.text-dim { color: var(--white-dim); }
.text-muted { color: var(--white-muted); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: .75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2rem; }
.text-center { text-align: center; }

/* ── Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-high); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--wire-med); }

/* ── Shared FAQ JS ───────────────────────────────── */
