/* ═══════════════════════════════════════════════════
   Digital Armor — Main Stylesheet
   v1.0.0
═══════════════════════════════════════════════════ */

/* ── Custom Properties ────────────────────────────── */
:root {
  --navy:          #1B3A5C;
  --navy-dark:     #0f2440;
  --navy-deeper:   #091829;
  --navy-mid:      #243f61;
  --navy-card:     #0d2035;
  --accent:        #2E7DD1;
  --accent-bright: #4a9be8;
  --accent-dim:    #1a5fa8;
  --accent-glow:   rgba(46,125,209,0.15);
  --accent-glow-strong: rgba(46,125,209,0.28);
  --steel:         #8baac8;
  --steel-light:   #b8d0e8;
  --white:         #f5f8fc;
  --off-white:     #e8eef6;
  --danger:        #e05c3a;
  --danger-dim:    rgba(224,92,58,0.12);
  --success:       #2aad72;
  --text-main:     #f0f5fc;
  --text-muted:    #7a9bbf;
  --border:        rgba(139,170,200,0.15);
  --border-mid:    rgba(139,170,200,0.25);
  --border-accent: rgba(46,125,209,0.32);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition: 0.22s ease;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.28);
  --shadow-accent: 0 0 32px rgba(46,125,209,0.18);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--navy-deeper);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ── Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deeper); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

/* ── Utility ──────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section-inner { max-width: 1280px; margin: 0 auto; width: 100%; padding: 0 2rem; }
section { padding: 5.5rem 2.5rem; }

.section-label {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-bright); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.08;
  color: var(--white); margin-bottom: 1.2rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--steel-light);
  max-width: 620px; font-weight: 300; line-height: 1.75;
}

/* ── Scroll animations ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,209,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent; color: var(--steel-light);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  border-color: var(--accent-bright);
  color: var(--white);
}

/* ── Arrow icon ───────────────────────────────────── */
.arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 90px;
  background: rgba(9,24,41,0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
  border-bottom-color: var(--border-mid);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
.nav-logo-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
}
.nav-logo-wordmark span { color: var(--accent-bright); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  display: block; padding: 0.5rem 0.9rem;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--steel-light); text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links .nav-cta a {
  background: var(--accent); color: #fff;
  padding: 0.5rem 1.2rem;
}
.nav-links .nav-cta a:hover { background: var(--accent-bright); }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--steel-light); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(9,24,41,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-mid);
  padding: 1.5rem 2rem 2rem;
  z-index: 199;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer ul { list-style: none; }
.nav-drawer ul li { border-bottom: 1px solid var(--border); }
.nav-drawer ul li a {
  display: block; padding: 1rem 0;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--steel-light);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-drawer ul li a:hover { color: var(--accent-bright); }
.nav-drawer .drawer-cta {
  margin-top: 1.5rem;
}
.nav-drawer .drawer-cta .btn { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 2.5rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--navy-deeper);
}

/* Animated canvas background */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.55;
}

/* Radial gradient overlay */
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, transparent 30%, var(--navy-deeper) 85%),
    radial-gradient(ellipse 50% 80% at 0% 50%, var(--navy-deeper) 0%, transparent 70%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 820px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: rgba(46,125,209,0.1);
  border: 1px solid var(--border-accent);
  padding: 0.45rem 1.1rem; border-radius: 100px;
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 8px; height: 8px; flex-shrink: 0;
  background: var(--accent-bright); border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.75); }
}
.hero-eyebrow span {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-bright);
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent-bright);
  position: relative;
}
/* Underline accent on em */
.hero-headline em::after {
  content: '';
  position: absolute; left: 0; bottom: -4px; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.1rem; color: var(--steel-light);
  max-width: 600px; margin-bottom: 2.5rem;
  line-height: 1.8; font-weight: 300;
}
.hero-sub strong { color: var(--white); font-weight: 700; }

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Hero trust bar */
.hero-trust {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.trust-stat {}
.trust-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.trust-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════════════════
   THREAT TICKER
════════════════════════════════════════════════════ */
.threat-bar {
  background: #120800;
  border-top: 1px solid rgba(224,92,58,0.25);
  border-bottom: 1px solid rgba(224,92,58,0.25);
  overflow: hidden; position: relative;
  height: 44px; display: flex; align-items: center;
}
.threat-bar::before,
.threat-bar::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.threat-bar::before { left: 0; background: linear-gradient(90deg, #120800, transparent); }
.threat-bar::after  { right: 0; background: linear-gradient(270deg, #120800, transparent); }

.threat-track {
  display: flex; gap: 0;
  animation: ticker 36s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.threat-track:hover { animation-play-state: paused; }

.threat-item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0 2.5rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #d4856a;
  border-right: 1px solid rgba(224,92,58,0.15);
}
.threat-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.8; }

/* ════════════════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════════════════ */
.why-section { background: var(--navy-dark); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3.5rem;
}
.why-card {
  background: var(--navy-dark);
  padding: 2.25rem;
  transition: background var(--transition);
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover { background: var(--navy-mid); }
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--accent-bright); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.why-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.9rem; color: var(--steel-light); line-height: 1.7; }
.why-stat {
  margin-top: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--danger);
}

/* ════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════ */
.services-section { background: var(--navy-deeper); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card:hover::after { opacity: 1; }

.service-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #0e2a48 0%, var(--navy-card) 100%);
}
.service-card.featured::after { opacity: 0.6; }

.service-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.service-tier {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.6rem;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem;
  line-height: 1.1;
}
.service-desc {
  font-size: 0.88rem; color: var(--steel-light);
  margin-bottom: 1.75rem; flex-shrink: 0;
  line-height: 1.6;
}
.service-features {
  list-style: none; flex: 1;
  margin-bottom: 2rem;
}
.service-features li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--steel-light);
  line-height: 1.5;
}
.service-features li:last-child { border-bottom: none; }
.feat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-bright);
  flex-shrink: 0; margin-top: 6px;
}
.service-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em;
  text-decoration: none; cursor: pointer; border: none;
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--accent-bright);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  position: relative; z-index: 1;
}
.service-cta:hover,
.service-card.featured .service-cta {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.service-cta .arrow { transition: transform var(--transition); }
.service-cta:hover .arrow { transform: translateX(4px); }

/* ════════════════════════════════════════════════════
   INDUSTRIES
════════════════════════════════════════════════════ */
.industries-section { background: var(--navy-dark); }

.industries-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3.5rem;
}
.industry-card {
  display: flex; gap: 1.25rem;
  background: var(--navy-deeper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.industry-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.industry-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
}
.industry-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent-bright); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.industry-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.industry-card p  { font-size: 0.875rem; color: var(--steel-light); line-height: 1.65; margin-bottom: 0.9rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(46,125,209,0.09);
  border: 1px solid var(--border-accent);
  color: var(--accent-bright);
  padding: 0.22rem 0.6rem; border-radius: 3px;
}

