:root{
    --navy-950:#081D38;
    --navy-900:#0B2A4E;
    --navy-800:#123C6B;
    --ink-900:#0B1C33;
    --ink-600:#51617A;
    --ink-400:#8393AB;
    --paper:#F4F7FB;
    --white:#FFFFFF;
    --amber-500:#F7941D;
    --amber-600:#DE7A00;
    --sky-500:#1063C5;
    --ice-400:#6FC1E8;
    --leaf-500:#4E9A38;
    --line:rgba(11,42,78,0.10);
    --line-light:rgba(255,255,255,0.14);
    --shadow-sm:0 2px 10px rgba(8,29,56,0.06);
    --shadow-md:0 12px 30px rgba(8,29,56,0.10);
    --shadow-lg:0 24px 60px rgba(8,29,56,0.28);
    --radius-lg:22px;
    --radius-md:16px;
    --radius-sm:10px;
    --container:1180px;
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
  }

  body{
    margin:0;
    font-family:'Inter',system-ui,sans-serif;
    color:var(--ink-900);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
    line-height:1.6;
  }

  h1,h2,h3,.display{
    font-family:'Poppins',sans-serif;
    margin:0;
    letter-spacing:-0.01em;
    color:var(--navy-900);
  }

  p{ margin:0; }
  a{ color:inherit; text-decoration:none; }
  ul{ margin:0; padding:0; list-style:none; }
  img,svg{ display:block; max-width:100%; }

  .wrap{
    max-width:var(--container);
    margin:0 auto;
    padding:0 24px;
  }

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:'Inter',sans-serif;
    font-weight:700;
    font-size:0.78rem;
    letter-spacing:0.10em;
    text-transform:uppercase;
    color:var(--amber-500);
  }
  .eyebrow::before{
    content:"";
    width:7px;height:7px;border-radius:50%;
    background:var(--amber-500);
    box-shadow:0 0 0 3px rgba(247,148,29,0.20);
  }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-family:'Inter',sans-serif;
    font-weight:700;
    font-size:0.98rem;
    padding:0.95rem 1.7rem;
    border-radius:999px;
    border:none;
    cursor:pointer;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space:nowrap;
  }
  .btn:active{ transform:translateY(1px); }
  .btn-amber{
    background:var(--amber-500);
    color:var(--navy-950);
    box-shadow:0 10px 24px rgba(247,148,29,0.35);
  }
  .btn-amber:hover{ background:var(--amber-600); box-shadow:0 14px 30px rgba(247,148,29,0.45); transform:translateY(-2px); }
  .btn-outline{
    background:transparent;
    color:var(--white);
    border:1.5px solid var(--line-light);
  }
  .btn-outline:hover{ background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.3); }
  .btn-block{ width:100%; }
  .btn-lg{ padding:1.1rem 2.2rem; font-size:1.05rem; }

  /* ---------- Header ---------- */
  header{
    position:sticky; top:0; z-index:100;
    background:var(--navy-950);
    border-bottom:1px solid transparent;
    transition:border-color .25s ease, background .25s ease;
  }
  header.scrolled{ background:var(--navy-950); border-bottom-color:var(--line-light); }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 24px;
    gap:20px;
  }
  .brand{ display:flex; align-items:center; gap:12px; }
  .brand-mark{ width:56px; height:auto; flex:none; }
  .brand-text{ line-height:1.15; }
  .brand-text .name{ font-family:'Poppins',sans-serif; font-weight:800; font-size:1.15rem; color:var(--white); letter-spacing:0.01em; }
  .brand-text .tagline{ font-size:0.62rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--ice-400); }

  .nav-links{ display:flex; align-items:center; gap:28px; }
  .nav-links a{ font-size:0.92rem; font-weight:500; color:rgba(255,255,255,0.82); transition:color .15s ease; }
  .nav-links a:hover{ color:var(--white); }

  .nav-actions{ display:flex; align-items:center; gap:18px; }
  .nav-phone{ display:flex; align-items:center; gap:8px; color:var(--white); font-weight:600; font-size:0.95rem; }
  .nav-phone svg{ width:17px; height:17px; color:var(--amber-500); }

  .nav-toggle{ display:none; background:none; border:none; padding:6px; cursor:pointer; }
  .nav-toggle svg{ width:26px; height:26px; color:var(--white); }

  /* ---------- Hero ---------- */
  .hero{
    background:var(--white);
    padding:64px 0 90px;
    position:relative;
    overflow:hidden;
  }
  .hero .wrap{ position:relative; }
  .hero-copy{ position:relative; z-index:2; color:var(--ink-900); max-width:460px; }
  .hero-photo-caption h1{
    color:var(--white);
    font-size:clamp(1.5rem, 2.1vw, 1.95rem);
    font-weight:800;
    line-height:1.14;
    max-width:15ch;
    text-shadow:0 2px 20px rgba(0,0,0,0.45);
  }
  .hero-photo-caption h1 span{ color:var(--ice-400); }
  .hero-sub{
  margin-top:0;
  font-size:1.3rem;
  font-weight:700;
  color:var(--ink-900);
  max-width:46ch;
}
  .hero-trust{
    margin-top:26px;
    display:flex; gap:22px; flex-wrap:wrap;
  }
  .hero-trust li{
    display:flex; align-items:center; gap:8px;
    font-size:0.88rem; font-weight:600; color:var(--ink-900);
  }
  .hero-trust svg{ width:16px;height:16px;color:var(--amber-500); flex:none; }

  /* Offer card */
  .offer-card{
    margin-top:34px;
    background:linear-gradient(160deg, var(--navy-800), var(--navy-950));
    border:1px solid rgba(255,255,255,0.10);
    border-radius:var(--radius-lg);
    padding:30px 32px;
    max-width:560px;
    box-shadow:var(--shadow-lg);
  }
  .offer-top{
    display:flex; align-items:baseline; justify-content:space-between; flex-wrap:wrap; gap:8px;
    padding-bottom:18px; margin-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,0.10);
  }
  .offer-top .kicker{ font-weight:700; font-size:0.95rem; letter-spacing:0.03em; color:var(--white); text-transform:uppercase; }
  .offer-top .kw{ font-size:0.85rem; color:var(--ice-400); font-weight:600; }
  .offer-price-row{ display:flex; align-items:flex-end; gap:14px; flex-wrap:wrap; }
  .offer-price-label{ font-size:0.85rem; color:rgba(255,255,255,0.65); font-weight:600; margin-bottom:6px; }
  .offer-price{ font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(2.6rem,6vw,3.4rem); color:var(--amber-500); line-height:1; }
  .offer-price sup{ font-size:0.42em; font-weight:700; margin-left:2px; color:var(--white); }
  .offer-note{ font-size:0.78rem; color:rgba(255,255,255,0.5); margin-top:6px; }

  .offer-list{ margin-top:24px; display:grid; gap:12px; }
  .offer-list li{ display:flex; align-items:flex-start; gap:10px; font-size:0.93rem; color:rgba(255,255,255,0.88); }
  .offer-list svg{ width:19px;height:19px; color:var(--amber-500); flex:none; margin-top:1px; }

  .offer-cta{ margin-top:26px; display:flex; flex-direction:column; align-items:center; gap:10px; }
  .offer-cta small{ color:rgba(255,255,255,0.5); font-size:0.78rem; }

  /* Hero visual — desktop : photo en fond, bord de gauche découpé en vague */
  .hero-photo-frame{
    position:absolute;
    top:0; right:0; bottom:0;
    width:min(45vw, 620px);
    z-index:1;
    border-top-left-radius:0;
    border-bottom-left-radius:0;
    border-top-right-radius:var(--radius-lg);
    border-bottom-right-radius:var(--radius-lg);
    overflow:hidden;
  }
  .hero-photo-ratio{ position:absolute; top:0; left:0; right:0; bottom:0; width:100%; height:100%; }
  .hero-photo-scrim{
    position:absolute; top:0; left:0; right:0; bottom:0;
    background:linear-gradient(180deg, rgba(8,29,56,0) 32%, rgba(8,29,56,0.55) 66%, rgba(8,29,56,0.93) 100%);
    pointer-events:none;
  }
  .hero-photo-caption{
    position:absolute; left:50%; right:0; bottom:0;
    padding:26px 32px 30px 8px;
  }
  .eyebrow-onphoto{ margin-bottom:10px; text-shadow:0 2px 10px rgba(0,0,0,0.35); }
  .hero-photo{ position:absolute; top:0; left:0; right:0; bottom:0; width:100%; height:100%; object-fit:cover; display:block; }

  .france-strip{
    margin-top:56px;
    display:flex; align-items:center; gap:10px;
    color:var(--ink-600); font-weight:600; font-size:0.88rem;
  }
  .france-strip svg{ width:17px;height:17px;color:var(--sky-500); }

  /* ---------- Sections generic ---------- */
  section{ padding:88px 0; }
  .section-head{ max-width:640px; margin-bottom:52px; }
  .section-head h2{ font-size:clamp(1.7rem,3vw,2.35rem); font-weight:700; margin-top:14px; }
  .section-head p{ margin-top:14px; color:var(--ink-600); font-size:1.05rem; }
  .section-paper{ background:var(--paper); }

  /* ---------- Services ---------- */
  .services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
  }
  .service-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius-md);
    padding:30px 24px;
    box-shadow:var(--shadow-sm);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .service-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
  .icon-badge{
    width:56px;height:56px;border-radius:16px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:18px;
  }
  .icon-badge svg{ width:28px;height:28px;color:var(--white); }
  .icon-badge.blue{ background:linear-gradient(145deg,#1B7FE0,var(--sky-500)); }
  .icon-badge.ice{ background:linear-gradient(145deg,#8FD4F1,var(--ice-400)); }
  .icon-badge.green{ background:linear-gradient(145deg,#79C158,var(--leaf-500)); }
  .icon-badge.amber{ background:linear-gradient(145deg,#FCAE4E,var(--amber-500)); }
  .service-card h3{ font-size:1.08rem; font-weight:700; color:var(--navy-900); }
  .service-card p{ margin-top:8px; font-size:0.92rem; color:var(--ink-600); }

  /* ---------- Benefits ---------- */
  .benefits-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
  .benefit{ display:flex; gap:16px; }
  .benefit .ring{
    flex:none; width:52px;height:52px;border-radius:50%;
    background:rgba(16,99,197,0.08);
    display:flex;align-items:center;justify-content:center;
  }
  .benefit .ring svg{ width:24px;height:24px;color:var(--sky-500); }
  .benefit h3{ font-size:1.02rem; font-weight:700; color:var(--navy-900); }
  .benefit p{ margin-top:6px; font-size:0.92rem; color:var(--ink-600); }

  /* ---------- Process ---------- */
  .process-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; counter-reset:step; }
  .process-step{ position:relative; padding-top:8px; }
  .process-step .num{
    font-family:'Poppins',sans-serif; font-weight:800; font-size:2.4rem;
    color:var(--sky-500);
    line-height:1; margin-bottom:10px;
  }
  .process-step h3{ font-size:1.05rem; font-weight:700; }
  .process-step p{ margin-top:8px; font-size:0.92rem; color:var(--ink-600); }
  .process-step:not(:last-child)::after{
    content:"";
    position:absolute; top:22px; left:calc(100% - 4px);
    width:calc(28px * 1); height:2px;
    background:repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
    display:none;
  }
  @media(min-width:900px){ .process-step:not(:last-child)::after{ display:block; } }

  /* ---------- CTA band ---------- */
  .cta-band{
    background:linear-gradient(120deg, var(--amber-500), #FFB25C);
    padding:64px 0;
  }
  .cta-band .wrap{
    display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  }
  .cta-band h2{ font-size:clamp(1.4rem,2.6vw,1.9rem); color:var(--navy-950); font-weight:800; max-width:26ch; }
  .cta-band p{ margin-top:8px; color:rgba(8,29,56,0.75); font-weight:500; }
  .btn-navy{ background:var(--navy-950); color:var(--white); box-shadow:0 12px 28px rgba(8,29,56,0.35); }
  .btn-navy:hover{ background:#04121F; transform:translateY(-2px); }

  /* ---------- Footer ---------- */
  footer{ background:var(--navy-950); color:rgba(255,255,255,0.75); padding:64px 0 28px; }
  .footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid var(--line-light); }
  .footer-brand .brand{ margin-bottom:14px; }
  .footer-brand p{ font-size:0.92rem; max-width:32ch; color:rgba(255,255,255,0.55); }
  .footer-col h4{ font-family:'Inter',sans-serif; font-size:0.82rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--white); margin-bottom:16px; }
  .footer-col ul{ display:grid; gap:12px; }
  .footer-col li a, .footer-col li span{ display:flex; align-items:center; gap:10px; font-size:0.92rem; color:rgba(255,255,255,0.7); transition:color .15s ease; }
  .footer-col li a:hover{ color:var(--white); }
  .footer-col svg{ width:16px;height:16px; color:var(--ice-400); flex:none; }
  .footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; padding-top:24px; font-size:0.8rem; color:rgba(255,255,255,0.45); }
  .footer-legal{ display:flex; justify-content:center; align-items:center; gap:10px; flex-wrap:wrap; margin-top:18px; padding-top:18px; border-top:1px solid var(--line-light); font-size:0.78rem; color:rgba(255,255,255,0.35); }
  .footer-legal a{ color:rgba(255,255,255,0.55); transition:color .15s ease; }
  .footer-legal a:hover{ color:var(--white); }

  /* ---------- Reveal ---------- */
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:none; }

  /* ---------- Responsive ---------- */
  @media (max-width:980px){
    /* En dessous de 980px : on revient à la carte photo classique (pas de vague, pas de bleed) */
    .hero-photo-frame{
      position:static;
      width:100%;
      max-width:320px;
      margin:0 auto 32px;
      clip-path:none;
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:linear-gradient(160deg, var(--navy-800), var(--navy-950));
      border:1px solid rgba(255,255,255,0.12);
      box-shadow:var(--shadow-lg);
    }
    .hero-photo-ratio{
      position:relative;
      top:auto; left:auto; right:auto; bottom:auto;
      width:100%; height:auto;
      padding-top:150%; /* ratio 2:3, comme le flyer */
    }
    .hero-photo-caption{ left:0; padding:22px 24px 24px; }
    .hero-photo-caption h1{ font-size:clamp(1.5rem, 3.4vw, 1.9rem); max-width:18ch; }
    .hero-copy{ max-width:none; }
    .services-grid{ grid-template-columns:repeat(2,1fr); }
    .benefits-grid{ grid-template-columns:1fr; gap:26px; }
    .process-grid{ grid-template-columns:1fr; gap:34px; }
    .footer-grid{ grid-template-columns:1fr; gap:32px; }
  }
  @media (max-width:760px){
    .nav-links{ display:none; }
    .nav-toggle{ display:block; }
    .nav-phone span{ display:none; }
    section{ padding:64px 0; }
    .services-grid{ grid-template-columns:1fr; }
    .cta-band .wrap{ flex-direction:column; align-items:flex-start; }
    .offer-card{ padding:24px; }

    /* Photo hero en plein écran (bord à bord) sur mobile */
    .hero{ padding-top:0; }
    .hero-photo-frame{
      max-width:none;
      width:calc(100% + 48px);
      margin-left:-24px;
      margin-right:-24px;
      margin-bottom:32px;
      border-radius:0;
      border-left:none;
      border-right:none;
      border-top:none;
      box-shadow:none;
    }
    /* ratio 2:3 conservé (hérité de la règle 980px) — même format que la photo du flyer */
  }

  /* ==========================================================================
     PAGES LÉGALES — réutilisable pour mentions légales / cookies / confidentialité
     Toute nouvelle page légale peut reprendre ces mêmes classes :
     .legal-hero (bandeau titre) + .legal-body > .wrap.legal-content (texte)
     ========================================================================== */
  .legal-hero{
    background:var(--paper);
    padding:56px 0 40px;
    border-bottom:1px solid var(--line);
  }
  .legal-hero h1{ font-size:clamp(1.8rem,3vw,2.4rem); font-weight:800; color:var(--navy-900); }
  .legal-hero .updated{ margin-top:10px; font-size:0.9rem; color:var(--ink-600); }

  .legal-body{ padding:56px 0 88px; }
  .legal-content{ max-width:760px; }
  .legal-content h2{
    font-size:1.3rem; font-weight:700; color:var(--navy-900);
    margin-top:44px; margin-bottom:14px;
  }
  .legal-content h2:first-child{ margin-top:0; }
  .legal-content p{ color:var(--ink-600); margin-bottom:16px; }
  .legal-content ul{ margin:0 0 16px; padding-left:22px; }
  .legal-content li{ color:var(--ink-600); margin-bottom:8px; list-style:disc; }
  .legal-content a{ color:var(--sky-500); text-decoration:underline; text-underline-offset:2px; }
  .legal-content strong{ color:var(--navy-900); }

  /* Marqueur visuel pour les informations que l'utilisateur doit compléter lui-même */
  .tbd{
    display:inline-block;
    background:rgba(247,148,29,0.14);
    border:1px dashed var(--amber-500);
    border-radius:6px;
    padding:1px 8px;
    color:var(--amber-600);
    font-weight:600;
    font-size:0.92em;
  }

  /* ==========================================================================
     PAGE CONTACT
     ========================================================================== */
  .contact-hero{
    background:var(--paper);
    padding:56px 0 40px;
    border-bottom:1px solid var(--line);
  }
  .contact-hero h1{ font-size:clamp(1.8rem,3vw,2.4rem); font-weight:800; color:var(--navy-900); }
  .contact-hero p{ margin-top:10px; font-size:1.05rem; color:var(--ink-600); max-width:56ch; }

  .contact-body{ padding:56px 0 88px; }
  .contact-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:44px; align-items:start; }

  .tally-embed-frame{
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    background:var(--white);
  }
  .tally-embed-frame iframe{ display:block; width:100%; min-height:600px; border:none; }

  .bloctel-note{
    display:flex; gap:10px; align-items:flex-start;
    margin-top:20px; padding:16px 18px;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:var(--radius-md);
    font-size:0.9rem; color:var(--ink-600);
  }
  .bloctel-note svg{ width:20px; height:20px; color:var(--sky-500); flex:none; margin-top:1px; }
  .bloctel-note a{ color:var(--sky-500); text-decoration:underline; text-underline-offset:2px; }

  .contact-info-card{
    background:linear-gradient(160deg, var(--navy-800), var(--navy-950));
    border-radius:var(--radius-lg);
    padding:32px;
    color:var(--white);
  }
  .contact-info-card h3{
    font-size:0.82rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
    color:var(--ice-400); margin:0 0 16px;
  }
  .contact-info-card h3:not(:first-child){ margin-top:32px; }
  .contact-info-card ul{ display:grid; gap:14px; }
  .contact-info-card li{ display:flex; align-items:flex-start; gap:12px; font-size:0.95rem; }
  .contact-info-card li a{ color:var(--white); }
  .contact-info-card li svg{ width:18px; height:18px; color:var(--amber-500); flex:none; margin-top:2px; }

  .hours-list li{ display:flex; justify-content:space-between; gap:12px; font-size:0.9rem; color:rgba(255,255,255,0.85); }
  .hours-list li span:first-child{ font-weight:600; color:var(--white); }
  .hours-list li.closed span:last-child{ color:rgba(255,255,255,0.5); }

  @media (max-width:860px){
    .contact-grid{ grid-template-columns:1fr; }
  }
