/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --gold: #c3bd77;
  --gold-20: rgba(195,189,119,0.20);
  --gold-10: rgba(195,189,119,0.10);
  --gold-glow: rgba(195,189,119,0.35);
  --navy: #0f1e3c;
  --navy-80: rgba(15,30,60,0.80);
  --white: #ffffff;
  --off: #f7f6f2;
  --off2: #f0efe9;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --border: rgba(195,189,119,0.18);
  --border-soft: rgba(0,0,0,0.07);
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(195,189,119,0.22);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-hover: 0 8px 32px rgba(195,189,119,0.22), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-elevated: 0 12px 40px rgba(15,30,60,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --radius: 18px;
  --radius-sm: 10px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --transition: 0.38s cubic-bezier(0.16,1,0.3,1);
  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ═══════════════════════════════════════
   GLASSMORPHISM NAV
═══════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 66px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  display: flex; align-items: center;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 4px 24px rgba(195,189,119,0.1); }
.nav-inner { display: flex; align-items: center; width: 100%; max-width: 1280px; margin: 0 auto; gap: 8px; }

.nav-logo {
  font-size: 19px; font-weight: 700; color: var(--navy);
  cursor: pointer; letter-spacing: -0.03em; white-space: nowrap;
  display: flex; align-items: center; gap: 7px; text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 7px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 32px; flex: 1; }
.nl {
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  padding: 7px 13px; border-radius: 8px; cursor: pointer;
  border: none; background: none; font-family: var(--font);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
  position: relative;
}
.nl:hover { color: var(--ink); background: var(--off); }
.nl.active { color: var(--navy); }
.nl.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--gold); border-radius: 2px;
}
a.nl { text-decoration: none; display: flex; align-items: center; }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); padding: 6px;
  min-width: 220px; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s; z-index: 200;
}
/* Pont invisible entre le bouton et le menu pour éviter le gap */
.nav-dd-menu::before {
  content: ''; position: absolute; top: -20px; left: -20px; right: -20px; height: 24px;
}
.nav-dd-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; font-size: 13px; color: var(--muted);
  border-radius: 7px; cursor: pointer; transition: all 0.15s;
  border: none; background: none; width: 100%; font-family: var(--font); font-weight: 500;
  text-align: left;
}
.dd-item:hover { background: var(--off); color: var(--ink); }
a.dd-item { text-decoration: none; }
.dd-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--off); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dd-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.nav-call {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  padding: 7px 14px; border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; background: none;
  font-family: var(--font); transition: all 0.2s; white-space: nowrap;
  text-decoration: none;
}
.nav-call:hover { background: var(--gold-10); border-color: var(--gold); }
.nav-call svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }
.nav-support { background: var(--gold-10); border-color: var(--gold); color: var(--navy); }
.nav-support:hover { background: var(--gold); color: var(--navy); }
.nav-support:hover svg { stroke: var(--navy); }
.nav-cta {
  font-size: 13px; font-weight: 600; color: var(--white);
  padding: 8px 18px; background: var(--navy); border-radius: 8px;
  cursor: pointer; border: none; font-family: var(--font);
  transition: all 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: #1a2f52; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(15,30,60,0.25); }
a.nav-cta { text-decoration: none; display: inline-flex; align-items: center; }

/* ═══════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════ */
main { padding-top: 66px; }
.pg-in { animation: pgIn 0.5s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes pgIn { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: calc(100svh - 66px);
  display: flex; align-items: center;
  padding: clamp(48px,8vh,100px) clamp(20px,5vw,80px);
  position: relative; overflow: hidden;
  background: var(--white);
}

/* Animated grid pattern */
.hero-grid {
  --gp-cell: 48;
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  fill: rgba(195,189,119,0.10); stroke: rgba(195,189,119,0.08);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 40%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 40%, black 100%);
}
.hero-grid rect.gp-sq {
  fill: rgba(195,189,119,0.3);
}
/* Gold orb */
.hero::after {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(195,189,119,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}
.hero-content {
  background: radial-gradient(ellipse 120% 100% at 30% 50%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 70%);
  border-radius: 24px; padding: 8px 0;
}

/* ── LEFT CONTENT ── */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-10); border: 1px solid var(--gold-20);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 28px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

/* Legacy .hero-tag alias */
.hero-tag { display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-10); border: 1px solid var(--gold-20);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 28px; }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; flex-shrink: 0; }

.hero h1 {
  font-size: clamp(34px, 4.2vw, 62px); font-weight: 800; line-height: 1.06;
  color: var(--navy); letter-spacing: -0.045em; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: clamp(15px, 1.4vw, 16.5px); line-height: 1.8;
  color: var(--muted); margin-bottom: 36px; max-width: 460px;
}

/* Buttons */
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  width: fit-content;
  font-size: 14px; font-weight: 700; color: var(--white);
  padding: 14px 26px; background: var(--navy); border-radius: 12px;
  cursor: pointer; border: none; font-family: var(--font);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.06) 100%);
}
.btn-primary:hover { background: #162d50; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(15,30,60,0.28); }
.btn-primary svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2.2; flex-shrink: 0; }
a.btn-primary { text-decoration: none; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
  font-size: 14px; font-weight: 600; color: var(--navy);
  padding: 13px 24px; border: 1.5px solid var(--border-soft); border-radius: 12px;
  cursor: pointer; background: transparent; font-family: var(--font); transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-10); color: var(--navy); }
a.btn-ghost { text-decoration: none; }

/* Trust bar */
.hero-trust { display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.trust-av {
  width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid var(--white);
  background: var(--navy); margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--gold);
  box-shadow: 0 2px 8px rgba(15,30,60,0.15);
}
.trust-av:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.trust-text strong { color: var(--ink); font-weight: 700; }

/* ── RIGHT PANEL ── */
.hero-panel { display: flex; flex-direction: column; gap: 12px; }

