@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: optional;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    .br-desktop { display: block; }
    @media (max-width: 960px) { .br-desktop { display: none; } }

    :root {
      --red:      #c0543a;
      --red-dark: #a34330;
      --red-soft: #f9ece9;
      --white:    #ffffff;
      --off:      #f9f4f2;
      --ink:      #302e2d;
      --stone:    #444;
      --muted:    #666;
      --border:   #ebebeb;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden;
    }

    .ico {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--red);
    }

    .ico svg { display: block; }

    .horaires-table {
      width: 100%;
      border-collapse: collapse;
    }

    .horaires-table tr { border-bottom: 1px solid var(--border); }
    .horaires-table tr:last-child { border-bottom: none; }

    .horaires-table td {
      padding: 8px 0;
      font-size: 13px;
    }

    .horaires-table td:first-child {
      font-weight: 600;
      color: var(--ink);
      width: 90px;
    }

    .horaires-table td:last-child {
      color: var(--stone);
    }

    #form-wrap,
    #form-wrap-bottom {
      scroll-margin-top: 84px;
    }

    .prog-header,
    .step.active .step-title {
      scroll-margin-top: 84px;
    }

    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 0 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-placeholder {
      height: 36px;
      width: 160px;
      background: var(--border);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--muted);
      font-family: 'Poppins', sans-serif;
      letter-spacing: 0.05em;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-tel {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--red);
      background: none;
      border: 1.5px solid var(--red);
      border-radius: 6px;
      padding: 10px 18px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .nav-tel:hover { background: var(--red-soft); }

    .nav-cta {
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 6px;
      padding: 10px 22px;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
    }

    .nav-cta:hover { background: var(--red-dark); }

    .hero {
      min-height: 100dvh;
      padding-top: 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .hero-left {
      background: var(--white);
      padding: 80px 64px 80px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .hero-left::after {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 4px;
      background: var(--red);
      border-radius: 6px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 24px;
      animation: up-slide 0.6s ease both;
    }

    h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(36px, 4vw, 58px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--ink);
      margin-bottom: 24px;
      animation: up-slide 0.6s 0.1s ease both;
    }

    h1 span { color: var(--red); }

    .hero-sub {
      font-size: 16px;
      font-weight: 300;
      color: var(--stone);
      line-height: 1.75;
      max-width: 460px;
      margin-bottom: 40px;
      animation: up-slide 0.6s 0.2s ease both;
    }

    .urgency {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--red-soft);
      border: 1.5px solid var(--red);
      border-radius: 6px;
      padding: 10px 16px;
      margin-bottom: 32px;
      width: fit-content;
      animation: up-slide 0.6s 0.3s ease both;
    }

    .sophie-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
    }

    .sophie-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sophie-name {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--red-dark);
      line-height: 1.2;
    }

    .sophie-sub {
      font-size: 12px;
      color: var(--red-dark);
      font-weight: 400;
      line-height: 1.3;
    }

    .pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      animation: up 0.6s 0.35s ease both;
    }

    .pill {
      padding: 7px 14px;
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--stone);
      background: var(--off);
    }

    .hero-right {
      background: var(--off);
      border-left: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 64px;
      animation: left 0.7s 0.2s ease both;
    }

    .form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 40px 36px;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
      scroll-margin-top: 84px;
      scroll-margin-bottom: 24px;
    }

    .prog-header { margin-bottom: 28px; }

    .prog-label {
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }

    .prog-track {
      height: 3px;
      background: var(--border);
      border-radius: 6px;
      overflow: hidden;
    }

    .prog-fill {
      height: 100%;
      background: var(--red);
      border-radius: 6px;
      transition: width 0.4s ease;
    }

    .prog-dots {
      display: flex;
      gap: 6px;
      margin-top: 8px;
    }

    .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--border);
      transition: background 0.3s;
    }

    .dot.active { background: var(--red); }
    .dot.done   { background: var(--red-dark); }

    .step { display: none; animation: up 0.3s ease both; }
    .step.active { display: block; }

    .step-title {
      font-family: 'Poppins', sans-serif;
      font-size: 19px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .step-sub {
      font-size: 13.5px;
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .step-error {
      display: none;
      font-size: 12.5px;
      color: var(--red);
      font-weight: 600;
      margin-bottom: 14px;
    }

    .step-error.visible { display: block; }

    .choices {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 20px;
    }

    .choice {
      padding: 14px 12px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      cursor: pointer;
      text-align: center;
      background: var(--white);
      transition: border-color 0.2s, background 0.2s;
    }

    .choice:hover { border-color: var(--red); }
    .choice.selected { border-color: var(--red); background: var(--red-soft); }

    .choice-icon { font-size: 20px; margin-bottom: 8px; display: flex; justify-content: center; align-items: center; }
    .choice-label { font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }

    .field { margin-bottom: 14px; }

    label {
      display: block;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 6px;
    }

    input {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      color: var(--ink);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    input:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(192,84,58,0.1);
    }

    input.error { border-color: #d94040; }

    .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

    .hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
    }

    .btn-next {
      width: 100%;
      padding: 14px;
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 4px;
    }

    .btn-next:hover { background: var(--red-dark); transform: translateY(-1px); }

    .btn-back {
      background: none;
      border: none;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: var(--muted);
      cursor: pointer;
      margin-top: 10px;
      padding: 4px 0;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.2s;
    }

    .btn-back:hover { color: var(--ink); }

    .legal {
      font-size: 11px;
      color: #767676;
      text-align: center;
      margin-top: 14px;
      line-height: 1.5;
    }

    .success { display: none; text-align: center; }
    .success.show { display: block; animation: up 0.4s ease both; }

    .success-ring {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--red-soft);
      border: 2px solid var(--red);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      margin: 0 auto 20px;
    }

    .success h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .success p { font-size: 14px; color: var(--muted); line-height: 1.6; }

    .success-recap {
      margin-top: 20px;
      padding: 14px 16px;
      background: var(--red-soft);
      border: 1px solid rgba(192,84,58,0.2);
      border-radius: 6px;
      font-size: 13px;
      color: var(--stone);
      text-align: left;
      line-height: 1.7;
    }

    .be-photo-wrap {
      margin-bottom: 40px;
    }

    .be-photo {
      width: 100%;
      height: 574px;
      object-fit: cover;
      border-radius: 6px;
      filter: brightness(0.88) contrast(1.05);
    }
    @media (max-width: 960px) {
      .be-photo {
        height: auto;
        object-fit: contain;
      }
    }

    .be-photo-placeholder {
      width: 100%;
      height: 220px;
      background: var(--off);
      border: 2px dashed var(--border);
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .be-initials {
      display: flex;
      gap: 12px;
    }

    .be-initials span {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .be-caption {
      font-size: 13px;
      color: var(--muted);
      text-align: center;
    }

    .pulse {
      width: 10px; height: 10px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 1.4s infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(192,84,58,0.5); }
      50%      { box-shadow: 0 0 0 7px rgba(192,84,58,0); }
    }

    .stats {
      background: var(--red-dark);
      display: flex;
      justify-content: center;
    }

    .stat {
      flex: 1;
      max-width: 260px;
      text-align: center;
      padding: 32px 16px;
      border-right: 1px solid rgba(255,255,255,0.15);
    }

    .stat:last-child { border-right: none; }

    .stat-n {
      font-family: 'Poppins', sans-serif;
      font-size: 42px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .stat-l { font-size: 12px; color: rgba(255,255,255,0.9); margin-top: 4px; }

    .section {
      padding: 96px 80px;
      max-width: 1160px;
      margin: 0 auto;
    }

    .tag {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--red-dark);
      margin-bottom: 12px;
    }

    .section-h {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(22px, 2.5vw, 36px);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 56px;
      max-width: 520px;
    }

    .section-h-wrap {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 56px;
    }
    .section-h-wrap svg {

      margin-top: calc((clamp(26px, 3vw, 42px) * 1.25 - 36px) / 2);
    }
    .section-h-wrap .section-h {
      margin-bottom: 0;
      max-width: none;
      white-space: nowrap;
    }
    .section-h-nowrap {
      max-width: none;
      white-space: nowrap;
    }
    @media (max-width: 960px) {
      .section-h-wrap .section-h { white-space: normal; }
      .section-h-nowrap { white-space: normal; }
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }

    .step-card {
      background: var(--white);
      padding: 40px 32px;
    }

    .step-n {
      font-family: 'Poppins', sans-serif;
      font-size: 52px;
      font-weight: 800;
      color: #c87967;
      line-height: 1;
      margin-bottom: -6px;
    }

    .step-ico { font-size: 24px; margin-bottom: 12px; display: block; }
    .step-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; font-family: 'Poppins', sans-serif; }
    .step-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

    .why {
      background: var(--red-dark);
      padding: 96px 80px;
    }

    .why-top {
      max-width: 1160px;
      margin: 0 auto 48px;
    }
    .why-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: stretch;
    }

    .why .tag { color: var(--white); }
    .why .section-h { color: var(--white); margin-bottom: 0; }

    .why-items { display: flex; flex-direction: column; gap: 16px; justify-content: space-between; }

    .why-item {
      display: flex;
      gap: 14px;
      padding: 18px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 6px;
    }

    .why-ico { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
    .why-item h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
    .why-item p  { font-size: 13px; color: var(--white); line-height: 1.6; }

    .results-card {
      background: var(--white);
      border-radius: 6px;
      padding: 32px;
    }
    .results-eye {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--red-dark);
      font-weight: 700;
      margin-bottom: 20px;
    }
    .results-list { display: flex; flex-direction: column; }
    .result-item {
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .result-item--last { border-bottom: none; padding-bottom: 0; }
    .result-info { margin-bottom: 8px; }
    .result-tag {
      display: block;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 2px;
    }
    .result-spec { font-size: 11.5px; color: var(--muted); }
    .result-date { color: var(--muted); }
    .result-nums {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .result-lbl { font-size: 10.5px; color: var(--muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
    .result-rate-val {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
    }
    .result-sep { font-size: 14px; color: var(--border); flex-shrink: 0; }
    .result-eco {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--red);
      line-height: 1;
    }
    .results-note {
      font-size: 11px;
      color: var(--muted);
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      line-height: 1.5;
    }

    .rate-card {
      background: var(--white);
      border-radius: 6px;
      padding: 40px;
    }

    .rate-top { text-align: center; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
    .rate-eye { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; font-weight: 700; }

    .rate-big {
      font-family: 'Poppins', sans-serif;
      font-size: 72px;
      font-weight: 800;
      color: var(--ink);
      line-height: 1;
    }

    .rate-big sup { font-size: 30px; vertical-align: super; }
    .rate-sub2 { font-size: 12px; color: var(--muted); margin-top: 4px; }

    .rate-rows { display: flex; flex-direction: column; gap: 12px; }
    .rate-row { display: flex; align-items: center; gap: 10px; }
    .rate-lbl { font-size: 12px; color: var(--muted); width: 50px; }
    .rate-track { flex: 1; height: 4px; background: var(--border); border-radius: 6px; }
    .rate-bar { height: 100%; background: var(--red); border-radius: 6px; }
    .rate-val { font-size: 12px; color: var(--stone); width: 36px; text-align: right; font-weight: 600; }

    .inclus-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .inclus-col { border-radius: 6px; padding: 32px; }
    .inclus-yes { background: var(--off); border: 1px solid var(--border); }
    .inclus-info { background: var(--red-soft); border: 1.5px solid rgba(192,84,58,0.25); }

    .inclus-head { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }

    .inclus-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }

    .inclus-list li {
      font-size: 14px; color: var(--stone); line-height: 1.5;
      padding-left: 20px; position: relative;
    }

    .inclus-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

    .inclus-p { font-size: 14px; color: var(--stone); line-height: 1.7; margin-bottom: 16px; }

    .inclus-badge {
      font-size: 12px; color: var(--red-dark); font-weight: 600;
      background: rgba(192,84,58,0.08);
      border: 1px solid rgba(192,84,58,0.2);
      border-radius: 6px; padding: 10px 12px; line-height: 1.5;
    }

    .pourwho { background: var(--off); padding: 96px 80px; }

    .pourwho-inner { max-width: 1160px; margin: 0 auto; }

    .pourwho-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }

    .pourwho-col { border-radius: 6px; padding: 32px; }
    .pourwho-yes { background: var(--white); border: 1.5px solid var(--red); }
    .pourwho-no  { background: var(--white); border: 1px solid var(--border); }

    .pourwho-head { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
    .pourwho-yes .pourwho-head { color: var(--red); }
    .pourwho-no  .pourwho-head { color: var(--muted); }

    .pourwho-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

    .pourwho-yes .pourwho-list li {
      font-size: 14px; color: var(--stone); line-height: 1.5;
      padding-left: 20px; position: relative;
    }

    .pourwho-yes .pourwho-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

    .pourwho-no .pourwho-list li {
      font-size: 14px; color: var(--muted); line-height: 1.5;
      padding-left: 20px; position: relative;
    }

    .pourwho-no .pourwho-list li::before { content: '✗'; position: absolute; left: 0; color: #ccc; }

    .testis { padding: 96px 80px; max-width: 1160px; margin: 0 auto; }

    .testi-scroll-wrap {
      position: relative;
    }
    .testi-scroll-wrap::before,
    .testi-scroll-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      width: 60px;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .testi-scroll-wrap::before {
      left: 0;
      background: linear-gradient(to left, transparent, var(--white));
    }
    .testi-scroll-wrap::after {
      right: 0;
      background: linear-gradient(to right, transparent, var(--white));
    }
    .testi-scroll-wrap.fade-left::before  { opacity: 1; }
    .testi-scroll-wrap.fade-right::after  { opacity: 1; }

    .testi-arrow {
      display: none;
    }
    @media (min-width: 961px) {
      .testi-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1.5px solid var(--border);
        background: var(--white);
        color: var(--ink);
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
      }
      .testi-arrow:hover {
        border-color: var(--red-dark);
        color: var(--red-dark);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      }
      .testi-prev { left: -20px; }
      .testi-next { right: -20px; }
    }

    .testi-grid {
      display: flex;
      gap: 16px;
      margin-top: 52px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 12px;
      scrollbar-width: none;
    }
    .testi-grid::-webkit-scrollbar { display: none; }

    .testi {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 28px;
      flex: 0 0 320px;
      scroll-snap-align: start;
    }
    @media (max-width: 960px) {
      .testi { flex: 0 0 75vw; }
    }
    @media (max-width: 600px) {
      .testi { flex: 0 0 78vw; }
    }

    .stars { color: var(--red); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
    .google-badge { font-size: 10.5px; color: var(--muted); margin-bottom: 12px; }

    .testi-q {
      font-size: 14.5px;
      font-style: italic;
      color: var(--stone);
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .testi-meta { display: flex; align-items: center; gap: 10px; }

    .av {
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 12px; color: #fff;
      flex-shrink: 0;
    }

    .av-name { font-size: 13px; font-weight: 700; color: var(--ink); }
    .av-detail { font-size: 11.5px; color: var(--muted); }

    .faq-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      font-size: 13px;
      font-weight: 600;
      color: var(--red-dark);
      background: rgba(163,67,48,0.07);
      border: 1px solid rgba(163,67,48,0.18);
      border-radius: 6px;
      padding: 11px 16px;
    }
    .faq-cta-ico { flex-shrink: 0; display: flex; align-items: center; }
    .faq-cta-tel { color: var(--red-dark); font-weight: 700; text-decoration: none; }
    .faq-cta-tel:hover { text-decoration: underline; }

    .faq-list {
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }

    .faq-item { border-bottom: 1px solid var(--border); background: var(--white); }
    .faq-item:last-child { border-bottom: none; }

    .faq-q {
      width: 100%;
      text-align: left;
      padding: 20px 24px;
      background: none;
      border: none;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: background 0.2s;
    }

    .faq-q:hover { background: var(--off); }
    .faq-q.open { color: var(--red); }

    .faq-arr { font-size: 16px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
    .faq-q.open .faq-arr { transform: rotate(180deg); color: var(--red); }

    .faq-a {
      display: none;
      padding: 0 24px 20px;
      font-size: 14.5px;
      color: var(--muted);
      line-height: 1.75;
    }

    .faq-a.open { display: block; }

    .assur {
      background: var(--ink);
      padding: 96px 80px;
    }
    .assur-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .assur-tag { color: rgba(255,255,255,0.88); background: none; border-color: transparent; }
    .assur-h   { color: var(--white); margin-bottom: 16px; }

    .assur-sub {
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .assur-args {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .assur-arg {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .assur-arg-ico {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      margin-top: 2px;
    }
    .assur-arg div { display: flex; flex-direction: column; gap: 2px; }
    .assur-arg strong { font-size: 14px; font-weight: 700; color: var(--white); }
    .assur-arg span   { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.5; }

    .assur-card {
      background: var(--white);
      border-radius: 8px;
      padding: 36px 32px;
      box-shadow: 0 16px 60px rgba(0,0,0,0.25);
    }
    .assur-card-head  { margin-bottom: 24px; }
    .assur-card-title { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
    .assur-card-sub   { font-size: 13px; color: var(--muted); margin: 0; }

    .assur-prog { margin-bottom: 24px; }
    .assur-prog-label {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--red);
      margin-bottom: 8px;
    }

    .assur-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 16px;
    }
    .assur-field { display: flex; flex-direction: column; gap: 6px; }
    .assur-label { font-size: 12px; font-weight: 600; color: var(--stone); }

    @media (max-width: 1100px) {
      .assur-inner { grid-template-columns: 1fr; gap: 52px; }
      .assur { padding: 64px 80px; }
    }
    @media (max-width: 960px) {
      .assur { padding: 64px 24px; }
      .assur-inner { gap: 40px; }
    }
    @media (max-width: 540px) {
      .assur-row { grid-template-columns: 1fr; }
    }

    .section-form {
      background: var(--off);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 96px 80px;
    }

    .section-form-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .section-form-h {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 16px;
    }

    .section-form-sub {
      font-size: 15px;
      font-weight: 300;
      color: var(--stone);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .mini-trust {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .mini-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--stone);
      white-space: nowrap;
    }

    .form-card-bottom {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 36px 32px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
      scroll-margin-top: 84px;
      scroll-margin-bottom: 24px;
    }

    @media (max-width: 960px) {
      .section-form { padding: 64px 24px; }
      .section-form-inner { grid-template-columns: 1fr; gap: 40px; }
    }

    .cta-band {
      background: var(--red-dark);
      padding: 80px;
      text-align: center;
    }

    .cta-band h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(26px, 3.5vw, 46px);
      font-weight: 700;
      line-height: 1.25;
      color: var(--white);
      margin-bottom: 12px;
    }

    .cta-band p { font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 32px; }

    .cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 40px;
      background: var(--white);
      color: var(--red);
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }

    .cta-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

    footer {
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 36px 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .footer-horaires {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
    }

    .footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
    }

    .horaires-table td { color: var(--stone); }
    .horaires-table td:first-child { color: var(--ink); }
    .horaires-table tr { border-bottom-color: var(--border); }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .footer-brand small {
      display: block;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 400;
      color: var(--muted);
      margin-top: 2px;
      width: 100%;
      text-align: justify;
      text-align-last: justify;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .footer-brand small .sep {
      color: var(--red);
      font-size: 8px;
      vertical-align: middle;
      margin: 0 4px;
    }

    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; }
    .footer-links a:hover { color: var(--ink); }

    .footer-tel {
      font-size: 15px;
      font-weight: 700;
      color: var(--ink);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }

    .footer-tel:hover { color: var(--red); }

    @keyframes up {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes up-slide {
      from { transform: translateY(20px); }
      to   { transform: translateY(0); }
    }

    @keyframes left {
      from { opacity: 0; transform: translateX(24px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    @media (max-width: 960px) {
      nav { padding: 0 16px; }
      .nav-right { gap: 8px; }
      .nav-tel-text { display: none; }
      .nav-tel { width: 38px; height: 38px; padding: 0; justify-content: center; }
      .nav-tel .ico svg { width: 18px; height: 18px; }
      .nav-cta { height: 38px; padding: 0 16px; display: inline-flex; align-items: center; font-size: 13px; }
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 52px 24px 40px; }
      .hero-right { padding: 32px 24px 52px; border-left: none; border-top: 1px solid var(--border); }
      .section, .why, .pourwho, .testis, .cta-band { padding: 64px 24px; }
      .steps, .inclus-grid, .pourwho-grid { grid-template-columns: 1fr; }
      .why-inner { grid-template-columns: 1fr; gap: 40px; }
      .stats { flex-wrap: wrap; }
      .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        min-width: 50%;
      }
      .stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.15); }
      .stat:nth-last-child(-n+2) { border-bottom: none; }
      footer { flex-direction: column; gap: 16px; padding: 32px 24px; text-align: center; }
      .footer-brand { align-items: center; }
      .footer-brand small { display: none; }
      .footer-right { align-items: center; }
      .footer-links { flex-direction: column; align-items: center; gap: 10px; }
    }

    @media (max-width: 960px) {
      .nav-tel-text { display: none; }
    }

    .cookie-banner[hidden] {
      display: none !important;
    }

    .cookie-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9999;
      background: var(--white);
      border-top: 3px solid var(--red-dark);
      padding: 18px 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
      flex-wrap: wrap;
    }
    .cookie-banner p {
      font-size: 13.5px;
      color: var(--stone);
      line-height: 1.55;
      margin: 0;
      flex: 1;
      min-width: 240px;
    }
    .cookie-banner a { color: var(--red-dark); font-weight: 600; }
    .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-btn-refuse {
      padding: 10px 22px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      background: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--stone);
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .cookie-btn-refuse:hover { border-color: var(--stone); color: var(--ink); }
    .cookie-btn-accept {
      padding: 10px 22px;
      border: none;
      border-radius: 6px;
      background: var(--red-dark);
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .cookie-btn-accept:hover { background: var(--red); }
    @media (max-width: 960px) {
      .cookie-banner { padding: 16px 20px; }
      .cookie-actions { width: 100%; justify-content: flex-end; }
    }
