/* AEGIS IT Security — Main Stylesheet v1.0.0 */
:root {
  --navy:    #002252;
  --purple:  #432C5F;
  --crimson: #7C2250;
  --navy-dark:    #001535;
  --navy-light:   #003a8c;
  --purple-light: #5a3d7a;
  --crimson-light:#a0305e;
  --bg:     #010a18;
  --bg2:    #020d20;
  --panel:  #021020;
  --panel2: #04162a;
  --gold:   #c9933a;
  --silver: #8ba3c0;
  --text:     #ccd9ea;
  --text-dim: #3d5a75;
  --white:    #eef3f9;
  --grad:      linear-gradient(135deg, var(--navy) 0%, var(--purple) 50%, var(--crimson) 100%);
  --grad-h:    linear-gradient(90deg,  var(--navy) 0%, var(--purple) 50%, var(--crimson) 100%);
  --border:        rgba(67,44,95,0.3);
  --border-bright: rgba(124,34,80,0.55);
  --border-gold:   rgba(201,147,58,0.4);

  /* FONTS */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Exo 2', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* NOISE */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.7;
}

/* GRID */
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(67,44,95,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,44,95,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none; z-index: 0;
}

/* ORBS */
.orb { position: fixed; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; }
.orb-1 { width: 650px; height: 650px; background: var(--navy);   top: -220px; left: -180px; opacity: 0.55; }
.orb-2 { width: 480px; height: 480px; background: var(--purple); top: 25%; right: -130px;  opacity: 0.28; }
.orb-3 { width: 380px; height: 380px; background: var(--crimson); bottom: 8%; left: 22%;   opacity: 0.18; }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(1,10,24,0.9);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 26px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--white);
}

.logo-shield { width: 36px; height: 36px; flex-shrink: 0; }
.logo-shield svg { width: 36px; height: 36px; }

.logo-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--crimson-light); border-radius: 50%;
  margin-left: 1px; vertical-align: super;
  box-shadow: 0 0 8px var(--crimson);
  animation: blink 2.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.nav-links { display: flex; gap: 38px; align-items: center; }

.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px; background: var(--grad-h);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 28px;
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.82; transform: translateY(-1px); }

/* ══ HERO ══ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 60px 100px;
  overflow: hidden;
}

.hero-bg-split {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg,
    rgba(0,21,53,0.97) 0%,
    rgba(0,34,82,0.75) 38%,
    rgba(67,44,95,0.45) 68%,
    rgba(124,34,80,0.28) 100%);
}

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

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 16px;
  border: 1px solid var(--border-gold);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold);
  animation: blink 2s ease infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(60px, 8.5vw, 118px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .grad-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .stroke-text {
  -webkit-text-stroke: 1.5px rgba(140,163,192,0.25);
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--silver); max-width: 480px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  margin-top: 48px; display: flex; gap: 18px; align-items: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-grad {
  padding: 14px 38px;
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.25s;
}
.btn-grad:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(124,34,80,0.45); }

.btn-outline {
  padding: 13px 32px;
  border: 1px solid var(--border-bright);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  letter-spacing: 3px; text-transform: uppercase;
  background: none; cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--border-gold); color: var(--gold); background: rgba(201,147,58,0.05); }

/* HERO VISUAL */
.hero-visual {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px; z-index: 2;
  animation: fadeRight 1s 0.3s ease both;
}
.hex-grid { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ring { position: absolute; border-radius: 50%; animation: spin linear infinite; }
.ring-1 { width: 450px; height: 450px; border: 1px solid rgba(67,44,95,0.2);  animation-duration: 42s; }
.ring-2 { width: 340px; height: 340px; border: 1px solid rgba(124,34,80,0.28); animation-duration: 28s; animation-direction: reverse; }
.ring-3 { width: 230px; height: 230px; border: 1px solid rgba(0,34,82,0.45);  animation-duration: 17s; }
.ring::before {
  content: '';
  position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  margin-left: -4px;
  background: var(--gold); box-shadow: 0 0 14px var(--gold);
}
.ring-2::before { background: var(--crimson-light); box-shadow: 0 0 14px var(--crimson); }
.ring-3::before { background: var(--purple-light);  box-shadow: 0 0 14px var(--purple); }
@keyframes spin { to { transform: rotate(360deg); } }

.shield-main {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  animation: shieldPulse 4s ease infinite;
}
@keyframes shieldPulse {
  0%,100% { filter: drop-shadow(0 0 22px rgba(67,44,95,0.5)) drop-shadow(0 0 55px rgba(124,34,80,0.2)); }
  50%      { filter: drop-shadow(0 0 42px rgba(67,44,95,0.8)) drop-shadow(0 0 80px rgba(124,34,80,0.4)); }
}
.shield-main svg { width: 145px; height: 145px; }

.scroll-hint {
  position: absolute; bottom: 48px; left: 60px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim);
  z-index: 2; animation: fadeUp 0.7s 0.8s ease both;
}
.scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--crimson-light), transparent);
  animation: scrollDown 2.2s ease infinite;
}
@keyframes scrollDown {
  0%  { transform: scaleY(0); transform-origin: top;    opacity:0; }
  40% { transform: scaleY(1); transform-origin: top;    opacity:1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity:1; }
  100%{ transform: scaleY(0); transform-origin: bottom; opacity:0; }
}

