/* ===== VARIABLES & RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700;800;900&display=swap');

:root {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-blue: #0B3A8F;
  --accent-cyan: #4A90D9;
  --accent-gold: #fbbf24;
  --border: #334155;
  --grad: linear-gradient(135deg, #071E47, #0B3A8F);
  --shadow-sm: 0 4px 16px rgba(15,23,42,.06);
  --shadow-md: 0 12px 36px rgba(15,23,42,.10);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: #1e293b;
  color: var(--text-primary);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-sticky-wrap { height: auto; }
  .hero2 { position: relative; height: auto; min-height: 100svh; }
  .bento-section { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; }
}

/* ===== ICONS 3D ===== */
.ico-3d {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 4px 0 0;
  user-select: none;
  pointer-events: none;
}

/* ===== ANNOUNCEMENT BAR ===== */
.abar {
  background: var(--grad);
  color: #fff;
  height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.abar-track {
  display: flex;
  white-space: nowrap;
  animation: abarScroll 25s linear infinite;
  will-change: transform;
}
.abar-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  flex-shrink: 0;
}
@keyframes abarScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}
.abar-text { font-size: 13px; font-weight: 800; }
.abar-sep { font-size: 13px; font-weight: 800; color: rgba(255,255,255,.6); }
.abar-btn {
  color: #0B3A8F;
  background: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.abar-phone {
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

/* ===== NAV ===== */
.h-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 80px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.4);
  box-shadow: 0 4px 20px rgba(15,23,42,.06);
  transition: all .3s ease;
}
.h-nav {
  background: rgba(15,23,42,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.h-nav.shrink { height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { width: 42px; height: 42px; object-fit: contain; border-radius: 10px; }
.nav-logo-name { font-size: 20px; font-weight: 900; color: var(--text-primary); letter-spacing: -.5px; }
.nav-logo-name em { font-style: normal; color: var(--accent-cyan); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  position: relative;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-secondary); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  border-radius: 10px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 20px rgba(11,58,143,.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(11,58,143,.4) !important; }
.nav-cta::after { display: none !important; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-secondary);
  font-size: 20px;
  cursor: pointer;
  color: var(--text-primary);
}
/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary);
  z-index: 300;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  animation: menuSlide .28s ease;
}
.mobile-menu.open { display: flex; }
@keyframes menuSlide { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mobile-close { font-size: 28px; background: none; border: none; cursor: pointer; color: var(--text-primary); }
.mobile-menu a {
  display: block; padding: 16px 20px;
  background: var(--bg-secondary);
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px; font-weight: 800;
  color: var(--text-primary);
  transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: var(--grad); color: #fff; }
.mobile-menu .mobile-cta { background: var(--grad); color: #fff; text-align: center; margin-top: 8px; }

/* ===== SHARED ===== */
.section { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: rgba(252,105,47,.06);
  border: 1px solid rgba(252,105,47,.2);
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-label { background: rgba(252,105,47,.15); border-color: rgba(252,105,47,.3); }
.section-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}
.tc { text-align: center; }
.tc .section-sub { margin: 0 auto; }
.grad-text {
  color: #FC692F;
  -webkit-text-fill-color: #FC692F;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #FC692F;
  color: #fff;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 15px; font-weight: 800;
  text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(252,105,47,.28);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .6s ease;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(252,105,47,.4); }
.btn-primary:hover::before { left: 140%; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--accent-blue);
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 15px; font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--accent-blue);
  transition: all .25s ease;
}
.btn-secondary:hover { background: var(--accent-blue); color: #fff; transform: translateY(-2px); }

/* ===== HOMEPAGE NAV ===== */
body.homepage .h-nav  { display: none !important; }
body.homepage .abar   { display: none !important; }

/* ===== PILL NAV (index.html uniquement) ===== */
/* (Pill nav styles déplacés dans css/global.css — utilisables sur toutes les pages) */

/* ===== SECTION 1 — HERO ===== */
.hero-sticky-wrap {
  height: 160svh; /* hero 100svh + 60svh de course sticky : effet visible mais pas interminable */
}
.hero2 {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100svh;
  background: #1A4FC4;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start;
  padding: 28px 24px 0;
  text-align: center;
  overflow: visible;
  border-bottom-left-radius: 72px;
  border-bottom-right-radius: 72px;
}
.hero2-mobile-brand {
  display: none;
}
@media (max-width: 640px) {
  .hero2-mobile-brand {
    display: block;
    text-align: center;
    font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
    font-size: 26px; font-weight: 900;
    color: #ffffff; letter-spacing: -.5px;
    margin-bottom: 14px;
  }
  .hero2-mobile-brand em { color: #FC692F; font-style: normal; }
  .hero2-sub { font-size: 18px; line-height: 1.45; max-width: 460px; }
  .hero-sticky-wrap { height: 130svh; }
}
.hero2-h1 {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800; line-height: 1.04;
  letter-spacing: clamp(-1px, -.4vw, -2px);
  color: #ffffff; max-width: 880px;
  margin: 0 auto 10px;
}
.hero2-accent { color: #FC692F; }
.hero2-sub {
  font-size: clamp(14px, 1.7vw, 19px);
  color: rgba(255,255,255,.75); line-height: 1.5;
  margin-bottom: 0; max-width: 540px;
}
.hero2-rotating {
  display: inline-block; color: #FC692F; font-weight: 800;
  transition: opacity .3s ease;
}
.hero2-rotating.fade { opacity: 0; }

/* ── Scène téléphone ── */
.hero2-scene {
  position: relative;
  flex-shrink: 0;
  margin-top: 40px;
}
/* Wrap : largeur fixe → les % du carousel sont relatifs à cette largeur (pas à la page) */
.hero2-phone-wrap {
  position: relative;
  display: inline-block;
  width: 520px;
  max-width: 100%;
}
/* ── Iframe mockup standalone (mockup-hero.html — main-phone + vidéo) ── */
.hero2-mockup {
  display: block;
  width: 100%;
  aspect-ratio: 1056 / 1795;
  border: none;
  background: transparent;
  overflow: hidden;
}
@keyframes hero2Float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero2-notif {
  position: absolute;
  top: 34%; right: -300px; left: auto; transform: none;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 18px; padding: 16px 20px;
  font-size: 15px; font-weight: 700; color: #0f172a;
  line-height: 1.4; width: 280px; z-index: 5;
  box-shadow: 0 14px 36px rgba(15,23,42,.22);
  animation: hero2Float 5s ease-in-out .4s infinite;
}
/* ── 4 pop-ups flottantes (jamais sur le téléphone) ── */
.hero2-pop {
  position: absolute;
  z-index: 5;
  text-align: left;
  font-family: 'Manrope', sans-serif;
}

/* Popup 1 — POPULAIRE (vignette + texte) — haut gauche */
.hero2-pop-populaire {
  display: flex; align-items: center; gap: 14px;
  background: #ffffff; color: #0f172a;
  border-radius: 20px; padding: 14px 20px 14px 14px;
  width: 340px;
  box-shadow: 0 18px 44px rgba(15,23,42,.24);
  top: 4%; left: -362px;
  animation: popFloat1 4.2s ease-in-out infinite;
}
.hero2-pop-populaire .hero2-pop-thumb {
  width: 56px; height: 88px;
  border-radius: 10px; object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}
.hero2-pop-populaire .hero2-pop-title {
  display: block; font-size: 14px; font-weight: 900;
  color: #FC692F; letter-spacing: .6px; margin-bottom: 4px;
}
.hero2-pop-populaire .hero2-pop-text {
  display: block; font-size: 14.5px; font-weight: 700;
  color: #1e293b; line-height: 1.35;
}

/* Popup 2 — CHECKLIST (3 lignes + bouton orange) — bas gauche */
.hero2-pop-checklist {
  background: #ffffff; color: #0f172a;
  border-radius: 20px; padding: 18px 22px;
  width: 320px;
  box-shadow: 0 18px 44px rgba(15,23,42,.24);
  top: 56%; left: -342px;
  animation: popFloat2 5.4s ease-in-out .8s infinite;
}
.hero2-pop-checklist .hero2-pop-check {
  list-style: none; padding: 0; margin: 0 0 12px;
}
.hero2-pop-checklist .hero2-pop-check li {
  font-size: 14.5px; font-weight: 800; color: #0f172a;
  line-height: 1.75; padding-left: 26px; position: relative;
}
.hero2-pop-checklist .hero2-pop-check li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: #22c55e; font-weight: 900; font-size: 17px;
}
.hero2-pop-checklist .hero2-pop-pill {
  display: inline-block;
  background: #FC692F; color: #fff;
  font-size: 13px; font-weight: 900;
  padding: 7px 16px; border-radius: 100px;
  letter-spacing: .4px;
}

/* Popup 3 — OFFRE (bloc orange) — haut droite */
.hero2-pop-offre {
  background: #FC692F; color: #ffffff;
  border-radius: 20px; padding: 16px 20px;
  width: 280px;
  box-shadow: 0 18px 44px rgba(252,105,47,.5);
  top: 8%; right: -302px;
  animation: popFloat3 4.6s ease-in-out 1.2s infinite;
}
.hero2-pop-offre .hero2-pop-title {
  display: block; font-size: 17px; font-weight: 900;
  color: #fff; margin-bottom: 7px; line-height: 1.2;
}
.hero2-pop-offre .hero2-pop-accent {
  display: inline-block;
  font-size: 14.5px; font-weight: 800;
  color: #FC692F; background: #fff;
  padding: 5px 12px; border-radius: 8px;
}

/* Popup 4 — AVIS (avatar + pastille verte) — bas droite */
.hero2-pop-avis {
  display: flex; gap: 14px; align-items: flex-start;
  background: #ffffff; color: #0f172a;
  border-radius: 20px; padding: 16px;
  width: 340px;
  box-shadow: 0 18px 44px rgba(15,23,42,.24);
  top: 62%; right: -362px;
  animation: popFloat1 5s ease-in-out .4s infinite;
}
.hero2-pop-avis .hero2-pop-avatar {
  position: relative; flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FC692F, #e85a24);
}
.hero2-pop-avis .hero2-pop-dot {
  position: absolute; right: -2px; bottom: -2px;
  width: 16px; height: 16px;
  background: #22c55e; border: 2.5px solid #fff;
  border-radius: 50%;
}
.hero2-pop-avis .hero2-pop-quote {
  display: block; font-size: 14.5px; font-weight: 700;
  color: #0f172a; line-height: 1.4; margin-bottom: 6px;
}
.hero2-pop-avis .hero2-pop-author {
  display: block; font-size: 13px; font-weight: 800;
  color: #94a3b8;
}

@keyframes popFloat1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes popFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px);  } }
@keyframes popFloat3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px);  } }
@media (prefers-reduced-motion: reduce) {
  .hero2-notif,
  .hero2-pop-populaire, .hero2-pop-checklist,
  .hero2-pop-offre, .hero2-pop-avis { animation: none; }
}

