/* ═══════════════════════════════════════════
   EYA-TRANSPORT — style.css
   Couleurs : Rouge #C8102E · Marine #1A2456 · Blanc #FFFFFF
   ═══════════════════════════════════════════ */

:root {
  --red:        #C8102E;
  --red-dark:   #A00D24;
  --red-light:  #E8314E;
  --navy:       #1A2456;
  --navy-mid:   #232E6A;
  --navy-light: #2E3D8A;
  --white:      #FFFFFF;
  --off-white:  #F8F8FA;
  --gray-light: #F0F0F5;
  --gray:       #6B7280;
  --gray-dark:  #374151;
  --green:      #16A34A;
  --wa:         #25D366;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(26,36,86,.10);
  --shadow-lg:  0 12px 40px rgba(26,36,86,.16);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--gray-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Typography ─── */
h1,h2,h3,h4,h5 { line-height: 1.15; font-weight: 800; }
.label {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy); margin-bottom: .8rem;
}
.section-sub {
  color: var(--gray); font-size: 1rem; max-width: 580px; line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; border-radius: var(--radius);
  padding: .8rem 1.8rem; transition: transform .18s, filter .18s, box-shadow .18s;
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-red   { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-navy  { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { filter: brightness(1.08); }
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }

/* ─── HEADER / NAV ─── */
#site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26,36,86,.10);
}
.header-top {
  background: var(--navy);
  display: flex; justify-content: flex-end; align-items: center;
  gap: 2rem; padding: .4rem 2rem; font-size: .82rem;
}
.header-top a {
  color: rgba(255,255,255,.8); display: flex; align-items: center; gap: .3rem;
  transition: color .2s;
}
.header-top a:hover { color: var(--white); }
.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 2rem; max-width: 1280px; margin: 0 auto; width: 100%;
}
.logo-wrap { display: flex; align-items: center; gap: .8rem; }
.logo-text { font-size: 1.7rem; font-weight: 900; color: var(--navy); letter-spacing: 1px; line-height: 0.8; }
.logo-text span { color: var(--red); }
.logo { width: 160px; height: auto; max-height: 42px; object-fit: contain; object-position: center; display: block; margin: 0 auto 2px; }
.nav-links { display: flex; align-items: center; gap: .2rem; }
.logo-sub { font-size: .9rem; color: var(--red); font-weight: 500; letter-spacing: .5px; text-transform: uppercase; text-align: center; }
.nav-links a {
  color: var(--gray-dark); font-size: .88rem; font-weight: 600;
  padding: .5rem .9rem; border-radius: 6px; transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); background: rgba(200,16,46,.06); }
