/* =====================================================
   BE.SAFE — Design System v3
   Charte graphique : Bleu nuit + Orange logo #FE904D
   Typographies : DM Sans + Instrument Serif
   Fichier partagé pour toutes les pages
   Mise à jour : avril 2026 - nouvelle charte graphique
===================================================== */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap');

/* --- TOKENS --- */
:root {
  /* Bleu nuit (couleur secondaire) */
  --navy:         #1A2B4A;
  --navy-2:       #243659;
  --navy-3:       #3D5278;
  --navy-deep:    #0D1B2E;
  /* Orange (couleur principale du logo) */
  --orange:       #FE904D;
  --orange-2:     #E67535;
  --orange-3:     #FFB37D;
  --orange-light: #FFF3EB;
  --orange-mid:   #FFDFC4;
  --white:        #FFFFFF;
  --gray-50:      #F8F9FB;
  --gray-100:     #F0F2F5;
  --gray-200:     #D9DEE5;
  --gray-400:     #8A95A3;
  --gray-600:     #4A5568;
  --gray-700:     #3D4A5A;
  --sun:          #FFB37D;
  --success:      #1B7A5A;
  --success-soft: #E8F3EE;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --shadow:       0 4px 20px rgba(26,43,74,.08);
  --shadow-md:    0 12px 40px rgba(26,43,74,.14);
  --shadow-lg:    0 24px 60px rgba(26,43,74,.2);
  --max:          1120px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { line-height: 1.1; letter-spacing: -.02em; margin: 0 0 .6em; }
h1 { font-family: var(--font-serif); font-size: clamp(2.4rem,4.5vw,3.8rem); font-weight: 400; }
h2 { font-family: var(--font-serif); font-size: clamp(1.9rem,3vw,2.9rem); font-weight: 400; }
h3 { font-size: clamp(1.05rem,1.5vw,1.25rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- LAYOUT --- */
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section--orange { background: var(--orange); color: var(--white); }

/* --- REVEAL ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* --- TYPOGRAPHY HELPERS --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .8rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.eyebrow--white { color: var(--sun); }
.eyebrow--white::before { background: var(--sun); }

.section-head { max-width: 680px; margin-bottom: 3.5rem; }
.section-head p { font-size: 1.05rem; color: var(--gray-700); line-height: 1.7; margin-top: .7rem; }
.section-head--white p { color: rgba(255,255,255,.65); }

/* --- BREADCRUMB --- */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--gray-400); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-600); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--gray-400); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.7rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: none; transition: transform .2s, opacity .2s, background .2s, border-color .2s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary   { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-2); }
.btn-secondary { background: var(--white); color: var(--navy); border: 1.5px solid var(--gray-200); }
.btn-secondary:hover { border-color: var(--navy); }
.btn-navy      { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); }
.btn-ghost     { background: transparent; padding: .7rem 0; }
.btn-ghost:hover { color: var(--orange); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.5); color: var(--white); background: transparent; padding: .85rem 1.7rem; border-radius: 100px; font-weight: 600; font-size: .95rem; transition: border-color .2s, transform .2s; display: inline-flex; align-items: center; gap: .5rem; }
.btn-outline-white:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.2rem; font-size: .85rem; }