/* Palier intermédiaire — viewport 1024-1280 : popups réduites pour rester dans l'écran sans toucher au téléphone */
@media (max-width: 1280px) {
  .hero2-pop-populaire {
    width: 260px; left: -280px; padding: 12px 16px 12px 12px; gap: 12px;
  }
  .hero2-pop-populaire .hero2-pop-thumb { width: 46px; height: 72px; }
  .hero2-pop-populaire .hero2-pop-title { font-size: 12px; }
  .hero2-pop-populaire .hero2-pop-text  { font-size: 12.5px; }
  .hero2-pop-checklist {
    width: 240px; left: -260px; padding: 14px 18px;
  }
  .hero2-pop-checklist .hero2-pop-check li { font-size: 12.5px; padding-left: 22px; }
  .hero2-pop-checklist .hero2-pop-check li::before { font-size: 15px; }
  .hero2-pop-checklist .hero2-pop-pill { font-size: 11.5px; padding: 6px 14px; }
  .hero2-pop-offre {
    width: 220px; right: -240px; padding: 14px 16px;
  }
  .hero2-pop-offre .hero2-pop-title  { font-size: 14.5px; }
  .hero2-pop-offre .hero2-pop-accent { font-size: 12.5px; padding: 4px 10px; }
  .hero2-pop-avis {
    width: 260px; right: -280px; padding: 14px; gap: 12px;
  }
  .hero2-pop-avis .hero2-pop-avatar { width: 40px; height: 40px; }
  .hero2-pop-avis .hero2-pop-dot    { width: 13px; height: 13px; }
  .hero2-pop-avis .hero2-pop-quote  { font-size: 12.5px; }
  .hero2-pop-avis .hero2-pop-author { font-size: 11.5px; }
  .hero2-notif {
    width: 220px; right: -240px; padding: 13px 16px;
    font-size: 12.5px; border-radius: 16px;
  }
}