/* ══ STATS ══ */
.stats-bar {
  position: relative; z-index: 1;
  display: flex;
  border-top: 1px solid var(--border);
  background: rgba(2,13,32,0.92);
  backdrop-filter: blur(12px);
}
.stat {
  flex: 1; padding: 30px 56px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.stat:last-child { border-right: none; }
.stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-h); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.stat:hover::before { transform: scaleX(1); }

.stat-num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 46px; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 5px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim);
}

/* ══ CERTS ══ */
.cert-strip {
  position: relative; z-index: 1;
  padding: 22px 60px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 36px;
  background: var(--bg);
}
.cert-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim);
  flex-shrink: 0; white-space: nowrap;
}
.cert-items { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-badge {
  padding: 5px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--silver);
  display: flex; align-items: center; gap: 7px;
  transition: all 0.2s;
}
.cert-badge:hover { border-color: var(--border-gold); color: var(--gold); }
.cert-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--crimson-light); }

/* ══ SECTIONS ══ */
section { position: relative; z-index: 1; padding: 108px 60px; }

.section-tag {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag-line { width: 36px; height: 1px; background: var(--grad-h); }
.section-tag-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(36px, 4.5vw, 60px);
  color: var(--white); line-height: 0.95;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 18px;
}

.section-desc {
  font-family: var(--font-body);
  color: var(--silver); font-size: 15px; font-weight: 300;
  line-height: 1.8; max-width: 520px; margin-bottom: 60px;
}

/* ══ SERVICES ══ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--panel); padding: 52px 44px;
  position: relative; overflow: hidden; transition: background 0.3s; cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-h); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { background: var(--panel2); }
.service-card:hover::before { transform: scaleX(1); }

.service-ghost-num {
  position: absolute; top: 16px; right: 22px;
  font-family: var(--font-display); font-size: 88px; font-weight: 900;
  line-height: 1; color: rgba(67,44,95,0.07); user-select: none;
}

.service-icon-wrap {
  width: 54px; height: 54px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px; position: relative; transition: border-color 0.3s;
}
.service-card:hover .service-icon-wrap { border-color: rgba(124,34,80,0.5); background: rgba(124,34,80,0.07); }
.service-icon-wrap svg { width: 26px; height: 26px; stroke: var(--silver); transition: stroke 0.3s; }
.service-card:hover .service-icon-wrap svg { stroke: var(--white); }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 14px;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.8;
  color: var(--silver); margin-bottom: 28px; font-weight: 300;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 4px 12px; border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim);
  transition: all 0.2s;
}
.service-card:hover .tag { border-color: rgba(124,34,80,0.35); color: var(--silver); }

/* ══ BACKUP ══ */
.backup-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.backup-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.backup-options { display: flex; flex-direction: column; gap: 14px; }

.backup-option {
  border: 1px solid var(--border); padding: 22px 26px;
  display: flex; align-items: center; gap: 18px;
  cursor: pointer; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.backup-option::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad); transform: scaleY(0); transition: transform 0.3s;
}
.backup-option:hover { border-color: rgba(67,44,95,0.5); background: rgba(67,44,95,0.05); }
.backup-option:hover::before,
.backup-option.active::before { transform: scaleY(1); }
.backup-option.active { border-color: rgba(124,34,80,0.5); background: rgba(124,34,80,0.06); }

