@font-face { font-family: "Inter Tight"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("fonts/InterTight.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/JetBrainsMono-500.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Inter Tight Fallback"; src: local("Arial"); size-adjust: 96%; ascent-override: 95%; descent-override: 24%; line-gap-override: 0%; }
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #171717;
  --border: #262626;
  --border-strong: #333333;
  --text: #f5f5f5;
  --text-2: #a3a3a3;
  --text-3: #8a8a8a;
  --amber: #F5A623;
  --amber-hover: #ffb84d;
  --amber-text: #0a0a0a;
  --font-title: "Inter Tight", "Inter Tight Fallback", system-ui, sans-serif;
  --font-body: "Inter Tight", "Inter Tight Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1120px;
  --section: 96px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (min-width: 900px) { :root { --section: 144px; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; color: var(--text); }
h1 { font-size: clamp(2.4rem, 6.5vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-2); }
strong { color: var(--text); font-weight: 600; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
a, button, summary, input, textarea { touch-action: manipulation; }
button, summary { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }

.section { padding: 44px 0 88px; }
@media (min-width: 900px) { .section { padding: 60px 0 120px; } }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 18px; display: inline-block;
}
.section-head p { margin-top: 16px; font-size: 1.1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 16px 26px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; transition: background 150ms var(--ease), border-color 150ms var(--ease), color 150ms var(--ease), transform 150ms var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-primary { background: var(--amber); color: var(--amber-text); }
.btn-primary:hover { background: var(--amber-hover); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--text-2); transform: translateY(-1px); }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 500; transition: color 150ms; }
.link-arrow svg { width: 14px; height: 14px; transition: transform 150ms var(--ease); }
.link-arrow:hover { color: var(--amber); }
.link-arrow:hover svg { transform: translateX(3px); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-2); transition: color 150ms; }
.nav-links a:hover { color: var(--text); }
.nav-links a.is-accent { color: var(--text); }
.nav-cta { display: none; align-items: center; gap: 16px; }
.nav-partner { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-partner img { width: 40px; height: 40px; border-radius: 9px; }
.nav-partner span { font-size: 0.72rem; line-height: 1.2; color: var(--text-2); font-weight: 500; }
.nav-partner span strong { display: block; font-size: 0.8rem; color: var(--text); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
@media (min-width: 900px) { .nav-partner span { display: block; } }
@media (max-width: 899px) { .nav-partner span { display: none; } .nav-partner img { width: 36px; height: 36px; } }
.nav-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 200ms var(--ease), opacity 150ms; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-burger, .nav-right { display: none; }
  .nav-cta .btn { padding: 12px 20px; font-size: 0.95rem; }
}
.mobile-menu {
  display: none; position: fixed; inset: 68px 0 0 0; z-index: 99; background: var(--bg);
  padding: 24px 20px 40px; flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { font-family: var(--font-title); font-size: 1.35rem; font-weight: 600; padding: 14px 4px; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 24px; border: none; font-family: var(--font-body); font-size: 1rem; }

/* Hero */
.hero { position: relative; padding: 56px 0 64px; overflow: hidden; }
@media (min-width: 900px) { .hero { padding: 72px 0 96px; } }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245,166,35,0.09), transparent 70%);
}
.hero .container { position: relative; display: grid; gap: 56px; align-items: center; }
@media (min-width: 900px) { .hero .container { grid-template-columns: 7fr 5fr; gap: 48px; } }
.hero-inner { position: relative; max-width: 800px; }
.hero-eyebrow { margin-bottom: 20px; font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; letter-spacing: 0.01em; text-transform: none; color: var(--amber); }
.hero h1 { margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub { font-size: 1.15rem; max-width: 620px; margin-bottom: 40px; }
@media (min-width: 900px) { .hero-sub { font-size: 1.25rem; } }
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
@media (min-width: 540px) { .hero-actions { flex-direction: row; } }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--text-3); }
.hero-meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }

/* Hero visual */
.hero-visual { display: none; perspective: 1200px; }
@media (min-width: 900px) { .hero-visual { display: block; } }
.hv-scene { position: relative; width: 100%; max-width: 420px; margin-left: auto; transform: rotateY(-14deg) rotateX(8deg); transform-style: preserve-3d; transition: transform 400ms var(--ease); }
.hv-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05); }
.hv-main { padding: 22px 22px 24px; }
.hv-head { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.hv-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,0.6); animation: hv-pulse 2s infinite; }
.hv-live { margin-left: auto; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.hv-list { display: grid; gap: 8px; }
.hv-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--border); opacity: 0; transform: translateY(10px); animation: hv-in 9s var(--d) infinite; }
.hv-item div { flex: 1; min-width: 0; }
.hv-item strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hv-item small { font-size: 0.74rem; color: var(--text-3); }
.hv-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(245,166,35,0.15); color: var(--amber); display: grid; place-items: center; font-family: var(--font-title); font-weight: 700; font-size: 0.85rem; flex: none; }
.hv-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 8px; border-radius: 999px; background: rgba(245,166,35,0.12); color: var(--amber); flex: none; }
.hv-tag-call { background: rgba(52,211,153,0.12); color: #34d399; }
.hv-bars { display: flex; align-items: flex-end; gap: 6px; height: 42px; margin-top: 18px; padding-top: 14px; box-sizing: content-box; border-top: 1px solid var(--border); }
.hv-bars span { flex: 1; height: calc(42px * var(--h)); border-radius: 4px 4px 0 0; background: var(--amber); opacity: 0.55; transform-origin: bottom; animation: hv-grow 1.2s var(--ease) both; }
.hv-bars span:nth-child(2) { animation-delay: 0.1s; } .hv-bars span:nth-child(3) { animation-delay: 0.2s; } .hv-bars span:nth-child(4) { animation-delay: 0.3s; } .hv-bars span:nth-child(5) { animation-delay: 0.4s; } .hv-bars span:nth-child(6) { animation-delay: 0.5s; } .hv-bars span:nth-child(7) { animation-delay: 0.6s; opacity: 1; } .hv-bars span:nth-child(6) { opacity: 0.8; }
.hv-float { position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px; transform: translateZ(60px); animation: hv-float 6s ease-in-out infinite; }
.hv-float svg { width: 22px; height: 22px; flex: none; }
.hv-float strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); white-space: nowrap; }
.hv-float small { font-size: 0.72rem; color: var(--text-3); white-space: nowrap; }
.hv-google { top: -28px; left: -56px; color: var(--amber); }
.hv-auto { bottom: -44px; right: -44px; color: #34d399; animation-delay: -3s; }
@keyframes hv-pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); } 70% { box-shadow: 0 0 0 8px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
@keyframes hv-in { 0% { opacity: 0; transform: translateY(10px); } 6% { opacity: 1; transform: none; } 85% { opacity: 1; transform: none; } 92%, 100% { opacity: 0; transform: translateY(-6px); } }
@keyframes hv-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes hv-float { 0%, 100% { transform: translateZ(60px) translateY(0); } 50% { transform: translateZ(60px) translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .hv-item { opacity: 1; transform: none; animation: none; } .hv-float, .hv-dot, .hv-bars span { animation: none; } }

/* ===== Scène hero : transformation (fichier de Théo) ===== */
.htx {
--bg: #111114;
    --surface: rgba(255,255,255,.045);
    --surface-2: rgba(255,255,255,.07);
    --line: rgba(255,255,255,.10);
    --line-strong: rgba(255,255,255,.16);
    --text: #F4F4F6;
    --text-2: rgba(244,244,246,.66);
    --text-3: rgba(244,244,246,.42);
    --violet: #B266FF;
    --indigo: #8A8CFF;
    --cyan: #4ADFF5;
    --amber: #F5A623;
    --amber-ink: #1a1200;
    --grad: linear-gradient(135deg, var(--violet), var(--indigo) 45%, var(--cyan));
    --r-sm: 8px; --r-md: 12px; --r-lg: 20px; --r-pill: 999px;
    --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px; --s-6: 32px;
    --shadow-1: 0 1px 2px rgba(0,0,0,.4);
    --shadow-2: 0 12px 30px rgba(0,0,0,.45);
    --shadow-3: 0 40px 80px rgba(0,0,0,.6);
    --ease-out: cubic-bezier(.16,1,.3,1);
    --ease-spring: cubic-bezier(.34,1.45,.64,1);
    --ease-in: cubic-bezier(.6,0,.9,.4);
    --font: var(--font-body);
--paper: #F5F3EE; --paper-2: #ECE8E0; --ink: #1B1D1F; --ink-2: #4B4F54; --ink-3: #8B9096;
    --rule: #DDD8CE; --slate: #2A3640; --clay: #B5502C; --clay-dark: #99411F; --clay-soft: #F6E4DC;
    --site-font: var(--font-body);
  position: relative; width: 100%; display: flex; justify-content: center;
}

  
      /* grain global */
  
  /* ============ Scène ============ */
  .htx .stage { position: relative; width: 760px; height: 620px; flex: none; transform-origin: top center; perspective: 1500px; perspective-origin: 50% 42%; }
  .htx .stage::before {
    content: ""; position: absolute; inset: -10%; pointer-events: none;
    background:
      radial-gradient(ellipse 40% 50% at 66% 48%, rgba(74,223,245,.12), transparent 65%),
      radial-gradient(ellipse 36% 46% at 32% 60%, rgba(178,102,255,.13), transparent 65%);
    filter: blur(20px);
  }
  .htx .ground { position: absolute; left: 8%; right: 8%; bottom: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
  .htx .tilt { position: absolute; inset: 0; z-index: 1; transform-style: preserve-3d; will-change: transform; }

  /* ============ VIEUX SITE (~2012) ============ */
  .htx .old {
    position: absolute; left: 50%; top: 50%; width: 580px; height: 524px; margin: -222px 0 0 -290px;
    transform: none; transform-style: preserve-3d;
    background: #fff; border: 1px solid #9aa4b0; border-radius: 4px; box-shadow: var(--shadow-3);
    font-family: Arial, Helvetica, sans-serif; color: #333; overflow: hidden; filter: saturate(.85) contrast(.96);
  }
  .htx .ob { height: 24px; background: linear-gradient(#eaeef3, #ccd3db); border-bottom: 1px solid #9aa4b0; display: flex; align-items: center; gap: 5px; padding: 0 8px; }
  .htx .ob i { width: 9px; height: 9px; border-radius: 50%; background: #b3bcc7; }
  .htx .ob span { margin-left: 8px; flex: 1; height: 14px; background: #fff; border: 1px solid #a9b2bd; border-radius: 2px; font: 9px Arial; color: #666; padding: 0 5px; line-height: 13px; }
  .htx .oh { height: 66px; padding: 8px 14px; color: #fff; display: flex; align-items: center; gap: 12px; background: linear-gradient(#3f7fc4, #1f5a9c); text-shadow: 0 1px 1px rgba(0,0,0,.5); }
  .htx .oh .logo { width: 40px; height: 40px; background: #fff; border-radius: 4px; display: grid; place-items: center; font: bold 17px Georgia, serif; color: #1f5a9c; box-shadow: inset 0 0 0 2px #dfe8f2; }
  .htx .oh .oh-h1 { display: block; margin: 0; font: bold 17px Georgia, serif; } .oh small { display: block; font: italic 10px Georgia; opacity: .9; }
  .htx .oh .tel { margin-left: auto; font: bold 12px Arial; background: #f2c230; color: #333; padding: 4px 8px; border-radius: 3px; text-shadow: none; border: 1px solid #b9901c; }
  .htx .om { display: flex; background: linear-gradient(#f7f7f7, #dcdcdc); border-bottom: 1px solid #aaa; }
  .htx .om b { flex: 1; text-align: center; font: bold 10px Arial; padding: 6px 0; border-right: 1px solid #bbb; color: #1f5a9c; }
  .htx .om b:first-child { background: linear-gradient(#ffe37a, #f2c230); color: #333; }
  .htx .oc { display: grid; grid-template-columns: 150px 1fr; gap: 10px; padding: 10px 12px; }
  .htx .os { background: #eef3f8; border: 1px solid #cbd6e2; padding: 8px; font-size: 10px; line-height: 1.5; }
  .htx .os .os-h4 { display: block; margin: 0 0 4px; font: bold 10px Arial; color: #1f5a9c; border-bottom: 1px solid #cbd6e2; }
  .htx .os li { list-style: none; margin: 2px 0; color: #1f5a9c; text-decoration: underline; }
  .htx .os .badge { display: inline-block; background: #e53e3e; color: #fff; font: bold 8px Arial; padding: 1px 4px; border-radius: 2px; animation: blink 1s steps(2) infinite; }
  @keyframes blink { to { opacity: .3; } }
  .htx .os img { display: block; width: 100%; height: 110px; object-fit: cover; margin-top: 6px; border: 3px solid #fff; box-shadow: 0 0 0 1px #aaa; }
  .htx .oa { min-width: 0; }
  .htx .oa .oa-h2 { display: block; margin: 0 0 4px; font: bold 16px Georgia, serif; color: #1f5a9c; }
  .htx .oa p { margin: 0 0 6px; font-size: 10.5px; line-height: 1.45; text-align: justify; }
  .htx .oa .gal { display: flex; gap: 6px; margin: 6px 0 4px; }
  .htx .oa .gal img { width: 0; flex: 1 1 0; min-width: 0; height: 120px; object-fit: cover; border: 3px solid #fff; box-shadow: 0 0 0 1px #aaa; filter: saturate(.8) contrast(.9); }
  .htx .oa .cap { font-size: 8.5px; color: #777; font-style: italic; }
  .htx .of { position: absolute; left: 0; right: 0; bottom: 0; padding: 4px 12px; background: #e6e6e6; border-top: 1px solid #bbb; font: 8px Arial; color: #777; display: flex; justify-content: space-between; }
  .htx .of u { color: #1f5a9c; }

  .htx .cube { position: absolute; width: 29px; height: 29px; background: #fff; border: 1px solid #cbd6e2; opacity: 0; pointer-events: none; }

  /* ============ SITE MODERNE — identité "artisan couvreur" ============ */
    .htx .new {
    position: absolute; left: 50%; top: 50%; width: 580px; height: auto; min-height: 380px; margin: -222px 0 0 -290px;
    transform: scale(.9); transform-style: preserve-3d; opacity: 0;
    border-radius: 6px; padding: 0; background: var(--paper); color: var(--ink); font-family: var(--site-font);
    border: 1px solid rgba(0,0,0,.35); box-shadow: 0 0 0 1px rgba(255,255,255,.06), var(--shadow-3), 0 60px 120px rgba(0,0,0,.5);
    overflow: visible;
  }
  .htx .new::before { content: none; }
  .htx .new .inner { border-radius: 6px; overflow: hidden; }
  .htx .ico { width: 16px; height: 16px; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .htx .nn { display: flex; align-items: center; gap: 14px; padding: 11px 22px; border-bottom: 1px solid var(--rule); background: #fff; font-size: 11px; font-weight: 600; color: var(--ink-2); }
  .htx .nn span, .htx .nn b { white-space: nowrap; }
  .htx .nn > span:not(.btn) { flex: 0 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; font-size: 10.5px; }
  .htx .nn .logo { flex: none; width: 26px; height: 26px; border-radius: 6px; background: var(--slate); display: grid; place-items: center; color: #fff; }
  .htx .nn .logo .ico { width: 15px; height: 15px; stroke-width: 2.4; }
  .htx .nn b { font-size: 12.5px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-right: var(--s-2); }
  .htx .nn .btn { flex: none; margin-left: auto; display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 6px; font-weight: 700; color: #fff; background: var(--ink); font-variant-numeric: tabular-nums; }
  .htx .nn .btn .ico { width: 13px; height: 13px; }

  .htx .ng > * { min-width: 0; }
  .htx .ng { display: grid; grid-template-columns: minmax(0,1fr) 224px; gap: var(--s-5); align-items: start; padding: 18px 22px 0; }
  .htx .eyebrow { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); margin-bottom: 10px; padding: 4px 8px 4px 6px; border-radius: 4px; background: var(--clay-soft); }
  .htx .eyebrow::before { content: none; }
  .htx .eyebrow .ico { width: 12px; height: 12px; stroke-width: 2.4; }
  .htx .new h2 { margin: 0 0 var(--s-3); font-size: 25px; line-height: 1.08; font-weight: 800; letter-spacing: -.035em; color: var(--ink); text-wrap: balance; }
  .htx .new h2 em { font-style: normal; color: var(--clay); }
  .htx .new p { margin: 0 0 14px; color: var(--ink-2); font-size: 11.5px; line-height: 1.6; max-width: 36ch; font-weight: 500; }
  .htx .actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-3); }
  .htx .cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 6px; font-size: 12px; font-weight: 700; background: var(--clay); color: #fff; box-shadow: 0 1px 0 var(--clay-dark), 0 8px 18px rgba(181,80,44,.28); white-space: nowrap; transition: transform .15s var(--ease-out), box-shadow .15s; }
  .htx .cta:hover { transform: translateY(-1px); box-shadow: 0 1px 0 var(--clay-dark), 0 12px 22px rgba(181,80,44,.34); }
  .htx .cta .ico { width: 13px; height: 13px; stroke-width: 2.5; }
  .htx .link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--ink); }
  .htx .link .ico { width: 13px; height: 13px; color: var(--clay); }

  .htx .stats { display: grid; grid-template-columns: repeat(3, auto); gap: var(--s-5); margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--rule); width: fit-content; }
  .htx .stats div { font-size: 9px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
  .htx .stats b { display: block; font-size: 19px; line-height: 1; font-weight: 800; letter-spacing: -.03em; color: var(--ink); margin-bottom: 4px; font-variant-numeric: tabular-nums; }
  .htx .stats b i { font-style: normal; color: var(--clay); font-size: 11px; margin-left: 1px; font-weight: 800; }

  /* ---- Carrousel ---- */
  .htx .carousel { position: relative; overflow: hidden; aspect-ratio: 4/3; border-radius: 6px; background: #1c1c22; box-shadow: 0 10px 24px rgba(27,29,31,.18); }
  .htx .carousel .slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.06); transition: opacity .6s var(--ease-out), transform 1.2s var(--ease-out); will-change: opacity, transform; }
  .htx .carousel .slide.is-active { opacity: 1; transform: scale(1); }
  .htx .carousel img { display: block; width: 100%; height: 100%; object-fit: cover; font-size: 0; color: transparent; }
  .htx .carousel .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 10px 8px; background: linear-gradient(transparent, rgba(27,29,31,.85)); color: #fff; font-size: 10px; font-weight: 700; display: flex; justify-content: space-between; align-items: flex-end; pointer-events: none; }
  .htx .carousel .cap small { font-weight: 500; color: rgba(255,255,255,.7); }
  .htx .carousel .tag { position: absolute; top: 8px; left: 8px; display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; border-radius: 4px; background: rgba(255,255,255,.92); color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; z-index: 2; }
  .htx .carousel .tag .ico { width: 11px; height: 11px; color: var(--clay); stroke-width: 2.6; }
  .htx .carousel .nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 26px; height: 26px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: background .15s, transform .15s; box-shadow: var(--shadow-1); }
  .htx .carousel .nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
  .htx .carousel .nav:active { transform: translateY(-50%) scale(.95); }
  .htx .carousel .nav:focus-visible { outline: 2px solid var(--clay); outline-offset: 2px; }
  .htx .carousel .nav.prev { left: 8px; } .carousel .nav.next { right: 8px; }
  .htx .carousel .nav .ico { width: 13px; height: 13px; stroke-width: 2.6; }
  .htx .dots { display: flex; gap: 5px; justify-content: center; margin-top: 8px; }
  .htx .dots button { width: 6px; height: 6px; border-radius: 3px; border: 0; padding: 0; background: var(--rule); cursor: pointer; transition: width .25s var(--ease-out), background .25s; }
  .htx .dots button.is-active { width: 18px; background: var(--clay); }
  .htx .dots button:focus-visible { outline: 2px solid var(--clay); outline-offset: 2px; }

  /* ---- Avis ---- */
  .htx .review { position: relative; margin-top: 10px; padding: 10px 12px; border-radius: 6px; background: #fff; border: 1px solid var(--rule); font-size: 10.5px; line-height: 1.5; color: var(--ink-2); font-weight: 500; overflow: hidden; min-height: 72px; }
  .htx .review .q { position: absolute; inset: 0; padding: 10px 12px; opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); }
  .htx .review .q.is-active { opacity: 1; transform: none; }
  .htx .review .stars { color: #E0A21E; font-size: 10px; letter-spacing: 1px; }
  .htx .review .who { display: block; margin-top: 3px; font-size: 9.5px; color: var(--ink-3); font-weight: 700; }

  /* ---- Prestations ---- */
  .htx .serv { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--s-2); margin: 16px 22px 0; padding: 0 0 18px; border-top: 0; }
  .htx .serv div { min-width: 0; overflow: hidden; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 6px; background: #fff; border: 1px solid var(--rule); font-size: 11px; font-weight: 800; color: var(--ink); transition: transform .15s var(--ease-out), box-shadow .15s; }
  .htx .serv div:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
  .htx .serv .tile { flex: none; width: 30px; height: 30px; border-radius: 6px; background: var(--clay-soft); color: var(--clay); display: grid; place-items: center; }
  .htx .serv .tile .ico { width: 16px; height: 16px; stroke-width: 2.2; }
  .htx .serv span.lbl { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
  .htx .serv small { display: block; color: var(--ink-3); font-weight: 600; font-size: 9.5px; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  .htx .chip { position: absolute; width: 60px; height: 60px; border-radius: 10px; background: rgba(17,17,20,.9);
    border: 1px solid var(--line-strong); box-shadow: inset 0 1px 0 rgba(255,255,255,.1), var(--shadow-2), 0 0 30px rgba(178,102,255,.14);
    display: grid; place-items: center; transform: translateZ(70px) scale(0); opacity: 0; }
  .htx .chip svg { width: 34px; height: 34px; }
  .htx .chip--pin { left: -34px; top: 36px; } .chip--chat { right: -30px; top: -24px; } .chip--shop { right: -22px; bottom: -26px; }

  .htx .p { position: absolute; z-index: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--grad); opacity: 0; pointer-events: none; }

  /* ============ Animations ============ */
  .htx .stage.go .old { overflow: visible; animation: old-out .8s var(--ease-in) forwards; }
  @keyframes old-out { to { transform: scale(.94); opacity: 0; filter: blur(6px); } }
  .htx .stage.go .cube { animation: cube-fly 1.3s cubic-bezier(.3,.8,.4,1) forwards; }
  @keyframes cube-fly { 0% { opacity: 0; transform: translate3d(0,0,0) rotate(0); } 15% { opacity: 1; }
    100% { opacity: 0; transform: translate3d(var(--dx), var(--dy), var(--dz)) rotate(var(--rot)); } }
  .htx .stage.go .new { animation: new-in .9s var(--ease-spring) .7s forwards; }
  @keyframes new-in { to { transform: scale(1); opacity: 1; } }
  .htx .stage.go .chip { animation: chip-in .55s var(--ease-spring) forwards; }
  .htx .stage.go .chip--pin { animation-delay: 1.3s; } .stage.go .chip--chat { animation-delay: 1.42s; } .stage.go .chip--shop { animation-delay: 1.54s; }
  @keyframes chip-in { to { transform: translateZ(70px) scale(1); opacity: 1; } }
  .htx .stage.go .p { animation: drift var(--dur) ease-in-out var(--delay) infinite; }
  @keyframes drift { 0% { opacity: 0; transform: translate3d(0,0,0); } 20% { opacity: .9; } 80% { opacity: .5; } 100% { opacity: 0; transform: translate3d(var(--px), var(--py), 80px); } }

  .htx .stage.idle .new { opacity: 1; animation: float 5s ease-in-out infinite; }
  @keyframes float { 0%, 100% { transform: scale(1) translateY(0); } 50% { transform: scale(1) translateY(-8px); } }
  .htx .stage.idle .chip { opacity: 1; animation: bob 3.6s ease-in-out infinite; }
  .htx .stage.idle .chip--chat { animation-delay: -1.2s; } .stage.idle .chip--shop { animation-delay: -2.4s; }
  @keyframes bob { 0%, 100% { transform: translateZ(70px) scale(1) translateY(0) rotate(-2deg); } 50% { transform: translateZ(70px) scale(1) translateY(-7px) rotate(2deg); } }

  .htx .controls { position: absolute; top: var(--s-4); right: var(--s-4); z-index: 10; }
  .htx .controls button { min-height: 40px; padding: 0 14px; border-radius: 10px; font: 600 12px var(--font); background: var(--surface-2); color: var(--text);
    border: 1px solid var(--line-strong); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background .15s, transform .15s; }
  .htx .controls button:hover { background: rgba(255,255,255,.12); }
  .htx .controls button:active { transform: scale(.97); }
  .htx .controls button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
  .htx .controls svg { width: 14px; height: 14px; }

  @media (max-width: 720px) { .stage { transform: scale(.62); transform-origin: center; height: 420px; } }
  @media (prefers-reduced-motion: reduce) {
    .htx .old, .htx .cube, .htx .p { display: none; } .new, .chip { transform: none; opacity: 1; animation: none !important; } .os .badge { animation: none; }
  }

/* — reskin Nexava index (fidèle) : plaque logo, hero photo pleine largeur, courbe — */
.htx .new { --nx-green: #60AC45; --nx-green-l: #8CCB5E; --nx-green-d: #4d8f36; --nx-header: #141A18; --nx-navy: #102039; --nx-text: #74787C; --nx-border: #DEDEDE; background: #ffffff; }
.htx .new .inner { display: flex; flex-direction: column; position: relative; }
/* plaque logo verte biseautée sur topbar + nav */
.htx .plate { position: absolute; z-index: 6; left: 0; top: 0; height: 54px; width: 148px; background: linear-gradient(100deg, var(--nx-green), #6fbc50); clip-path: polygon(0 0, 100% 0, calc(100% - 26px) 100%, 0 100%); display: inline-flex; align-items: center; gap: 7px; padding: 0 26px 0 16px; color: #10301a; font-weight: 800; font-size: 13px; box-shadow: 0 4px 10px rgba(0,0,0,.18); }
.htx .plate .ico { width: 17px; height: 17px; stroke-width: 2.4; }
.htx .nt { display: flex; justify-content: space-between; align-items: center; gap: 10px; background: var(--nx-header); color: rgba(255,255,255,.85); font-size: 8.5px; padding: 6px 14px 6px 160px; }
.htx .nt b { color: #fff; font-weight: 700; }
.htx .nt-r { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.65); }
.htx .nt-r i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); }
.htx .nn { display: flex; align-items: center; gap: 13px; padding: 8px 12px 8px 164px; background: #fff; font-size: 10px; font-weight: 600; color: #1B1D1F; }
.htx .nn > span:not(.btn) { flex: none; color: #2f3438; }
.htx .nn .btn { flex: none; margin-left: auto; padding: 9px 13px; border-radius: 4px; font-weight: 700; font-size: 10px; color: #fff; background: var(--nx-green); }
/* hero : photo pleine largeur, texte par-dessus */
.htx .nh { display: block; background: #fff; flex: none; }
.htx .nh-media { position: relative; height: 204px; overflow: hidden; }
.htx .nh-media .carousel { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; box-shadow: none; background: var(--nx-navy); }
.htx .nh-media .slide img { filter: brightness(.82); }
.htx .nh-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,16,10,.55), rgba(10,16,10,.15) 55%, transparent 75%); }
.htx .nh-diag { position: absolute; z-index: 1; left: -40px; top: -20px; bottom: -20px; width: 150px; background: linear-gradient(100deg, rgba(96,172,69,.65), rgba(96,172,69,.15)); clip-path: polygon(0 0, 55% 0, 100% 100%, 0 100%); pointer-events: none; }
.htx .nh-ov { position: absolute; inset: 0 40% 26px 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 0 0 0 30px; pointer-events: none; }
.htx .new .eyebrow { background: none; padding: 0; margin-bottom: 7px; color: var(--nx-green-l); letter-spacing: .3em; font-size: 8px; font-weight: 700; text-transform: uppercase; gap: 0; }
.htx .new .eyebrow::before { content: none; }
.htx .new .eyebrow .ico { display: none; }
.htx .nh-ov .nh-t { display: block; color: #fff; font-size: 21.5px; line-height: 1.12; font-weight: 800; letter-spacing: -.015em; margin: 0 0 7px; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.htx .nh-ov p { color: rgba(255,255,255,.92); font-size: 9.5px; line-height: 1.55; margin: 0 0 11px; max-width: 34ch; font-weight: 500; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.htx .new .cta { display: inline-flex; align-items: center; gap: 7px; padding: 10px 15px; border-radius: 4px; font-size: 10px; font-weight: 700; background: var(--nx-green); color: #fff; box-shadow: none; pointer-events: auto; transition: background .15s; }
.htx .new .cta b { font-weight: 700; }
.htx .new .cta:hover { background: var(--nx-green-d); transform: none; box-shadow: none; }
/* courbe blanche + bouton play */
.htx .nh-curve { position: absolute; z-index: 3; left: -8%; right: -8%; bottom: -58px; height: 96px; background: #fff; border-radius: 50% 50% 0 0 / 82% 82% 0 0; }
.htx .play { position: absolute; z-index: 4; left: 50%; bottom: 8px; transform: translateX(-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--nx-green); color: #fff; display: grid; place-items: center; font-size: 7px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; box-shadow: 0 0 0 5px rgba(96,172,69,.22), 0 6px 14px rgba(0,0,0,.25); }
.htx .nh-media .nav { position: absolute; top: 42%; transform: translateY(-50%); z-index: 3; width: 24px; height: 24px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: var(--nx-navy); display: grid; place-items: center; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,.35); }
.htx .nh-media .nav.prev { left: 8px; } .htx .nh-media .nav.next { right: 8px; }
.htx .nh-media .nav:hover { background: var(--nx-green); color: #fff; transform: translateY(-50%); }
.htx .nh-media .dots { position: absolute; right: 12px; top: 10px; z-index: 3; margin: 0; justify-content: flex-end; }
.htx .nh-media .dots button { background: rgba(255,255,255,.55); }
.htx .nh-media .dots button.is-active { background: var(--nx-green-l); }
/* marquee */
.htx .mq { overflow: hidden; background: var(--nx-green); color: #fff; padding: 6px 0; flex: none; margin-top: 6px; }
.htx .mq-track { display: flex; align-items: center; gap: 18px; width: max-content; font-size: 10.5px; font-weight: 800; letter-spacing: .14em; animation: nx-mq 14s linear infinite; }
.htx .mq-track b { font-weight: 400; font-size: 10px; opacity: .9; }
.htx .mq-o { -webkit-text-stroke: 1px #fff; color: transparent; }
@keyframes nx-mq { to { transform: translateX(-50%); } }
/* services / stats / avis */
.htx .new .serv { margin: 13px 16px 0; padding: 0; }
.htx .serv div { border: 1px solid var(--nx-border); border-radius: 4px; background: #fff; }
.htx .serv .tile { background: rgba(96,172,69,.13); color: var(--nx-green-d); border-radius: 50%; }
.htx .serv .lbl { color: var(--nx-navy); }
.htx .nb { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 11px 16px 0; padding-bottom: 14px; }
/* — Work Process (fond navy, cercles numérotés) — */
.htx .wp { background: var(--nx-navy); padding: 10px 18px 11px; margin-top: 0; position: relative; overflow: hidden; }
.htx .wp::before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 96%, rgba(255,255,255,.06) 96%), linear-gradient(90deg, transparent 96%, rgba(255,255,255,.05) 96%); background-size: 34px 34px; pointer-events: none; }
.htx .wp-h { text-align: center; margin-bottom: 8px; position: relative; }
.htx .wp-eye { display: inline-flex; align-items: center; gap: 6px; color: #8CCB5E; font-size: 8px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 4px; }
.htx .wp-eye i { width: 7px; height: 7px; background: #60AC45; }
.htx .wp-h b { display: block; color: #fff; font-size: 13.5px; font-weight: 800; letter-spacing: -.01em; }
.htx .wp-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.htx .wp-line { position: absolute; left: 4%; right: 4%; top: 13px; width: 92%; height: 26px; }
.htx .wp-step { position: relative; text-align: center; }
.htx .wp-ico { position: relative; display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #fff; color: #4d8f36; box-shadow: 0 0 0 4px rgba(255,255,255,.08); margin-bottom: 5px; }
.htx .wp-ico .ico { width: 16px; height: 16px; stroke-width: 1.8; }
.htx .wp-ico b { position: absolute; top: -3px; left: -5px; width: 15px; height: 15px; border-radius: 50%; background: #fff; color: var(--nx-navy); border: 1.5px solid var(--nx-navy); font-size: 8px; font-weight: 800; display: grid; place-items: center; }
.htx .wp-step strong { display: block; color: #fff; font-size: 9.5px; font-weight: 800; margin-bottom: 2px; }
.htx .wp-step small { display: block; color: rgba(255,255,255,.65); font-size: 7.5px; line-height: 1.4; font-weight: 500; max-width: 24ch; margin: 0 auto; }

.htx .new .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: auto; margin: 0; padding: 10px 12px; border: 1px solid var(--nx-border); border-radius: 4px; background: #fff; }
.htx .new .stats div { font-size: 7.5px; display: grid; grid-template-columns: 26px 1fr; grid-template-rows: auto auto; column-gap: 8px; align-items: center; color: var(--nx-text); letter-spacing: .08em; }
.htx .st-ico { grid-row: 1 / 3; width: 26px; height: 26px; border-radius: 50%; background: rgba(96,172,69,.13); color: #4d8f36; padding: 5px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.htx .new .stats b { font-size: 13.5px; margin: 0; color: var(--nx-navy); grid-column: 2; line-height: 1.05; }
.htx .new .stats b i { color: #4d8f36; }
.htx .new .review { position: relative; margin: 0; min-height: 46px; border: 0; border-radius: 4px; background: var(--nx-navy); font-size: 9.5px; color: rgba(255,255,255,.85); overflow: hidden; }
.htx .new .review::after { content: "”"; position: absolute; right: 10px; top: -6px; font-size: 46px; font-weight: 800; color: rgba(96,172,69,.45); font-family: Georgia, serif; pointer-events: none; }
.htx .new .review .q { padding: 12px 14px; color: rgba(255,255,255,.88); }
.htx .new .review .stars { color: #8CCB5E; }
.htx .new .review .who { font-size: 8.5px; color: #8CCB5E; font-weight: 700; }
.htx .chip { box-shadow: inset 0 1px 0 rgba(255,255,255,.1), var(--shadow-2), 0 0 30px rgba(96,172,69,.16); }
@media (prefers-reduced-motion: reduce) { .htx .mq-track { animation: none; } }

/* intégration section avant-après */
.gg-wrap { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1000px) {
  .gg-wrap { grid-template-columns: minmax(0,7fr) minmax(0,4fr); gap: 40px; }
  .gg-wrap .htx { order: 1; }
  .gg-wrap .gg { order: 2; grid-template-columns: 1fr; gap: 24px; max-width: 380px; justify-self: end; }
  .gg-wrap .gg-gauge { margin: 0; width: 180px; }
  .gg-wrap .gg-gauge svg { width: 180px; height: 180px; }
  .gg-wrap .gg-center { width: 180px; height: 180px; }
  .gg-wrap .gg-center b { font-size: 2.6rem; }
  .gg-wrap .gg-item { padding: 10px 14px; }
  .gg-wrap .gg-txt em, .gg-wrap .gg-txt strong { font-size: 0.88rem; }
  .gg-wrap .gg-note { font-size: 0.8rem; }
}
.htx { display: none; }
@media (min-width: 1000px) { .htx { display: flex; } }
.htx .controls { position: absolute; right: 8px; top: 2px; z-index: 10; }
.htx .stage::before { inset: 4%; }


/* Trust bar */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); padding: 40px 0; }
.trust-inner { display: grid; gap: 22px; align-items: center; }
@media (min-width: 900px) { .trust-inner { grid-template-columns: auto 1fr auto; gap: 40px; } }
.badge-hostinger { display: block; height: 42px; width: auto; aspect-ratio: 80 / 30; }
.trust .badge-hostinger { height: 76px; }
.trust-text { font-size: 0.98rem; line-height: 1.6; max-width: 640px; }
.trust-points { display: flex; flex-wrap: wrap; gap: 8px 20px; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--text-2); }
@media (min-width: 900px) { .trust-points { flex-direction: column; gap: 10px; border-left: 1px solid var(--border); padding-left: 28px; } }
.trust-points li { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-points li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }

/* Placeholder */
.ph { color: var(--amber); font-family: var(--font-mono); font-size: 0.85em; }

/* Benefits */
.benefits { display: grid; gap: 20px; }
@media (min-width: 760px) { .benefits { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 150ms var(--ease), transform 150ms var(--ease);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(245,166,35,0.1); color: var(--amber);
  display: grid; place-items: center; margin-bottom: 22px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 1rem; }

/* Offers */
.offers { display: grid; gap: 20px; align-items: stretch; }
@media (min-width: 900px) { .offers { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.offer { position: relative; display: grid; grid-row: span 5; grid-template-rows: subgrid; align-items: start; padding: 36px 32px; }
.offer .btn { align-self: end; }
.offer.is-featured { border-color: var(--amber); }
.offer.is-featured:hover { border-color: var(--amber-hover); }
.offer-badge {
  position: absolute; top: -13px; left: 32px; padding: 5px 12px; border-radius: 999px;
  background: var(--amber); color: var(--amber-text); font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}
.offer-name { font-size: 1.3rem; margin-bottom: 12px; }
.offer-price { font-family: var(--font-title); font-size: 2.2rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.offer-price small { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: var(--text-3); display: block; margin-bottom: 6px; }
.offer-tagline { font-size: 1rem; margin: 16px 0 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); align-self: stretch; }
.offer-list { display: grid; gap: 12px; align-content: start; margin-bottom: 32px; }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; color: var(--text-2); }
.offer-list svg { width: 18px; height: 18px; flex: none; color: var(--amber); margin-top: 3px; }
.offers-more { margin-top: 40px; text-align: center; color: var(--text-2); font-size: 1rem; }
.offers-more a { color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border-strong); transition: border-color 150ms; }
.offers-more a:hover { border-color: var(--amber); }

.offer-with-icon .offer-name { padding-right: 84px; }
.offer-icon { position: absolute; top: 22px; right: 22px; width: 72px; height: 72px; }
/* Les animations des icônes ne sont définies que lorsque la carte est visible (.is-in) */

/* Bulle de réponse automatique (offre Automatisation & IA) */
.chat-icon .bubble { transform-box: fill-box; transform-origin: 20% 100%; transform: scale(0); }
.is-in .chat-icon .bubble { animation: bubble-pop .55s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes bubble-pop { from { transform: scale(0); } to { transform: scale(1); } }
.chat-icon .dot { transform-box: fill-box; transform-origin: center; transform: scale(0); }
.is-in .chat-icon .dot { animation: chat-dot-pop .4s cubic-bezier(.34,1.56,.64,1) forwards, typing 1.3s ease-in-out 1s infinite; }
.is-in .chat-icon .dot--1 { animation-delay: .45s, 1s; } .is-in .chat-icon .dot--2 { animation-delay: .55s, 1.15s; } .is-in .chat-icon .dot--3 { animation-delay: .65s, 1.3s; }
@keyframes chat-dot-pop { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes typing { 0%, 55%, 100% { transform: translateY(0); } 25% { transform: translateY(-9px); } }
.chat-icon .spark { transform-box: fill-box; transform-origin: center; transform: scale(0); opacity: 0; }
.is-in .chat-icon .spark { animation: twinkle 2.6s ease-in-out .9s infinite; }
.is-in .chat-icon .spark--small { animation-delay: 1.6s; }
@media (prefers-reduced-motion: reduce) { .chat-icon .bubble, .chat-icon .dot, .chat-icon .spark { animation: none !important; transform: none; opacity: 1; } }

/* Pin + radar (offre Pack Visibilité locale) */
.local-icon .pin { transform-box: fill-box; transform-origin: bottom center; transform: translateY(-46px); opacity: 0; }
.is-in .local-icon .pin { animation: pin-drop .65s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes pin-drop { from { transform: translateY(-46px); opacity: 0; } 30% { opacity: 1; } to { transform: translateY(0); opacity: 1; } }
.local-icon .pin-dot { transform-box: fill-box; transform-origin: center; transform: scale(0); }
.is-in .local-icon .pin-dot { animation: dot-pop .4s cubic-bezier(.34,1.56,.64,1) .5s forwards; }
@keyframes dot-pop { from { transform: scale(0); } to { transform: scale(1); } }
.local-icon .ring { transform-box: fill-box; transform-origin: center; opacity: 0; }
.is-in .local-icon .ring { animation: ring-pulse 2.6s ease-out .8s infinite; }
.is-in .local-icon .ring--2 { animation-delay: 2.1s; }
@keyframes ring-pulse { 0% { transform: scale(1); opacity: 0; } 12% { opacity: .8; } 70% { transform: scale(2.3); opacity: 0; } 100% { transform: scale(2.3); opacity: 0; } }
.local-icon .ground { transform-box: fill-box; transform-origin: center; }
.is-in .local-icon .ground { animation: ground-pulse 2.6s ease-out .8s infinite; }
@keyframes ground-pulse { 0% { transform: scale(1); opacity: 1; } 12% { transform: scale(1.18); } 40%, 100% { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .local-icon .pin, .local-icon .pin-dot, .local-icon .ring, .local-icon .ground { animation: none !important; transform: none; opacity: 1; } .local-icon .ring { opacity: 0; } }

/* Devanture animée (offre Site vitrine) */
.shop-icon .awning { transform-box: fill-box; transform-origin: top center; transform: scaleY(0); }
.is-in .shop-icon .awning { animation: unfurl .55s cubic-bezier(.34,1.4,.64,1) forwards; }
@keyframes unfurl { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.shop-icon .draw-in { stroke-dasharray: 260; stroke-dashoffset: 260; }
.is-in .shop-icon .draw-in { animation: draw .6s ease-out forwards; }
.is-in .shop-icon .draw-in--walls { animation-delay: .4s; } .is-in .shop-icon .draw-in--ground { animation-delay: .55s; } .is-in .shop-icon .draw-in--window { animation-delay: .75s; } .is-in .shop-icon .draw-in--door { animation-delay: .9s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.shop-icon .sparkle { transform-box: fill-box; transform-origin: center; transform: scale(0); opacity: 0; }
.is-in .shop-icon .sparkle { animation: twinkle 2.8s ease-in-out 1.3s infinite; }
.is-in .shop-icon .sparkle--small { animation-delay: 1.9s; }
@keyframes twinkle { 0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; } 18% { transform: scale(1) rotate(20deg); opacity: 1; } 38% { transform: scale(.85) rotate(35deg); opacity: .9; } 55% { transform: scale(0) rotate(50deg); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .shop-icon .awning, .shop-icon .draw-in, .shop-icon .sparkle { animation: none !important; stroke-dashoffset: 0; transform: none; opacity: 1; } }


/* ===== Mini-scènes "Ce que vous obtenez" ===== */
.scene { position: relative; height: 148px; margin: -8px 0 22px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--border); overflow: hidden; padding: 16px; }
/* Recherche Google */
.sc-bar { display: flex; align-items: center; gap: 8px; height: 36px; padding: 0 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border-strong); color: var(--text-3); font-size: 0.85rem; }
.sc-type { color: var(--text); white-space: nowrap; overflow: hidden; width: 0; }
.is-in .sc-type { animation: sc-type 1.1s steps(13) .3s forwards; }
@keyframes sc-type { to { width: 7.6em; } }
.sc-caret { width: 1px; height: 16px; background: var(--amber); animation: sc-blink 1s steps(2) infinite; }
.sc-result { display: flex; align-items: center; gap: 10px; margin-top: 10px; padding: 8px 10px; border-radius: 8px; background: var(--surface); border: 1px solid var(--border); opacity: 0; transform: translateY(8px); }
.is-in .sc-result { animation: sc-in .5s var(--ease) 1.6s forwards; }
.sc-result strong { display: block; font-size: 0.82rem; color: var(--text); }
.sc-result small { font-size: 0.7rem; color: var(--text-3); }
.sc-rank { width: 22px; height: 22px; border-radius: 6px; background: var(--amber); color: var(--amber-text); font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; display: grid; place-items: center; flex: none; }
@keyframes sc-blink { 50% { opacity: 0; } }
@keyframes sc-in { to { opacity: 1; transform: none; } }
/* Téléphone */
.scene-phone { display: flex; justify-content: center; padding: 12px 16px 0; }
.sc-phone { position: relative; width: 176px; height: 100%; border: 2px solid var(--border-strong); border-bottom: none; border-radius: 18px 18px 0 0; background: var(--surface); padding: 22px 8px 0; overflow: hidden; }
.sc-notch { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 44px; height: 6px; border-radius: 999px; background: var(--border-strong); }
.sc-notif { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 8px; background: var(--bg-2); border: 1px solid var(--border); margin-bottom: 6px; opacity: 0; transform: translateY(-14px); }
.sc-notif strong { display: block; font-size: 0.68rem; color: var(--text); white-space: nowrap; }
.sc-notif small { font-size: 0.62rem; color: var(--text-3); white-space: nowrap; }
.is-in .sc-notif { animation: sc-in .55s var(--ease) .4s forwards; }
.is-in .sc-notif--2 { animation-delay: 1.3s; }
.sc-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; flex: none; box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: hv-pulse 2s infinite; }
/* Horloge + tâches */
.scene-clock { display: flex; align-items: center; gap: 18px; }
.sc-clock { position: relative; width: 64px; height: 64px; flex: none; border-radius: 50%; border: 2px solid var(--border-strong); background: var(--surface); }
.sc-hand { position: absolute; left: 50%; bottom: 50%; width: 2px; background: var(--text); transform-origin: bottom center; border-radius: 2px; }
.sc-hand--h { height: 18px; }
.sc-hand--m { height: 25px; background: var(--amber); }
.is-in .sc-hand--m { animation: sc-spin 6s linear infinite; }
.is-in .sc-hand--h { animation: sc-spin 72s linear infinite; }
.sc-clock::after { content: ""; position: absolute; left: 50%; top: 50%; width: 6px; height: 6px; margin: -3px; border-radius: 50%; background: var(--amber); }
@keyframes sc-spin { to { transform: rotate(360deg); } }
.sc-tasks { display: grid; gap: 7px; }
.sc-task { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-3); }
.sc-check { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--border-strong); display: grid; place-items: center; color: var(--amber-text); flex: none; transition: background 250ms, border-color 250ms; }
.sc-tick { stroke-dasharray: 24; stroke-dashoffset: 24; }
.is-in .sc-task { animation: sc-task .3s forwards; }
.is-in .sc-task .sc-check { animation: sc-checkbg .3s forwards; }
.is-in .sc-task .sc-tick { animation: sc-tick .35s ease-out forwards; }
.is-in .sc-task:nth-child(1), .is-in .sc-task:nth-child(1) .sc-check, .is-in .sc-task:nth-child(1) .sc-tick { animation-delay: .5s; }
.is-in .sc-task:nth-child(2), .is-in .sc-task:nth-child(2) .sc-check, .is-in .sc-task:nth-child(2) .sc-tick { animation-delay: 1.2s; }
.is-in .sc-task:nth-child(3), .is-in .sc-task:nth-child(3) .sc-check, .is-in .sc-task:nth-child(3) .sc-tick { animation-delay: 1.9s; }
@keyframes sc-task { to { color: var(--text); } }
@keyframes sc-checkbg { to { background: var(--amber); border-color: var(--amber); } }
@keyframes sc-tick { to { stroke-dashoffset: 0; } }

/* ===== Ligne de parcours "Comment ça se passe" ===== */
.steps-track { position: relative; }
.track-line { display: none; }
@media (min-width: 760px) {
  .track-line { display: block; position: absolute; left: 44px; right: 44px; top: 42px; height: 2px; background: var(--border); z-index: 0; overflow: hidden; }
  .track-line::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--amber), var(--amber-hover)); transform: scaleX(0); transform-origin: left; }
  .is-in .track-line::after { animation: track 1.6s var(--ease) .2s forwards; }
  .step { position: relative; z-index: 1; }
}
@keyframes track { to { transform: scaleX(1); } }
.steps .step-num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-3); letter-spacing: 0; line-height: 1; margin: -6px 0 14px -6px; transition: color 300ms, border-color 300ms, box-shadow 300ms; }
.is-in .step:nth-child(2) .step-num { animation: step-on .4s .35s forwards; }
.is-in .step:nth-child(3) .step-num { animation: step-on .4s .8s forwards; }
.is-in .step:nth-child(4) .step-num { animation: step-on .4s 1.25s forwards; }
.is-in .step:nth-child(5) .step-num { animation: step-on .4s 1.7s forwards; }
@keyframes step-on { to { color: var(--amber); border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245,166,35,.12); } }

/* ===== Réalisations : relief au survol ===== */
.work-card { transition: transform 200ms var(--ease), border-color 150ms var(--ease); transform-style: preserve-3d; will-change: transform; }
.work-shot { position: relative; }
@media (hover: hover) {
  .work-shot::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.10), transparent 55%); opacity: 0; transition: opacity 200ms; pointer-events: none; }
  .work-card:hover .work-shot::after { opacity: 1; }
  .work-card:hover { box-shadow: 0 30px 50px -24px rgba(0,0,0,.8); }
}

/* ===== Offre phare : liseré lumineux qui tourne ===== */
@property --spin { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.offer.is-featured { border-color: rgba(245,166,35,.55); }
.offer.is-featured::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: conic-gradient(from var(--spin), transparent 0 62%, var(--amber-hover) 78%, transparent 92%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: ring-spin 6s linear infinite;
}
@keyframes ring-spin { to { --spin: 360deg; } }

/* ===== Formulaire : envoi et confirmation ===== */
#form-submit-btn { position: relative; overflow: hidden; }
.btn-plane { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); opacity: 0; }
.btn.is-sending .btn-plane { animation: plane 1.1s var(--ease) forwards; }
@keyframes plane { 0% { opacity: 0; transform: translate(-16px, 10px) rotate(-10deg); } 20% { opacity: 1; } 100% { opacity: 0; transform: translate(60px, -46px) rotate(8deg); } }
.form.is-sent > .form-row, .form.is-sent > .field, .form.is-sent > .form-toggle, .form.is-sent > #form-submit-btn, .form.is-sent > .form-rgpd { display: none; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 40px 24px; color: var(--amber); }
.form-success.is-visible { display: flex; animation: sc-in .5s var(--ease) both; }
.form-success strong { font-size: 1.2rem; color: var(--text); margin-top: 8px; }
.form-success span { color: var(--text-2); font-size: 0.97rem; }
.done-circle { stroke-dasharray: 160; stroke-dashoffset: 160; animation: sc-tick .7s ease-out .1s forwards; }
.done-tick { stroke-dasharray: 40; stroke-dashoffset: 40; animation: sc-tick .45s ease-out .7s forwards; }
.form-success .done-circle, .form-success .done-tick { stroke-dasharray: 160; }
.form-success .done-tick { stroke-dasharray: 40; }

@media (prefers-reduced-motion: reduce) {
  .sc-type { width: 7.6em; } .sc-result, .sc-notif { opacity: 1; transform: none; } .sc-caret, .sc-dot, .sc-hand, .offer.is-featured::before { animation: none !important; }
  .sc-tick, .done-circle, .done-tick { stroke-dashoffset: 0; animation: none !important; }
  .track-line::after { transform: none; animation: none !important; } .step-num { color: var(--amber); border-color: var(--amber); }
}


/* ===== La note Google (variante C) ===== */
.gg { max-width: 880px; margin: 0 auto; display: grid; gap: 48px; align-items: center; }
@media (min-width: 820px) { .gg { grid-template-columns: auto 1fr; gap: 72px; } }
.gg-gauge { position: relative; width: 230px; margin: 0 auto; text-align: center; }
.gg-gauge svg { display: block; }
#ggArc { transition: stroke 200ms linear; }
.gg-center { position: absolute; top: 0; left: 0; width: 230px; height: 230px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.gg-center b { font-family: var(--font-title); font-weight: 700; font-size: 3.4rem; line-height: 1; color: #ef6b6b; letter-spacing: -.02em; }
.gg-center span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); letter-spacing: .08em; }
.gg-caption { display: block; margin-top: 14px; font-size: 0.9rem; font-weight: 600; color: var(--text); line-height: 1.5; }
.gg-caption small { font-weight: 400; font-size: 0.78rem; color: var(--text-3); }
.gg-list ul { display: grid; gap: 10px; }
.gg-item { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; transition: border-color 300ms; }
.gg-item.is-fixed { border-color: rgba(52,211,153,.35); }
.gg-ico { position: relative; width: 24px; height: 24px; flex: none; }
.gg-ico i { position: absolute; inset: 0; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-size: 0.7rem; transition: opacity 250ms, transform 350ms var(--ease); }
.gg-x { background: rgba(239,107,107,.14); color: #ef6b6b; }
.gg-v { background: #34d399; color: #06281c; opacity: 0; transform: scale(.4) rotate(-30deg); }
.gg-item.is-fixed .gg-x { opacity: 0; transform: scale(.4); }
.gg-item.is-fixed .gg-v { opacity: 1; transform: none; }
.gg-txt { position: relative; display: grid; min-height: 1.5em; flex: 1; }
.gg-txt em, .gg-txt strong { grid-area: 1 / 1; font-style: normal; font-size: 0.95rem; transition: opacity 300ms, transform 300ms var(--ease); }
.gg-txt em { color: var(--text-3); }
.gg-txt strong { color: var(--text); font-weight: 600; opacity: 0; transform: translateY(8px); }
.gg-item.is-fixed em { opacity: 0; transform: translateY(-8px); text-decoration: line-through; }
.gg-item.is-fixed strong { opacity: 1; transform: none; }
.gg-note { margin-top: 18px; font-size: 0.88rem; color: var(--text-3); }
.gg-note b { color: #34d399; font-family: var(--font-mono); font-weight: 500; }
@media (prefers-reduced-motion: reduce) { .gg-ico i, .gg-txt em, .gg-txt strong, .gg-item { transition: none !important; } }

/* Portfolio */
.work { display: grid; gap: 24px; }
@media (min-width: 760px) { .work { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.work-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.work-shot { aspect-ratio: 32 / 15; overflow: hidden; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.work-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 200ms var(--ease); }
.work-card:hover .work-shot img { transform: scale(1.02); }
.work-body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-cat { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.work-card h3 { font-size: 1.2rem; }
.work-result { font-size: 0.97rem; display: flex; gap: 10px; align-items: flex-start; }
.work-result svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--amber); }
.work-body .link-arrow { margin-top: auto; padding-top: 10px; font-size: 0.95rem; }

/* Testimonials */
.quotes { display: grid; gap: 20px; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.quote { display: flex; flex-direction: column; gap: 20px; }
.quote-mark { font-family: var(--font-title); font-size: 3rem; line-height: 0.6; color: var(--amber); margin-top: 8px; }
.quote blockquote { font-size: 1.02rem; color: var(--text); flex: 1; }
.quote footer { font-size: 0.9rem; color: var(--text-2); }
.quote footer strong { display: block; color: var(--text); }

/* About */
.about { display: grid; gap: 40px; align-items: center; }
@media (min-width: 860px) { .about { grid-template-columns: 5fr 7fr; gap: 72px; } }
.about-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 5; max-width: 420px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: var(--surface); color: var(--text-3); border: 1px dashed var(--border-strong); border-radius: var(--radius); }
.about-placeholder small { font-size: 0.8rem; }
.about-text p { font-size: 1.1rem; margin-bottom: 20px; }
.about-text .badge-hostinger { margin-top: 8px; }

/* Process */
.steps { display: grid; gap: 20px; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.step { padding: 28px; }
.step-num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--amber); letter-spacing: 0.1em; margin-bottom: 16px; display: block; }
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: 0.97rem; }

/* Contact */
.contact { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact { grid-template-columns: 5fr 7fr; gap: 80px; } }
.contact-info { display: grid; gap: 28px; align-content: start; }
.contact-info h2 { margin-bottom: 4px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line svg { width: 20px; height: 20px; color: var(--amber); flex: none; margin-top: 4px; }
.contact-line span { display: block; font-size: 0.8rem; color: var(--text-3); font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.contact-line a, .contact-line strong { font-size: 1.05rem; color: var(--text); font-weight: 500; transition: color 150ms; }
.contact-line a:hover { color: var(--amber); }
.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.field label small { color: var(--text-3); font-weight: 400; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text); background: var(--surface);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 14px 16px;
  transition: border-color 150ms;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); }
.field textarea { min-height: 140px; resize: vertical; }
.field-error { display: none; font-size: 0.85rem; color: #ff8a80; }
.field.has-error input, .field.has-error textarea { border-color: #ff8a80; }
.field.has-error .field-error { display: block; }
.form-toggle { background: none; border: none; color: var(--text-2); font: inherit; font-size: 0.92rem; cursor: pointer; text-align: left; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.form-toggle:hover { color: var(--text); }
.form-rgpd { font-size: 0.85rem; color: var(--text-3); }
.form-rgpd a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 64px 0 32px; position: relative; overflow: hidden; }
.footer .container { position: relative; }
.footer::before {
  content: "WEBDEV-STUDIO";
  position: absolute; bottom: -0.12em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-title); font-size: 14vw; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none; user-select: none;
}
.footer-grid { display: grid; gap: 40px; margin-bottom: 48px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; } }
.footer-brand img { height: 44px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.97rem; max-width: 320px; margin-bottom: 20px; }
.footer .footer-h { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { font-size: 0.97rem; color: var(--text-2); transition: color 150ms; }
.footer ul a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between; font-size: 0.85rem; color: var(--text-3); }
.footer-bottom .socials { display: flex; gap: 16px; }
.footer-bottom .socials a { color: var(--text-3); transition: color 150ms; display: inline-flex; }
.footer-bottom .socials a:hover { color: var(--text); }
.footer-bottom .socials svg { width: 18px; height: 18px; }

/* Floating */
.whatsapp {
  position: fixed; right: 18px; bottom: 90px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border-strong); color: var(--text-2);
  transition: color 150ms, border-color 150ms, transform 150ms var(--ease);
}
.whatsapp:hover { color: #25D366; border-color: #25D366; transform: translateY(-2px); }
.whatsapp svg { width: 22px; height: 22px; }
@media (min-width: 900px) { .whatsapp { bottom: 24px; } }
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(100%); transition: transform 200ms var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: calc(100% - 64px); }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 300ms var(--ease), transform 300ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0ms !important; }
}

/* Liens dans le texte courant : soulignés (accessibilité) */
.legal-section a, .prose a, .form-notice a, .page p a { text-decoration: underline; text-underline-offset: 3px; }

/* ===== FAQ ===== */
.faq { max-width: 800px; display: grid; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 150ms; }
.faq-item[open], .faq-item:hover { border-color: var(--border-strong); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; cursor: pointer; list-style: none; font-family: var(--font-title); font-weight: 600; font-size: 1.05rem; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex: none; color: var(--text-3); transition: transform 200ms var(--ease); }
.faq-item[open] summary svg { transform: rotate(180deg); color: var(--amber); }
.faq-item p { padding: 0 22px 20px; font-size: 1rem; }
.about-text a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border-strong); }
.about-text a:hover { text-decoration-color: var(--amber); }

/* ===== Pages secondaires (prestations, villes) ===== */
.page-head { padding: 72px 0 56px; border-bottom: 1px solid var(--border); }
@media (min-width: 900px) { .page-head { padding: 104px 0 72px; } }
.page-head h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-head p { font-size: 1.15rem; max-width: 680px; margin-top: 16px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.85rem; color: var(--text-3); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--text); }
.group { padding: 72px 0; border-bottom: 1px solid var(--border); }
@media (min-width: 900px) { .group { padding: 96px 0; } }
.group-head { margin-bottom: 36px; max-width: 680px; }
.group-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.prose-local { max-width: 760px; display: grid; gap: 18px; }
.prose-local p { font-size: 1.05rem; }
.prose-local ul { display: grid; gap: 10px; padding-left: 0; }
.prose-local li { display: flex; gap: 12px; color: var(--text-2); }
.prose-local li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); margin-top: 11px; flex: none; }
.cta-band { padding: 80px 0; text-align: center; background: var(--bg-2); border-top: 1px solid var(--border); }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin-bottom: 32px; }