.hero-photo-card {
  border-radius: 20px; overflow: hidden;
  position: relative; aspect-ratio: 1/1;
  box-shadow: 0 24px 56px rgba(15,30,60,0.18), 0 4px 16px rgba(15,30,60,0.08);
}
.hero-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.hero-photo-card .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,30,60,0.9) 0%, rgba(15,30,60,0.25) 55%, transparent 100%);
}
.hero-photo-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 24px 20px;
}
.hero-photo-role {
  font-size: 10px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.hero-photo-name {
  font-size: 18px; font-weight: 700; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 3px;
}
.hero-photo-sub {
  font-size: 12.5px; color: rgba(255,255,255,0.55);
}
.hero-photo-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(10,22,45,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(195,189,119,0.35); border-radius: 22px;
  padding: 6px 13px; display: flex; align-items: center; gap: 6px;
}
.hero-photo-badge svg { width: 11px; height: 11px; flex-shrink: 0; }
.hero-photo-badge span { font-size: 12.5px; font-weight: 700; color: #fff; }

/* Stats grid */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.hero-stat-card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: 14px; padding: 14px 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.04);
  text-align: center; cursor: default;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hero-stat-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(195,189,119,0.15); }
.hero-stat-card.clickable { cursor: pointer; }
.hero-stat-val {
  font-size: 22px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 10.5px; color: var(--muted); font-weight: 500; line-height: 1.3;
}

/* ═══════════════════════════════════════
   SECTION LAYOUT
═══════════════════════════════════════ */
.section { padding: clamp(64px,8vh,100px) clamp(20px,5vw,80px); }
.container { max-width: 1280px; margin: 0 auto; }
.section-bg { background: var(--off); }

.s-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.s-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--gold); border-radius: 2px; }
.s-title { font-size: clamp(28px,3.2vw,44px); font-weight: 700; color: var(--navy); letter-spacing: -0.035em; line-height: 1.12; margin-bottom: 14px; }
.s-desc { font-size: 15.5px; color: var(--muted); line-height: 1.8; max-width: 560px; }

/* ═══════════════════════════════════════
   BENTO GRID, SERVICES
═══════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 14px;
  margin-top: 56px;
}
.bento-card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 32px; cursor: pointer;
  position: relative; overflow: hidden;
  /* transform/shadow gérés par GSAP uniquement */
}
.bento-card::after { display: none; } /* supprimé, GSAP gère la lueur */
a.bento-card { text-decoration: none; display: block; }
a.bento-card .course-link-hint {
  display: flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 12.5px; font-weight: 600; color: var(--gold);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}
a.bento-card .course-link-hint svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2.2; transition: transform 0.25s var(--ease-out-expo); }
a.bento-card:hover .course-link-hint { opacity: 1; transform: translateY(0); }
a.bento-card:hover .course-link-hint svg { transform: translate(2px, -2px); }
a.bento-card:hover { border-color: var(--gold-20); }

.bc-1 { grid-column: span 7; }
.bc-2 { grid-column: span 5; }
.bc-3 { grid-column: span 5; }
.bc-4 { grid-column: span 7; }

.bento-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--gold-10); border: 1px solid var(--gold-20);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.bento-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
h3.bento-title, div.bento-title { font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 10px; margin-top: 0; line-height: 1.3; }
.bento-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.bento-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.b-tag {
  font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 20px;
  background: var(--off); color: var(--muted); border: 1px solid var(--border-soft);
}
.bento-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--border-soft); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.bento-arrow svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 2; transition: transform 0.2s; }
.bento-card:hover .bento-arrow { border-color: var(--gold); background: var(--gold-10); }
.bento-card:hover .bento-arrow svg { stroke: var(--gold); transform: translate(2px,-2px); }

/* Dark bento card */
.bento-dark {
  background: var(--navy); border-color: var(--navy);
}
.bento-dark .bento-title { color: var(--white); }
.bento-dark .bento-desc { color: rgba(255,255,255,0.6); }
.bento-dark .bento-icon { background: rgba(195,189,119,0.12); border-color: rgba(195,189,119,0.2); }
.bento-dark .b-tag { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }
.bento-dark .bento-arrow { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
.bento-dark:hover { box-shadow: 0 8px 32px rgba(15,30,60,0.35); }
.bento-dark:hover::after { background: radial-gradient(circle at 50% 0%, rgba(195,189,119,0.15) 0%, transparent 65%); }

/* ═══════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════ */
.stats-strip {
  background: var(--white);
  padding: 64px clamp(20px,5vw,80px);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 0;
}
.stat-item { text-align: center; padding: 0 clamp(16px,3vw,48px); }
.stat-num { font-size: clamp(40px,5vw,56px); font-weight: 800; color: var(--navy); letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 13px; color: var(--muted); font-weight: 500; }
.stat-div { width: 1px; height: 48px; background: var(--border-soft); }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 28px 26px;
  transition: box-shadow 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow-card); }
.t-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.t-stars svg { width: 15px; height: 15px; fill: var(--gold); }
.t-text { font-size: 14.5px; line-height: 1.75; color: var(--ink); margin-bottom: 22px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 11px; }
.t-av {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.t-name { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.t-loc { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════ */
.page-hd {
  position: relative; overflow: hidden;
  padding: 72px clamp(20px,5vw,80px) 60px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--off);
}
.page-hd .container { max-width: 1280px; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--muted); margin-bottom: 24px;
}
.breadcrumb span { cursor: pointer; } .breadcrumb span:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border-soft); }
.breadcrumb a { color: var(--muted); text-decoration: none; cursor: pointer; }
.breadcrumb a:hover { color: var(--gold); }
.page-hd h1 { font-size: clamp(32px,4vw,54px); font-weight: 700; color: var(--navy); letter-spacing: -0.04em; margin-bottom: 16px; }
.page-hd p { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 580px; }

