/* ============ Tokens (extracted pixel-exact from source mockup) ============ */
:root{
  --ink:#111827;
  --ink-2:#1f2937;
  --gray-700:#374151;
  --gray-600:#4b5563;
  --gray-500:#6b7280;
  --gray-400:#9ca3af;
  --gray-300:#d1d5db;
  --line:#e5e7eb;
  --surface-alt:#f9fafb;
  --cream:#fff7ed;

  --orange:#f97316;
  --orange-dark:#ea580c;
  --orange-badge-bg:#ffedd5;
  --orange-badge-text:#c2410c;
  --orange-tint-bg:#fff7ed;
  --orange-tint-border:#fed7aa;

  --blue:#2563eb;
  --blue-light:#3b82f6;
  --blue-badge-text:#1d4ed8;
  --blue-badge-bg:#dbeafe;
  --blue-tint-bg:#eff6ff;
  --blue-tint-border:#bfdbfe;

  --green:#16a34a;
  --green-badge-text:#15803d;
  --green-badge-bg:#dcfce7;
  --green-tint-bg:#f0fdf4;
  --green-tint-border:#bbf7d0;
  --green-check:#22c55e;

  --purple:#7e22ce;
  --purple-badge-bg:#f3e8ff;
  --purple-tint-bg:#faf5ff;
  --purple-tint-border:#e9d5ff;

  --black:#000000;
  --dark-tile:#171717;

  --radius-card:24px;
  --radius-pill:100px;
  --shadow-sm:0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:0 10px 30px -10px rgba(17,24,39,.12);
  --shadow-lg:0 25px 60px -15px rgba(17,24,39,.2);
  --ease:cubic-bezier(.16,.8,.24,1);

  /* Type scale — named steps for the sizes already in wide use across the
     file, so new/edited rules have a scale to land on instead of another
     one-off value. Not every existing declaration has been migrated onto
     it (many carry real, load-bearing distinctions not safe to collapse
     without a visual pass), but it's the reference going forward. */
  --text-2xs:11px;
  --text-xs:12.5px;
  --text-sm:13.5px;
  --text-base:14.5px;
  --text-md:16px;
  --text-lg:18px;
  --text-xl:22px;
  --text-2xl:28px;
  --text-3xl:38px;
}

*,*::before,*::after{box-sizing:border-box;}
::selection{background:var(--orange);color:#fff;}
::-moz-selection{background:var(--orange);color:#fff;}

html{scrollbar-color:var(--orange) var(--surface-alt);scrollbar-width:thin;}
::-webkit-scrollbar{width:12px;height:12px;}
::-webkit-scrollbar-track{background:var(--surface-alt);}
::-webkit-scrollbar-thumb{background:var(--orange);border-radius:100px;border:2px solid var(--surface-alt);}
::-webkit-scrollbar-thumb:hover{background:var(--orange-dark);}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--ink);
  background:#ffffff;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}
h1,h2,h3,h4{margin:0 0 .5em; line-height:1.15; letter-spacing:-.02em; font-weight:700;}
p{margin:0 0 1em; color:var(--gray-600); line-height:1.6;}
ul{list-style:none;margin:0;padding:0;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;}
.container{max-width:1216px;margin:0 auto;padding:0 24px;}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important;}
  [data-reveal]{opacity:1 !important; transform:none !important;}
}

/* ============ Scroll progress ============ */
.scroll-progress{
  position:fixed;top:0;left:0;height:3px;width:0%;
  background:var(--orange);
  z-index:1000;transition:width .08s linear;
}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:15px 28px;border-radius:var(--radius-pill);font-weight:600;font-size:16px;
  border:1.5px solid transparent;cursor:pointer;
  transition:transform .18s var(--ease),box-shadow .2s var(--ease),background .2s,color .2s,border-color .2s;
}
.btn:active{transform:scale(.97);}
.btn svg{width:18px;height:18px;stroke:currentColor;stroke-width:2.2;fill:none;stroke-linecap:round;stroke-linejoin:round;flex:none;}
.btn--primary{background:var(--orange);color:#fff;}
.btn--primary:hover{background:var(--orange-dark);transform:translateY(-2px);box-shadow:0 12px 24px -8px rgba(249,115,22,.45);}
.btn--white{background:#fff;color:var(--gray-700);border-color:var(--line);}
.btn--white:hover{border-color:var(--gray-400);transform:translateY(-2px);}
.btn--soft{background:var(--surface-alt);color:var(--ink);}
.btn--soft:hover{background:var(--line);transform:translateY(-2px);}
.btn--sm{padding:11px 22px;font-size:14px;}
.btn--lg{padding:17px 32px;font-size:17px;}
.btn--block{width:100%;}
.btn:focus-visible{outline:2px solid var(--orange);outline-offset:3px;}

/* ============ Skip link ============ */
.skip-link{
  position:absolute;top:-100px;left:12px;z-index:1000;
  background:var(--ink);color:#fff;padding:12px 20px;border-radius:10px;
  font-weight:600;font-size:14px;text-decoration:none;transition:top .2s;
}
.skip-link:focus{top:12px;}

/* ============ Header ============ */
.header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(255,255,255,.4);
  backdrop-filter:blur(6px);
  border-bottom:1px solid transparent;
  transition:background .3s,border-color .3s,box-shadow .3s,backdrop-filter .3s;
}
.header.scrolled{
  background:rgba(255,255,255,.9);backdrop-filter:blur(10px);
  border-bottom-color:var(--line); box-shadow:0 1px 12px rgba(17,24,39,.05);
}
.header__inner{display:flex;align-items:center;gap:28px;padding:13px 24px;}
.logo{display:block;flex:none;}
.logo__img{height:42px;width:auto;display:block;}
.nav{display:flex;flex:1;gap:34px;justify-content:center;font-weight:500;font-size:17px;}
.nav a{position:relative;color:var(--gray-700);transition:color .2s;}
.nav a:hover{color:var(--ink);}
.nav a.active{color:var(--orange);}
.burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;z-index:110;margin-left:auto;}
.burger span{width:22px;height:2px;background:var(--ink);border-radius:2px;transition:transform .3s var(--ease),opacity .3s;}
.burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.burger.active span:nth-child(2){opacity:0;}
.burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.nav--mobile{
  display:flex;flex-direction:column;gap:2px;
  position:fixed;top:66px;left:16px;right:16px;
  background:#fff;border-radius:20px;padding:12px;
  box-shadow:var(--shadow-lg);border:1px solid var(--line);
  opacity:0;transform:translateY(-10px);pointer-events:none;
  transition:opacity .25s var(--ease),transform .25s var(--ease);
  z-index:99;
}
.nav--mobile.open{opacity:1;transform:translateY(0);pointer-events:auto;}
.nav--mobile a{padding:13px 14px;border-radius:12px;font-weight:600;color:var(--ink);}
.nav--mobile a:hover{background:var(--orange-badge-bg);color:var(--orange-dark);}

