/* ============================================================
   DomainProtect — Feuille de style principale
   Thème : cybersécurité professionnel, sombre, rassurant
   ============================================================ */

/* ------ Variables ------ */
:root {
  --bg-base:    #080c14;
  --bg-surface: #0e1624;
  --bg-card:    #111927;
  --bg-card-hover: #141f30;
  --border:     rgba(56, 139, 253, 0.1);
  --border-md:  rgba(56, 139, 253, 0.22);
  --border-hi:  rgba(56, 139, 253, 0.42);

  --primary:    #3b82f6;
  --primary-dk: #2563eb;
  --primary-lt: #93c5fd;
  --primary-glow: rgba(59, 130, 246, 0.18);
  --accent:     #06b6d4;
  --accent-glow: rgba(6, 182, 212, 0.15);
  --success:    #22c55e;
  --warning:    #f59e0b;
  --danger:     #ef4444;

  --text:       #e2e8f0;
  --text-muted: #64748b;
  --text-soft:  #94a3b8;
  --text-inv:   #080c14;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 28px rgba(59,130,246,0.18);
  --shadow-btn:  0 4px 14px rgba(59,130,246,0.32);

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  --header-h: 68px;
  --max-w: 1140px;
  --section-gap: 100px;
}

/* ------ Reset ------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary-lt); text-decoration: none; }
a:hover { color: #fff; }
ul { list-style: none; }
button { font-family: inherit; }

/* ------ Google Fonts import ------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ------ Utilitaires ------ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: 24px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.navbar {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: 24px; height: 100%;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem;
  color: #fff; letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-dk), var(--accent));
  color: #fff; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(59,130,246,0.35);
  flex-shrink: 0;
}
.logo-shield {
  display: flex; align-items: center; gap: 6px;
}
.logo-shield svg { width: 18px; height: 18px; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-soft); padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff; background: rgba(255,255,255,0.06);
}
.nav-links a.active { color: var(--primary-lt); }

.nav-cta { margin-left: 8px; }

/* Mobile burger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border: none; background: transparent;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-soft); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600; line-height: 1;
  padding: 12px 22px; border-radius: var(--radius);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, opacity 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--primary-dk);
  box-shadow: 0 6px 20px rgba(59,130,246,0.42);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-md);
}
.btn-secondary:hover {
  border-color: var(--border-hi);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.btn-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-sm { padding: 8px 16px; font-size: 0.825rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ============================================================
   EYEBROW / LABELS
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

/* ============================================================
   HERO — PAGE D'ACCUEIL
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 24px 80px;
  max-width: var(--max-w); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
/* Décoration de fond */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 30%, rgba(59,130,246,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 100% 70%, rgba(6,182,212,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; }
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--primary-lt), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text {
  font-size: 1.05rem; color: var(--text-soft); line-height: 1.75;
  max-width: 500px; margin-bottom: 32px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* Hero panel (côté droit) */
.hero-panel {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}

.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.signal-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.signal-card-main {
  display: flex; flex-direction: column; gap: 8px;
}
.signal-card-main strong {
  font-size: 0.95rem; color: #fff; font-weight: 600;
}
.signal-card-main p { font-size: 0.82rem; color: var(--text-soft); }

/* Status dot animé */
.status-dot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--success); text-transform: uppercase; letter-spacing: 0.06em;
}
.status-dot::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: pulse-dot 2s infinite;
}
.status-dot::after { content: 'Analyse active'; }

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.signal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.signal-grid > div {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.2s;
}
.signal-grid > div:hover { border-color: var(--border-md); }
.signal-grid strong {
  font-size: 1.6rem; font-weight: 800;
  color: #fff; line-height: 1.1;
}
.signal-grid span { font-size: 0.76rem; color: var(--text-muted); }

/* Indicateurs threat */
.threat-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.threat-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}
.threat-tag.red   { background: rgba(239,68,68,0.12); color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); }
.threat-tag.orange{ background: rgba(245,158,11,0.12); color: #fcd34d; border: 1px solid rgba(245,158,11,0.25); }
.threat-tag.blue  { background: rgba(59,130,246,0.12); color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 0 24px;
}
.stats-bar-inner {
  max-width: var(--max-w); margin-inline: auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-around;
  gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 32px; gap: 4px;
  border-right: 1px solid var(--border);
  flex: 1; min-width: 140px;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  font-size: 1.75rem; font-weight: 800;
  color: #fff; line-height: 1;
  background: linear-gradient(90deg, var(--primary-lt), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item span { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
.section {
  padding: var(--section-gap) 24px;
  max-width: var(--max-w); margin-inline: auto;
}
.section-heading {
  text-align: center; margin-bottom: 56px;
}
.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800; letter-spacing: -0.025em;
  color: #fff; line-height: 1.2;
  max-width: 640px; margin-inline: auto;
}
.section-heading p {
  margin-top: 12px; font-size: 1rem;
  color: var(--text-soft); max-width: 520px; margin-inline: auto;
}

h2 {
  font-size: 1.5rem; font-weight: 700;
  color: #fff; letter-spacing: -0.02em; line-height: 1.25;
}
h3 {
  font-size: 1.1rem; font-weight: 600;
  color: #fff; letter-spacing: -0.01em;
}

/* ============================================================
   CARDS
   ============================================================ */
.cards { display: grid; gap: 16px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two   { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--border-md);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-2px);
}
.card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; margin-top: 10px; }

/* Icône de carte */
.card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--primary-glow);
  border: 1px solid rgba(59,130,246,0.2);
  margin-bottom: 18px;
  font-size: 1.3rem; color: var(--primary-lt);
}
.card-icon.num {
  font-family: var(--font-mono);
  font-size: 0.9rem; font-weight: 700; color: var(--accent);
  background: rgba(6,182,212,0.08);
  border-color: rgba(6,182,212,0.2);
}