/* ════════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════════ */
.process-section { background: var(--navy-deeper); }

.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 3.5rem; position: relative;
}
.process-connector {
  position: absolute; top: 28px; left: calc(12.5% + 4px); right: calc(12.5% + 4px);
  height: 1px; background: linear-gradient(90deg, var(--border-accent), var(--border), var(--border-accent));
  z-index: 0;
}
.process-step {
  text-align: center; padding: 0 1.25rem;
  position: relative; z-index: 1;
}
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-deeper);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--accent-bright);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.process-step:hover .process-num {
  background: var(--accent-glow);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(46,125,209,0.2);
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════ */
.testimonials-section { background: var(--navy-dark); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--navy-deeper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; display: flex; flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-2px);
}
.quote-mark {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem; line-height: 1; font-weight: 700;
  color: var(--accent); opacity: 0.12; user-select: none;
}
.stars { color: #f0c040; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.9rem; color: var(--steel-light); line-height: 1.75;
  font-style: italic; flex: 1; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--accent-bright);
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════ */
.contact-section { background: var(--navy-deeper); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 4rem; align-items: start; margin-top: 3rem;
}
.contact-info-col h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 1rem;
}
.contact-info-col > p {
  color: var(--steel-light); font-size: 0.95rem;
  line-height: 1.75; margin-bottom: 2rem;
}
.benefit-list { list-style: none; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--steel-light);
  line-height: 1.5;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(42,173,114,0.12);
  border: 1px solid rgba(42,173,114,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.benefit-check svg {
  width: 10px; height: 10px;
  stroke: var(--success); stroke-width: 2.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* Form */
.form-card {
  background: var(--navy-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--navy-deeper);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Lato', sans-serif; font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9bbf' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.field select option { background: var(--navy-deeper); color: var(--white); }
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.form-submit-btn {
  width: 100%; padding: 1rem 1.5rem;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  position: relative; overflow: hidden;
}
.form-submit-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.5s ease;
}
.form-submit-btn:hover:not(:disabled)::before { left: 100%; }
.form-submit-btn:hover:not(:disabled) {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,209,0.35);
}
.form-submit-btn:disabled {
  opacity: 0.7; cursor: not-allowed;
}
.form-privacy {
  font-size: 0.76rem; color: var(--text-muted);
  text-align: center; margin-top: 0.85rem;
}
.form-privacy svg {
  width: 12px; height: 12px;
  display: inline; vertical-align: middle;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round;
  margin-right: 3px;
}

/* Form states */
.form-msg {
  display: none; margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; line-height: 1.6;
}
.form-msg.success {
  display: block;
  background: rgba(42,173,114,0.1);
  border: 1px solid rgba(42,173,114,0.3);
  color: #5ed4a0;
}
.form-msg.error {
  display: block;
  background: rgba(224,92,58,0.1);
  border: 1px solid rgba(224,92,58,0.3);
  color: #f09070;
}
.form-msg.sending {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent-bright);
}
.spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(74,155,232,0.3);
  border-top-color: var(--accent-bright);
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deeper);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2.5rem 1.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.7; max-width: 260px; margin-bottom: 1.25rem;
}
.cert-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cert {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(46,125,209,0.08);
  border: 1px solid var(--border-accent);
  color: var(--accent-bright);
  padding: 0.28rem 0.65rem; border-radius: 3px;
}
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--white); margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: var(--text-muted);
  text-decoration: none; font-size: 0.875rem;
  margin-bottom: 0.5rem; transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.78rem; color: var(--text-muted);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 1.25rem; }
  .site-nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer { display: block; }

  .hero { padding: 6rem 1.25rem 4rem; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-trust { gap: 1.5rem; }

  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; }
}

/* ── Reduced motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .threat-track { animation: none; }
}
