/* ============================================
   SERRURIER JOLIETTE 24H — STYLES
   Aesthetic: Noir Urgence — dark, electric, trust
   ============================================ */

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

:root {
  --void: #060d1b;
  --abyss: #0a1628;
  --deep: #0f1f3a;
  --slate: #1a2a4a;
  --steel: #2a3f6a;
  --mist: #8899bb;
  --cloud: #c0cfea;
  --white: #f0f4ff;
  --pure: #ffffff;
  --volt: #2563eb;
  --glow: #3b82f6;
  --flash: #60a5fa;
  --spark: #93c5fd;
  --pulse: #0ea5e9;
  --warn: #f59e0b;
  --danger: #ef4444;
  --safe: #10b981;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.6);
  --shadow-glow: 0 0 30px rgba(37,99,235,.3);
  --font-display: 'Outfit', 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

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

a { color: var(--flash); text-decoration: none; transition: color .2s; }
a:hover { color: var(--spark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--pure);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--flash), var(--pulse));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--volt);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--volt);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--mist);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,13,27,.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(37,99,235,.12);
  transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
  background: rgba(6,13,27,.96);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pure);
  white-space: nowrap;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--volt), var(--pulse));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 20px; height: 20px; }

.nav-links {
  display: none;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: var(--mist);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--volt);
  transition: width .3s cubic-bezier(.16,1,.3,1);
}

.nav-links a:hover,
.nav-links a.active { color: var(--pure); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--volt);
  color: var(--pure) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: transform .15s, box-shadow .3s;
  animation: cta-pulse 2.5s ease-in-out infinite;
  white-space: nowrap;
}

.header-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-cta-label { display: none; }

.header-cta:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-glow);
  color: var(--pure) !important;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,.5); }
  50% { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
}

/* On mobile: icon-only header CTA, smaller */
@media (max-width: 959px) {
  .header-cta {
    padding: 10px;
    font-size: 0;
    gap: 0;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .header-cta svg { width: 18px; height: 18px; }
}

/* On desktop: show full label */
@media (min-width: 960px) {
  .header-cta-label { display: inline; }
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--cloud);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0; bottom: 0;
  background: rgba(6,13,27,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 40px 24px;
}

.mobile-nav.open { display: flex; flex-direction: column; gap: 8px; }

.mobile-nav a {
  display: block;
  color: var(--cloud);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .3s;
}

.mobile-nav a:hover {
  color: var(--flash);
  padding-left: 8px;
}

.mobile-nav .mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--volt);
  color: var(--pure) !important;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 50px;
  margin-top: 24px;
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37,99,235,.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(14,165,233,.1), transparent),
    linear-gradient(180deg, var(--void) 0%, var(--abyss) 100%);
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  animation: orb-float 8s ease-in-out infinite alternate;
}

.hero-orb--1 {
  width: 300px; height: 300px;
  background: var(--volt);
  top: 10%; left: -5%;
}

.hero-orb--2 {
  width: 200px; height: 200px;
  background: var(--pulse);
  bottom: 10%; right: -5%;
  animation-delay: -3s;
}

@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.25);
  color: var(--flash);
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badge-in .6s cubic-bezier(.16,1,.3,1) both;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--safe);
  border-radius: 50%;
  animation: dot-blink 1.5s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

@keyframes badge-in {
  from { opacity: 0; transform: translateY(10px); }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  animation: hero-title .8s cubic-bezier(.16,1,.3,1) .1s both;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: -4px; right: -4px;
  height: 30%;
  background: linear-gradient(90deg, rgba(37,99,235,.35), rgba(14,165,233,.25));
  border-radius: 4px;
  z-index: -1;
}

@keyframes hero-title {
  from { opacity: 0; transform: translateY(20px); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--mist);
  margin-bottom: 36px;
  max-width: 560px;
  animation: hero-sub .8s cubic-bezier(.16,1,.3,1) .25s both;
}

@keyframes hero-sub {
  from { opacity: 0; transform: translateY(15px); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: hero-actions .8s cubic-bezier(.16,1,.3,1) .4s both;
}

@keyframes hero-actions {
  from { opacity: 0; transform: translateY(15px); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .3s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--volt);
  color: var(--pure);
  box-shadow: 0 4px 20px rgba(37,99,235,.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(37,99,235,.55);
  color: var(--pure);
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--cloud);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  color: var(--pure);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(10,22,40,.6);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { width: 22px; height: 22px; color: var(--flash); }

.trust-text strong {
  display: block;
  font-family: var(--font-display);
  color: var(--pure);
  font-size: .95rem;
}

.trust-text span {
  font-size: .8rem;
  color: var(--mist);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 80px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.service-card {
  position: relative;
  background: rgba(15,31,58,.6);
  border: 1px solid rgba(37,99,235,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.05), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.3);
  box-shadow: 0 8px 32px rgba(37,99,235,.12);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(14,165,233,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}

.service-icon svg { width: 26px; height: 26px; color: var(--flash); }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  position: relative;
}

.service-card p {
  font-size: .9rem;
  color: var(--mist);
  line-height: 1.55;
  position: relative;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--flash);
  position: relative;
  transition: gap .2s;
}

.service-card:hover .service-link { gap: 10px; }

/* ============================================
   STATS / COUNTER BAR
   ============================================ */
.stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--deep), var(--abyss));
  border-top: 1px solid rgba(37,99,235,.08);
  border-bottom: 1px solid rgba(37,99,235,.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--pure);
  line-height: 1;
}