/* Page hero with image, split layout */
.page-hd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-hd-split .page-hd-text { display: flex; flex-direction: column; }
.page-hd-split .page-hd-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/10;
}
.page-hd-split .page-hd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Contact page hero */
.contact-hd {
  position: relative; overflow: hidden;
  padding: 72px clamp(20px,5vw,80px) 60px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--off);
}
.contact-hd .container { max-width: 1280px; position: relative; z-index: 1; }
.contact-hd .breadcrumb { margin-bottom: 24px; }
.contact-hd h1 { font-size: clamp(32px,4vw,54px); font-weight: 700; color: var(--navy); letter-spacing: -0.04em; margin-bottom: 16px; }
.contact-hd p { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 580px; }
.contact-hd-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.contact-hd-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 99px;
  background: var(--white); border: 1px solid var(--border-soft);
  font-size: 13px; font-weight: 600; color: var(--navy);
  box-shadow: 0 1px 3px rgba(10,22,45,0.06);
}
.contact-hd-badge svg {
  width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0;
}
.contact-hd-img {
  cursor: zoom-in; position: relative;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/10;
}
.contact-hd-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.contact-hd-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(10,22,45,0.8) 0%, transparent 100%);
  pointer-events: none;
  display: flex; justify-content: space-between; align-items: center;
}
.contact-hd-img-caption span:first-child { font-size: 13px; font-weight: 600; color: #fff; }
.contact-hd-img-caption span:last-child { font-size: 11.5px; color: rgba(255,255,255,0.55); }
.contact-arcade-img {
  cursor: zoom-in; position: relative;
  margin-top: 16px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border-soft); box-shadow: var(--shadow-card);
  height: 400px;
}
.contact-arcade-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.contact-arcade-badges {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; flex-wrap: wrap; gap: 8px;
  pointer-events: none; z-index: 1;
}
.contact-arcade-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 99px;
  background: rgba(10,22,45,0.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11.5px; font-weight: 600; color: #fff;
  letter-spacing: 0.02em;
}
.contact-arcade-badge svg {
  width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0;
}
.contact-hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center;
}
.loc-grid {
  display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 24px; align-items: stretch;
}

/* ═══════════════════════════════════════
   SERVICE DETAIL
═══════════════════════════════════════ */
.svc-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.svc-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.svc-feat {
  display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.svc-feat:hover { border-color: var(--border); box-shadow: var(--shadow-card); }
.feat-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--gold-10);
  border: 1px solid var(--gold-20); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.feat-content h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.feat-content p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* Sticky aside */
.svc-aside {
  background: var(--navy); border-radius: 20px; padding: 36px;
  position: sticky; top: 82px;
}
.svc-aside h3 { font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -0.03em; margin-bottom: 12px; }
.svc-aside p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 28px; }
.aside-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ai-row { display: flex; align-items: center; gap: 12px; }
.ai-row svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.ai-row span { font-size: 13.5px; color: rgba(255,255,255,0.75); }
.aside-cta {
  width: 100%; background: var(--gold); color: var(--navy);
  border: none; border-radius: 10px; padding: 13px;
  font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font);
  transition: all 0.2s; letter-spacing: -0.01em;
}
.aside-cta:hover { background: #d4ce8a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(195,189,119,0.35); }
a.aside-cta { display: block; text-align: center; text-decoration: none; }

/* ═══════════════════════════════════════
   ENTREPRISES
═══════════════════════════════════════ */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px; }
.plan-card {
  border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 36px 28px;
  transition: all 0.3s; background: var(--white);
}
.plan-card.featured { background: var(--navy); border-color: var(--navy); }
.plan-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 20px; margin-bottom: 18px;
  background: var(--gold-10); color: var(--gold); border: 1px solid var(--gold-20);
}
.plan-card h3 { font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 8px; }
.plan-card.featured h3 { color: var(--white); }
.plan-card > p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.plan-card.featured > p { color: rgba(255,255,255,0.55); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.75); }
.pf-check {
  width: 18px; height: 18px; border-radius: 50%; background: var(--gold-10);
  border: 1px solid var(--gold-20); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.pf-check svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
.plan-cta {
  width: 100%; border-radius: 10px; padding: 12px;
  font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font);
  transition: all 0.2s; border: 1.5px solid var(--border-soft); background: var(--off); color: var(--navy);
}
.plan-card.featured .plan-cta { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.plan-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
a.plan-cta { text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; }
.plan-card.featured .plan-cta:hover { box-shadow: 0 6px 20px rgba(195,189,119,0.35); }

/* ═══════════════════════════════════════
   UX GLOBAL, Focus, skip, progress
═══════════════════════════════════════ */
.skip-link {
  position: fixed; top: -100%; left: 16px; z-index: 9999;
  background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: 0 0 8px 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Progress bar */
#read-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 1001;
  background: linear-gradient(90deg, var(--gold), #e8e3b0);
  width: 0%; transition: width 0.1s linear;
  pointer-events: none;
}

/* Back to top */
#back-to-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 899;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border-soft);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
  transform: translateY(10px);
}
#back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-to-top:hover { box-shadow: 0 6px 24px rgba(195,189,119,0.3); border-color: var(--gold); }
#back-to-top svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2.5; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; margin-top: 60px; }
.contact-info-block h2 { font-size: 32px; font-weight: 700; color: var(--navy); letter-spacing: -0.035em; margin-bottom: 16px; }
.contact-info-block > p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.ci-list { display: flex; flex-direction: column; gap: 18px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gold-10); border: 1px solid var(--gold-20); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.ci-lbl { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 3px; }
.ci-val { font-size: 15px; font-weight: 600; color: var(--navy); }

.map-placeholder {
  margin-top: 28px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-soft); height: 200px; background: var(--off);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
}
.map-placeholder svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.map-placeholder p { font-size: 13px; color: var(--muted); }
.map-link { font-size: 13px; color: var(--gold); font-weight: 600; cursor: pointer; }

/* ── FORM ── */
.contact-form-wrap {
  background: var(--white); border-radius: 20px; padding: 40px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 6px; }
.form-subtitle { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; }