.nav-cta { background: var(--red); color: var(--white) !important; border-radius: 8px !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* ─── Dropdown ─── */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; opacity: .7; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 280px;
  border-radius: 10px; box-shadow: 0 12px 32px rgba(26,36,86,.18);
  padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 250; border: 1px solid #EEE;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem .9rem !important; border-radius: 8px;
  font-size: .85rem !important; color: var(--gray-dark) !important;
}
.dropdown-menu a:hover { background: rgba(200,16,46,.06); color: var(--red) !important; }
.dropdown-menu a .di { font-size: 1.1rem; flex-shrink: 0; }
.dropdown-menu a .dt { display: flex; flex-direction: column; gap: 1px; }
.dropdown-menu a .dt small { font-size: .72rem; color: var(--gray); font-weight: 400; }
.dropdown-divider { height: 1px; background: #EEE; margin: .4rem .5rem; }
@media(max-width:900px){
  .nav-dropdown > a::after { content: ''; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 1rem; min-width: 0;
    background: transparent; display: none;
  }
  .nav-dropdown.mobile-open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: .5rem .5rem !important; }
}
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .3rem;
}
.burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* Mobile nav */
@media(max-width:900px){
  .nav-links { display:none; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:var(--white); padding:1rem 1.5rem; box-shadow:0 8px 24px rgba(0,0,0,.1); gap:.3rem; }
  .nav-links.open { display:flex; }
  .burger { display:flex; }
  .header-top { display:none; }
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3080 100%);
  min-height: 90vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem; padding: 5rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,16,46,.2); border: 1px solid rgba(200,16,46,.4);
  color: #ff8095; font-size: 1rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 20px; margin-bottom: 1.5rem;
  letter-spacing: 1px; text-transform: uppercase;
}
.hero-text { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--white); line-height: 1.05; margin-bottom: 1.2rem; font-weight: 900;
}
.hero h1 em { color: var(--red-light); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.7; max-width: 500px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.htrust {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.65); font-size: .82rem;
}
.htrust-dot { width: 7px; height: 7px; background: var(--wa); border-radius: 50%; flex-shrink: 0; }
.hero-visual { position: relative; z-index: 1; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius: 20px; padding: 2rem;
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.hstat {
  background: rgba(255,255,255,.08); border-radius: 12px;
  padding: 1.2rem; text-align: center;
}
.hstat-num { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.hstat-num span { color: var(--red-light); }
.hstat-lbl { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: .2rem; }
.hero-badge {
  display: flex; align-items: center; gap: .8rem;
  background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3);
  border-radius: 10px; padding: .8rem 1rem;
}
.hero-badge-dot { width: 10px; height: 10px; background: var(--wa); border-radius: 50%; animation: pulse-dot 2s infinite; flex-shrink: 0; }
.hero-badge p { color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 600; }

/* ─── ZONES SECTION ─── */
.zone-strip {
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; padding: 1rem 2rem; flex-wrap: wrap;
}
.zone-strip span {
  color: var(--white); font-size: .88rem; font-weight: 600;
  display: flex; align-items: center; gap: .4rem;
}

/* ─── CARDS ─── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border: 1px solid #E8E8EF;
  border-radius: 14px; padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  color: inherit; text-decoration: none; display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(200,16,46,.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1rem;
}
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.card p { color: var(--gray); font-size: .88rem; line-height: 1.6; }

/* ─── FORMULES ─── */
.formule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.formule-card {
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  border: 2px solid transparent; transition: transform .2s, box-shadow .2s;
}
.formule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.formule-card.eco   { background: var(--off-white); border-color: #E8E8EF; }
.formule-card.std   { background: var(--navy); border-color: var(--navy); }
.formule-card.prem  { background: var(--red); border-color: var(--red); }
.formule-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: .3rem .8rem; border-radius: 20px;
  margin-bottom: 1rem;
}
.formule-card.eco  .formule-badge { background: rgba(26,36,86,.1); color: var(--navy); }
.formule-card.std  .formule-badge { background: rgba(255,255,255,.15); color: var(--white); }
.formule-card.prem .formule-badge { background: rgba(255,255,255,.2); color: var(--white); }
.formule-num { font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: .5rem; }
.formule-card.eco  .formule-num { color: var(--navy); }
.formule-card.std  .formule-num { color: var(--white); }
.formule-card.prem .formule-num { color: var(--white); }
.formule-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.formule-card.eco  .formule-title { color: var(--navy); }
.formule-card.std  .formule-title, .formule-card.prem .formule-title { color: var(--white); }
.formule-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.formule-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .88rem; }
.formule-card.eco  .formule-list li { color: var(--navy); font-weight: 800;}
.formule-card.std  .formule-list li, .formule-card.prem .formule-list li { color: rgba(255,255,255,.85); font-weight: 700;}
.formule-list li::before { content: '✓'; font-weight: 800; flex-shrink: 0; }
.formule-card.eco  .formule-list li::before { color: var(--red); }
.formule-card.std  .formule-list li::before, .formule-card.prem .formule-list li::before { color: rgba(255,255,255,.6); font-weight: 700;}

/* ─── TRUST BADGES ─── */
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.tbadge {
  display: flex; align-items: center; gap: .6rem;
  background: var(--white); border: 1px solid #E8E8EF;
  border-radius: 10px; padding: .7rem 1.2rem;
  font-size: .85rem; font-weight: 600; color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.tbadge-icon { font-size: 1.2rem; }

/* ─── TABLE TARIFS ─── */
.tarif-table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: var(--shadow); }
.tarif-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.tarif-table thead tr { background: var(--navy); }
.tarif-table thead th {
  color: var(--white); padding: 1rem 1.2rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .5px; text-align: center;
}
.tarif-table thead th:first-child { text-align: left; }
.tarif-table tbody tr:nth-child(even) { background: var(--off-white); }
.tarif-table tbody tr:hover { background: rgba(200,16,46,.04); }
.tarif-table tbody td { padding: .9rem 1.2rem; font-size: .9rem; text-align: center; color: var(--gray-dark); }
.tarif-table tbody td:first-child { text-align: left; font-weight: 700; color: var(--navy); }
.tarif-highlight { color: var(--red) !important; font-weight: 700 !important; }