/* ============ Badges ============ */
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 18px;border-radius:var(--radius-pill);
  font-weight:600;font-size:14px;margin-bottom:24px;
}
.badge svg{width:16px;height:16px;stroke:currentColor;stroke-width:2.2;fill:none;}
.badge--orange{background:var(--orange-badge-bg);color:var(--orange-badge-text);}
.badge--blue{background:var(--blue-badge-bg);color:var(--blue-badge-text);}
.badge--green{background:var(--green-badge-bg);color:var(--green-badge-text);}
.badge--purple{background:var(--purple-badge-bg);color:var(--purple);}

/* ============ Section shared ============ */
.section{padding:96px 0;}
.section--cream{background:var(--cream);}
.section--purple-tint{background:var(--purple-tint-bg);}
.section__head{max-width:720px;margin:0 auto 48px;text-align:center;}
.section__head h2{font-size:clamp(1.9rem,3.6vw,2.75rem);}
.section__head p{font-size:18px;}
.two-tone{display:block;}
.two-tone .line2{color:var(--orange);}
.two-tone.tone-green .line2{color:var(--green);}
.two-tone.tone-blue .line2{color:var(--blue);}
.subheading{font-size:26px;margin:64px 0 24px;text-align:center;color:var(--ink);}
.subheading-text{text-align:center;max-width:560px;margin:0 auto 32px;}

/* ============ Hero ============ */
.hero{
  position:relative;padding:110px 0 60px;overflow:hidden;
  min-height:100vh;min-height:100svh;
  display:flex;flex-direction:column;justify-content:center;align-items:stretch;
}
.hero__inner{position:relative;z-index:2;text-align:center;max-width:1120px;margin:0 auto;width:100%;}

/* Ambient floating particles behind the hero content.
   .particle = positioning wrapper, moved by JS on mousemove (parallax).
   .particle__dot = the visible circle, runs the CSS float loop independently. */
