  :root{
    --navy:#14314F;
    --navy-deep:#0D2338;
    --paper:#F5F2E8;
    --line:#C9D6E0;
    --ink:#1D2126;
    --orange:#C98A2E;
    --brick:#B65C38;
    --white:#FFFFFF;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Work Sans', sans-serif;
    color:var(--ink);
    background:var(--paper);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Big Shoulders Display', sans-serif;
    text-transform:uppercase;
    letter-spacing:0.01em;
    line-height:0.95;
  }
  .mono{font-family:'IBM Plex Mono', monospace; letter-spacing:0.02em;}
  a{color:inherit; text-decoration:none;}
  img,svg{display:block;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 28px;}
  :focus-visible{outline:3px solid var(--orange); outline-offset:2px;}

  /* ---------- header ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:var(--paper);
    border-bottom:1px solid var(--line);
  }
  .header-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 28px; max-width:1180px; margin:0 auto;
  }
  .logo{display:flex; align-items:center; gap:10px;}
  .logo-mark{width:30px; height:30px; flex-shrink:0;}
  .logo-text{font-family:'Big Shoulders Display', sans-serif; font-weight:800; font-size:26px; text-transform:uppercase;}
  nav{display:flex; align-items:center; gap:32px;}
  nav a.navlink{font-size:14px; font-weight:600; color:var(--navy);}
  nav a.navlink:hover{color:var(--orange);}
  .nav-cta{
    background:var(--navy); color:var(--white); padding:11px 20px;
    font-size:13px; font-weight:700; letter-spacing:0.03em; text-transform:uppercase;
    border-radius:2px; border:1px solid var(--navy);
    transition:background .15s ease;
  }
  .nav-cta:hover{background:var(--navy-deep);}
  .nav-mobile-hide{display:flex;}
  @media(max-width:760px){ .nav-mobile-hide{display:none;} }

  /* ---------- Menu mobile (hamburger) — corrige l'absence de nav sur mobile ---------- */
  .mobile-menu-btn{
    display:none; background:none; border:none; cursor:pointer; padding:6px;
    width:36px; height:36px; align-items:center; justify-content:center;
  }
  .mobile-menu-btn svg{width:22px; height:22px; color:var(--navy);}
  @media(max-width:760px){ .mobile-menu-btn{display:flex;} }
  .mobile-nav-panel{
    display:none; flex-direction:column; background:var(--white);
    border-top:1px solid var(--line); padding:8px 24px 20px;
  }
  .mobile-nav-panel.open{display:flex;}
  .mobile-nav-panel a{
    color:var(--ink); text-decoration:none; font-size:15px; font-weight:500;
    padding:14px 0; border-bottom:1px solid var(--line);
  }
  .mobile-nav-panel a:last-child{border-bottom:none;}

  /* ---------- hero (blueprint sheet) ---------- */
  .hero{
    position:relative;
    background:var(--navy);
    background-image:
      linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size:36px 36px;
    color:var(--white);
    overflow:hidden;
    border-bottom:6px solid var(--orange);
  }
  .hero-inner{
    max-width:1180px; margin:0 auto; padding:96px 28px 72px;
    position:relative;
  }
  .hero-eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.12em;
    text-transform:uppercase; color:var(--line);
    border:1px solid rgba(255,255,255,.25); padding:6px 12px; border-radius:2px;
    margin-bottom:28px;
  }
  .hero-eyebrow::before{content:"";width:7px; height:7px; background:var(--orange); border-radius:50%;}
  .hero h1{
    font-size:clamp(42px, 7vw, 84px);
    font-weight:800;
    max-width:820px;
  }
  .hero h1 em{font-style:normal; color:var(--orange);}
  .hero p.lead{
    margin-top:24px; max-width:520px; font-size:18px; color:#D8E1E9; font-weight:400;
  }
  .hero-actions{display:flex; gap:16px; margin-top:36px; flex-wrap:wrap;}
  .btn-primary{
    background:var(--orange); color:var(--navy-deep); font-weight:700;
    padding:16px 28px; font-size:15px; border-radius:2px; border:none; cursor:pointer;
    text-transform:uppercase; letter-spacing:0.02em;
    transition:transform .12s ease, background .12s ease;
  }
  .btn-primary:hover{background:#DDA84A; transform:translateY(-1px);}
  .btn-ghost{
    background:transparent; color:var(--white); font-weight:600;
    padding:16px 22px; font-size:15px; border:1px solid rgba(255,255,255,.35); border-radius:2px;
    cursor:pointer;
  }
  .btn-ghost:hover{border-color:var(--white);}

  /* dimension-line stat strip */
  .dim-strip{
    margin-top:64px; display:flex; gap:0; border-top:1px solid rgba(255,255,255,.25);
    flex-wrap:wrap;
  }
  .dim-item{
    flex:1; min-width:150px; padding:18px 0 0; position:relative;
  }
  .dim-item::before{
    content:""; position:absolute; top:-1px; left:0; width:100%; height:1px; background:var(--orange);
    transform:scaleX(0); transform-origin:left; animation:growline 1.1s ease forwards;
    animation-delay:.3s;
  }
  @keyframes growline{to{transform:scaleX(1);}}
  .dim-num{font-family:'Big Shoulders Display',sans-serif; font-weight:700; font-size:34px; color:var(--white);}
  .dim-label{font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--line); margin-top:4px;}

  @media(prefers-reduced-motion: reduce){
    .dim-item::before{animation:none; transform:scaleX(1);}
  }

  /* ---------- section shell ---------- */
  section{padding:88px 0;}
  .section-head{max-width:640px; margin-bottom:52px;}
  .section-tag{
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:.12em; text-transform:uppercase;
    color:var(--brick); margin-bottom:14px; display:block;
  }
  .section-head h2{font-size:clamp(30px,4vw,46px); color:var(--navy);}
  .section-head p{margin-top:16px; font-size:16px; color:#4a5561; max-width:520px;}

  /* ---------- category grid ---------- */
  .cat-grid{
    display:grid; grid-template-columns:repeat(4, 1fr); gap:16px;
  }
  @media(max-width:900px){ .cat-grid{grid-template-columns:repeat(3,1fr);} }
  @media(max-width:600px){ .cat-grid{grid-template-columns:repeat(2,1fr); gap:12px;} }
  .cat-card{
    background:var(--white); padding:28px 22px; cursor:pointer;
    display:flex; flex-direction:column; gap:18px; align-items:flex-start;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    border:1px solid var(--line); border-radius:4px; text-align:left; font-family:inherit; width:100%;
  }
  .cat-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 24px -12px rgba(20,49,79,.35);
    border-color:var(--orange);
  }
  .cat-icon-badge{
    width:52px; height:52px; border-radius:50%; background:#FBF3EA;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
    transition:background .18s ease, transform .18s ease;
  }
  .cat-card:hover .cat-icon-badge{background:var(--orange); transform:scale(1.08) rotate(-4deg);}
  .cat-card svg{width:26px; height:26px; stroke:var(--navy); fill:none; stroke-width:1.7; transition:stroke .18s ease;}
  .cat-card:hover svg{stroke:var(--navy-deep);}
  .cat-name{font-size:14.5px; font-weight:700; color:var(--ink); line-height:1.3;}

  /* ---------- process (dimension line) ---------- */
  .process{background:var(--navy); color:var(--white);}
  .process .section-head p{color:#C7D2DB;}
  .process .section-tag{color:var(--orange);}
  .steps{
    display:grid; grid-template-columns:repeat(3,1fr); gap:40px; position:relative; margin-top:20px;
  }
  @media(max-width:800px){.steps{grid-template-columns:1fr;}}
  .step{position:relative; padding-top:34px;}
  .step .tick{
    position:absolute; top:0; left:0; display:flex; align-items:center; gap:10px; width:100%;
  }
  .tick-mark{width:1px; height:14px; background:var(--orange);}
  .tick-line{flex:1; height:1px; background:rgba(255,255,255,.25);}
  .step-num{font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--orange); margin-top:14px;}
  .step h3{font-size:26px; margin-top:8px; text-transform:none; font-family:'Work Sans',sans-serif; font-weight:700;}
  .step p{margin-top:10px; font-size:15px; color:#C7D2DB;}

  /* ---------- trust / stats ---------- */
  .trust{display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:center;}
  @media(max-width:820px){.trust{grid-template-columns:1fr;}}
  .stat-grid{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line);}
  .stat-cell{background:var(--paper); padding:28px 22px;}
  .stat-cell .n{font-family:'Big Shoulders Display',sans-serif; font-weight:800; font-size:44px; color:var(--navy);}
  .stat-cell .l{font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:#5b6673; margin-top:6px;}
  blockquote{
    border-left:3px solid var(--orange); padding-left:22px; font-size:19px; color:var(--navy); font-style:normal;
  }
  blockquote footer{margin-top:14px; font-family:'IBM Plex Mono',monospace; font-size:12px; color:#5b6673; text-transform:uppercase; letter-spacing:.04em;}

  /* ---------- form section ---------- */
  .form-section{background:#EFEAdc; }
  .form-shell{
    background:var(--white); border:1px solid var(--line); max-width:640px; margin:0 auto;
    position:relative;
  }
  .form-shell::before{
    content:"DEV-01"; position:absolute; top:-1px; right:-1px; background:var(--navy); color:var(--white);
    font-family:'IBM Plex Mono',monospace; font-size:11px; padding:5px 10px; letter-spacing:.06em;
  }
  .progress{display:flex; border-bottom:1px solid var(--line);}
  .progress .p-step{
    flex:1; padding:16px 14px; font-family:'IBM Plex Mono',monospace; font-size:11px;
    text-transform:uppercase; letter-spacing:.05em; color:#9aa4ad; border-right:1px solid var(--line);
    position:relative;
  }
  .progress .p-step:last-child{border-right:none;}
  .progress .p-step.active{color:var(--navy); background:#FBF3EA;}
  .progress .p-step.done{color:var(--brick);}
  .form-body{padding:36px;}
  .f-step{display:none;}
  .f-step.active{display:block;}
  .f-title{font-size:24px; color:var(--navy); font-family:'Big Shoulders Display',sans-serif; text-transform:uppercase; margin-bottom:22px;}
  .f-grid{display:grid; grid-template-columns:1fr 1fr; gap:10px;}
  .chip{
    border:1px solid var(--line); padding:12px 14px; font-size:13px; font-weight:600; cursor:pointer;
    text-align:left; background:var(--white); border-radius:2px;
  }
  .chip.selected{border-color:var(--orange); background:#FFF3E8; color:var(--brick);}
  label{display:block; font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.04em; color:#5b6673; margin:16px 0 6px;}
  label:first-child{margin-top:0;}
  input:not([type="checkbox"]), textarea{
    width:100%; border:1px solid var(--line); padding:12px 14px; font-family:inherit; font-size:15px;
    background:var(--paper); border-radius:2px;
  }
  input:focus, textarea:focus{border-color:var(--navy); background:var(--white);}
  textarea{resize:vertical; min-height:90px;}
  .f-actions{display:flex; justify-content:space-between; margin-top:26px; gap:12px;}
  .btn-back{background:transparent; border:1px solid var(--line); padding:13px 20px; font-weight:600; font-size:14px; cursor:pointer; border-radius:2px;}
  .success{display:none; text-align:center; padding:20px 0;}
  .success.active{display:block;}
  .success svg{margin:0 auto 18px; width:44px; height:44px; stroke:var(--orange); fill:none; stroke-width:1.6;}
  .success h3{font-family:'Big Shoulders Display',sans-serif; font-size:28px; color:var(--navy); text-transform:uppercase;}
  .success p{margin-top:10px; color:#5b6673; font-size:15px;}

  /* ---------- final cta ---------- */
  .cta-band{background:var(--orange); text-align:center;}
  .cta-band h2{color:var(--navy-deep); font-size:clamp(28px,4vw,44px);}
  .cta-band p{margin-top:12px; color:#3d2410; font-size:16px;}
  .cta-band .btn-primary{background:var(--navy); color:var(--white); margin-top:26px;}
  .cta-band .btn-primary:hover{background:var(--navy-deep);}

  /* ---------- footer ---------- */
  footer{background:var(--navy-deep); color:#9FB0BF; padding:56px 0 28px;}
  .foot-grid{display:flex; justify-content:space-between; flex-wrap:wrap; gap:36px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.1);}
  .foot-logo{font-family:'Big Shoulders Display',sans-serif; font-weight:800; font-size:24px; text-transform:uppercase; color:var(--white);}
  .foot-links{display:flex; gap:56px; flex-wrap:wrap;}
  .foot-col h4{font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--orange); margin-bottom:14px;}
  .foot-col a{display:block; font-size:14px; margin-bottom:10px; color:#C7D2DB;}
  .foot-col a:hover{color:var(--white);}
  .foot-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:22px; flex-wrap:wrap; gap:12px;}
  .foot-bottom p{font-family:'IBM Plex Mono',monospace; font-size:12px;}
  .foot-col button.linklike{
    display:block; font-size:14px; margin-bottom:10px; color:#C7D2DB; background:none; border:none;
    cursor:pointer; font-family:inherit; padding:0; text-align:left;
  }
  .foot-col button.linklike:hover{color:var(--white);}

  /* ---------- testimonials + photo slot ---------- */
  .testi-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:20px;}
  @media(max-width:820px){.testi-grid{grid-template-columns:1fr;}}
  .testi-card{background:var(--white); padding:26px 24px;}
  .stars{color:var(--orange); font-size:13px; letter-spacing:2px; margin-bottom:14px;}
  .testi-card p{font-size:14.5px; color:var(--ink); line-height:1.55;}
  .testi-who{display:flex; align-items:center; gap:10px; margin-top:18px;}
  .avatar-init{
    width:34px; height:34px; border-radius:50%; background:var(--navy); color:var(--white);
    display:flex; align-items:center; justify-content:center; font-family:'IBM Plex Mono',monospace;
    font-size:12px; font-weight:600; flex-shrink:0;
  }
  .testi-who .name{font-size:13px; font-weight:600; color:var(--navy);}
  .testi-who .role{font-size:12px; color:#8b96a1;}

  /* ---------- guides & cities linking section ---------- */
  .link-section{background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .guide-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:24px;}
  @media(max-width:820px){.guide-cards{grid-template-columns:1fr;}}
  .guide-card{border:1px solid var(--line); border-radius:4px; padding:20px 22px; background:var(--paper); transition:border-color .15s ease, transform .15s ease;}
  .guide-card:hover{border-color:var(--orange); transform:translateY(-2px);}
  .guide-card .tag{font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--brick);}
  .guide-card h3{font-family:'Work Sans',sans-serif; font-weight:700; font-size:15.5px; color:var(--navy); text-transform:none; margin:8px 0 6px;}
  .guide-card p{font-size:13.5px; color:#5b6673; margin:0;}
  .city-chip-list{display:flex; flex-wrap:wrap; gap:10px; margin-top:20px;}
  .city-chip-list a{border:1px solid var(--line); padding:9px 16px; border-radius:20px; font-size:13px; font-weight:600; color:var(--navy); background:var(--paper); transition:border-color .15s ease, color .15s ease;}
  .city-chip-list a:hover{border-color:var(--orange); color:var(--brick);}


  .faq-list{border-top:1px solid var(--line); max-width:760px;}
  .faq-item{border-bottom:1px solid var(--line);}
  .faq-q{
    width:100%; text-align:left; background:none; border:none; cursor:pointer; font-family:inherit;
    padding:22px 4px; display:flex; justify-content:space-between; align-items:center; gap:16px;
  }
  .faq-q span.qtext{font-size:16px; font-weight:600; color:var(--navy);}
  .faq-q .plus{font-family:'IBM Plex Mono',monospace; font-size:18px; color:var(--orange); flex-shrink:0; transition:transform .2s ease;}
  .faq-item.open .faq-q .plus{transform:rotate(45deg);}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .25s ease;}
  .faq-a p{padding:0 4px 22px; font-size:14.5px; color:#4a5561; max-width:640px;}

  /* ---------- legal modals ---------- */
  .modal-overlay{
    display:none; position:fixed; inset:0; background:rgba(13,35,56,.72); z-index:200;
    align-items:center; justify-content:center; padding:24px;
  }
  .modal-overlay.open{display:flex;}
  .modal-box{
    background:var(--paper); max-width:640px; width:100%; max-height:80vh; overflow-y:auto;
    border:1px solid var(--line); position:relative; padding:36px;
  }
  .modal-close{
    position:absolute; top:18px; right:18px; background:var(--navy); color:var(--white); border:none;
    width:30px; height:30px; cursor:pointer; font-size:16px; line-height:1; border-radius:2px;
  }
  .modal-box h3{font-size:24px; color:var(--navy); margin-bottom:16px;}
  .modal-box p{font-size:14px; color:#4a5561; margin-bottom:12px; line-height:1.6;}
  .modal-box h4{font-size:13px; text-transform:uppercase; letter-spacing:.04em; color:var(--brick); margin:20px 0 8px; font-family:'IBM Plex Mono',monospace;}