/* ─── FORM ─── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-size: .8rem; font-weight: 700; color: var(--gray-dark); letter-spacing: .3px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid #D1D5DB; border-radius: 8px;
  font-family: inherit; font-size: .9rem; color: var(--gray-dark);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.upload-zone {
  border: 2px dashed #D1D5DB; border-radius: 8px;
  padding: 1.5rem; text-align: center; cursor: pointer; transition: border-color .2s;
}
.upload-zone:hover { border-color: var(--red); }
.upload-zone input { display: none; }
.form-submit {
  width: 100%; background: var(--red); color: var(--white);
  font-family: inherit; font-weight: 700; font-size: 1rem;
  padding: 1rem; border: none; border-radius: 10px;
  cursor: pointer; transition: background .2s, transform .2s;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); }
.form-success {
  display: none; margin-top: 1rem;
  background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.3);
  border-radius: 8px; padding: 1rem;
  color: var(--green); text-align: center; font-weight: 600;
}

/* ─── SECTION STYLES ─── */
.section-light { background: var(--white); padding: 5rem 2rem; }
.section-gray  { background: var(--off-white); padding: 5rem 2rem; }
.section-navy  { background: var(--navy); padding: 5rem 2rem; }
.section-red   { background: var(--red); padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 4rem 2rem; text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .8rem; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1rem; }
.cta-band .btn-navy { background: var(--navy) !important; }

/* ─── STORY TIMELINE ─── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: .6rem; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--red), rgba(200,16,46,.1));
}
.tl-step { margin-bottom: 2.5rem; position: relative; }
.tl-step::before {
  content: ''; position: absolute; left: -2.3rem; top: .3rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--red);
}
.tl-label { color: var(--red); font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.tl-step h4 { color: var(--navy); font-size: 1rem; font-weight: 700; margin: .2rem 0 .4rem; }
.tl-step p { color: var(--gray); font-size: .88rem; line-height: 1.6; }

/* ─── TEAM CARDS ─── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--white); border-radius: 16px;
  padding: 2rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid #E8E8EF;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.team-card h4 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.team-card .role { color: var(--red); font-size: .8rem; font-weight: 600; letter-spacing: .5px; margin-bottom: .6rem; }
.team-card p { color: var(--gray); font-size: .85rem; line-height: 1.5; }

/* ─── ACCORDION FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--white); border: 1px solid #E8E8EF; border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.2rem 1.5rem; font-size: .95rem; font-weight: 700;
  color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--red); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 1.5rem 1.2rem; color: var(--gray); font-size: .9rem; line-height: 1.7; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy); color: rgba(255,255,255,.7);
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 2rem 2rem; max-width: 1280px; margin: 0 auto;
}
.footer-brand .logo-text { font-size: 1.5rem; margin-bottom: .8rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 260px; }
.footer-brand .contact-links { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.footer-brand .contact-links a { color: rgba(255,255,255,.7); font-size: .85rem; display: flex; align-items: center; gap: .4rem; transition: color .2s; }
.footer-brand .contact-links a:hover { color: var(--white); }
.footer-col h5 { color: var(--white); font-size: .88rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: .5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col li a { color: rgba(255,255,255,.6); font-size: .85rem; transition: color .2s; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 2rem; max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* ─── WA FLOAT ─── */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  width: 60px; height: 60px; background: var(--wa); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s; animation: pulse-dot 2.5s infinite;
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float:hover { transform: scale(1.12); animation: none; }
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white);
  font-size: .78rem; font-weight: 600; white-space: nowrap;
  padding: .4rem .8rem; border-radius: 6px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ─── POPUP ─── */
#popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,36,86,.88);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; animation: fadeIn .35s ease;
}
#popup-overlay.hidden { display: none; }
.popup-box {
  background: var(--white); border-radius: 20px;
  max-width: 480px; width: 100%; overflow: hidden;
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.popup-top {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 2rem; text-align: center;
}
.popup-pct {
  font-size: 5rem; font-weight: 900; color: var(--white); line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.popup-top h2 { color: var(--white); font-size: 1.2rem; margin-top: .3rem; opacity: .9; }
.popup-body { padding: 1.8rem 2rem 2rem; }
.popup-body p { color: var(--gray); font-size: .92rem; line-height: 1.6; margin-bottom: 1.4rem; }
.popup-close {
  position: absolute; top: .8rem; right: 1rem;
  background: rgba(255,255,255,.2); border: none;
  color: var(--white); font-size: 1.1rem; width: 28px; height: 28px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.popup-skip { display: block; text-align: center; color: var(--gray); font-size: .82rem; margin-top: 1rem; cursor: pointer; text-decoration: underline; }

/* ─── PAGE HERO (sous-pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 2rem 3rem; text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: .4rem; justify-content: center;
  margin-bottom: 1.2rem; font-size: .82rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb em { color: rgba(255,255,255,.9); font-style: normal; }

/* ─── ANIMATIONS ─── */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes popIn { from { transform: scale(.85); opacity:0; } to { transform: scale(1); opacity:1; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.9); }
}

/* ─── RESPONSIVE ─── */

/* Tablette large */
@media(max-width:1000px){
  .hero { grid-template-columns:1fr; padding:3rem 1.5rem; text-align:center; min-height: auto; }
  .hero-sub { margin:0 auto 2rem; }
  .hero-btns { justify-content:center; }
  .hero-trust { justify-content:center; }
  .hero-visual { max-width:400px; margin:0 auto; }
  .footer-main { grid-template-columns:1fr 1fr; }

  /* Neutralise toutes les grilles 2 colonnes inline (story, services détaillés,
     contact, pages services) pour qu'elles passent en 1 colonne */
  .container[style*="grid-template-columns"],
  section [style*="grid-template-columns:1fr 1fr"],
  section [style*="grid-template-columns: 1fr 1fr"],
  section [style*="grid-template-columns:1.3fr 1fr"],
  section [style*="grid-template-columns:1.4fr 1fr"],
  section [style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Les sidebars sticky repassent en flux normal sur mobile */
  aside[style*="sticky"],
  div[style*="position:sticky"] {
    position: static !important;
    top: auto !important;
  }
}

/* Tablette / grand mobile */
@media(max-width:760px){
  .form-grid { grid-template-columns:1fr; }
  .footer-main { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; text-align:center; }
  section, .section-light, .section-gray, .section-navy, .section-red { padding: 3rem 1.2rem; }
  .hero { padding: 2.5rem 1.2rem; }
  .header-main { padding: .6rem 1rem; }

  /* Titres plus compacts et lisibles */
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-hero { padding: 2.5rem 1.2rem 2rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }

  /* Corps de texte confortable en lecture mobile */
  body { font-size: 15px; }
  .section-sub, .hero-sub { font-size: .95rem; }

  /* CTA plein largeur pour de plus grandes zones tactiles */
  .hero-btns .btn,
  .cta-band .btn { width: 100%; justify-content: center; }
  .cta-band > div { flex-direction: column; }

  /* Grilles de stats hero → 2 colonnes maintenues mais resserrées */
  .hero-stats { gap: .7rem; }
  .hstat { padding: .9rem; }
  .hstat-num { font-size: 1.6rem; }
}

/* Petit mobile */
@media(max-width:480px){
  html { font-size: 15px; }
  section, .section-light, .section-gray, .section-navy, .section-red { padding: 2.5rem 1rem; }
  .container { padding: 0; }

  .section-title { font-size: 1.5rem; line-height: 1.2; }
  .hero h1 { font-size: 2rem; line-height: 1.1; }
  .hero-eyebrow { font-size: .7rem; }

  /* Boutons hero empilés et pleine largeur */
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }

  /* Cartes et blocs : padding réduit */
  .card { padding: 1.5rem; }
  .formule-card { padding: 1.5rem; }
  .team-card { padding: 1.5rem; }

  /* Stats hero → 2 colonnes lisibles */
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-card { padding: 1.3rem; }

  /* Zone strip : items en colonne centrée */
  .zone-strip { gap: .5rem 1.2rem; padding: 1rem 1rem; }
  .zone-strip span { font-size: .8rem; }

  /* Trust badges pleine largeur */
  .trust-bar { flex-direction: column; }
  .tbadge { width: 100%; justify-content: center; text-align: center; }

  /* Timeline resserrée */
  .timeline { padding-left: 2rem; }
  .tl-step::before { left: -1.85rem; }

  /* Formule / process : padding réduit */
  .formule-num { font-size: 2.4rem; }

  /* FAQ plus compacte */
  .faq-q { padding: 1rem 1.2rem; font-size: .9rem; }
  .faq-a-inner { padding: 0 1.2rem 1rem; }

  /* Tableau tarifs : police réduite pour tenir */
  .tarif-table thead th { padding: .7rem .6rem; font-size: .72rem; }
  .tarif-table tbody td { padding: .7rem .6rem; font-size: .8rem; }

  /* CTA band */
  .cta-band { padding: 3rem 1.2rem; }
  .cta-band h2 { font-size: 1.4rem; }

  /* WhatsApp flottant un peu plus petit et mieux placé */
  .wa-float { width: 54px; height: 54px; bottom: 1.2rem; right: 1.2rem; }
  .wa-float svg { width: 24px; height: 24px; }

  /* Popup */
  .popup-pct { font-size: 3.5rem; }
  .popup-top { padding: 1.5rem; }
  .popup-body { padding: 1.5rem; }

  /* Header top (numéros) masqué déjà en 900px, logo resserré */
  .logo-text { font-size: 1.2rem; }
  .logo-sub { font-size: .65rem; }

  /* Sidebar contact : cartes pleine largeur */
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; } /* évite le zoom auto iOS */

  /* Bloc WhatsApp contact : bouton pleine largeur */
  section [style*="grid-template-columns:1fr auto"] .btn { width: 100%; justify-content: center; }
}

/* Très petit mobile */
@media(max-width:360px){
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.35rem; }
  .hero-stats { grid-template-columns: 1fr; }
}
