/* ── Variables ── */
:root {
  --rose:     #d0487d;
  --teal:     #7cb7ad;
  --purple:   #4c2561;
  --navy:     #071c45;
  --light:    #f0f1f5;
  --white:    #ffffff;

  --critical: #f87171;
  --high:     #fb923c;
  --medium:   #fbbf24;
  --low:      #4ade80;

  --surface-1: rgba(255,255,255,.04);
  --surface-2: rgba(255,255,255,.07);
  --border-1:  rgba(255,255,255,.07);
  --border-2:  rgba(255,255,255,.13);

  /* Spring easing */
  --ease-spring: cubic-bezier(.16,1,.3,1);
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  /* Z-index scale */
  --z-base:    1;
  --z-nav:     100;
  --z-modal:   200;
  --z-cursor:  9999;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(208,72,125,.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(208,72,125,.5); }

body {
  font-family: 'Sansation', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: transform .12s var(--ease-spring), width .25s, height .25s;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor.is-hovering {
  transform: translate(-50%,-50%) scale(2.2);
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(208,72,125,.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%, -50%);
  transition: transform .18s var(--ease-out), width .3s, height .3s, border-color .2s;
  will-change: transform;
}
.cursor-ring.is-hovering {
  width: 52px; height: 52px;
  border-color: rgba(208,72,125,.3);
}

/* ── Grid noise overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(208,72,125,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,72,125,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(7,28,69,.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(208,72,125,.15);
  transition: background .4s var(--ease-out), height .4s var(--ease-out), box-shadow .4s;
}
nav.scrolled {
  background: rgba(5,20,55,.96);
  height: 62px;
  box-shadow: 0 1px 0 rgba(208,72,125,.12), 0 8px 32px rgba(0,0,0,.4);
}

.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; flex-shrink: 0;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; }
.nav-logo img { width: 46px; height: 46px; object-fit: contain; }
.nav-logo span {
  font-family: 'Gravitas One', serif;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .06em;
}
.nav-logo span em { color: var(--rose); font-style: normal; }

.nav-links {
  display: flex; gap: 2.2rem;
  list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.58);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding: .25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  transition: left .35s var(--ease-spring), right .35s var(--ease-spring);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { left: 0; right: 0; }

.nav-cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: .42rem 1.25rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important;
  box-shadow: 0 2px 12px rgba(208,72,125,.35) !important;
  transition: background .2s, transform .2s var(--ease-spring), box-shadow .2s !important;
  overflow: hidden !important;
  position: relative !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #c03070 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(208,72,125,.45) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none;
  padding: .5rem; cursor: pointer;
  width: 40px; height: 40px;
  z-index: 110;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .35s var(--ease-spring), opacity .25s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 10rem 4rem 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 45%, rgba(76,37,97,.6) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 15% 85%, rgba(208,72,125,.1) 0%, transparent 60%),
    var(--navy);
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 1;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(76,37,97,.45), transparent 70%);
  top: -8%; right: 12%;
  animation-duration: 9s;
}
.hero-orb-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(208,72,125,.14), transparent 70%);
  bottom: 8%; left: 4%;
  animation-duration: 11s;
  animation-delay: -4s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -30px) scale(1.05); }
}

.circuit {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.circuit svg { width: 100%; height: 100%; opacity: .12; }

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

/* Hero stagger entrance */
.hero-tag    { animation: heroReveal .7s var(--ease-spring) both; }
.hero-title  { animation: heroReveal .9s .1s  var(--ease-spring) both; }
.hero-sub    { animation: heroReveal .9s .22s var(--ease-spring) both; }
.hero-actions{ animation: heroReveal .9s .36s var(--ease-spring) both; }
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(124,183,173,.2);
  padding: .3rem .9rem;
  border-radius: 4px;
  margin-bottom: 1.8rem;
  background: rgba(124,183,173,.05);
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--teal);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

h1.hero-title {
  font-family: 'Gravitas One', serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1.07;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
/* Gradient text on accent words */
h1.hero-title .accent {
  background: linear-gradient(125deg, #d0487d 20%, #e87db0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1.hero-title .accent2 {
  background: linear-gradient(125deg, #7cb7ad 20%, #b0d9d5 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,.55);
  line-height: 1.78;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, #d0487d 0%, #b83568 100%);
  color: var(--white);
  padding: .82rem 1.9rem;
  border-radius: 8px;
  font-family: 'Sansation', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
  display: inline-block;
  box-shadow: 0 4px 18px rgba(208,72,125,.32), inset 0 1px 0 rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Shine sweep */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-18deg);
  transition: left .55s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::before { left: 160%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(208,72,125,.45), inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-primary:active {
  transform: translateY(-1px) scale(.98);
  box-shadow: 0 4px 14px rgba(208,72,125,.3);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  padding: .82rem 1.9rem;
  border-radius: 8px;
  font-family: 'Sansation', sans-serif;
  font-size: .85rem;
  letter-spacing: .06em;
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .25s var(--ease-spring), box-shadow .25s;
  display: inline-block;
  position: relative;
}
.btn-outline:hover {
  border-color: rgba(124,183,173,.5);
  background: rgba(124,183,173,.07);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.btn-outline:active { transform: translateY(-1px) scale(.98); }

.hero-visual {
  position: absolute; right: 4rem; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(208,72,125,.15));
}
.shield-anim {
  width: 100%; height: 100%;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

/* ── STATS BAR ── */
.stats-bar {
  position: relative; z-index: 2;
  background: rgba(3,12,38,.7);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(12px);
}
.stat-divider { display: none; }
.stat-item {
  text-align: center;
  padding: 1.7rem 1rem;
  border-right: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.02); }
.stat-live {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .25rem;
}
.live-dot {
  width: 5px; height: 5px;
  background: var(--teal); border-radius: 50%;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
  box-shadow: 0 0 5px var(--teal);
}
.stat-num {
  font-family: 'Gravitas One', serif;
  font-size: 2.1rem;
  background: linear-gradient(160deg, #fff 30%, rgba(255,255,255,.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── THREAT TICKER ── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(208,72,125,.12);
  border-bottom: 1px solid rgba(208,72,125,.12);
  padding: .62rem 0;
  background: rgba(7,28,69,.4);
}
.ticker-inner {
  display: flex; gap: 3.5rem;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .7rem; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.ticker-item[data-sev="critical"] .ticker-dot { background: var(--critical); box-shadow: 0 0 5px var(--critical); }
.ticker-item[data-sev="high"]     .ticker-dot { background: var(--high);     box-shadow: 0 0 5px var(--high); }
.ticker-item[data-sev="medium"]   .ticker-dot { background: var(--medium);   box-shadow: 0 0 5px var(--medium); }
.ticker-item[data-sev="info"]     .ticker-dot { background: var(--teal); }
.ticker-item[data-sev="success"]  .ticker-dot { background: var(--low); }

/* ── BADGE SYSTEM ── */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .18rem .55rem;
  border-radius: 3px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: 'Sansation', sans-serif;
  line-height: 1.4;
}
.badge::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-critical { background: rgba(248,113,113,.1); color: var(--critical); border: 1px solid rgba(248,113,113,.22); }
.badge-critical::before { background: var(--critical); box-shadow: 0 0 4px var(--critical); }
.badge-high     { background: rgba(251,146,60,.1);  color: var(--high);     border: 1px solid rgba(251,146,60,.22); }
.badge-high::before { background: var(--high); }
.badge-medium   { background: rgba(251,191,36,.1);  color: var(--medium);   border: 1px solid rgba(251,191,36,.22); }
.badge-medium::before { background: var(--medium); }
.badge-low      { background: rgba(74,222,128,.1);  color: var(--low);      border: 1px solid rgba(74,222,128,.22); }
.badge-low::before { background: var(--low); }
.badge-info     { background: rgba(124,183,173,.1); color: var(--teal);     border: 1px solid rgba(124,183,173,.22); }
.badge-info::before { background: var(--teal); }
.badge-active   { background: rgba(208,72,125,.1);  color: var(--rose);     border: 1px solid rgba(208,72,125,.22); }
.badge-active::before { background: var(--rose); box-shadow: 0 0 4px var(--rose); }

/* ── SECTIONS ── */
section { padding: 7rem 4rem; position: relative; z-index: var(--z-base); }

.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .67rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .9rem;
}
.section-label::before {
  content: '';
  width: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose));
}

h2.section-title {
  font-family: 'Gravitas One', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.14;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.section-desc {
  color: rgba(255,255,255,.48);
  max-width: 520px;
  line-height: 1.78;
  font-size: .92rem;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(.99);
  transition:
    opacity .75s var(--ease-spring),
    transform .75s var(--ease-spring);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── SERVICES ── */
#services { background: rgba(0,0,0,.12); }
.services-header { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 2rem;
  transition:
    transform .35s var(--ease-spring),
    border-color .35s,
    background .35s,
    box-shadow .35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  will-change: transform;
}
/* Animated top-border sweep on hover */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color, var(--rose));
  transform: scaleX(0);
  transition: transform .45s var(--ease-spring);
  transform-origin: left;
  box-shadow: 0 0 12px var(--color, var(--rose));
}
/* Inner highlight glow */
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,.03), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.01);
  box-shadow:
    0 0 0 1px var(--color),
    0 28px 56px rgba(0,0,0,.5),
    0 0 80px -20px var(--color);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; }