.b-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); transition: all 0.3s;
}
.backup-option.active .b-icon,
.backup-option:hover .b-icon { border-color: rgba(124,34,80,0.5); color: var(--white); background: rgba(124,34,80,0.1); }
.b-icon svg { width: 22px; height: 22px; }

.b-text h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 4px;
}
.b-text p { font-family: var(--font-body); font-size: 13px; color: var(--silver); line-height: 1.55; font-weight: 300; }

.active-indicator {
  position: absolute; right: 18px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--crimson-light); box-shadow: 0 0 10px var(--crimson); display: none;
}
.backup-option.active .active-indicator { display: block; }

/* MONITOR */
.monitor-panel { background: var(--panel); border: 1px solid var(--border); }
.monitor-header {
  padding: 14px 22px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.monitor-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); }
.monitor-status { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #00e5a0; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #00e5a0; box-shadow: 0 0 8px #00e5a0; animation: blink 2s ease infinite; }
.monitor-body { padding: 22px; }

.alert-box {
  padding: 14px 18px; margin-bottom: 22px;
  background: rgba(124,34,80,0.1); border: 1px solid rgba(124,34,80,0.32);
  display: flex; align-items: flex-start; gap: 14px;
}
.alert-box svg { width: 18px; height: 18px; stroke: var(--crimson-light); flex-shrink: 0; margin-top: 2px; }
.alert-box strong { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--crimson-light); margin-bottom: 3px; }
.alert-box span { font-family: var(--font-body); font-size: 12px; color: var(--silver); }

.metrics { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.metric-row { display: flex; align-items: center; gap: 12px; }
.metric-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); flex: 0 0 130px; display: flex; align-items: center; gap: 8px; }
.m-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.m-dot.c { background: var(--navy-light);    box-shadow: 0 0 6px var(--navy-light); }
.m-dot.l { background: var(--purple-light);  box-shadow: 0 0 6px var(--purple-light); }
.m-dot.h { background: var(--crimson-light); box-shadow: 0 0 6px var(--crimson-light); }
.metric-bar-wrap { flex: 1; height: 5px; background: rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.metric-bar { position: absolute; top: 0; left: 0; bottom: 0; animation: barGrow 1.5s ease both; }
.metric-bar.c { background: linear-gradient(90deg, var(--navy), var(--navy-light)); width: 97%; animation-delay: 0.2s; }
.metric-bar.l { background: linear-gradient(90deg, var(--purple), var(--purple-light)); width: 82%; animation-delay: 0.4s; }
.metric-bar.h { background: var(--grad-h); width: 91%; animation-delay: 0.6s; }
@keyframes barGrow { from { width: 0; } }
.metric-pct { font-family: var(--font-mono); font-size: 11px; color: var(--silver); flex: 0 0 34px; text-align: right; }

.terminal {
  background: #010810; border: 1px solid rgba(67,44,95,0.28);
  padding: 18px; font-family: var(--font-mono); font-size: 12px; line-height: 1.9;
}
.t-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; padding-bottom: 11px; border-bottom: 1px solid rgba(67,44,95,0.2); }
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.td-r { background: #ff5f57; } .td-y { background: #febc2e; } .td-g { background: #28c840; }
.t-ttl { margin-left: 6px; font-size: 10px; letter-spacing: 2px; color: var(--text-dim); }
.t-dim { color: var(--text-dim); } .t-cmd { color: var(--white); }
.t-ok { color: #00e5a0; } .t-warn { color: #f0a500; } .t-prompt { color: var(--crimson-light); }

/* ══ PROCESS ══ */
.process-wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-connector {
  position: absolute; top: 39px; left: 40px; right: 40px;
  height: 1px; background: var(--border); z-index: 0;
}
.process-connector-fill { height: 100%; background: var(--grad-h); width: 57%; animation: connFill 2s 0.5s ease both; }
@keyframes connFill { from { width: 0; } }

.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; position: relative; z-index: 1; }

.step-bubble {
  width: 78px; height: 78px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: var(--panel); margin-bottom: 26px; transition: all 0.3s;
}
.process-step.done .step-bubble { background: var(--grad); border-color: transparent; box-shadow: 0 8px 30px rgba(124,34,80,0.4); }

.step-bubble-num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 24px;
  color: var(--text-dim); transition: color 0.3s;
}
.process-step.done .step-bubble-num { color: var(--white); }