/* =====================================================
   HEADER / NAV
===================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--gray-100); box-shadow: var(--shadow); }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400; color: var(--navy); text-decoration: none; max-height: 60px; }
.brand-icon { width: 34px; height: 34px; background: var(--navy); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-icon svg { width: 18px; height: 18px; fill: var(--orange); }
.brand-logo { height: 50px !important; width: auto !important; max-width: 180px !important; max-height: 50px !important; display: block; object-fit: contain; }
@media (max-width: 640px) { .brand-logo { height: 40px !important; max-height: 40px !important; max-width: 150px !important; } }
.nav-links { display: flex; gap: 1.6rem; font-size: .88rem; font-weight: 500; color: var(--gray-600); }
.nav-links a { position: relative; padding: .3rem 0; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--orange); transition: width .3s; border-radius: 2px; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-size: .85rem; font-weight: 600; color: var(--gray-700); display: flex; align-items: center; gap: .4rem; transition: color .2s; }
.nav-phone:hover { color: var(--orange); }
.nav-cta { background: var(--orange); color: var(--white); padding: .62rem 1.25rem; border-radius: 100px; font-size: .87rem; font-weight: 600; transition: background .2s, transform .2s; }
.nav-cta:hover { background: var(--orange-2); transform: translateY(-1px); }

/* Burger */
.burger { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 32px; position: relative; padding: 0; }
.burger span { position: absolute; left: 4px; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.burger span:nth-child(1) { top: 9px; }
.burger span:nth-child(2) { top: 15px; }
.burger span:nth-child(3) { top: 21px; }
.burger.open span:nth-child(1) { transform: rotate(45deg); top: 15px; }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg); top: 15px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--white); z-index: 200;
  padding: 5.5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu li { border-bottom: 1px solid var(--gray-100); }
.mobile-menu a { display: block; padding: 1.1rem 0; font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu-close { position: absolute; top: 1.3rem; right: 1.5rem; background: none; border: none; font-size: 1.9rem; cursor: pointer; color: var(--navy); line-height: 1; padding: 0; }
.mobile-cta-wrap { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .8rem; }
.mobile-cta-wrap .btn { justify-content: center; }

/* =====================================================
   STRIP
===================================================== */
.strip { background: var(--orange); padding: .85rem 0; }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 2.2rem; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: .45rem; font-size: .85rem; font-weight: 600; color: var(--white); }
.strip-item::before { content: "✓"; font-weight: 800; font-size: .8rem; }

/* =====================================================
   FOOTER
===================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,.55); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand-wrap { display: flex; align-items: center; gap: .55rem; margin-bottom: .9rem; }
.footer-brand-icon { width: 30px; height: 30px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-brand-icon svg { width: 16px; height: 16px; fill: var(--white); }
.footer-brand-logo { height: 54px !important; width: auto !important; max-width: 200px !important; max-height: 54px !important; display: block; object-fit: contain; margin-bottom: 1rem; }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); }
.footer-desc { font-size: .86rem; line-height: 1.7; max-width: 300px; margin-bottom: 1.3rem; }
.footer-socials { display: flex; gap: .6rem; }
.footer-social-link { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 700; transition: background .2s, color .2s; }
.footer-social-link:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col li { font-size: .86rem; line-height: 1.5; }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--sun); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; font-size: .76rem; color: rgba(255,255,255,.3); }

/* Mobile sticky CTA */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-100); padding: .7rem 1rem; gap: .6rem; z-index: 50; box-shadow: 0 -4px 20px rgba(26,43,74,.1); }
.mobile-cta-bar .btn { flex: 1; justify-content: center; padding: .8rem 1rem; font-size: .88rem; }

/* =====================================================
   HERO (page d'accueil)
===================================================== */
.hero { background: var(--navy); color: var(--white); padding: 4.5rem 0 5rem; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -120px; right: -160px; width: 600px; height: 600px; border-radius: 50%; background: rgba(254,144,77,.07); pointer-events: none; }
.hero::after  { content: ""; position: absolute; bottom: -80px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.02); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-badge-pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(254,144,77,.15); border: 1px solid rgba(254,144,77,.3); color: #FFB37D; padding: .35rem .95rem; border-radius: 100px; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.4rem; }
.hero-pulse-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pdot 2s infinite; flex-shrink: 0; }
@keyframes pdot { 0%,100%{opacity:1}50%{opacity:.3} }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: #FFB37D; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 500px; margin-bottom: 2rem; line-height: 1.7; }
.hero-sub strong { color: rgba(255,255,255,.9); }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hero-secondary { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: .88rem; }
.hero-secondary a { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.65); font-weight: 500; transition: color .2s; }
.hero-secondary a:hover { color: var(--white); }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-num { font-family: var(--font-serif); font-size: 1.9rem; color: var(--white); line-height: 1; }
.trust-label { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 2px; }
.trust-sep { width: 1px; height: 30px; background: rgba(255,255,255,.12); }