.service-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.service-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.08); }
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: 'Gravitas One', serif;
  font-size: 1.1rem;
  margin-bottom: .6rem;
  line-height: 1.25;
}
.service-card p {
  color: rgba(255,255,255,.48);
  font-size: .87rem;
  line-height: 1.7;
  flex: 1;
}
.service-more {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.4rem;
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--color, var(--rose));
  text-decoration: none;
  text-transform: uppercase;
  transition: gap .25s var(--ease-spring), opacity .2s;
  font-weight: 700;
  align-self: flex-start;
}
.service-more:hover { gap: .8rem; opacity: .85; }

/* ── WHY US ── */
#why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-visual { position: relative; }
.why-card-stack { position: relative; height: 380px; }
.why-card {
  position: absolute;
  background: rgba(6,20,55,.9);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,.5); }
.why-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 12px 12px 0 0;
}
.why-card:nth-child(1) { left: 0; top: 0; width: 240px; }
.why-card:nth-child(1)::after { background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.why-card:nth-child(2) {
  right: 0; top: 60px; width: 230px;
  background: rgba(56,20,84,.55);
  border-color: rgba(76,37,97,.5);
}
.why-card:nth-child(2)::after { background: var(--rose); box-shadow: 0 0 10px var(--rose); }
.why-card:nth-child(3) {
  left: 40px; bottom: 0; width: 260px;
  background: rgba(208,72,125,.08);
  border-color: rgba(208,72,125,.18);
}
.why-card:nth-child(3)::after { background: linear-gradient(90deg, var(--rose), var(--purple)); }

.wc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.wc-label { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.wc-trend {
  font-size: .65rem; font-weight: 700;
  color: var(--low);
  display: flex; align-items: center; gap: .2rem;
}
.wc-val {
  font-family: 'Gravitas One', serif;
  font-size: 1.75rem; color: var(--white); line-height: 1;
  letter-spacing: -.02em;
}
.wc-sub { font-size: .73rem; color: rgba(255,255,255,.38); margin-top: .35rem; }

.why-list { list-style: none; margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1rem; }
.why-list li {
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.65;
  transition: color .2s;
}
.why-list li:hover { color: rgba(255,255,255,.85); }
.why-check {
  width: 20px; height: 20px; min-width: 20px;
  background: rgba(208,72,125,.12);
  border: 1px solid rgba(208,72,125,.25);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.why-list li:hover .why-check {
  background: rgba(208,72,125,.2);
  border-color: rgba(208,72,125,.45);
}
.why-check svg { width: 10px; height: 10px; }

/* ── TESTIMONIALS ── */
#testimonials { background: rgba(0,0,0,.1); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.testi-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s, transform .35s var(--ease-spring), box-shadow .35s;
}
.testi-card::before {
  content: '"';
  position: absolute; top: .8rem; right: 1.4rem;
  font-family: 'Gravitas One', serif;
  font-size: 5rem;
  color: rgba(208,72,125,.06);
  line-height: 1;
  pointer-events: none;
  transition: color .3s;
}
.testi-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}
.testi-card:hover::before { color: rgba(208,72,125,.1); }
.testi-stars { color: var(--rose); font-size: .85rem; margin-bottom: 1rem; letter-spacing: .15em; }
.testi-text {
  font-size: .88rem;
  color: rgba(255,255,255,.58);
  line-height: 1.78;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem; color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: .87rem; font-weight: 700; }
.testi-role { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: .1rem; }

/* ── CTA BAND ── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
#cta-band {
  padding: 7rem 4rem;
  text-align: center;
  background: linear-gradient(-45deg, #4c2561, #071c45, #1a0a38, #071c45, #300d50);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  border-top: 1px solid rgba(208,72,125,.18);
  border-bottom: 1px solid rgba(208,72,125,.18);
  position: relative; overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(208,72,125,.08) 0%, transparent 70%);
  pointer-events: none;
}
#cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(208,72,125,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,72,125,.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
#cta-band h2 {
  font-family: 'Gravitas One', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: .9rem;
  position: relative; z-index: 1;
  letter-spacing: -.02em;
}
#cta-band p {
  color: rgba(255,255,255,.52);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.78;
  font-size: .95rem;
  position: relative; z-index: 1;
}
#cta-band .btn-primary { position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: rgba(0,0,0,.42);
  padding: 4rem 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: rgba(255,255,255,.38); font-size: .84rem; line-height: 1.75; margin-top: 1rem; max-width: 260px; }
.footer-col h4 { font-family: 'Gravitas One', serif; font-size: .88rem; margin-bottom: 1.2rem; color: rgba(255,255,255,.65); letter-spacing: .04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.22);
}
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  font-size: .78rem; font-weight: 700;
  transition: border-color .2s, color .2s, background .2s, transform .2s var(--ease-spring);
}
.footer-socials a:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(208,72,125,.07);
  transform: translateY(-2px);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-inner { animation-play-state: paused; }
  .shield-anim, .hero-orb { animation: none; }
  .hero-tag, .hero-title, .hero-sub, .hero-actions { animation: none; }
  .hero-tag::before, .live-dot { animation: none; }
  #cta-band { animation: none; }
}

/* ── TOUCH DEVICES — masquer le curseur custom, restaurer le curseur natif ── */
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto; }
  .btn-primary, .btn-outline, .service-card,
  .chip, .testi-card, .nav-links a,
  .footer-socials a, .footer-col a { cursor: pointer; }
  /* Supprime l'effet magnétique CSS résiduel */
  .btn-primary:hover, .btn-outline:hover { transform: none; }
  /* Touch targets minimum 44px */
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .chip { min-height: 44px; }
  .footer-socials a { width: 44px; height: 44px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 0 2rem; }
  #hero { padding: 9rem 2rem 5rem; }
  .hero-visual { width: 340px; height: 340px; right: 2rem; }
  section { padding: 6rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 3rem 2rem 1.5rem; }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,18,50,.98);
    padding: 1.5rem 2rem;
    flex-direction: column; gap: 1rem;
    border-bottom: 1px solid rgba(208,72,125,.15);
    display: none;
    backdrop-filter: blur(24px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .9rem; padding: .6rem 0; }
  .nav-hamburger { display: flex; }
  .hero-visual { display: none; }
  #why { grid-template-columns: 1fr; gap: 3rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.05); }
  .stat-item:nth-child(2) { border-right: none; }
  /* Why card stack : retirer le positionnement absolu */
  .why-card-stack {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: .85rem;
  }
  .why-card {
    position: static !important;
    width: 100% !important;
    top: auto !important; right: auto !important;
    bottom: auto !important; left: auto !important;
  }
}