.step-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 10px; }
.step-info { font-family: var(--font-body); font-size: 13px; color: var(--silver); line-height: 1.65; font-weight: 300; }

/* ══ TESTIMONIALS ══ */
.testi-section { background: var(--bg2); border-top: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.testi-card {
  background: var(--panel); border: 1px solid var(--border);
  padding: 34px; position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover { border-color: rgba(124,34,80,0.4); transform: translateY(-4px); }

.testi-quote-mark {
  position: absolute; top: 14px; right: 22px;
  font-family: var(--font-display); font-size: 88px; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; opacity: 0.1; line-height: 1;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; font-size: 13px; color: var(--gold); }
.testi-text { font-family: var(--font-body); font-size: 14px; line-height: 1.8; color: var(--silver); font-style: italic; margin-bottom: 26px; font-weight: 300; }

.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--white); flex-shrink: 0;
}
.author-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 3px; }
.author-role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); }

/* ══ CTA ══ */
.cta-section {
  position: relative; z-index: 1; padding: 100px 60px;
  text-align: center; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,34,82,0.92) 0%, rgba(67,44,95,0.88) 50%, rgba(124,34,80,0.85) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-section .section-tag { justify-content: center; }
.cta-section .section-desc { margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 18px; justify-content: center; }

/* ══ CONTACT ══ */
.contact-section { background: var(--bg); border-top: 1px solid var(--border); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }

.contact-detail {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: rgba(67,44,95,0.08);
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--crimson-light); }
.contact-detail-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 5px; }
.contact-detail-value { font-family: var(--font-body); font-size: 14px; color: var(--silver); line-height: 1.6; font-weight: 300; }

.contact-form { background: var(--panel); border: 1px solid var(--border); padding: 44px; }
.form-header { font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 8px; }
.form-sub { font-family: var(--font-body); font-size: 13px; color: var(--silver); margin-bottom: 32px; line-height: 1.65; font-weight: 300; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(1,10,24,0.8);
  border: 1px solid var(--border); color: var(--text);
  padding: 12px 16px; font-family: var(--font-body); font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.25s; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(124,34,80,0.6); background: rgba(124,34,80,0.04); }
.form-group textarea { resize: vertical; min-height: 112px; }
.form-group select option { background: var(--panel); }

.form-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--crimson); cursor: pointer; }
.form-check label { font-family: var(--font-body); font-size: 12px; color: var(--text-dim); line-height: 1.65; cursor: pointer; font-weight: 300; }
.form-check label a { color: var(--silver); border-bottom: 1px solid var(--border); transition: color 0.2s; }
.form-check label a:hover { color: var(--gold); }

.btn-submit {
  width: 100%; padding: 16px;
  background: var(--grad); color: var(--white);
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
  border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.25s;
}
.btn-submit:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(124,34,80,0.42); }

.form-note {
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-dim);
}
.form-note svg { width: 12px; height: 12px; stroke: #00e5a0; }

/* ══ FOOTER ══ */
footer { position: relative; z-index: 1; background: var(--navy-dark); border-top: 1px solid var(--border); }
.footer-gradient-top { height: 2px; background: var(--grad-h); }
.footer-inner { padding: 68px 60px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  letter-spacing: 5px; text-transform: uppercase; color: var(--white);
}

.footer-brand-desc { font-family: var(--font-body); font-size: 13px; color: var(--silver); line-height: 1.8; margin-top: 16px; max-width: 280px; font-weight: 300; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-dim); cursor: pointer; transition: all 0.2s; }
.social-btn:hover { border-color: var(--border-gold); color: var(--gold); }
.social-btn svg { width: 15px; height: 15px; }

.footer-col h5 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-family: var(--font-body); font-size: 13px; color: var(--silver);
  transition: color 0.2s; display: flex; align-items: center; gap: 8px; font-weight: 300;
}
.footer-col ul li a::before { content: ''; width: 0; height: 1px; background: var(--grad-h); transition: width 0.25s; display: inline-block; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::before { width: 14px; }

.footer-bottom { padding-top: 30px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); border-bottom: 1px solid transparent; transition: all 0.2s; }
.footer-legal a:hover { color: var(--silver); border-color: var(--border); }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translate(28px,-50%); } to { opacity: 1; transform: translate(0,-50%); } }