/* Hero visual */
.hero-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-xl); background: linear-gradient(135deg, #243659 0%, #3D5278 100%); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-visual-grid { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 40px 40px; }
.hero-shield { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 55%; aspect-ratio: 1; animation: float 6s ease-in-out infinite; }
.hero-shield svg { width: 100%; height: 100%; }
@keyframes float { 0%,100%{transform:translate(-50%,-50%) translateY(0)}50%{transform:translate(-50%,-50%) translateY(-14px)} }
.pulse-ring { position: absolute; top: 50%; left: 50%; width: 65%; aspect-ratio: 1; border: 1px solid rgba(254,144,77,.35); border-radius: 50%; transform: translate(-50%,-50%); animation: pr 3s ease-out infinite; }
.pulse-ring:nth-child(3) { animation-delay: 1.5s; }
@keyframes pr { 0%{transform:translate(-50%,-50%) scale(.9);opacity:1}100%{transform:translate(-50%,-50%) scale(1.45);opacity:0} }
.hbadge { position: absolute; background: var(--white); padding: .7rem 1rem; border-radius: 12px; font-size: .81rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .5rem; white-space: nowrap; max-width: calc(100% - 2rem); }
.hbadge .bdot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); animation: pdot 2s infinite; flex-shrink: 0; }
.hbadge-1 { top: 8%; right: 8%; }
.hbadge-2 { bottom: 22%; left: 8%; animation: float 7s ease-in-out 1s infinite; }
.hbadge-3 { bottom: 8%; right: 8%; }

/* =====================================================
   PAGE HERO (pages intérieures)
===================================================== */
.page-hero { background: var(--navy); color: var(--white); padding: 3.5rem 0 4rem; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -80px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: rgba(254,144,77,.06); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 740px; }
.page-hero .eyebrow { color: #FFB37D; }
.page-hero .eyebrow::before { background: #FFB37D; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: #FFB37D; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 580px; line-height: 1.7; margin-bottom: 2rem; }
.page-hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; }
.page-hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.page-hero-stat { }
.page-hero-stat-num { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); line-height: 1; }
.page-hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 2px; }

/* =====================================================
   CARDS COMMUNE (services, engagements…)
===================================================== */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

.card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 1.8rem; transition: border-color .25s, transform .25s, box-shadow .25s; }
.card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.card--gray { background: var(--gray-50); border-color: transparent; }
.card--gray:hover { background: var(--white); border-color: var(--orange); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; font-size: 1.3rem; flex-shrink: 0; }
.card-icon--navy { background: var(--navy); }
.card-icon--orange { background: var(--orange-light); color: var(--orange); }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; letter-spacing: -.01em; }
.card p { font-size: .87rem; color: var(--gray-700); line-height: 1.65; margin: 0; }
.card-tag { display: inline-block; margin-top: .9rem; font-size: .73rem; font-weight: 700; color: var(--orange); background: var(--orange-light); padding: .2rem .75rem; border-radius: 100px; }

/* Feature list inside cards */
.feature-list { margin-top: .9rem; display: flex; flex-direction: column; gap: .45rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .87rem; color: var(--gray-700); line-height: 1.5; }
.feature-list li::before { content: "✓"; color: var(--success); font-weight: 800; font-size: .8rem; margin-top: .15rem; flex-shrink: 0; }