.stat-item .stat-number .accent { color: var(--flash); }

.stat-item .stat-label {
  font-size: .85rem;
  color: var(--mist);
  margin-top: 6px;
}

/* ============================================
   ZONES
   ============================================ */
.zones {
  padding: 80px 0;
  position: relative;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.zone-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(15,31,58,.4);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  color: var(--cloud);
  font-weight: 500;
  font-size: .95rem;
  transition: border-color .2s, background .2s, transform .15s;
}

.zone-card:hover {
  border-color: rgba(37,99,235,.3);
  background: rgba(37,99,235,.08);
  transform: translateY(-2px);
  color: var(--pure);
}

.zone-card svg { width: 18px; height: 18px; color: var(--flash); flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 80px 0;
  background: rgba(10,22,40,.4);
}

.faq-list {
  margin-top: 40px;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--pure);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  transition: color .2s;
}

.faq-question:hover { color: var(--flash); }

.faq-question .faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(37,99,235,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}

.faq-question .faq-toggle svg {
  width: 14px; height: 14px;
  color: var(--flash);
  transition: transform .3s;
}

.faq-item.open .faq-toggle { background: var(--volt); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); color: var(--pure); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .3s;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: .95rem;
  color: var(--mist);
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37,99,235,.2), transparent),
    var(--void);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--mist);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn { font-size: 1.1rem; padding: 16px 36px; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--cloud);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15,31,58,.6);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: var(--pure);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--steel);
}

.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: var(--abyss); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group .error-msg {
  color: var(--danger);
  font-size: .8rem;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--danger);
}

.form-group.has-error .error-msg { display: block; }

.form-submit {
  margin-top: 8px;
}

.form-submit .btn { width: 100%; justify-content: center; font-size: 1.05rem; }

.contact-info-box {
  background: rgba(15,31,58,.5);
  border: 1px solid rgba(37,99,235,.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.contact-info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(37,99,235,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 18px; height: 18px; color: var(--flash); }

.contact-info-item strong {
  display: block;
  color: var(--pure);
  font-family: var(--font-display);
  font-size: .95rem;
}

.contact-info-item span,
.contact-info-item a {
  font-size: .9rem;
  color: var(--mist);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--void);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: .9rem;
  color: var(--mist);
  max-width: 300px;
}

.footer-col h4 {
  font-size: .95rem;
  margin-bottom: 16px;
  color: var(--pure);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--mist);
  font-size: .9rem;
  transition: color .2s, padding-left .2s;
}

.footer-links a:hover {
  color: var(--flash);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mist);
  font-size: .9rem;
}

.footer-contact svg { width: 16px; height: 16px; color: var(--flash); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: .8rem;
  color: var(--mist);
}

/* --- Global focus indicator (WCAG) --- */
:focus-visible {
  outline: 2px solid var(--flash);
  outline-offset: 2px;
}

/* Remove outline for mouse clicks */
:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(37,99,235,.12), transparent),
    var(--void);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: var(--mist); font-size: 1.05rem; max-width: 600px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  margin-bottom: 20px;
  color: var(--steel);
}

.breadcrumb a { color: var(--mist); }
.breadcrumb a:hover { color: var(--flash); }
.breadcrumb .sep { color: var(--steel); }

/* ============================================
   SERVICE DETAIL (services.html)
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 0 80px;
}

.service-detail {
  background: rgba(15,31,58,.4);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.service-detail h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-detail h2 svg { width: 28px; height: 28px; color: var(--flash); }

.service-detail p {
  color: var(--mist);
  margin-bottom: 16px;
  line-height: 1.65;
}

.service-detail ul {
  list-style: none;
  margin-bottom: 16px;
}

.service-detail ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--cloud);
  font-size: .95rem;
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--volt);
}

/* ============================================
   ZONE PAGE
   ============================================ */
.zone-content {
  padding: 60px 0 80px;
}

.zone-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
}

.zone-content p {
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 800px;
}

.zone-services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0 40px;
}

.zone-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(15,31,58,.4);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  font-weight: 500;
}

.zone-service-item svg { width: 20px; height: 20px; color: var(--flash); flex-shrink: 0; }

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
  .zone-services-list { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — Desktop
   ============================================ */
@media (min-width: 960px) {
  .container { padding: 0 32px; }
  .header-inner { padding: 16px 32px; }

  .nav-links { display: flex; }
  .menu-toggle { display: none; }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: linear-gradient(135deg, var(--volt), #1d4ed8);
  padding: 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  color: var(--pure) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .01em;
}

.sticky-cta a svg { width: 18px; height: 18px; flex-shrink: 0; }

.sticky-cta .sticky-cta-sub {
  font-size: .7rem;
  font-weight: 500;
  opacity: .85;
  margin-left: 6px;
  font-family: var(--font-body);
}

/* Add bottom padding to footer when sticky CTA is present on mobile */
@media (max-width: 959px) {
  .sticky-cta { display: block; }
  .site-footer { padding-bottom: 56px; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .mobile-nav, .cta-banner { display: none; }
  body { background: #fff; color: #000; }
  h1, h2, h3 { color: #000; }
}