/* Urgency toggle */
.urgency-toggle { display: flex; gap: 10px; margin-bottom: 22px; }
.urgency-btn {
  flex: 1; padding: 10px 12px; border-radius: 9px; border: 1.5px solid var(--border-soft);
  background: var(--white); font-size: 13px; font-weight: 600; font-family: var(--font);
  cursor: pointer; color: var(--muted); transition: all 0.2s; display: flex; align-items: center; gap: 7px; justify-content: center;
}
.urgency-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.urgency-btn.active { background: var(--off); border-color: var(--gold); color: var(--navy); }
.urgency-btn.urgent.active { background: #fff5f5; border-color: #e74c3c; color: #c0392b; }
.urgency-btn.urgent.active svg { stroke: #e74c3c; }

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

/* Floating label field */
.fg {
  position: relative; margin-bottom: 16px;
}
.fg label {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 14px; color: var(--muted); font-weight: 400;
  pointer-events: none; transition: all 0.2s; background: transparent;
  padding: 0 3px; white-space: nowrap;
}
.fg.textarea-fg label { top: 16px; transform: none; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 20px 14px 8px; border: 1.5px solid var(--border-soft); border-radius: 10px;
  font-size: 14px; color: var(--ink); background: var(--white); font-family: var(--font);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.fg select { padding: 14px 14px; cursor: pointer; -webkit-appearance: none; appearance: none; }
.fg.textarea-fg textarea { padding: 28px 14px 10px; height: 120px; resize: none; }

/* Label floated state */
.fg input:focus + label,
.fg input:not(:placeholder-shown) + label,
.fg textarea:focus ~ label,
.fg textarea:not(:placeholder-shown) ~ label,
.fg.has-value label,
.fg.focused label {
  top: 8px; transform: none; font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase;
}

/* Focus state */
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-10);
}
.fg.error input, .fg.error textarea, .fg.error select {
  border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}
.fg.success input, .fg.success textarea {
  border-color: #27ae60;
}

/* Floating label rearrangement for non-placeholder approach */
.fg input, .fg textarea, .fg select {
  padding: 22px 14px 8px;
}
.fg label {
  top: 15px; transform: none; font-size: 14px;
}
.fg input:focus ~ label,
.fg textarea:focus ~ label,
.fg.focused label,
.fg.has-value label {
  top: 6px; font-size: 10.5px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.06em; text-transform: uppercase;
}
/* Fix: label comes after input in DOM, use adjacent sibling trick */
.fg { display: flex; flex-direction: column; position: relative; }
.fg input, .fg textarea, .fg select {
  order: 2; padding: 14px 14px 8px;
}
.fg label { order: 1; font-size: 11.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; position: static; transform: none; text-transform: uppercase; margin-bottom: 5px; }
.fg .field-error { order: 3; font-size: 11.5px; color: #e74c3c; font-weight: 500; margin-top: 4px; display: none; }
.fg.error .field-error { display: block; }
.fg .field-hint { order: 3; font-size: 11.5px; color: var(--muted); margin-top: 4px; }

/* Select custom arrow */
.select-wrap { position: relative; }
.select-wrap::after {
  content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid var(--muted); pointer-events: none;
}
.select-wrap select { padding-right: 36px; }

/* Service chips */
.service-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  padding: 7px 14px; border-radius: 20px; border: 1.5px solid var(--border-soft);
  background: var(--white); font-size: 12.5px; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all 0.18s; font-family: var(--font);
  display: flex; align-items: center; gap: 5px;
}
.chip:hover { border-color: var(--gold); color: var(--navy); }
.chip.active { background: var(--gold-10); border-color: var(--gold); color: var(--navy); font-weight: 600; }
.chip svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Textarea char counter */
.textarea-footer { display: flex; justify-content: flex-end; margin-top: 4px; }
.char-count { font-size: 11px; color: var(--muted); }
.char-count.warning { color: #e67e22; }

/* Submit button states */
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; border-radius: 12px; padding: 16px;
  font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--font);
  transition: all 0.25s; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
}
.form-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.06) 100%);
}
.form-submit svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2.2; flex-shrink: 0; }
.form-submit:hover:not(:disabled) { background: #1a2f52; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,30,60,0.3); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-submit.loading { pointer-events: none; }
.form-submit.success-state { background: #27ae60; }
.form-submit.error-state { background: #c0392b; }

/* Spinner */
.spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.7s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════ */
.faq-section { padding: clamp(56px,6vh,80px) clamp(16px,5vw,72px); background: var(--white); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-soft); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--border-soft); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 0; background: none; border: none;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  color: var(--navy); cursor: pointer; text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
}
.faq-icon svg { width: 13px; height: 13px; stroke: var(--navy); fill: none; stroke-width: 2.5; transition: stroke 0.2s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.16,1,0.3,1), padding 0.3s; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }
.faq-a p { font-size: 14.5px; color: var(--muted); line-height: 1.8; }
.faq-a strong { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════ */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }

.wa-tooltip {
  position: fixed; bottom: 98px; right: 28px; z-index: 900;
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 10px 14px; font-size: 13px; color: var(--ink); font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1); white-space: nowrap;
  opacity: 0; transform: translateY(4px); pointer-events: none; transition: all 0.3s;
}
.wa-tooltip::after {
  content: ''; position: absolute; bottom: -6px; right: 22px;
  width: 10px; height: 10px; background: var(--white);
  border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  transform: rotate(45deg);
}
.whatsapp-btn:hover + .wa-tooltip { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 0;
}
.footer-main {
  max-width: 1280px; margin: 0 auto;
  padding: 56px clamp(20px,5vw,80px) 48px;
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 48px;
}
/* Col 1, Logo + tagline */
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand-logo img { height: 34px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-brand-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.footer-brand-contact a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.footer-brand-contact a:hover { color: var(--gold); }
.footer-brand-contact svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Cols 2-4, Navigation columns */
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.footer-col a {
  font-size: 13.5px; color: rgba(255,255,255,0.55); cursor: pointer;
  text-decoration: none; transition: color 0.2s; font-weight: 400;
}
.footer-col a:hover { color: rgba(255,255,255,0.95); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1280px; margin: 0 auto;
  padding: 18px clamp(20px,5vw,80px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-dev { font-size: 12px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 5px; }
.footer-dev a { font-weight: 600; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-dev a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Legacy, keep for any old references */
.footer-logo { font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--muted); cursor: pointer; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   GRID UTILITIES
═══════════════════════════════════════ */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ═══════════════════════════════════════
   SERVICE ARTICLES, Content enrichment blocks
═══════════════════════════════════════ */
.svc-articles {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.svc-articles .svc-article {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.svc-articles .svc-article h3 {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.svc-articles .svc-article p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  margin: 0;
}

/* ═══════════════════════════════════════
   ANIMATIONS, REVEAL ON SCROLL
   (GSAP gère les animations, CSS = fallback visible)
═══════════════════════════════════════ */
.reveal {
  /* Visible par défaut, GSAP overrides au runtime */
  opacity: 1; transform: none;
}
/* Pas de transition CSS, GSAP s'en charge */

/* ═══════════════════════════════════════
   IMAGE ZOOM + LIGHTBOX
═══════════════════════════════════════ */
.img-zoom-wrap img {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.img-zoom-wrap:hover img {
  transform: scale(1.06);
}
.img-zoom-hint {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(10,22,45,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
  pointer-events: none;
}
.img-zoom-wrap:hover .img-zoom-hint { opacity: 1; }

/* Lightbox overlay */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw; max-height: 90vh;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain; cursor: default;
  transform: scale(0.92); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-close svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.lightbox-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 12px; color: rgba(255,255,255,0.5); font-family: var(--font);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   ENHANCED CARD INTERACTIONS
═══════════════════════════════════════ */
.bento-card {
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.3s;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--border);
}
.plan-card {
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.3s;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}
.svc-feat {
  transition: transform 0.3s var(--ease-out-expo), border-color 0.2s, box-shadow 0.3s;
}
.svc-feat:hover {
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   PARTNER GLOW BORDER
═══════════════════════════════════════ */
@property --gradient-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
.partner-glow {
  border: 4px solid transparent !important;
  background:
    linear-gradient(var(--navy), var(--navy)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      #1a1610 0%,
      #c3bd77 37%,
      #e8dfa0 30%,
      #c3bd77 33%,
      #1a1610 40%,
      #1a1610 50%,
      #c3bd77 77%,
      #e8dfa0 80%,
      #c3bd77 83%,
      #1a1610 90%
    ) border-box !important;
  animation: gradient-rotate 5s linear infinite;
}
.partner-glow:hover {
  border-width: 5px !important;
}
@keyframes gradient-rotate {
  to { --gradient-angle: 360deg; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  /* Visible par défaut, GSAP overrides au runtime */
  opacity: 1;
  transform: none;
}
/* Delays supprimés, GSAP gère le stagger */

/* ═══════════════════════════════════════
   SUPPORT PAGE, STEP NUMBERS
═══════════════════════════════════════ */
.support-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px; font-weight: 800; color: var(--gold);
  position: relative;
  box-shadow: 0 4px 16px rgba(15,30,60,0.2);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.bento-card:hover .support-step-num {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(15,30,60,0.3);
}
.support-step-num::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-20);
}

/* ── SUPPORT PAGE ── */
.support-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-dl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; }
.support-security { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ═══════════════════════════════════════
   RESPONSIVE, TABLETTE (≤1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  /* NAV tablette, masquer email + réduire padding */
  #nav { padding: 0 20px; }
  .nav-links { margin-left: 16px; gap: 0; }
  .nl { font-size: 12.5px; padding: 6px 9px; }
  /* Masquer l'email nav, garder le tel */
  .nav-right a[href^="mailto"].nav-call { display: none; }
  /* Réduire le CTA */
  .nav-cta { font-size: 12.5px; padding: 7px 14px; }

  .hero-inner { gap: 36px; }
  .hero-panel { gap: 10px; }
  .hero-photo-card { aspect-ratio: 4/5; }
  .hero-stats { grid-template-columns: repeat(4,1fr); gap: 8px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid { --gp-cell: 40; }
  .bc-1,.bc-2,.bc-3,.bc-4 { grid-column: span 12; }
  .page-hd-split { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
  .testi-grid,.plans-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stat-div { display: none; }
  .stat-item { padding: 0 16px; }
  .contact-layout { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr 1fr; }
  .support-steps { grid-template-columns: repeat(2, 1fr); }
  .support-security { grid-template-columns: 1fr 1fr; }
  .grid-2col-pro { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-hero-grid { gap: 32px; grid-template-columns: 1fr 1fr; }
  .contact-hd { padding: 56px 20px 48px; }
  .contact-hd-img { aspect-ratio: 16/9; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid > :last-child { grid-column: span 2; }
  .loc-grid > :last-child img { height: 220px; }
  .grid-3col { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .grid-4col { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .grid-5col { grid-template-columns: repeat(3, 1fr) !important; gap: 14px; }
  .dkdp-banner-grid { grid-template-columns: 1fr !important; }
  .dkdp-banner-stats { flex-direction: row !important; }
  .ci-banner-top { flex-direction: column; }
}

/* ═══════════════════════════════════════
   RESPONSIVE, PETITE TABLETTE (≤900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Masquer Contact et Support, garder Services + Professionnels + CTA */
  .nl#nl-contact, .nl#nl-support { display: none; }
  /* Afficher le hamburger */
  .hamburger { display: flex !important; }
  /* Masquer l'email et le tel dans nav-right */
  .nav-right .nav-call { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE, MOBILE (≤768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Expert section responsive */
  .section [style*="grid-template-columns:380px"] { grid-template-columns: 1fr !important; gap: 40px !important; }
  .section [style*="aspect-ratio:4/5"] { aspect-ratio: 3/2 !important; }
  .section [style*="bottom:24px;left:-20px"] { left: 16px !important; bottom: 16px !important; }
  /* NAV */
  #nav { padding: 0 16px; height: 60px; }
  main { padding-top: 60px; }
  .nav-links { display: none; }
  .nav-call { display: none; }
  .nav-right .nav-cta { display: none; }
  .hamburger { display: flex !important; }

  /* GÉNÉRAL */
  section, .section { padding: 48px 18px; }
  .page-hd { padding: 48px 18px 36px; }
  .contact-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-hd { padding: 48px 18px 36px; }
  .contact-hd h1 { font-size: 28px; }
  .contact-hd-img { aspect-ratio: 16/9; }
  .contact-hd-badges { gap: 8px; }
  .contact-hd-badge { font-size: 12px; padding: 6px 12px; }
  .container { padding: 0; }

  /* TYPOGRAPHIE */
  .s-title { font-size: 26px; }
  .page-hd h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  .bento-title { font-size: 17px; }
  .bento-desc { font-size: 13px; }

  /* HERO */
  .hero { padding: 36px 18px 48px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-panel { display: none; } /* Masqué sur mobile, trop dense */
  .hero-tag { font-size: 10px; }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }
  .hero-btns { gap: 8px; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { font-size: 13px; padding: 11px 18px; }
  .hero-trust { gap: 12px; }
  .hero-grid { --gp-cell: 32; }
  .hero-content { background: radial-gradient(ellipse 130% 110% at 50% 40%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%); }

  /* BENTO, 1 colonne */
  .bento { grid-template-columns: 1fr; gap: 10px; }
  .bento .bc, .bento [style*="grid-column"] { grid-column: span 1 !important; }
  .bento-card { padding: 22px 18px; }

  /* STATS, 2 colonnes */
  .stats-strip { padding: 40px 18px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .stat-num { font-size: 34px; }
  .stat-div { display: none; }
  .stat-item { padding: 0 12px; }

  /* PAGE HERO SPLIT, mobile stack */
  .page-hd-split { grid-template-columns: 1fr; gap: 24px; }
  .page-hd-split .page-hd-img { aspect-ratio: 16/9; border-radius: 14px; }

  /* SERVICES DETAIL */
  .svc-layout { grid-template-columns: 1fr; gap: 28px; }
  .svc-aside { padding: 24px; border-radius: 14px; }
  .svc-aside h3 { font-size: 18px; }
  .svc-feat { padding: 14px; gap: 12px; }
  .feat-icon { width: 34px; height: 34px; flex-shrink: 0; }
  .feat-content h4 { font-size: 14px; }
  .feat-content p { font-size: 12.5px; }

  /* PLANS, 1 colonne */
  .plans-grid { grid-template-columns: 1fr; gap: 12px; }
  .plan-card { padding: 24px 20px; }

  /* CONTACT */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; border-radius: 14px; }
  .map-placeholder, #pg-contact iframe { height: 160px; }

  /* TÉMOIGNAGES */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-slide { padding: 20px 18px; }
  .t-text { font-size: 13.5px; }

  /* INFO CARDS */
  .info-row { grid-template-columns: 1fr; gap: 10px; }
  .info-card { padding: 20px 16px; }
  .info-card h4 { font-size: 15px; }
  .info-card p { font-size: 13px; }

  /* OFFRES ENTREPRISES */
  .offers-grid { grid-template-columns: 1fr; }

  /* FOOTER */
  footer { padding: 28px 18px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 14px; }

  /* SUPPORT */
  .steps { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
  .support-steps { grid-template-columns: 1fr; gap: 16px; }
  .support-dl { grid-template-columns: 1fr; gap: 16px; }
  .support-security { grid-template-columns: 1fr; gap: 16px; }
  .grid-2col-pro { grid-template-columns: 1fr !important; gap: 32px !important; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-grid > :last-child { grid-column: span 1; }
  .loc-grid > :last-child img { height: 200px; }
  .grid-2col-cards { grid-template-columns: 1fr !important; gap: 14px !important; }
  .grid-2col { grid-template-columns: 1fr !important; gap: 14px !important; }
  .grid-3col { grid-template-columns: 1fr !important; gap: 14px !important; }
  .svc-articles .svc-article { padding: 20px 18px; }
  .cta-band { padding: 24px 18px; flex-direction: column; gap: 16px; }
  .cta-band-t div:last-child { font-size: 20px; }

  /* HERO CARDS dans gestion parc */
  .hc-grid { grid-template-columns: 1fr 1fr; }

  /* PAGE HEADER */
  .breadcrumb { font-size: 11px; }

  /* Web page, DKDP grids */
  .grid-4col { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .grid-5col { grid-template-columns: 1fr !important; gap: 14px !important; }
  .dkdp-banner-grid { grid-template-columns: 1fr !important; }
  .dkdp-banner-stats { flex-direction: row !important; flex-wrap: wrap; }
  .dkdp-banner-stats > div { flex: 1; min-width: 90px; }

  /* MOBILE SPACING, espace entre blocs */
  .section + .section,
  .section-bg + .section,
  .section + .section-bg { margin-top: 0; }
  .bento-card { padding: 24px 20px; }
  .plans-grid { gap: 16px; }
  .faq-section { padding: 40px 18px; }
  .svc-features { gap: 14px; }

  /* Reveal animations, plus subtiles sur mobile */
  .reveal { transform: translateY(20px); }
}

/* ── GLOBAL: remove underline on all button-like links ── */
a.btn-primary, a.btn-ghost, a.plan-cta, a.aside-cta, a.nav-cta, a.mob-cta, a.mob-call, a.form-submit {
  text-decoration: none;
}

/* ── TEL LINKS ── */
.tel-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.tel-link:hover { color: var(--gold); }
/* Dans les blocs navy */
.svc-aside .tel-link,
.aside .tel-link { color: rgba(255,255,255,0.85); }
.svc-aside .tel-link:hover,
.aside .tel-link:hover { color: var(--gold); }

/* ── EMAIL LINKS ── */
.email-link {
  color: var(--gold-dark, #9e9850);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(195,189,119,0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.email-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
/* Email dans les blocs navy (aside, footer dark) */
.svc-aside .email-link,
.detail-aside .email-link {
  color: var(--gold);
  border-color: rgba(195,189,119,0.4);
}
.svc-aside .email-link:hover,
.detail-aside .email-link:hover {
  color: #e8e3b0;
  border-color: #e8e3b0;
}
.testi-slide {
  flex: 0 0 calc(33.333% - 11px);
  min-width: calc(33.333% - 11px);
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) {
  .testi-slide { flex: 0 0 calc(50% - 8px); min-width: calc(50% - 8px); }
}
@media (max-width: 600px) {
  .testi-slide { flex: 0 0 100%; min-width: 100%; }
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-soft); border: none; cursor: pointer;
  transition: all 0.2s; padding: 0;
}
.carousel-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 9px;
  border: 1px solid var(--border-soft);
  background: none;
  cursor: pointer;
  margin-left: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1100;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE OVERLAY ── */
#mobile-menu {
  position: fixed; inset: 0;
  background: rgba(15,30,60,0.5);
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-drawer {
  position: absolute; top: 0; right: 0;
  width: 100%; height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
#mobile-menu.open .mobile-drawer { transform: translateX(0); }
.mob-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border-soft);
}
.mob-logo { font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; }
.mob-logo span { color: var(--gold); }
.mob-close {
  width: 32px; height: 32px; border-radius: 7px;
  border: 1px solid var(--border-soft); background: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mob-close svg { width: 15px; height: 15px; stroke: var(--muted); fill: none; stroke-width: 2; }
.mob-top-cta {
  padding: 14px; display: flex; flex-direction: column; gap: 10px;
  background: var(--off); border-bottom: 1px solid var(--border-soft);
}
.mob-nav { padding: 10px; flex: 1; overflow-y: auto; }
.mob-item {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 11px; border-radius: 9px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  cursor: pointer; border: none; background: none;
  width: 100%; text-align: left; font-family: var(--font);
  text-decoration: none;
  transition: background 0.15s;
}
.mob-item:hover { background: var(--off); }
.mob-item svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.7; flex-shrink: 0; }
.mob-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--muted);
  padding: 14px 11px 5px; display: block;
}
.mob-divider { height: 1px; background: var(--border-soft); margin: 6px 10px; }

/* Services grid, 3 colonnes d'icônes */
.mob-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px 6px 10px;
}
.mob-svc {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 4px 14px; border-radius: 10px;
  font-size: 11.5px; font-weight: 500; color: var(--ink);
  text-decoration: none; text-align: center;
  background: var(--off);
  transition: background 0.15s, box-shadow 0.15s;
}
.mob-svc:hover { background: var(--border-soft); }
.mob-svc-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
}
.mob-svc-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold); fill: none; stroke-width: 1.7;
}
.mob-svc span {
  line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Active state */
.mob-active {
  background: rgba(195,189,119,0.10);
  color: var(--navy);
  font-weight: 600;
}
.mob-active .mob-svc-icon {
  border-color: var(--gold);
  background: rgba(195,189,119,0.08);
}
.mob-active .mob-svc-icon svg { stroke: var(--navy); }
.mob-item.mob-active {
  background: rgba(195,189,119,0.10);
  color: var(--navy);
  font-weight: 600;
}
.mob-item.mob-active svg { stroke: var(--navy); }
.mob-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; border-radius: 12px;
  background: var(--white); border: 1.5px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em;
  text-decoration: none; font-family: var(--font);
}
.mob-call svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2.2; }
.mob-cta {
  display: block; text-align: center; text-decoration: none;
  padding: 15px; border-radius: 12px;
  background: var(--navy); color: var(--white);
  border: none; font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  cursor: pointer; font-family: var(--font);
  box-shadow: 0 2px 8px rgba(15,30,60,0.25);
}
/* Logo : src est désormais déclaré directement sur l'élément img.
   La règle CSS content:url() est conservée en fallback en cas de cache navigateur ancien. */
.site-logo[src=""], .site-logo:not([src]) { content: url(../images/site-logo.webp); }

/* ═══════════════════════════════════════
   MOBILE CTA BAR (sticky bottom)
═══════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-top: 1px solid rgba(195,189,119,0.25);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  gap: 8px;
}
.mobile-cta-bar .m-cta {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 8px;
  font-size: 13px; font-weight: 700; letter-spacing: -0.01em;
  border-radius: 12px; text-decoration: none;
  font-family: var(--font);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
}
.mobile-cta-bar .m-cta svg { width: 17px; height: 17px; flex-shrink: 0; }
.mobile-cta-bar .m-cta-call {
  background: var(--navy); color: #fff;
}
.mobile-cta-bar .m-cta-call svg { fill: none; stroke: var(--gold); stroke-width: 2; }
.mobile-cta-bar .m-cta-wa {
  background: #25D366; color: #fff;
}
.mobile-cta-bar .m-cta-wa svg { fill: #fff; }
.mobile-cta-bar .m-cta-quote {
  background: var(--gold-10); color: var(--navy);
  border: 1px solid var(--gold-20);
}
.mobile-cta-bar .m-cta-quote svg { fill: none; stroke: var(--navy); stroke-width: 2; }
.mobile-cta-bar .m-cta:active { transform: scale(0.97); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  /* Cacher le WhatsApp flottant sur mobile (deja dans la barre) */
  .whatsapp-btn, .wa-tooltip { display: none !important; }
  /* Padding bas pour ne pas masquer le contenu derriere la barre */
  body { padding-bottom: 64px; }
  footer { padding-bottom: 60px; }
}

/* ═══════════════════════════════════════
   BANDEAU TARIF TRANSPARENT (home)
═══════════════════════════════════════ */
.price-strip {
  background: linear-gradient(135deg, rgba(195,189,119,0.10) 0%, rgba(195,189,119,0.04) 100%);
  border-top: 1px solid var(--gold-20);
  border-bottom: 1px solid var(--gold-20);
  padding: 28px 0;
}
.price-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.price-strip-text {
  display: flex; align-items: center; gap: 18px; flex: 1; min-width: 280px;
}
.price-strip-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-10); border: 1px solid var(--gold-20);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.price-strip-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }
.price-strip-title {
  font-size: clamp(16px, 2vw, 20px); font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 4px;
}
.price-strip-sub {
  font-size: 13.5px; color: var(--muted); line-height: 1.5;
}
.price-strip .btn-primary { flex-shrink: 0; }

@media (max-width: 768px) {
  .price-strip { padding: 20px 0; }
  .price-strip-inner { gap: 16px; }
  .price-strip-text { gap: 14px; min-width: 100%; }
  .price-strip-icon { width: 40px; height: 40px; }
  .price-strip .btn-primary { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   MEGA MENU (desktop)
═══════════════════════════════════════ */

#nl-services {
  display: inline-flex !important; align-items: center; gap: 5px;
}
.nl-caret {
  width: 11px; height: 11px;
  fill: none; stroke: currentColor; stroke-width: 2.2;
  transition: transform 0.25s var(--ease-out-expo);
  margin-top: 1px;
}
.nav-dd:hover .nl-caret { transform: rotate(180deg); }

.mega-menu {
  /* Ancré sur le viewport (la nav est fixed, donc le menu suit). */
  position: fixed !important;
  top: 66px;                                /* hauteur exacte de la nav */
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) translateY(-6px);
  width: min(1180px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  min-width: 0 !important;
  padding: 0 !important;
  border-radius: 18px;
  border: 1px solid rgba(15,30,60,0.07);
  box-shadow: 0 24px 80px rgba(15,30,60,0.18), 0 4px 16px rgba(15,30,60,0.06);
  overflow: hidden;
  background: #fff;
  /* Empeche le menu de depasser en hauteur sur petits ecrans */
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mega-menu.open { transform: translateX(-50%) translateY(0); }

/* Pont invisible large : couvre toute la zone horizontale du viewport
   entre la nav (y=0-66) et le menu (y=66+). Evite de perdre le hover quand
   la souris traverse l'espace entre le bouton "Services" (a gauche) et le
   menu centre. Le timer JS de 450ms reste le filet de securite. */
.mega-menu::before {
  content: '';
  position: fixed;
  top: 50px;                                /* commence sous le centre de la nav */
  left: 0; right: 0;
  height: 24px;
  background: transparent;
  pointer-events: auto;
}

.mega-inner {
  display: grid;
  grid-template-columns: 1.05fr 1.55fr 1fr;
  gap: 0;
  padding: 28px 32px 24px;
}

.mega-col + .mega-col {
  padding-left: 28px;
  border-left: 1px solid rgba(15,30,60,0.06);
  margin-left: 28px;
}
.mega-col:not(:last-child) { padding-right: 4px; }

.mega-col-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.mega-col-title svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--gold); stroke-width: 2;
}

.mega-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.18s ease, transform 0.18s ease;
  position: relative;
}
.mega-item + .mega-item { margin-top: 2px; }
.mega-item:hover {
  background: rgba(195,189,119,0.08);
  transform: translateX(2px);
}
.mega-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--off);
  border: 1px solid rgba(15,30,60,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.mega-icon svg {
  width: 17px; height: 17px;
  fill: none; stroke: var(--navy); stroke-width: 1.7;
}
.mega-item:hover .mega-icon {
  background: var(--gold-10);
  border-color: var(--gold-20);
}
.mega-item:hover .mega-icon svg { stroke: var(--gold); }
.mega-text { flex: 1; min-width: 0; }
.mega-name {
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.mega-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.mega-item-pro { padding: 10px 10px; }

.mega-feat-card {
  display: block;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
  color: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mega-feat-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(195,189,119,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.mega-feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15,30,60,0.25);
}
.mega-feat-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(195,189,119,0.12);
  border: 1px solid rgba(195,189,119,0.25);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.mega-feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
.mega-feat-title {
  font-size: 20px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.mega-feat-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}
.mega-feat-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--gold);
}
.mega-feat-cta svg {
  width: 13px; height: 13px;
  fill: none; stroke: var(--gold); stroke-width: 2.2;
  transition: transform 0.18s ease;
}
.mega-feat-card:hover .mega-feat-cta svg { transform: translate(2px, -2px); }

.mega-quick {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}
.mega-quick-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  background: var(--off);
  border: 1px solid rgba(15,30,60,0.05);
  transition: all 0.18s ease;
}
.mega-quick-item svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--gold); stroke-width: 2;
  flex-shrink: 0;
}
.mega-quick-item:hover {
  background: var(--gold-10);
  border-color: var(--gold-20);
}
.mega-quick-cta {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.mega-quick-cta svg { stroke: var(--gold); }
.mega-quick-cta:hover {
  background: #1a3060;
  border-color: #1a3060;
  color: #fff;
}

.mega-footer {
  background: var(--off);
  border-top: 1px solid rgba(15,30,60,0.06);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mega-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s ease;
}
.mega-all:hover { background: var(--gold-10); color: var(--navy); }
.mega-all svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--gold); stroke-width: 2.2;
  transition: transform 0.18s ease;
}
.mega-all:hover svg { transform: translateX(3px); }
.mega-foot-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
.mega-foot-meta svg {
  width: 12px; height: 12px;
  fill: none; stroke: var(--gold); stroke-width: 2;
  flex-shrink: 0;
}
.mega-foot-sep {
  color: rgba(15,30,60,0.2);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .mega-menu { width: calc(100vw - 32px); }
  .mega-inner { grid-template-columns: 1fr 1.4fr 0.95fr; padding: 24px; }
  .mega-col + .mega-col { margin-left: 20px; padding-left: 20px; }
}
@media (max-width: 1024px) {
  .mega-menu { display: none !important; }
}