/* =====================================================
   PACKS TABS
===================================================== */
.packs-tabs { display: inline-flex; gap: .4rem; background: var(--gray-50); padding: .35rem; border-radius: 100px; border: 1.5px solid var(--gray-100); margin-bottom: 2.5rem; }
.pack-tab { padding: .62rem 1.35rem; border-radius: 100px; font-weight: 600; font-size: .91rem; cursor: pointer; border: none; background: transparent; color: var(--gray-600); transition: all .25s; }
.pack-tab.active { background: var(--navy); color: var(--white); }
.packs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pack { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 2.2rem 2rem; display: flex; flex-direction: column; position: relative; transition: transform .3s, box-shadow .3s, border-color .3s; }
.pack:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pack-featured { background: var(--navy); color: var(--white); border-color: var(--navy); transform: scale(1.02); }
.pack-featured:hover { transform: scale(1.02) translateY(-5px); }
.pack-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--sun); color: var(--navy); padding: .3rem 1rem; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.pack h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin-bottom: .2rem; }
.pack-subtitle { color: var(--gray-600); font-style: italic; font-size: .93rem; margin-bottom: 1.2rem; }
.pack-featured .pack-subtitle { color: rgba(255,255,255,.55); }
.pack-price { margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--gray-100); }
.pack-featured .pack-price { border-color: rgba(255,255,255,.15); }
.pack-price-label { display: block; font-size: .73rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .2rem; }
.pack-featured .pack-price-label { color: rgba(255,255,255,.45); }
.pack-price-value { font-family: var(--font-serif); font-size: 2.7rem; line-height: 1; color: var(--navy); }
.pack-featured .pack-price-value { color: var(--white); }
.pack-price-extra { display: block; font-size: .78rem; color: var(--gray-400); margin-top: .4rem; }
.pack-featured .pack-price-extra { color: rgba(255,255,255,.5); }
.pack-features { flex: 1; margin-bottom: 1.4rem; display: flex; flex-direction: column; gap: .45rem; }
.pack-features li { display: flex; gap: .6rem; font-size: .88rem; line-height: 1.45; color: var(--gray-700); }
.pack-featured .pack-features li { color: rgba(255,255,255,.75); }
.pack-features li::before { content: "✓"; color: var(--success); font-weight: 800; font-size: .8rem; margin-top: .1rem; flex-shrink: 0; }
.pack-featured .pack-features li::before { color: var(--sun); }
.pack-highlight { background: var(--success-soft); color: var(--success); padding: .55rem 1rem; border-radius: 8px; font-size: .82rem; font-weight: 600; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .4rem; }
.pack-featured .pack-highlight { background: rgba(255,179,125,.15); color: var(--sun); }
.pack-cta { width: 100%; justify-content: center; }
.packs-footer { margin-top: 2rem; padding: 1.4rem 2rem; background: var(--gray-50); border-radius: var(--radius-lg); display: flex; gap: 2rem; justify-content: center; align-items: center; flex-wrap: wrap; font-size: .88rem; color: var(--gray-700); }
.packs-footer span { display: inline-flex; align-items: center; gap: .4rem; font-weight: 500; }
.packs-footer span::before { content: "●"; color: var(--orange); font-size: .5rem; }