.card-icon svg { width: 22px; height: 22px; }

/* ============================================================
   URGENT SECTION
   ============================================================ */
.urgent-section {
  margin: 0; padding: 0 24px;
}
.urgent-section-inner {
  max-width: var(--max-w); margin-inline: auto;
  background: linear-gradient(135deg, rgba(239,68,68,0.08) 0%, rgba(245,158,11,0.06) 100%);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.urgent-section-inner::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,68,68,0.08), transparent 70%);
  pointer-events: none;
}
.urgent-section-inner h2 { font-size: 1.35rem; }
.urgent-section-inner p { font-size: 0.9rem; color: var(--text-soft); margin-top: 6px; max-width: 560px; }

/* ============================================================
   SECTION SPLIT (deux colonnes)
   ============================================================ */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.split-section h2 { margin-bottom: 12px; }
.split-section p { color: var(--text-soft); font-size: 0.95rem; }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-soft);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: border-color 0.2s;
}
.check-list li:hover { border-color: var(--border-md); }
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-color: var(--success);
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ============================================================
   PAGE HERO (pages internes)
   ============================================================ */
.page-hero {
  padding: 80px 24px 64px;
  max-width: var(--max-w); margin-inline: auto;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; color: #fff; line-height: 1.15;
  max-width: 640px; margin-bottom: 16px;
}
.page-hero p { font-size: 1rem; color: var(--text-soft); max-width: 560px; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  padding: 0 24px 80px;
}
.trust-inner {
  max-width: var(--max-w); margin-inline: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 32px;
}
.trust-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.trust-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--primary-glow);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.trust-item strong { font-size: 0.9rem; color: #fff; font-weight: 600; }
.trust-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.price-card:hover {
  border-color: var(--border-md);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(170deg, rgba(59,130,246,0.08) 0%, var(--bg-card) 60%);
  box-shadow: var(--shadow-card), 0 0 40px rgba(59,130,246,0.15);
}
.price-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.badge {
  display: inline-flex; align-items: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--primary-lt);
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 20px; padding: 4px 12px;
  width: fit-content;
}
.price-card h2 { font-size: 1.25rem; }
.price { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.price-period { font-size: 0.78rem; color: var(--text-muted); }
.price-card > p { font-size: 0.875rem; color: var(--text-soft); }
.price-card ul {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 4px; border-top: 1px solid var(--border);
}
.price-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-soft);
}
.price-card li::before {
  content: '';
  flex-shrink: 0; margin-top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-color: var(--success);
  background-size: 9px; background-repeat: no-repeat; background-position: center;
}
.price-card .btn { margin-top: auto; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-info p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; }
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px; margin-top: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.info-box strong { font-size: 0.85rem; color: #fff; font-weight: 600; }
.info-box span { font-size: 0.82rem; color: var(--text-soft); }
.info-box.alert-box {
  border-color: rgba(239,68,68,0.25);
  background: rgba(239,68,68,0.06);
}
.info-box.alert-box strong { color: #fca5a5; }

.security-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-muted);
  margin-top: 20px; padding: 12px 16px;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: var(--radius-sm);
}
.security-note::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* Formulaire */
.contact-form {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.contact-form label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-soft);
  display: block; margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  color: var(--text); font-family: inherit;
  font-size: 0.9rem; padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  background-size: 18px; padding-right: 40px;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; }

.form-status {
  font-size: 0.85rem; color: var(--success); min-height: 1.4em;
}
.form-status.error { color: var(--danger); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-w); margin-inline: auto;
  padding: 56px 24px 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 260px; }

.footer-col h4 {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-soft); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.875rem;
  color: var(--text-muted); padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max-w); margin-inline: auto;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-muted); padding: 4px 10px;
  border: 1px solid var(--border); border-radius: 20px;
}
.footer-badge::before {
  content: '';
  width: 12px; height: 12px;
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
.footer-badge.ssl::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}
.footer-badge.shield::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2.5'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}
.footer-badge.rgpd::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306b6d4' stroke-width='2.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E");
}

/* ============================================================
   LEGAL CONTENT
   ============================================================ */
.legal-content {
  max-width: 740px;
  display: flex; flex-direction: column; gap: 32px;
}
.legal-content h2 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-soft); letter-spacing: 0.01em;
  margin-bottom: -12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-content p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.75; }

/* ============================================================
   ANIMATIONS AU SCROLL
   ============================================================ */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible { opacity: 1; transform: none; }

/* stagger sur les enfants */
.stagger > * { opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }

/* ============================================================
   DECORATIONS TECH
   ============================================================ */
.grid-bg {
  background-image:
    linear-gradient(rgba(56,139,253,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,139,253,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards.three { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --section-gap: 64px; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 60px; }
  .hero-panel { max-width: 480px; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .cards.two { grid-template-columns: 1fr; }
  .stats-bar-inner { justify-content: flex-start; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .nav-links { display: none; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: rgba(8,12,20,0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); padding: 16px 24px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .cards.three { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .urgent-section-inner { padding: 28px 24px; flex-direction: column; }
  .contact-form { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-inner { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