@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  section { padding: 4.5rem 1.25rem; }
  #hero { padding: 7.5rem 1.25rem 4rem; }

  /* Stats : colonne unique, textes compressés */
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,.05); }
  .stat-item:first-child { border-top: none; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: .65rem; letter-spacing: .06em; }

  /* Services : 1 colonne garantie sur petit écran */
  .services-grid { grid-template-columns: 1fr; }

  /* Hero */
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; }

  /* Section title un peu plus petite */
  h2.section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* CTA */
  #cta-band { padding: 4.5rem 1.25rem; }
}

@media (max-width: 420px) {
  h1.hero-title { font-size: 2.2rem; }
  .stat-num { font-size: 1.5rem; }
  .wc-val { font-size: 1.45rem; }
  .modal-panel { padding: 1.25rem; border-radius: 12px; }
  .service-card { padding: 1.5rem; }
  .chip { font-size: .72rem; padding: .4rem .75rem; }
}

/* ───────────────────────────────────────
   AUDIT MODAL
─────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: var(--z-modal);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(3,10,30,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  background: linear-gradient(160deg, #0c2056 0%, #071c45 100%);
  border: 1px solid rgba(208,72,125,.18);
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .4s var(--ease-spring);
  scrollbar-width: thin;
  scrollbar-color: rgba(208,72,125,.3) transparent;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(208,72,125,.08);
}
.modal-overlay.is-open .modal-panel {
  transform: translateY(0) scale(1);
}
.modal-panel::-webkit-scrollbar { width: 4px; }
.modal-panel::-webkit-scrollbar-thumb { background: rgba(208,72,125,.3); border-radius: 4px; }

.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 2rem; gap: 1rem;
}
.modal-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .6rem;
}
.modal-title {
  font-family: 'Gravitas One', serif;
  font-size: 1.6rem; line-height: 1.18;
  letter-spacing: -.01em;
}
.modal-title .accent {
  background: linear-gradient(125deg, #d0487d, #e87db0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-close {
  width: 34px; height: 34px; min-width: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.45);
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease-spring);
  margin-top: .2rem;
}
.modal-close svg { width: 14px; height: 14px; }
.modal-close:hover {
  background: rgba(208,72,125,.1);
  border-color: rgba(208,72,125,.3);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-form { display: flex; flex-direction: column; gap: 1.4rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .5rem; }

.form-group label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 700;
}
.form-group label svg { width: 13px; height: 13px; flex-shrink: 0; }

.label-optional {
  margin-left: auto;
  font-size: .65rem; color: rgba(255,255,255,.22);
  text-transform: none; letter-spacing: 0; font-weight: 400;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--white);
  font-family: 'Sansation', sans-serif;
  font-size: .9rem;
  line-height: 1.5;
  transition: border-color .25s, background .25s, box-shadow .25s;
  outline: none;
  width: 100%;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.18); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  background: rgba(208,72,125,.05);
  box-shadow: 0 0 0 3px rgba(208,72,125,.1);
}
.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--critical);
  box-shadow: 0 0 0 3px rgba(248,113,113,.08);
}

.form-error { font-size: .72rem; color: var(--critical); min-height: .9rem; display: block; }

.service-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .15rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  color: rgba(255,255,255,.5);
  font-family: 'Sansation', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease-spring);
  user-select: none;
}
.chip svg { width: 13px; height: 13px; flex-shrink: 0; }
.chip:hover {
  background: rgba(208,72,125,.1);
  border-color: rgba(208,72,125,.3);
  color: var(--white);
  transform: translateY(-1px);
}
.chip.is-selected {
  background: rgba(208,72,125,.15);
  border-color: var(--rose);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(208,72,125,.15);
}
.chip.is-selected svg { stroke: var(--rose); }
.service-chips.is-invalid .chip { border-color: rgba(248,113,113,.25); }

.modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; padding-top: .5rem;
}
.modal-disclaimer {
  display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: rgba(255,255,255,.25);
}
.modal-disclaimer svg { width: 12px; height: 12px; flex-shrink: 0; }
.modal-submit {
  display: inline-flex; align-items: center; gap: .55rem;
  border: none;
  font-family: 'Sansation', sans-serif;
  cursor: pointer;
  white-space: nowrap;
}
.modal-submit svg { width: 15px; height: 15px; transition: transform .25s var(--ease-spring); }
.modal-submit:hover svg { transform: translateX(4px); }
.modal-submit:disabled { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.modal-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2rem 1rem; gap: 1rem;
}
.modal-success[hidden] { display: none; }
.success-icon { animation: successPop .45s var(--ease-spring); }
.success-icon svg { width: 72px; height: 72px; }
@keyframes successPop {
  0%   { transform: scale(.4); opacity: 0; }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.modal-success h3 { font-family: 'Gravitas One', serif; font-size: 1.5rem; }
.modal-success p { color: rgba(255,255,255,.52); line-height: 1.75; font-size: .92rem; }
.modal-success strong { color: var(--teal); }

@media (max-width: 540px) {
  .modal-panel { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .modal-footer { flex-direction: column; align-items: stretch; }
  .modal-submit { justify-content: center; }
  .modal-title { font-size: 1.3rem; }
}