/* =====================================================
   PROCESS STEPS
===================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3.5rem; }
.process-step { position: relative; padding-top: 2.5rem; }
.process-step::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,.15); }
.process-num { position: absolute; top: -13px; left: 0; background: var(--navy); color: var(--sun); font-size: .77rem; font-weight: 700; letter-spacing: .15em; padding-right: .8rem; }
.process-icon { font-size: 1.7rem; margin-bottom: .8rem; display: inline-block; }
.process-step h3 { font-size: 1.1rem; color: var(--white); margin-bottom: .5rem; line-height: 1.25; }
.process-step p { color: rgba(255,255,255,.6); font-size: .87rem; line-height: 1.6; margin: 0; }
.process-guarantees { margin-top: 3rem; padding: 1.4rem 2rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.75); }
.process-guarantees span { display: inline-flex; align-items: center; gap: .4rem; }
.process-guarantees span::before { content: "✓"; color: var(--sun); font-weight: 800; }

/* =====================================================
   TÉMOIGNAGES
===================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 1.9rem; transition: transform .3s, box-shadow .3s; }
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { color: var(--sun); letter-spacing: .08em; margin-bottom: .8rem; font-size: 1rem; }
.testi-text { font-family: var(--font-serif); font-size: 1.08rem; line-height: 1.55; color: var(--navy); margin-bottom: 1.4rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.testi-name { font-size: .86rem; font-weight: 600; }
.testi-loc  { font-size: .76rem; color: var(--gray-400); }
.google-bar { margin-top: 2.5rem; padding: 1.3rem 2rem; background: var(--white); border-radius: 100px; border: 1.5px solid var(--gray-100); display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; font-weight: 600; }
.google-bar .stars { color: var(--sun); }
.google-bar a { color: var(--orange); border-bottom: 1px solid var(--orange); padding-bottom: 1px; }

/* =====================================================
   ZONES
===================================================== */
.zones-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.zone { background: var(--gray-50); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 2rem; transition: transform .3s, border-color .3s, background .3s; }
.zone:hover { transform: translateY(-4px); border-color: var(--orange); background: var(--white); }
.zone-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: .7rem; }
.zone-title { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 400; }
.zone-badge { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.zone-cities { color: var(--gray-700); font-size: .9rem; line-height: 1.7; margin: 0; }
.zone-cities strong { color: var(--navy); font-weight: 600; }
.zones-note { margin-top: 2rem; text-align: center; padding: 1.2rem 1.5rem; background: var(--orange-light); border-radius: var(--radius); color: var(--navy); font-size: .92rem; border: 1px solid var(--orange-mid); }
.zones-note strong { color: var(--orange); }

/* =====================================================
   FAQ
===================================================== */
.faq-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 5rem; align-items: start; }
.faq-side { position: sticky; top: 100px; }
.faq-side > p { color: var(--gray-700); font-size: 1rem; line-height: 1.7; max-width: 360px; margin-top: .6rem; }
.faq-contact { margin-top: 2rem; padding: 1.5rem; background: var(--navy); color: var(--white); border-radius: var(--radius-lg); }
.faq-contact strong { display: block; margin-bottom: .3rem; font-size: .88rem; }
.faq-contact-num { color: var(--sun); font-weight: 700; font-size: 1.25rem; font-family: var(--font-serif); margin-top: .4rem; display: inline-block; }
.faq-list { }
.faq-item { border-top: 1px solid var(--gray-200); padding: 1.3rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--gray-200); }
.faq-q { width: 100%; background: none; border: none; padding: 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-serif); font-size: 1.08rem; color: var(--navy); line-height: 1.35; transition: color .2s; }
.faq-q:hover { color: var(--orange); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gray-200); display: grid; place-items: center; transition: transform .3s, background .3s, border-color .3s; font-size: 1.1rem; color: var(--navy); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); border-color: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.2,1); }
.faq-a-inner { padding-top: .8rem; color: var(--gray-700); font-size: .92rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* =====================================================
   CTA FINAL + FORMULAIRE
===================================================== */
.cta-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.cta-info h2 { margin-bottom: .9rem; }
.cta-info > p { color: var(--gray-700); font-size: 1.02rem; margin-bottom: 1.8rem; max-width: 440px; }
.cta-methods { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.8rem; }
.cta-method { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: var(--gray-50); border: 1.5px solid var(--gray-100); border-radius: var(--radius); transition: border-color .25s, transform .25s; }
.cta-method:hover { border-color: var(--orange); transform: translateX(4px); }
.cta-method-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--orange-light); color: var(--orange); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.cta-method-label { font-size: .73rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: .12rem; }
.cta-method-value { font-family: var(--font-serif); font-size: 1.08rem; color: var(--navy); }
.cta-address { padding: 1.3rem; background: var(--gray-50); border-radius: var(--radius); font-size: .87rem; color: var(--gray-700); line-height: 1.7; border: 1px solid var(--gray-100); }
.cta-address strong { color: var(--navy); display: block; margin-bottom: .25rem; font-weight: 600; }
.cta-form { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-md); }
.cta-form h3 { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400; margin-bottom: .25rem; }
.cta-form-sub { color: var(--gray-400); font-size: .84rem; margin-bottom: 1.5rem; font-style: italic; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-field { margin-bottom: .85rem; }
.form-field label { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: .32rem; letter-spacing: .03em; }
.form-field label span { color: var(--orange); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--gray-100); border-radius: var(--radius); background: var(--gray-50); color: var(--navy); font-size: .9rem; transition: border-color .2s, background .2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--orange); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 85px; }
.form-submit { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 1rem; border-radius: 100px; font-weight: 700; font-size: .95rem; cursor: pointer; transition: background .2s, transform .2s; margin-top: .3rem; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; }
.form-submit:hover { background: var(--orange-2); transform: translateY(-1px); }
.form-note { margin-top: .9rem; font-size: .76rem; color: var(--gray-400); text-align: center; line-height: 1.5; }
.form-success { display: none; padding: 1.2rem; background: var(--success-soft); border-radius: var(--radius); color: var(--success); font-weight: 600; text-align: center; margin-top: .9rem; }
.form-success.visible { display: block; }