.hero-particles{position:absolute;inset:0;z-index:1;overflow:hidden;pointer-events:none;}
.particle{position:absolute;transition:transform .4s ease-out;}
.particle__dot{
  display:block;border-radius:50%;
  background:var(--orange);opacity:.35;filter:blur(.5px);
  animation:particle-float 10s ease-in-out infinite;
}
.particle:nth-child(1){left:6%;top:22%;}
.particle:nth-child(1) .particle__dot{width:14px;height:14px;background:var(--orange);animation-duration:9s;animation-delay:0s;}
.particle:nth-child(2){left:14%;top:68%;}
.particle:nth-child(2) .particle__dot{width:8px;height:8px;background:#a855f7;animation-duration:11s;animation-delay:1.2s;}
.particle:nth-child(3){left:22%;top:12%;}
.particle:nth-child(3) .particle__dot{width:20px;height:20px;background:var(--orange);opacity:.22;animation-duration:13s;animation-delay:2.4s;}
.particle:nth-child(4){left:32%;top:82%;}
.particle:nth-child(4) .particle__dot{width:10px;height:10px;background:var(--blue-light);animation-duration:8s;animation-delay:.6s;}
.particle:nth-child(5){left:8%;top:48%;}
.particle:nth-child(5) .particle__dot{width:16px;height:16px;background:var(--green-check);opacity:.25;animation-duration:12s;animation-delay:3s;}
.particle:nth-child(6){right:8%;top:18%;}
.particle:nth-child(6) .particle__dot{width:12px;height:12px;background:var(--orange);animation-duration:10s;animation-delay:1.8s;}
.particle:nth-child(7){right:16%;top:70%;}
.particle:nth-child(7) .particle__dot{width:9px;height:9px;background:#a855f7;opacity:.28;animation-duration:10s;animation-delay:.3s;}
.particle:nth-child(8){right:24%;top:32%;}
.particle:nth-child(8) .particle__dot{width:22px;height:22px;background:var(--orange);opacity:.18;animation-duration:14s;animation-delay:2.1s;}
.particle:nth-child(9){right:6%;top:52%;}
.particle:nth-child(9) .particle__dot{width:10px;height:10px;background:var(--blue-light);animation-duration:9s;animation-delay:2.7s;}
.particle:nth-child(10){right:34%;top:85%;}
.particle:nth-child(10) .particle__dot{width:15px;height:15px;background:var(--green-check);opacity:.22;animation-duration:12s;animation-delay:1s;}
.particle:nth-child(11){left:42%;top:30%;}
.particle:nth-child(11) .particle__dot{width:7px;height:7px;background:var(--orange);animation-duration:8s;animation-delay:.9s;}
.particle:nth-child(12){left:48%;top:88%;}
.particle:nth-child(12) .particle__dot{width:11px;height:11px;background:#a855f7;opacity:.2;animation-duration:11s;animation-delay:3.4s;}
.particle:nth-child(13){left:65%;top:20%;}
.particle:nth-child(13) .particle__dot{width:13px;height:13px;background:var(--blue-light);opacity:.22;animation-duration:10s;animation-delay:1.5s;}
.particle:nth-child(14){left:75%;top:60%;}
.particle:nth-child(14) .particle__dot{width:9px;height:9px;background:var(--orange);opacity:.3;animation-duration:9s;animation-delay:2.9s;}
.particle:nth-child(15){left:58%;top:78%;}
.particle:nth-child(15) .particle__dot{width:18px;height:18px;background:var(--green-check);opacity:.18;animation-duration:13s;animation-delay:.2s;}
.particle:nth-child(16){left:88%;top:42%;}
.particle:nth-child(16) .particle__dot{width:10px;height:10px;background:#a855f7;opacity:.26;animation-duration:9s;animation-delay:1.9s;}

@keyframes particle-float{
  0%,100%{transform:translate(0,0);}
  25%{transform:translate(12px,-18px);}
  50%{transform:translate(-8px,-32px);}
  75%{transform:translate(-16px,-10px);}
}

.hero__title{font-size:clamp(2.1rem,4.6vw,4.5rem); color:var(--ink); white-space:normal;}
.hero__title .line2{color:var(--orange);display:block;}
.hero__text{font-size:clamp(1.05rem,1.5vw,1.5rem);max-width:800px;margin:0 auto 8px;color:var(--gray-600);}
.hero__text .accent{display:block;margin-top:6px;color:var(--orange-dark);font-weight:600;}
.hero__cta{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin:32px 0 8px;}

.logo-marquee{
  position:relative;z-index:2;width:100%;max-width:1120px;margin:40px auto 0;overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
}
.logo-marquee__track{
  display:flex;gap:20px;width:max-content;
  animation:logo-marquee-scroll 50s linear infinite;
}
.logo-marquee .client-logo{height:90px;padding:14px;flex:none;}
@keyframes logo-marquee-scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

.hero__features{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.icon-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-card);
  padding:32px 24px;text-align:center;box-shadow:var(--shadow-sm);
  transition:box-shadow .3s var(--ease), transform .3s var(--ease);
}
.icon-card:hover{box-shadow:var(--shadow-md); transform:translateY(-4px);}
.icon-square{
  width:64px;height:64px;border-radius:18px;display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;box-shadow:0 8px 16px -6px rgba(0,0,0,.25);
}
.icon-square svg{width:28px;height:28px;stroke:#fff;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round;}
.grad-orange{background:linear-gradient(135deg,#fb923c,#f97316);}
.grad-indigo{background:linear-gradient(135deg,#818cf8,#a855f7);}
.grad-teal{background:linear-gradient(135deg,#34d399,#14b8a6);}

.icon-card h3{font-size:19px;margin-bottom:8px;color:var(--ink);}
.icon-card p{margin:0;font-size:14.5px;}

/* ============ Stats (dark inset card) ============ */
.section-sub{margin-top:80px;}
.stats-card{
  position:relative;background:#000;border-radius:36px;
  padding:64px 48px;overflow:hidden;
}
.stats-card::before{
  content:'';position:absolute;top:-60px;left:-60px;width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle,rgba(249,115,22,.18),transparent 70%);
}
.stats-card::after{
  content:'';position:absolute;bottom:-60px;right:-60px;width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle,rgba(249,115,22,.14),transparent 70%);
}
.stats-card__head{text-align:center;position:relative;z-index:2;margin-bottom:40px;}
.stats-card__head h2{color:#fff;font-size:clamp(1.6rem,3vw,2rem);display:flex;align-items:center;justify-content:center;gap:12px;}
.stats-card__head h2 svg{width:30px;height:30px;stroke:var(--orange);stroke-width:2;fill:none;}
.stats-card__head p{color:var(--gray-300);font-size:18px;margin:0;}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;position:relative;z-index:2;}
.stat-tile{background:var(--dark-tile);border-radius:18px;padding:32px 24px;text-align:center;}
.stat-tile__num{font-size:2.4rem;font-weight:700;color:var(--orange);}
.stat-tile__label{color:#fff;font-weight:600;margin:2px 0 8px;font-size:16px;}
.stat-tile p{color:var(--gray-400);margin:0;font-size:14px;}

/* ============ Pricing ============ */
.pricing-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-bottom:12px;align-items:stretch;}
.pricing-tax-note{text-align:center;font-size:12.5px;color:var(--gray-500);margin:-4px 0 32px;}
.price-card{
  position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius-card);
  padding:40px 36px;box-shadow:var(--shadow-sm);text-align:center;
  transition:box-shadow .3s var(--ease), transform .3s var(--ease);
  display:flex;flex-direction:column;
}
.price-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);}
.price-card--featured{border:2px solid var(--orange);box-shadow:0 20px 45px -18px rgba(249,115,22,.35);}
.price-card__tag{
  position:absolute;top:-18px;left:50%;transform:translateX(-50%);
  background:var(--orange);color:#fff;display:inline-flex;align-items:center;gap:6px;
  padding:8px 18px;border-radius:var(--radius-pill);font-size:14px;font-weight:600;white-space:nowrap;
  box-shadow:0 8px 18px -6px rgba(249,115,22,.6);
}
.price-card__tag svg{width:14px;height:14px;fill:#fff;stroke:none;}
.price-card h3,.price-card h4{font-size:24px;margin-bottom:10px;color:var(--ink);}
.price-card__price{font-size:2.1rem;font-weight:700;color:var(--orange);margin-bottom:4px;}
.price-card__price .old{display:block;font-size:1.15rem;font-weight:400;color:var(--gray-500);text-decoration:line-through;margin-bottom:2px;}
.price-card__price .per{font-size:1.2rem;font-weight:600;color:var(--orange);}
.price-card__renewal{font-size:13px;color:var(--gray-500);margin:0 0 14px;}
.price-card__desc{font-size:16px;margin-bottom:24px;}
.launch-tag{
  display:flex;align-items:center;justify-content:center;gap:5px;width:fit-content;white-space:nowrap;
  background:linear-gradient(135deg,#fb923c,#f97316);color:#fff;
  font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;
  padding:6px 12px 6px 9px;border-radius:var(--radius-pill);margin:0 auto 24px;
  box-shadow:0 6px 16px -4px rgba(249,115,22,.55);
  animation:launch-glow 2.2s ease-in-out infinite;
}
.launch-tag svg{width:14px;height:14px;stroke:none;fill:#fff;flex:none;}
@keyframes launch-glow{
  0%,100%{box-shadow:0 6px 16px -4px rgba(249,115,22,.55);transform:scale(1);}
  50%{box-shadow:0 8px 22px -3px rgba(249,115,22,.85);transform:scale(1.045);}
}
.price-list{margin:0 0 28px;text-align:left;flex:1;}
.price-list li{position:relative;padding-left:26px;margin-bottom:14px;font-size:16px;color:var(--gray-700);line-height:1.5;}
.price-list li::before{
  content:'';position:absolute;left:0;top:5px;width:14px;height:9px;
  border-left:2.5px solid var(--orange);border-bottom:2.5px solid var(--orange);
  transform:rotate(-45deg);
}

/* ============ CTA dark band 1 ============ */
.cta-band__card{
  background:#000;border-radius:var(--radius-card);padding:48px;text-align:center;
  max-width:680px;margin:0 auto;
}
.cta-band__card h2{color:#fff;font-size:clamp(1.5rem,3vw,1.9rem);}
.cta-band__card p{color:var(--gray-300);margin-bottom:28px;font-size:17px;}

/* ============ CTA band 2 (light) ============ */
.cta-band--light .cta-band__card{
  background:var(--surface-alt);border:1px solid var(--line);
}
.cta-band--light h2{color:var(--ink);}
.cta-band--light p{color:var(--gray-600);}
.cta-band__buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}

/* ============ Client logos ============ */
.clients-grid{
  display:flex;flex-wrap:wrap;justify-content:center;gap:20px;
}
.clients-grid .client-logo{flex:1 1 340px;max-width:376px;}
.client-logo{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;
  height:140px;background:#fff;border:1px solid var(--line);border-radius:var(--radius-card);
  box-shadow:var(--shadow-sm);transition:box-shadow .25s var(--ease),transform .25s var(--ease),border-color .25s;
  padding:20px;
}
.client-logo img{max-height:56px;max-width:80%;width:auto;filter:grayscale(1);opacity:.75;transition:filter .25s,opacity .25s;}
a.client-logo:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);border-color:var(--gray-300);cursor:pointer;}
a.client-logo:hover img{filter:grayscale(0);opacity:1;}

/* ============ Trust bar ============ */
.trust-bar{text-align:center;}
.trust-bar__label{color:var(--gray-600);font-size:18px;font-weight:500;margin-bottom:24px;}
.trust-pills{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.trust-pill{
  display:inline-block;padding:14px 26px;border-radius:var(--radius-pill);color:#fff;
  font-weight:700;font-size:16px;box-shadow:var(--shadow-sm);cursor:default;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),filter .25s var(--ease);
}
.trust-pill:hover{transform:translateY(-3px) scale(1.04);box-shadow:var(--shadow-md);filter:brightness(1.08);}

/* ============ Processus ============ */
.steps{display:flex;flex-direction:column;align-items:center;gap:0;}
.step-connector{width:1px;height:48px;background:var(--line);}
.step-card{
  width:100%;border-radius:var(--radius-card);border:1px solid;padding:40px;
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
}
.step-card--blue{background:var(--blue-tint-bg);border-color:var(--blue-tint-border);}
.step-card--orange{background:var(--orange-tint-bg);border-color:var(--orange-tint-border);}
.step-card--green{background:var(--green-tint-bg);border-color:var(--green-tint-border);}
.step-card__left{display:flex;gap:20px;}
.step-num{
  flex:none;width:56px;height:56px;border-radius:16px;color:#fff;font-weight:700;font-size:22px;
  display:flex;align-items:center;justify-content:center;
}
.step-num--blue{background:var(--blue-light);}
.step-num--orange{background:var(--orange);}
.step-num--green{background:var(--green-check);}
.step-card__head{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:8px;}
.step-card__head h3{font-size:1.7rem;margin:0;color:var(--ink);}
.step-pill{padding:6px 14px;border-radius:var(--radius-pill);color:#fff;font-size:13.5px;font-weight:600;white-space:nowrap;}
.step-pill--blue{background:var(--blue-light);}
.step-pill--orange{background:var(--orange);}
.step-pill--green{background:var(--green-check);}
.step-card__left p{margin:0;font-size:17px;color:var(--gray-600);}
.step-included{background:#fff;border-radius:18px;padding:26px 28px;}
.step-included__label{display:flex;align-items:center;gap:8px;font-weight:600;font-size:16px;color:var(--ink);margin-bottom:14px;}
.step-included__label svg{width:19px;height:19px;stroke:var(--green-check);stroke-width:2.4;fill:none;}
.step-included li{position:relative;padding-left:20px;margin-bottom:10px;font-size:16px;color:var(--gray-700);}
.step-included li::before{content:'';position:absolute;left:0;top:8px;width:6px;height:6px;border-radius:50%;}
.step-card--blue .step-included li::before{background:var(--blue-light);}
.step-card--orange .step-included li::before{background:var(--orange);}
.step-card--green .step-included li::before{background:var(--green-check);}

/* ============ Devis ============ */
.devis-grid{display:grid;grid-template-columns:.85fr 1.3fr;gap:32px;}
.devis-engagements-wrap{align-self:stretch;}
.devis-engagements{position:sticky;position:-webkit-sticky;top:100px;}
.devis-engagements h3{font-size:24px;margin-bottom:24px;color:var(--ink);}
.engagement{
  display:flex;gap:16px;background:#fff;border:1px solid var(--orange-tint-border);border-radius:18px;
  padding:22px;margin-bottom:16px;
}
.engagement__icon{flex:none;width:44px;height:44px;border-radius:12px;background:linear-gradient(135deg,#fb923c,#f97316);display:flex;align-items:center;justify-content:center;}
.engagement__icon svg{width:22px;height:22px;stroke:#fff;stroke-width:2.1;fill:none;}
.engagement h4{font-size:var(--text-md);margin-bottom:4px;color:var(--ink);}
.engagement p{margin:0;font-size:14.5px;}

.devis-form{background:#fff;border-radius:var(--radius-card);padding:44px 48px;box-shadow:var(--shadow-md);}
.devis-form__head{text-align:center;margin-bottom:32px;}
.devis-form__head h3{font-size:1.7rem;color:var(--ink);}
.devis-form__head p{margin:0;font-size:16px;}
.devis-form__section{font-weight:600;font-size:18px;color:var(--ink);margin:8px 0 18px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.form-row .field:only-child{grid-column:1 / -1;}
.field{margin-bottom:20px;}
.field label{display:block;font-size:14.5px;font-weight:600;margin-bottom:8px;color:var(--ink-2);}
.field input,.field select,.field textarea{
  width:100%;padding:13px 16px;border-radius:12px;border:1.5px solid var(--line);
  font-family:inherit;font-size:15px;color:var(--ink);background:#fff;
  transition:border-color .2s,box-shadow .2s;
}
.field input::placeholder,.field textarea::placeholder{color:var(--gray-400);}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--orange);box-shadow:0 0 0 4px rgba(249,115,22,.12);}
.field.invalid input,.field.invalid select,.field.invalid textarea{border-color:#e0523f;}
.field__error{display:none;color:#e0523f;font-size:12.5px;margin-top:6px;}
.field.invalid .field__error{display:block;}
.field textarea{resize:vertical;}
.field select{
  appearance:none;-webkit-appearance:none;-moz-appearance:none;
  padding-right:44px;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px 18px;
}

.label-with-info{display:flex;align-items:center;gap:7px;}
.info-tip{
  position:relative;display:inline-flex;align-items:center;justify-content:center;
  width:16px;height:16px;border-radius:50%;background:var(--gray-300);color:#fff;
  font-size:11px;font-weight:700;font-style:normal;cursor:help;flex:none;
}
.info-tip:hover,.info-tip:focus{background:var(--orange);}
.info-tip:focus-visible{outline:2px solid var(--orange-dark);outline-offset:2px;}
.info-tip__bubble{
  position:absolute;bottom:calc(100% + 10px);left:50%;transform:translateX(-50%) translateY(4px);
  width:260px;background:var(--ink);color:#fff;font-size:12.5px;font-weight:400;line-height:1.5;
  padding:12px 14px;border-radius:10px;box-shadow:var(--shadow-lg);
  opacity:0;pointer-events:none;transition:opacity .2s var(--ease),transform .2s var(--ease);
  z-index:20;
}
.info-tip__bubble::after{
  content:'';position:absolute;top:100%;left:50%;transform:translateX(-50%);
  border:6px solid transparent;border-top-color:var(--ink);
}
.info-tip:hover .info-tip__bubble,.info-tip:focus .info-tip__bubble{
  opacity:1;transform:translateX(-50%) translateY(0);pointer-events:auto;
}
.form-divider{height:1px;background:var(--line);margin:8px 0 24px;}
.devis-footnote{
  display:flex;gap:12px;align-items:flex-start;background:var(--orange-tint-bg);border:1px solid var(--orange-tint-border);
  border-radius:16px;padding:18px 20px;margin-top:20px;
}
.devis-footnote svg{flex:none;width:20px;height:20px;stroke:var(--orange);stroke-width:2.6;fill:none;margin-top:2px;}
.devis-footnote strong{display:block;color:var(--orange-badge-text);font-size:15px;margin-bottom:2px;}
.devis-footnote span{color:var(--orange-dark);font-size:14px;}

/* ============ Contact ============ */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.contact-card{
  border-radius:var(--radius-card);border:1px solid;padding:36px 30px;text-align:center;
}
.contact-card--blue{background:var(--blue-tint-bg);border-color:var(--blue-tint-border);}
.contact-card--green{background:var(--green-tint-bg);border-color:var(--green-tint-border);}
.contact-card--purple{background:var(--purple-tint-bg);border-color:var(--purple-tint-border);}
/* Icon + button gradients scoped to the same --blue/--green/--purple modifier
   that already tints the card itself, instead of being written inline. */
.contact-card--blue .icon-square,.contact-card--blue .btn{background:linear-gradient(135deg,var(--blue-light),#2563eb);color:#fff;}
.contact-card--green .icon-square,.contact-card--green .btn{background:linear-gradient(135deg,var(--green-check),#16a34a);color:#fff;}
.contact-card--purple .icon-square,.contact-card--purple .btn{background:linear-gradient(135deg,#a855f7,#7e22ce);color:#fff;}
.contact-card .icon-square{margin-bottom:20px;}
.contact-card h3{font-size:var(--text-xl);margin-bottom:6px;color:var(--ink);}
.contact-card__value{font-weight:700;color:var(--ink);margin-bottom:4px;font-size:16px;}
.contact-card__meta{font-size:14px;margin-bottom:14px;}
.contact-card__hours{
  display:inline-flex;align-items:center;gap:6px;background:#fff;border-radius:var(--radius-pill);
  padding:6px 14px;font-size:12.5px;color:var(--gray-600);margin-bottom:20px;box-shadow:var(--shadow-sm);
}
.contact-card__hours svg{width:13px;height:13px;stroke:currentColor;stroke-width:2.2;fill:none;}
.contact-card .btn:hover{transform:translateY(-2px);filter:brightness(1.08);box-shadow:0 12px 24px -10px rgba(17,24,39,.35);}

/* ============ CTA mini ============ */
.cta-mini__inner{
  max-width:680px;margin:0 auto;text-align:center;background:#fff;
  border:1px solid var(--line);border-radius:var(--radius-card);padding:48px;box-shadow:var(--shadow-sm);
}
.cta-mini h3{font-size:1.55rem;color:var(--ink);}
.cta-mini__buttons{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:24px;}

/* CTA mini — dark variant (blog pages) */
.cta-mini--dark .cta-mini__inner{background:#000;border:none;box-shadow:none;}
.cta-mini--dark h3{color:#fff;}
.cta-mini--dark p{color:var(--gray-300);}

/* ============ Footer ============ */
.footer{background:#000;color:var(--gray-300);padding-top:64px;}
.footer__grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:36px;padding-bottom:48px;}
.footer__brand .logo__img{margin-bottom:16px;}
.footer__brand p{color:var(--gray-400);font-size:14.5px;}
.footer__col h4{color:#fff;font-size:16px;margin-bottom:18px;}
.footer__col{display:flex;flex-direction:column;gap:12px;font-size:14.5px;}
.footer__col a,.footer__col span{color:var(--gray-300);}
.footer__col a:hover{color:var(--orange);}
.footer__bottom{border-top:1px solid #1f2937;padding:22px 0;}
.footer__bottom-inner{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:16px;
  font-size:13.5px;color:var(--gray-400);
}
.footer__bottom-left{justify-self:start;}
.footer__bottom-center{justify-self:center;white-space:nowrap;}
.footer__bottom-right{justify-self:end;color:var(--gray-400);white-space:nowrap;}
.footer__bottom-right a{transition:color .2s;}
.footer__bottom-right a:hover{color:var(--orange);}
@media (max-width:640px){
  .footer__bottom-inner{grid-template-columns:1fr;text-align:center;gap:10px;}
  .footer__bottom-left,.footer__bottom-center,.footer__bottom-right{justify-self:center;}
}

/* ============ Toast ============ */
.toast{
  position:fixed;bottom:28px;left:50%;transform:translateX(-50%) translateY(20px);
  background:var(--ink);color:#fff;padding:14px 24px;border-radius:var(--radius-pill);
  font-size:14px;font-weight:600;box-shadow:var(--shadow-lg);
  display:flex;align-items:center;gap:10px;z-index:999;
  opacity:0;pointer-events:none;transition:opacity .3s var(--ease),transform .3s var(--ease);
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0);}
.toast svg{width:18px;height:18px;stroke:var(--green-check);stroke-width:2.4;fill:none;}

/* ============ Reveal on scroll ============ */
[data-reveal]{
  opacity:0;transform:translateY(28px);
  transition:opacity .65s var(--ease),transform .65s var(--ease);
  transition-delay:calc(var(--d,0) * 90ms);
}
[data-reveal].in-view{opacity:1;transform:translateY(0);}

/* ============ Legal page (CGV, etc.) ============ */
.legal-header{border-bottom:1px solid var(--line);}
.legal-header__inner{display:flex;align-items:center;justify-content:space-between;padding:20px 0;}

.legal-page{padding:64px 0 96px;}
.legal-page--after-hero{padding-top:0;}
.legal-page--fixed-header{padding-top:150px;}
.legal-page__head{max-width:720px;margin:0 0 48px;}
.legal-page__head .badge{margin-bottom:16px;}
.legal-page__head h1{font-size:38px;}
.legal-page__updated{font-size:13.5px;color:var(--gray-500);margin-top:8px;}

.legal-body{max-width:760px;margin:0 auto;}
.legal-body h2{font-size:20px;margin:40px 0 14px;padding-top:8px;}

/* ============ Error pages (404/500) ============ */
.error-page{padding:96px 0;}
.error-page__inner{
  max-width:480px;margin:0 auto;text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:18px;
}
.error-page__code{
  font-size:14px;font-weight:800;letter-spacing:.08em;color:var(--orange-dark);
  background:var(--orange-badge-bg);padding:5px 14px;border-radius:var(--radius-pill);
}
.error-page h1{font-size:32px;}
.error-page p{margin:0;}
.legal-body h2:first-child{margin-top:0;}
.legal-body p{margin:0 0 14px;}
.legal-body ul{list-style:disc;margin:0 0 14px;padding-left:22px;}
.legal-body li{color:var(--gray-600);line-height:1.6;margin-bottom:6px;}
.legal-body strong{color:var(--ink-2);}
.legal-todo{
  display:inline-block;background:var(--orange-badge-bg);color:var(--orange-badge-text);
  padding:1px 8px;border-radius:6px;font-weight:600;font-size:.95em;
}

/* ============ Blog ============ */
.brand-logo-inline{display:inline-block;line-height:0;vertical-align:-0.22em;}
.brand-logo-inline img{height:1.05em;width:auto;display:block;}
.page-hero{position:relative;padding:150px 0 56px;overflow:hidden;text-align:center;}
.page-hero__inner{position:relative;z-index:2;max-width:720px;margin:0 auto;}
.blog-list-section{padding:0 0 96px;}

/* Editorial row rhythm — the ratios are computed server-side per row (see
   blog-list.ejs) so non-integer values like 1.8fr/1.2fr are exact, but they're
   passed as a --blog-cols custom property rather than set directly inline —
   that lets the narrow-viewport override below win through the normal
   cascade (a later same-specificity rule) instead of needing !important to
   beat an inline style. */
.blog-row{display:grid;gap:28px;margin-bottom:28px;grid-template-columns:var(--blog-cols, 1fr 1fr 1fr);}
.blog-row:last-child{margin-bottom:0;}
.blog-card{
  display:block;background:#fff;border:1px solid var(--line);border-radius:var(--radius-card);overflow:hidden;
  box-shadow:var(--shadow-sm);
  /* `transition` is a shorthand — this rule and [data-reveal]'s both target
     `transform` at equal specificity, so whichever is later in the file (this
     one) wins outright rather than merging; leaving `opacity` out here was
     silently killing the reveal fade (it jumped instantly) while `transform`
     snapped at this rule's speed instead of the reveal's, which is exactly
     what read as "glitchy" while scrolling. Declaring all three here keeps
     the reveal's fade/slide intact and gives hover/tap feedback a duration
     of its own. */
  transition:opacity .5s var(--ease),transform .25s var(--ease),box-shadow .3s var(--ease);
}
.blog-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);}
.blog-card__image{aspect-ratio:16/9;overflow:hidden;background:var(--gray-100,#f3f4f6);}
.blog-card__image img{width:100%;height:100%;object-fit:cover;}
.blog-card__body{padding:22px 24px;}
.blog-card__date{font-size:12.5px;color:var(--gray-500);}
.blog-card__body h2{font-size:19px;margin:8px 0 8px;color:var(--ink-2);}
.blog-card__body p{margin:0;font-size:14.5px;}

.breadcrumb{margin-bottom:22px;font-size:13px;line-height:1.4;}
.breadcrumb ol{display:flex;align-items:center;gap:10px;margin:0;padding:0;list-style:none;min-width:0;}
.breadcrumb li{display:flex;align-items:center;gap:10px;flex-shrink:0;color:var(--gray-400);}
.breadcrumb li+li::before{content:"";width:5px;height:5px;border-top:1.5px solid currentColor;border-right:1.5px solid currentColor;transform:rotate(45deg);flex-shrink:0;}
.breadcrumb a{display:inline-flex;align-items:center;gap:6px;color:var(--gray-500);font-weight:500;text-decoration:none;transition:color .2s;}
.breadcrumb a:hover{color:var(--orange-dark);}
.breadcrumb a:focus-visible{outline:2px solid var(--orange);outline-offset:2px;border-radius:4px;}
.breadcrumb__home{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;stroke-linejoin:round;}
.breadcrumb [aria-current="page"]{flex:1 1 auto;min-width:0;display:block;color:var(--gray-700);font-weight:500;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.breadcrumb [aria-current="page"]::before{display:inline-block;margin:0 12px 1px 0;vertical-align:middle;color:var(--gray-400);}

.blog-post-layout{display:grid;grid-template-columns:1fr 300px;gap:56px;max-width:1080px;margin:0 auto;}
.blog-post-main{min-width:0;}
.blog-post__cover{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:var(--radius-card);margin-bottom:32px;}
.blog-post__body h2{font-size:22px;margin:36px 0 14px;scroll-margin-top:96px;color:var(--ink);}
.blog-post__body h3{font-size:18px;margin:28px 0 12px;color:var(--ink);}
.blog-post__body p,.blog-post__body li{color:var(--ink);}
.blog-post__body a{color:var(--orange-dark);text-decoration:underline;}
.blog-post__body blockquote{margin:0 0 22px;padding:14px 18px;border-left:3px solid var(--orange-dark);border-radius:0 10px 10px 0;background:var(--orange-badge-bg);color:var(--ink-2);}
.blog-post__body blockquote p{margin:0;}
.blog-post__body blockquote strong{color:var(--orange-badge-text);}
.blog-post__body code{background:var(--orange-badge-bg);padding:1px 6px;border-radius:5px;font-size:.9em;}
.blog-post__body pre{background:#1f2937;color:#f3f4f6;padding:16px 18px;border-radius:12px;overflow-x:auto;margin:0 0 14px;}
.blog-post__body pre code{background:none;padding:0;color:inherit;}
.blog-post__body img{max-width:100%;width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:12px;margin:0 0 14px;}
.blog-post__body .text-orange{color:var(--ink);font-weight:700;}
.blog-post__body table{width:100%;border-collapse:collapse;margin:0 0 22px;font-size:14.5px;}
.blog-post__body th,.blog-post__body td{padding:10px 14px;border-bottom:1px solid var(--line);text-align:left;}
.blog-post__body th{background:var(--orange-badge-bg);color:var(--orange-badge-text);font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.02em;}
.blog-post__body tr:last-child td{border-bottom:none;}

/* Sommaire */
.blog-toc{background:var(--orange-badge-bg);border-radius:var(--radius-card);padding:22px 26px;margin:0 0 36px;}
.blog-toc h4{margin:0 0 10px;font-size:12.5px;text-transform:uppercase;letter-spacing:.04em;color:var(--orange-badge-text);}
.blog-toc ul{margin:0;padding:0;list-style:none;}
.blog-toc li{margin-bottom:6px;}
.blog-toc a{color:var(--ink-2);font-weight:600;font-size:14.5px;text-decoration:none;}
.blog-toc a:hover{color:var(--orange-dark);}

/* Sidebar — related articles, follows scroll down the article */
.blog-post-sidebar__sticky{position:sticky;top:100px;display:flex;flex-direction:column;gap:18px;}
.blog-sidebar-meta{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--gray-500);}
.blog-sidebar-meta svg{width:14px;height:14px;stroke:currentColor;stroke-width:2.2;fill:none;flex:none;}
.blog-sidebar-cta{background:#000;border-radius:var(--radius-card);padding:20px;}
.blog-sidebar-cta h4{margin:0 0 6px;font-size:15px;color:#fff;}
.blog-sidebar-cta p{margin:0 0 14px;font-size:13px;color:var(--gray-300);}
.blog-sidebar-related{display:flex;flex-direction:column;gap:10px;margin-top:14px;}
.blog-sidebar-related h4{margin:0;font-size:12.5px;text-transform:uppercase;letter-spacing:.04em;color:var(--gray-500);}
.blog-related-card{display:flex;gap:12px;align-items:center;padding:10px;border-radius:14px;transition:background .2s;}
.blog-related-card:hover{background:#fff;box-shadow:var(--shadow-sm);}
.blog-related-card__image{flex:none;width:64px;height:64px;border-radius:10px;overflow:hidden;background:var(--gray-100,#f3f4f6);}
.blog-related-card__image img{width:100%;height:100%;object-fit:cover;}
.blog-related-card__date{font-size:var(--text-2xs);color:var(--gray-500);}
.blog-related-card h5{margin:2px 0 0;font-size:14px;line-height:1.35;color:var(--ink-2);}

/* Category filters on /blog */
.blog-filters{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 32px;}
.blog-filter{display:inline-flex;align-items:center;gap:6px;padding:8px 14px;border-radius:100px;border:1px solid var(--line);background:#fff;color:var(--gray-600);font-size:13.5px;font-weight:600;text-decoration:none;transition:border-color .2s,color .2s,background .2s;}
.blog-filter:hover{border-color:var(--orange-tint-border);color:var(--orange-dark);}
.blog-filter.is-active{background:var(--orange-badge-bg);border-color:var(--orange-badge-bg);color:var(--orange-badge-text);}
.blog-filter__count{font-size:12px;font-weight:500;color:var(--gray-400);}
.blog-filter.is-active .blog-filter__count{color:inherit;opacity:.7;}
.blog-card__meta{display:flex;align-items:center;flex-wrap:wrap;gap:8px;}
.blog-card__category{font-size:12px;font-weight:600;color:var(--orange-badge-text);}
.blog-card__category::before{content:"·";margin-right:8px;color:var(--gray-400);font-weight:400;}
a.badge{text-decoration:none;transition:filter .2s;}
a.badge:hover{filter:brightness(.97);}

/* Share bar, author box and previous/next links under an article */
.blog-share{display:flex;align-items:center;flex-wrap:wrap;gap:8px;max-width:760px;margin:40px auto 0;padding-top:24px;border-top:1px solid var(--line);}
.blog-share__label{font-size:13px;font-weight:600;color:var(--gray-500);margin-right:4px;}
.blog-share__btn{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;border:1px solid var(--line);background:#fff;color:var(--gray-600);cursor:pointer;transition:color .2s,border-color .2s,transform .2s;}
.blog-share__btn:hover{color:var(--orange-dark);border-color:var(--orange-tint-border);transform:translateY(-2px);}
.blog-share__btn:focus-visible{outline:2px solid var(--orange);outline-offset:2px;}
.blog-share__btn svg{width:17px;height:17px;}
.blog-share__btn[data-copy-link] svg{fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;}
.blog-share__copied{font-size:13px;color:var(--orange-dark);font-weight:600;}
.blog-author{display:flex;gap:16px;align-items:flex-start;max-width:760px;margin:28px auto 0;padding:22px 24px;border-radius:var(--radius-card);background:var(--orange-tint-bg);border:1px solid var(--orange-tint-border);}
.blog-author img{flex:none;width:52px;height:52px;border-radius:14px;background:#fff;}
.blog-author__label{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.04em;color:var(--gray-500);font-weight:600;}
.blog-author__name{display:block;font-size:16px;color:var(--ink);margin:2px 0 6px;}
.blog-author p{margin:0;font-size:14px;}
.blog-pager{display:grid;grid-template-columns:1fr 1fr;gap:14px;max-width:760px;margin:28px auto 0;}
.blog-pager__link{display:flex;flex-direction:column;gap:6px;padding:18px 20px;border-radius:var(--radius-card);border:1px solid var(--line);background:#fff;text-decoration:none;transition:border-color .2s,box-shadow .2s,transform .2s;}
.blog-pager__link:hover{border-color:var(--orange-tint-border);box-shadow:var(--shadow-sm);transform:translateY(-2px);}
.blog-pager__link--next{text-align:right;grid-column:2;}
.blog-pager__dir{font-size:12.5px;font-weight:600;color:var(--orange-dark);}
.blog-pager__title{font-size:15px;font-weight:700;line-height:1.35;color:var(--ink-2);}

/* ============ Responsive ============ */
@media (max-width:980px){
  .hero__features,.pricing-grid,.stats-grid,.contact-grid{grid-template-columns:1fr;}  .devis-grid{grid-template-columns:1fr;}
  .step-card{grid-template-columns:1fr;}
  .footer__grid{grid-template-columns:1fr 1fr;}
  .blog-post-layout{grid-template-columns:1fr;gap:40px;}
  .blog-post-sidebar__sticky{position:static;}
  .blog-row{grid-template-columns:1fr;gap:36px;}
  /* Once the sidebar stacks below the article, its own CTA box lands right
     under the near-identical cta-mini--dark that already closes the
     article body — back-to-back "get in touch" boxes with nothing between
     them. Drop the smaller, redundant one; "À lire aussi" still earns its
     place as genuinely different content. */
  .blog-sidebar-cta{display:none;}
  /* The desktop nav (6 links + logo + CTA button) has no room to breathe
     between 760 and 980px — switch to the mobile nav for that whole band
     instead of leaving it to visually crowd/overflow. */
  .nav{display:none;}
  .burger{display:flex;}
  .header__inner .btn{display:none;}
}
@media (max-width:760px){
  .hero{padding:130px 0 56px;}
  .form-row{grid-template-columns:1fr;}
  .footer__grid{grid-template-columns:1fr;}
  .cta-mini__inner{padding:32px 22px;}
  .devis-form{padding:32px 22px;}
  .step-card{padding:26px;}
  .stats-card{padding:40px 22px;}
  .legal-page__head h1{font-size:28px;}
  .legal-page{padding:40px 0 64px;}
  /* .page-hero (blog list, legal pages) and .legal-page--fixed-header (blog
     post, 404) both carry a 150px top clearance sized for desktop breathing
     room below the fixed header — on a phone that's a fifth of the visible
     screen spent on empty space before any content appears. */
  .page-hero{padding:100px 0 40px;}
  .legal-page--fixed-header{padding-top:100px;}
  /* Stacked full-width image-over-text cards read as one dense wall of
     near-identical big blocks on a phone, each costing a big chunk of
     scroll. A compact horizontal layout — thumbnail beside the text,
     description dropped — turns the list into something scannable rather
     than a slab, and a tap gives a small squeeze for tactile feedback. */
  .blog-row{gap:14px;}
  .blog-card{display:flex;align-items:center;gap:14px;padding:10px;}
  .blog-card:active{transform:scale(.97);box-shadow:var(--shadow-sm);}
  .blog-card__image{flex:none;width:84px;height:84px;aspect-ratio:1/1;border-radius:14px;}
  .blog-card__body{padding:0;flex:1;min-width:0;}
  .blog-card__body h2{font-size:15.5px;margin:3px 0 0;line-height:1.3;}
  .blog-card__body p{display:none;}
  .blog-list-section{padding:0 0 64px;}
  /* Every 5th post (see FEATURED_EVERY in blog-list.ejs) breaks from the
     compact horizontal rows around it — a full-width image and a visible
     excerpt give the list a recurring beat instead of one unbroken shape
     all the way down. */
  .blog-card--featured{display:block;padding:0;}
  .blog-card--featured .blog-card__image{width:100%;height:auto;aspect-ratio:16/9;}
  .blog-card--featured .blog-card__body{padding:16px 18px 20px;}
  .blog-card--featured .blog-card__body h2{font-size:19px;margin:6px 0 8px;}
  .blog-card--featured .blog-card__body p{
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
    overflow:hidden;margin:0;font-size:14px;color:var(--gray-600);
  }
  .blog-toc{padding:18px 20px;}
  .blog-post-sidebar{margin-top:8px;}
  .blog-sidebar-related{margin-top:8px;}
  .blog-filters{flex-wrap:nowrap;overflow-x:auto;margin:0 -24px 24px;padding:0 24px 4px;scrollbar-width:none;}
  .blog-filters::-webkit-scrollbar{display:none;}
  .blog-filter{flex:none;}
  .blog-author{padding:18px;}
  .blog-pager{grid-template-columns:1fr;}
  .blog-pager__link--next{grid-column:auto;}
}