/* Mobile ≤ 768 : pas assez d'espace latéral autour du téléphone pour placer les popups sans qu'elles débordent ou empiètent — on les masque toutes (notif incluse) */
@media (max-width: 768px) {
  .hero2-pop-populaire,
  .hero2-pop-checklist,
  .hero2-pop-offre,
  .hero2-pop-avis,
  .hero2-notif { display: none; }
}

/* ===== SECTION 2 — BENTO GRID ===== */
.bento-section {
  background: var(--bg-secondary);
  position: relative;
  z-index: 2;
  margin-top: -30svh; /* la bento remonte plus haut, colle mieux au bas du téléphone agrandi */
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 52px;
}
.bento-tile {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.bento-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(11,58,143,.14);
  border-color: rgba(11,58,143,.3);
}
.bento-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s;
  border-radius: 20px;
}
.bento-tile:hover::before { opacity: .04; }
.bento-big { grid-column: span 2; grid-row: span 2; }
.bento-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.bento-tag {
  display: inline-block;
  background: rgba(252,105,47,.06);
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.bento-tag { background: rgba(252,105,47,.15); }
.bento-tag.new { background: linear-gradient(135deg,#FC692F,#e85a24); color: #fff; }
.bento-title { font-size: 16px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.bento-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.bento-big .bento-title { font-size: 20px; margin-bottom: 10px; }
.bento-big .bento-desc { font-size: 14px; }
.bento-avatar {
  position: absolute; bottom: 12px; right: 12px;
  width: 56px; height: auto;
  opacity: .85;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.bento-agent .bento-desc { padding-right: 70px; }
.bento-mockups {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; margin-top: 12px;
  border-radius: 10px; overflow: hidden;
}
.bento-mockups img { width: 100%; height: 80px; object-fit: cover; }

/* ===== SECTION 3 — PACKS ===== */
.packs-section { background: var(--bg-primary); }
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  align-items: stretch;
}
.pack-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column;
}
.pack-card:hover {
  transform: translateY(-10px) rotateY(2deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11,58,143,.35);
}
.pack-card.featured {
  border: 2px solid var(--accent-blue);
  box-shadow: 0 24px 64px rgba(11,58,143,.18);
}
.pack-card.featured:hover { transform: translateY(-10px); }
.pack-badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #d4a017, #b8860b);
  color: #fff;
  font-size: 12px; font-weight: 900;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,160,23,.35);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { box-shadow: 0 4px 16px rgba(212,160,23,.35); } 50% { box-shadow: 0 6px 24px rgba(212,160,23,.55); } }
.pack-tag {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.pack-name { font-size: 22px; font-weight: 900; color: var(--text-primary); margin-bottom: 6px; }
.pack-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.55; }
.pack-price {
  font-size: 60px; font-weight: 900;
  letter-spacing: -3px; color: #FC692F;
  line-height: 1; margin-bottom: 6px;
}
.pack-price sup { font-size: 24px; vertical-align: top; margin-top: 12px; display: inline-block; letter-spacing: 0; }
.pack-ht { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }
.pack-list { list-style: none; flex: 1; margin-bottom: 28px; }
.pack-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-secondary);
  display: flex; gap: 10px; align-items: flex-start;
}
.pack-list li:last-child { border: none; }
.pack-list li::before { content: '✓'; color: #10b981; font-weight: 900; flex-shrink: 0; }
.pack-btn {
  display: block; text-align: center;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px; font-weight: 800;
  text-decoration: none;
  transition: all .25s ease;
  border: 2px solid var(--border);
  color: var(--text-primary);
}
.pack-btn:hover { border-color: var(--accent-blue); color: var(--accent-blue); transform: translateY(-2px); }
.pack-btn.featured-btn {
  background: #FC692F;
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(252,105,47,.3);
}
.pack-btn.featured-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(252,105,47,.4); }