/* ══ BURGER MENU ══ */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
  z-index: 300;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 74px; left: 0; right: 0;
  background: rgba(1,10,24,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  flex-direction: column;
  padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 16px 0 24px;
}
.mobile-menu a {
  display: block;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); background: rgba(67,44,95,0.1); }
.mobile-menu .mobile-cta {
  margin: 16px 24px 0;
  padding: 14px;
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800; font-size: 14px;
  letter-spacing: 3px; text-transform: uppercase;
  text-align: center; border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

/* ══ DESKTOP (> 1200px) ══ */
/* Already handled above */

/* ══ TABLET LARGE (≤ 1200px) ══ */
@media (max-width: 1200px) {
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(52px, 7vw, 88px); }
  nav { padding: 0 36px; }
  section { padding: 80px 36px; }
  .hero { padding: 120px 36px 80px; }
  .stats-bar .stat { padding: 28px 36px; }
  .cert-strip { padding: 20px 36px; }
  .backup-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-inner { padding: 56px 36px 36px; }
  .process-wrap { gap: 0; }
  .step-info { font-size: 12px; }
}

/* ══ TABLET (≤ 900px) ══ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .process-connector { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar .stat { padding: 24px 28px; }
  .hero-title { font-size: clamp(48px, 8vw, 72px); }
  .section-title { font-size: clamp(32px, 5vw, 48px); }
  .cert-items { gap: 10px; }
}

/* ══ MOBILE (≤ 768px) ══ */
@media (max-width: 768px) {
  /* NAV */
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  /* HERO */
  .hero { padding: 110px 20px 72px; min-height: auto; }
  .hero-title { font-size: clamp(44px, 11vw, 64px); }
  .hero-eyebrow { font-size: 9px; letter-spacing: 2px; padding: 5px 12px; }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-grad, .btn-outline { width: 100%; text-align: center; padding: 14px 24px; }
  .scroll-hint { display: none; }

  /* SECTIONS */
  section { padding: 64px 20px; }
  .section-title { font-size: clamp(30px, 8vw, 44px); }
  .section-desc { font-size: 14px; margin-bottom: 40px; }

  /* STATS */
  .stats-bar { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; padding: 22px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 36px; }

  /* CERTS */
  .cert-strip { padding: 18px 20px; flex-wrap: wrap; gap: 14px; }
  .cert-label { width: 100%; margin-bottom: 4px; }
  .cert-badge { font-size: 9px; padding: 4px 10px; }

  /* SERVICES */
  .service-card { padding: 36px 28px; }
  .service-ghost-num { font-size: 64px; }

  /* BACKUP */
  .backup-layout { grid-template-columns: 1fr; }
  .backup-section { padding: 64px 20px; }
  .b-text h4 { font-size: 15px; }

  /* MONITOR */
  .terminal { font-size: 10px; }

  /* PROCESS */
  .process-wrap { grid-template-columns: 1fr; gap: 36px; }
  .process-connector { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .step-bubble { margin-bottom: 0; flex-shrink: 0; width: 56px; height: 56px; }
  .step-bubble-num { font-size: 20px; }

  /* TESTIMONIALS */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 28px; }

  /* CTA */
  .cta-section { padding: 72px 20px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 14px; }
  .cta-actions .btn-grad,
  .cta-actions .btn-outline { width: 100%; max-width: 380px; text-align: center; }

  /* CONTACT */
  .contact-section { padding: 64px 20px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-header { font-size: 18px; }

  /* FOOTER */
  .footer-inner { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ══ MOBILE SMALL (≤ 400px) ══ */
@media (max-width: 400px) {
  .hero-title { font-size: 38px; }
  .stat { flex: 0 0 100%; border-right: none !important; }
  .stat:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .cert-items { flex-direction: column; }
  .cert-badge { width: fit-content; }
}
/* ── FORM MESSAGES ── */
.form-message {
  padding: 14px 18px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
}
.form-message--success {
  background: rgba(0,229,160,0.08);
  border: 1px solid rgba(0,229,160,0.35);
  color: #00e5a0;
}
.form-message--error {
  background: rgba(124,34,80,0.1);
  border: 1px solid rgba(124,34,80,0.4);
  color: var(--crimson-light);
}

/* ── NAV SCROLLED ── */
#site-nav.scrolled {
  background: rgba(1,10,24,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* ════════════════════════════════════
   PAGES INTÉRIEURES
════════════════════════════════════ */
.page-wrapper { position: relative; z-index: 1; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; z-index: 1;
  padding: 160px 60px 80px;
  overflow: hidden;
  min-height: 320px;
  display: flex; align-items: flex-end;
}
.page-hero .hero-bg-split {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg,
    rgba(0,21,53,0.97) 0%,
    rgba(0,34,82,0.75) 40%,
    rgba(67,44,95,0.45) 70%,
    rgba(124,34,80,0.28) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 860px; }

.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  margin-top: 12px;
}

.post-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim);
}

/* ── PAGE CONTENT ── */
.page-content-section {
  position: relative; z-index: 1;
  padding: 72px 60px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.post-thumbnail {
  margin-bottom: 48px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.post-thumbnail img { width: 100%; height: auto; display: block; }

.page-content {
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.85;
  color: var(--silver); font-weight: 300;
}
.page-content h1, .page-content h2, .page-content h3,
.page-content h4, .page-content h5, .page-content h6 {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--white);
  margin: 40px 0 16px; line-height: 1.1;
}
.page-content h2 { font-size: clamp(24px, 3vw, 36px); }
.page-content h3 { font-size: clamp(20px, 2.5vw, 28px); }
.page-content p  { margin-bottom: 20px; }
.page-content a  { color: var(--crimson-light); border-bottom: 1px solid rgba(124,34,80,0.4); transition: color 0.2s; }
.page-content a:hover { color: var(--gold); }
.page-content ul, .page-content ol { margin: 0 0 20px 24px; }
.page-content li { margin-bottom: 8px; }
.page-content blockquote {
  border-left: 3px solid var(--crimson);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(124,34,80,0.06);
  font-style: italic; color: var(--text);
}
.page-content img { max-width: 100%; height: auto; border: 1px solid var(--border); margin: 24px 0; }
.page-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.page-content th { background: rgba(67,44,95,0.2); padding: 12px 16px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text); border: 1px solid var(--border); text-align: left; }
.page-content td { padding: 12px 16px; border: 1px solid var(--border); color: var(--silver); font-size: 14px; }
.page-content tr:nth-child(even) td { background: rgba(67,44,95,0.06); }
.page-content code { font-family: var(--font-mono); font-size: 13px; background: rgba(67,44,95,0.2); padding: 2px 8px; color: var(--crimson-light); }
.page-content pre { background: #010810; border: 1px solid rgba(67,44,95,0.3); padding: 24px; overflow-x: auto; margin: 24px 0; }
.page-content pre code { background: none; padding: 0; color: var(--text); }

/* ── POST NAV ── */
.post-nav {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 60px; padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.post-nav a {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); transition: color 0.2s;
}
.post-nav a:hover { color: var(--white); }

/* ── BLOG GRID ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 60px;
}
.blog-card {
  background: var(--panel); border: 1px solid var(--border);
  overflow: hidden; transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: rgba(124,34,80,0.4); transform: translateY(-4px); }
.blog-card-thumb img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-body { padding: 28px; }
.blog-card-meta { display: flex; gap: 14px; margin-bottom: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); }
.blog-card-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; line-height: 1.1; }
.blog-card-title a { color: var(--white); transition: color 0.2s; }
.blog-card-title a:hover { color: var(--crimson-light); }
.blog-card-excerpt { font-size: 13px; color: var(--silver); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.blog-read-more { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--crimson-light); transition: color 0.2s; }
.blog-read-more:hover { color: var(--gold); }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
  padding: 10px 16px; border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 12px; color: var(--text-dim);
  transition: all 0.2s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { border-color: var(--border-bright); color: var(--white); background: rgba(124,34,80,0.1); }

/* ── 404 ── */
.error-404-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(100px, 18vw, 200px);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4; margin-bottom: 8px;
}

/* ── RESPONSIVE PAGES ── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 20px 60px; }
  .page-content-section { padding: 48px 20px 72px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { flex-direction: column; }
}