/* CTA Banner */
.cta-banner { text-align: center; padding: 5rem 0; }
.cta-banner h2 { margin-bottom: .8rem; }
.cta-banner p { font-size: 1rem; opacity: .85; margin-bottom: 2rem; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* =====================================================
   PATHS (choix du parcours)
===================================================== */
.paths-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.path-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 2.5rem; position: relative; overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; }
.path-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.path-card:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--shadow-md); }
.path-card:hover::before { transform: scaleX(1); }
.path-icon { font-size: 2rem; margin-bottom: 1.2rem; display: inline-block; }
.path-card h3 { font-size: 1.55rem; font-family: var(--font-serif); font-weight: 400; margin-bottom: .25rem; }
.path-tag { color: var(--gray-600); font-style: italic; margin-bottom: 1.3rem; font-size: .93rem; display: block; }
.path-list li { padding: .52rem 0; border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: .6rem; font-size: .91rem; color: var(--gray-700); }
.path-list li::before { content: "→"; color: var(--orange); font-weight: 700; }
.path-cta { display: inline-flex; align-items: center; gap: .4rem; color: var(--navy); font-weight: 600; border-bottom: 1.5px solid var(--navy); padding-bottom: 2px; transition: color .2s, border-color .2s, gap .3s; font-size: .91rem; margin-top: 1.5rem; }
.path-cta:hover { color: var(--orange); border-color: var(--orange); gap: .8rem; }
.path-stat { position: absolute; top: 1.4rem; right: 1.4rem; background: var(--navy); color: var(--white); padding: .28rem .82rem; border-radius: 100px; font-size: .7rem; font-weight: 600; letter-spacing: .04em; }

/* =====================================================
   INFO BOX / CALLOUT
===================================================== */
.callout { padding: 1.6rem 2rem; border-radius: var(--radius-lg); border-left: 4px solid var(--orange); background: var(--orange-light); margin: 2rem 0; }
.callout--navy { border-color: var(--navy); background: var(--gray-50); }
.callout--success { border-color: var(--success); background: var(--success-soft); }
.callout strong { color: var(--navy); }
.callout p { margin: 0; font-size: .93rem; color: var(--gray-700); }

/* =====================================================
   SOCIAL SECTION
===================================================== */
.social-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.social-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 1.8rem; transition: transform .25s, border-color .25s; }
.social-card:hover { transform: translateY(-3px); border-color: var(--orange); }
.social-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.social-handle { font-size: .82rem; color: var(--gray-400); margin-bottom: .8rem; }
.social-desc { font-size: .87rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 1.1rem; }
.social-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .87rem; font-weight: 600; color: var(--orange); border-bottom: 1px solid var(--orange-mid); padding-bottom: 1px; transition: border-color .2s; }
.social-link:hover { border-color: var(--orange); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .burger { display: block; }
  .hero { padding: 3rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-trust { gap: 1.2rem; }
  .paths-grid { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: 1fr; }
  .pack-featured { transform: none; }
  .cards-grid-3 { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 2.5rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-side { position: static; }
  .cta-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .social-grid { grid-template-columns: 1fr; }
  .strip-inner { gap: 1.2rem; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 68px; }
}
@media (max-width: 640px) {
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-sep { display: none; }
  .hero-trust { gap: 1rem; }
  .page-hero-stats { gap: 1.5rem; }
}