/* ===== SECTION 4 — POUR QUI ===== */
.pourqui-section { background: var(--bg-secondary); }
.metiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.metier-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease;
}
.metier-card:nth-child(4), .metier-card:nth-child(5) { grid-column: span 1; }
.metiers-bottom { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.metier-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .4s ease;
  display: block;
}
.metier-card:hover img { transform: scale(1.04); }
.metier-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(252,105,47,.85) 0%, rgba(252,105,47,.45) 55%, transparent 78%);
  opacity: 0;
  transition: opacity .35s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.metier-card:hover .metier-overlay { opacity: 1; }
.metier-title { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.metier-desc { font-size: 13px; color: rgba(255,255,255,.9); line-height: 1.5; }
.metier-label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px; font-weight: 800;
  color: var(--accent-blue);
}

/* ===== SECTION 5 — AVIS GOOGLE ===== */
.avis-section { background: var(--bg-primary); }
.avis-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px;
}
.compare-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.compare-table th {
  padding: 12px 16px; text-align: center;
  font-size: 13px; font-weight: 900;
  border-bottom: 2px solid var(--border);
}
.compare-table th.bad { color: #ef4444; }
.compare-table th.good { color: #10b981; }
.compare-table td {
  padding: 12px 16px; text-align: center;
  font-size: 13px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td { border: none; }
.compare-table td.bad { color: #ef4444; }
.compare-table td.good { color: #10b981; font-weight: 700; }
.avis-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* Avis animation */
.avis-anim { position: relative; height: 320px; }
.avis-step {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.avis-step.active { opacity: 1; pointer-events: auto; }
.google-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  box-shadow: var(--shadow-md);
}
.google-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.google-logo { font-size: 22px; font-weight: 900; color: #4285f4; }
.google-stars { color: #fbbf24; font-size: 16px; }
.google-avis-item { border-top: 1px solid var(--border); padding: 10px 0; }
.google-avis-name { font-size: 12px; font-weight: 800; color: var(--text-primary); }
.google-avis-text { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }
.avis-arrow { font-size: 32px; color: var(--accent-blue); animation: arrowBounce 1s ease-in-out infinite; }
@keyframes arrowBounce { 0%,100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
.site-avis-preview {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: 240px;
}
.site-avis-title { font-size: 13px; font-weight: 900; color: var(--text-primary); margin-bottom: 12px; }
.site-avis-item { display: flex; gap: 8px; margin-bottom: 10px; }
.site-avis-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }
.site-avis-body { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }

/* ===== SECTION 6 — AGENT IA ===== */
.ia-section { background: var(--bg-secondary); }
.ia-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px;
}
.ia-benefits { list-style: none; margin-bottom: 32px; }
.ia-benefits li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--text-secondary); line-height: 1.6;
}
.ia-benefits li:last-child { border: none; }
.ia-benefit-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

/* Phone mockup for IA demo */
.ia-phone {
  width: 240px;
  height: 480px;
  border-radius: 40px;
  border: 3px solid transparent;
  background: linear-gradient(#0f172a, #0f172a) padding-box,
              linear-gradient(135deg, #0B3A8F, #0B3A8F) border-box;
  box-shadow:
    0 0 40px rgba(11,58,143,0.4),
    0 0 80px rgba(11,58,143,0.25),
    0 32px 64px rgba(0,0,0,.4);
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.ia-phone-notch { height: 24px; background: #0f172a; width: 40%; margin: 0 auto; border-radius: 0 0 14px 14px; }
.ia-chat-screen {
  background: var(--bg-secondary);
  height: calc(100% - 24px);
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.ia-chat-screen { background: #1e293b; }
.chat-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px;
  background: var(--bg-primary);
  border-radius: 12px;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.chat-header { background: #0f172a; }
.chat-header-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.chat-header-name { font-size: 11px; font-weight: 800; color: var(--text-primary); }
.chat-header-status { font-size: 9px; color: #10b981; }
.chat-messages { flex: 1; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.chat-msg {
  max-width: 85%;
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 14px;
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  transform: translateY(8px);
}
.chat-msg.visible { opacity: 1; transform: translateY(0); }
.chat-msg.bot {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.bot { background: #0f172a; }
.chat-msg.user {
  background: var(--grad);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-msg.recap {
  background: linear-gradient(135deg, #d4a017, #b8860b);
  color: #fff;
  align-self: flex-start;
  font-weight: 800;
  border-bottom-left-radius: 4px;
}
.typing-dots {
  display: flex; gap: 4px; align-items: center;
  padding: 10px 14px;
  background: var(--bg-primary);
  border-radius: 14px; border-bottom-left-radius: 4px;
  align-self: flex-start;
  opacity: 0;
  transition: opacity .3s;
  width: fit-content;
}
.typing-dots { background: #0f172a; }
.typing-dots.visible { opacity: 1; }
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-secondary);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

/* ===== SECTION 7 — FAQ ===== */
.faq-section { background: var(--bg-primary); }
.faq-list { max-width: 800px; margin: 52px auto 0; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open { border-color: rgba(11,58,143,.3); box-shadow: 0 8px 24px rgba(11,58,143,.08); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px; font-weight: 800; color: var(--text-primary);
  background: var(--bg-primary);
  border: none; width: 100%; text-align: left;
  transition: background .2s;
  gap: 16px;
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-chevron {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--bg-secondary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform .3s ease, background .3s ease;
  color: var(--accent-blue);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--accent-blue); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--bg-secondary);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.8;
}
.faq-answer-inner strong { color: var(--text-primary); }
.faq-answer-inner ul { margin-left: 18px; margin-top: 8px; }
.faq-answer-inner li { margin-bottom: 4px; }

/* ===== SECTION 8 — CTA FINAL ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #071E47 0%, #0B3A8F 100%);
  z-index: 0;
}
.cta-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
}
.cta-blob-1 {
  width: 400px; height: 400px;
  background: rgba(11,58,143,.4);
  top: -100px; left: -100px;
  animation: blobMove1 12s ease-in-out infinite alternate;
}
.cta-blob-2 {
  width: 350px; height: 350px;
  background: rgba(11,58,143,.5);
  bottom: -80px; right: -80px;
  animation: blobMove2 14s ease-in-out infinite alternate;
}
.cta-blob-3 {
  width: 300px; height: 300px;
  background: rgba(11,58,143,.3);
  top: 50%; right: 30%;
  animation: blobMove3 10s ease-in-out infinite alternate;
}
@keyframes blobMove1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(60px,40px) scale(1.1); } }
@keyframes blobMove2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-50px,-30px) scale(1.08); } }
@keyframes blobMove3 { 0% { transform: translate(0,-50%) scale(1); } 100% { transform: translate(40px,-40%) scale(1.05); } }
.cta-inner {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
  padding: 96px 48px;
  display: flex; align-items: center; justify-content: center;
}
.cta-glass {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 28px;
  padding: 52px 48px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
  width: 100%;
}
.cta-rocket { font-size: 48px; margin-bottom: 20px; display: block; animation: rocketBounce 2s ease-in-out infinite; }
@keyframes rocketBounce { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-10px) rotate(5deg); } }
.cta-title { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: -1.5px; margin-bottom: 14px; line-height: 1.15; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 32px; line-height: 1.6; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-main {
  background: #FC692F; color: #fff;
  padding: 15px 28px; border-radius: 14px;
  font-size: 15px; font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(252,105,47,.25);
  transition: all .25s ease;
}
.cta-btn-main:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,.2); }
.cta-btn-sec {
  background: transparent; color: #fff;
  padding: 14px 26px; border-radius: 14px;
  font-size: 15px; font-weight: 800;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.5);
  transition: all .25s ease;
}
.cta-btn-sec:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.8); }

/* ===== CHAT MODAL OVERLAY ===== */
.chat-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.chat-overlay.open { opacity: 1; pointer-events: all; }

/* Recentre la fenêtre chat quand en mode modal */
#lyaeco-win.lyaeco-centered {
  bottom: auto !important;
  right: auto !important;
  top: 50% !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-50%) scale(0.88) !important;
  transform-origin: center !important;
  z-index: 9995 !important;
}
#lyaeco-win.lyaeco-centered.lyaeco-open {
  transform: translateX(-50%) translateY(-50%) scale(1) !important;
}

/* ===== POPUPS ===== */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }
.glass-popup {
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  max-width: 420px;
  width: 100%;
  position: relative;
  animation: popupIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popupIn { from { transform: scale(.88) translateY(16px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.popup-close {
  position: absolute; top: 14px; right: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.popup-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.popup-title { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.popup-sub { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.popup-phone {
  display: block;
  font-size: 36px; font-weight: 900;
  color: #FC692F;
  -webkit-text-fill-color: #FC692F;
  text-decoration: none;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.popup-note { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.popup-cta { width: 100%; justify-content: center; margin-bottom: 12px; }
.popup-cancel {
  background: none; border: none;
  color: rgba(255,255,255,.45);
  font-size: 13px; cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
}
.popup-cancel:hover { color: rgba(255,255,255,.7); }

/* ===== FOOTER ===== */
footer {
  background: #0f172a;
  color: #fff;
  padding: 56px 48px 28px;
}
.foot-in {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.foot-logo { font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.foot-logo em { font-style: normal; color: #4A90D9; }
.foot-logo-img { width: 36px; height: 36px; border-radius: 8px; vertical-align: middle; margin-right: 8px; }
.foot-desc { font-size: 13px; color: #64748b; line-height: 1.7; max-width: 250px; }
.foot-col h4 { font-size: 11px; font-weight: 900; color: #64748b; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 9px; }
.foot-col a, .foot-col span { color: #64748b; font-size: 13px; text-decoration: none; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-bot { max-width: 1200px; margin: 26px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.foot-bot p { font-size: 12px; color: #475569; }

/* ===== FLOATING BUTTONS ===== */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff; text-decoration: none;
  padding: 14px 18px; border-radius: 100px;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 18px 42px rgba(37,211,102,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 24px 52px rgba(37,211,102,.45); }
.wa-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.wa-ping { position: absolute; inset: 0; border-radius: 100px; background: rgba(37,211,102,.35); animation: waPing 2s infinite; z-index: -1; }
@keyframes waPing { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(1.18); opacity: 0; } 100% { opacity: 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  /* (Pill nav tablette → déplacé dans css/global.css) */
  /* Tablette 769-1024 : popups encore plus compactes, offsets calibrés pour fitter 769px sans dépasser le viewport */
  .hero2-pop-populaire {
    width: 180px; left: -198px; padding: 9px 12px 9px 9px; gap: 8px;
  }
  .hero2-pop-populaire .hero2-pop-thumb { width: 34px; height: 54px; }
  .hero2-pop-populaire .hero2-pop-title { font-size: 9.5px; }
  .hero2-pop-populaire .hero2-pop-text  { font-size: 10px; line-height: 1.3; }
  .hero2-pop-checklist {
    width: 170px; left: -188px; padding: 10px 13px;
  }
  .hero2-pop-checklist .hero2-pop-check { margin: 0 0 7px; }
  .hero2-pop-checklist .hero2-pop-check li { font-size: 10px; padding-left: 17px; line-height: 1.6; }
  .hero2-pop-checklist .hero2-pop-check li::before { font-size: 11px; }
  .hero2-pop-checklist .hero2-pop-pill { font-size: 9px; padding: 3px 9px; }
  .hero2-pop-offre {
    width: 150px; right: -168px; padding: 10px 13px;
  }
  .hero2-pop-offre .hero2-pop-title  { font-size: 11px; margin-bottom: 4px; }
  .hero2-pop-offre .hero2-pop-accent { font-size: 10px; padding: 2px 7px; }
  .hero2-pop-avis {
    width: 180px; right: -198px; padding: 10px; gap: 8px;
  }
  .hero2-pop-avis .hero2-pop-avatar { width: 30px; height: 30px; }
  .hero2-pop-avis .hero2-pop-dot    { width: 10px; height: 10px; }
  .hero2-pop-avis .hero2-pop-quote  { font-size: 10px; margin-bottom: 4px; line-height: 1.35; }
  .hero2-pop-avis .hero2-pop-author { font-size: 9px; }
  .hero2-notif {
    width: 150px; right: -168px; padding: 9px 13px;
    font-size: 10px; border-radius: 13px;
  }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-big { grid-column: span 1; grid-row: span 1; }
  .bento-big .bento-title { font-size: 16px; }
  .packs-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 16px 30px;
    max-width: 100%;
    margin: 30px -16px 0;
  }
  .packs-grid::-webkit-scrollbar { display: none; }
  .pack-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
  }
  .pack-card.featured { transform: none; }
  .metiers-grid,
  .metiers-bottom {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 16px 20px;
    margin: 30px -16px 0;
    max-width: 100%;
  }
  .metiers-grid::-webkit-scrollbar,
  .metiers-bottom::-webkit-scrollbar { display: none; }
  .metier-card {
    flex: 0 0 75%;
    scroll-snap-align: center;
    min-width: 260px;
    min-height: 240px;
  }
  .avis-split, .ia-split { grid-template-columns: 1fr; gap: 40px; }
  .foot-in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .hnav-inner { padding: 6px 6px 6px 14px; gap: 0; }
  .hero2 { padding: 48px 16px 0; }
  .hero2-phone-wrap { width: 100%; }
  /* Notif: also hidden on mobile (handled in the @max-width: 768 block above with the popups) */
  .section-title { font-size: 32px; }
  .h-nav { padding: 0 20px; height: 68px; }
  .nav-links, .nav-right > a { display: none; }
  .burger { display: flex; align-items: center; justify-content: center; }
  .bento-grid { grid-template-columns: 1fr; }
  .metiers-grid,
  .metiers-bottom { overflow-x: auto; }
  .cta-inner { padding: 60px 20px; }
  .cta-glass { padding: 36px 24px; }
  .cta-title { font-size: 30px; }
  .foot-in { grid-template-columns: 1fr; gap: 28px; }
  .foot-bot { flex-direction: column; text-align: center; }
  .wa-float .wa-text { display: none; }
  .ia-phone { width: 200px; height: 400px; }
  .ia-split { align-items: center; }
}
