    :root {
      --navy: #062b5f;
      --navy-2: #0b3f82;
      --cyan: #0ea5e9;
      --cyan-2: #38bdf8;
      --cyan-soft: #e8f7ff;
      --red-call: #e11d2e;
      --red-call-dark: #b91c1c;
      --blue-dark: var(--navy);
      --blue: var(--cyan);
      --blue-soft: var(--cyan-soft);
      --blue-border: #b9e7fb;
      --orange: var(--red-call);
      --orange-dark: var(--red-call-dark);
      --green: #1e9e57;
      --red: #d83b2d;
      --grey-bg: #f6f8fa;
      --grey: #637083;
      --grey-dark: #344054;
      --text: #1d2939;
      --white: #ffffff;
      --border: #e4e7ec;
      --shadow: 0 12px 32px rgba(16, 24, 40, 0.10);
      --shadow-soft: 0 8px 22px rgba(16, 24, 40, 0.07);
      --radius: 16px;
      --radius-lg: 24px;
      --container: 1180px;
      --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    }

    *, *::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);
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 0;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 86px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--blue);
      font-family: var(--font-heading);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      border-radius: 10px;
      background: var(--orange);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-heading);
      line-height: 1.12;
      color: var(--text);
    }

    h1 {
      font-size: clamp(2.45rem, 5vw, 4.75rem);
      font-weight: 900;
      letter-spacing: -0.055em;
      margin-bottom: 20px;
    }

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

    h2 {
      font-size: clamp(2rem, 3.6vw, 3.05rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }

    h2 span {
      color: var(--blue);
    }

    h3 {
      font-size: 1.22rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    p {
      color: var(--grey-dark);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 38px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-head.center .eyebrow {
      justify-content: center;
    }

    .section-subtitle {
      font-size: 1.06rem;
      color: var(--grey);
      max-width: 720px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 999px;
      padding: 15px 24px;
      font-family: var(--font-heading);
      font-weight: 850;
      font-size: 1rem;
      cursor: pointer;
      transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-call {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(242, 140, 40, 0.32);
      animation: pulse-call 2s ease-in-out infinite;
    }

    @keyframes pulse-call {
      0%, 100% { box-shadow: 0 10px 24px rgba(242, 140, 40, 0.32); }
      50% { box-shadow: 0 10px 32px rgba(242, 140, 40, 0.65), 0 0 0 6px rgba(242, 140, 40, 0.15); }
    }

   
    .btn-blue {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(30, 115, 190, 0.26);
    }

    .btn-blue:hover {
      background: var(--blue-dark);
    }

    .btn-light {
      background: var(--white);
      color: var(--blue-dark);
      border: 1px solid var(--blue-border);
    }

    .btn-light:hover {
      border-color: var(--blue);
      box-shadow: var(--shadow-soft);
    }

    .btn-outline {
      background: transparent;
      color: var(--blue-dark);
      border: 1px solid var(--blue-border);
    }

    .btn-outline:hover {
      border-color: var(--blue);
      background: var(--blue-soft);
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .phone-inline {
      font-family: var(--font-heading);
      font-weight: 900;
      color: var(--blue-dark);
    }

    /* TOP URGENCY BAR */
    .topbar {
      background: var(--blue-dark);
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .topbar-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #31d17c;
      box-shadow: 0 0 0 5px rgba(49, 209, 124, 0.18);
    }

    .topbar a {
      color: var(--white);
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* HEADER */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 4px 16px rgba(16, 24, 40, 0.04);
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: nowrap;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1 1 auto;
      min-width: 0;
      text-decoration: none;
    }

    .logo-text { min-width: 0; }

    .logo-mark {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--blue-dark);
      color: var(--white);
      display: grid;
      place-items: center;
      font-family: var(--font-heading);
      font-weight: 900;
      letter-spacing: -0.04em;
      box-shadow: 0 8px 18px rgba(18, 59, 99, 0.22);
      flex-shrink: 0;
    }

    .logo-text strong {
      display: block;
      font-family: var(--font-heading);
      color: var(--blue-dark);
      font-size: clamp(0.98rem, 3.4vw, 1.08rem);
      font-weight: 900;
      line-height: 1.05;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }

    .logo-text span {
      display: block;
      color: var(--grey);
      font-size: 0.78rem;
      margin-top: 4px;
      font-weight: 700;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      list-style: none;
    }

    .nav-links a {
      color: var(--grey-dark);
      font-family: var(--font-heading);
      font-size: 0.93rem;
      font-weight: 800;
    }

    .nav-links a:hover {
      color: var(--blue);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .header-actions > * { flex-shrink: 0; }


    .lang-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 42px;
      height: 42px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(14, 165, 233, 0.28);
      background: #f4fbff;
      color: var(--navy);
      font-family: var(--font-heading);
      font-weight: 900;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
    }

    .lang-btn:hover {
      background: var(--cyan-soft);
      border-color: var(--cyan);
      transform: translateY(-1px);
    }

    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      color: var(--blue-dark);
      font-size: 1.35rem;
      font-weight: 900;
      cursor: pointer;
    }

    /* HERO */
    .hero {
      background:
        linear-gradient(90deg, rgba(234, 244, 255, 0.95), rgba(255, 255, 255, 0.92)),
     
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -110px;
      bottom: -120px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(30, 115, 190, 0.10);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 52px;
      align-items: center;
    }

    .urgent-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 13px;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid var(--blue-border);
      color: var(--blue-dark);
      font-weight: 900;
      font-family: var(--font-heading);
      margin-bottom: 18px;
      box-shadow: var(--shadow-soft);
    }

    .hero-lead {
      font-size: 1.16rem;
      max-width: 650px;
      color: var(--grey-dark);
      margin-bottom: 24px;
    }

    .hero-trust {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin: 26px 0 30px;
      max-width: 620px;
    }

    .trust-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 14px;
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--grey-dark);
      font-weight: 750;
      box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
    }

    .check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(30, 158, 87, 0.12);
      color: var(--green);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .hero-note {
      margin-top: 14px;
      color: var(--grey);
      font-size: 0.94rem;
    }

    .hero-photo-card {
      position: relative;
      background: var(--white);
      border: 10px solid var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-photo {
      aspect-ratio: 4 / 4.15;
      object-fit: cover;
      width: 100%;
      background: var(--blue-soft);
    }

    .photo-placeholder {
      min-height: 520px;
      background:
        linear-gradient(rgba(18, 59, 99, 0.10), rgba(18, 59, 99, 0.12)),
        url("/images/technicien.webp") center/cover no-repeat;
    }

    .hero-card-badge {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      background: rgba(255, 255, 255, 0.96);
      border-radius: 18px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 10px 28px rgba(16, 24, 40, 0.16);
    }

    .badge-icon {
      width: 52px;
      height: 52px;
      border-radius: 15px;
      background: var(--orange);
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 1.55rem;
      flex: 0 0 auto;
    }

    .hero-card-badge strong {
      display: block;
      font-family: var(--font-heading);
      font-weight: 900;
      color: var(--blue-dark);
    }

    .hero-card-badge span {
      display: block;
      color: var(--grey);
      font-size: 0.9rem;
      margin-top: 2px;
    }

    .hero-mini-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 42px;
      position: relative;
      z-index: 2;
    }

    .mini-stat {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
    }

    .mini-stat strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.4rem;
      line-height: 1;
      font-weight: 900;
      color: var(--blue-dark);
      margin-bottom: 6px;
    }

    .mini-stat span {
      color: var(--grey);
      font-weight: 700;
      font-size: 0.92rem;
    }

    /* URGENT STRIP */
    .urgent-strip {
      background: var(--orange);
      color: var(--white);
      padding: 20px 0;
    }

    .urgent-strip-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 22px;
    }

    .urgent-strip strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.24rem;
      font-weight: 900;
      line-height: 1.2;
    }

    .urgent-strip span {
      display: block;
      opacity: 0.95;
      margin-top: 4px;
    }

    .urgent-strip .btn {
      background: var(--white);
      color: var(--orange-dark);
      box-shadow: none;
      min-width: max-content;
    }

    /* SERVICES */
    .services {
      background: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 8px 20px rgba(16, 24, 40, 0.04);
      transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      border-color: var(--blue-border);
      box-shadow: var(--shadow-soft);
    }

    .service-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--blue-soft);
      color: var(--blue);
      font-size: 1.65rem;
      margin-bottom: 16px;
    }

    .service-card p {
      margin-bottom: 18px;
      color: var(--grey-dark);
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--blue);
      font-family: var(--font-heading);
      font-weight: 900;
    }

    .service-link:hover {
      color: var(--orange-dark);
    }

    /* LOCAL URGENCY */
    .local-section {
      background: var(--grey-bg);
    }

    .local-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 44px;
      align-items: center;
    }

    .photo-box {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 8px solid var(--white);
      background: var(--white);
    }

    .photo-box div {
      min-height: 430px;
      background: url("/images/tuyaux.webp") center/cover no-repeat;
    }

    .text-list {
      display: grid;
      gap: 12px;
      margin: 24px 0;
    }

    .text-list li {
      list-style: none;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--grey-dark);
      font-weight: 650;
    }

    /* WHY */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .why-card {
      background: var(--blue-soft);
      border: 1px solid var(--blue-border);
      border-radius: var(--radius);
      padding: 24px;
    }

    .why-card .why-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--white);
      color: var(--orange);
      font-size: 1.45rem;
      margin-bottom: 14px;
    }

    /* ZONES */
    .zones {
      background: var(--white);
    }

    .zones-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: start;
    }

    .zone-panel {
      background: var(--grey-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 30px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 13px;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--grey-dark);
      font-weight: 750;
      font-size: 0.92rem;
    }

    a.chip {
      transition: border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
    }

    a.chip:hover {
      border-color: var(--blue-border);
      color: var(--blue-dark);
      box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
    }

    .chip::before {
      content: "📍";
      font-size: 0.96rem;
    }

    /* PROCESS */
    .process {
      background: var(--blue-dark);
      color: var(--white);
    }

    .process h2,
    .process h3,
    .process p,
    .process .section-subtitle {
      color: var(--white);
    }

    .process .section-subtitle,
    .process p {
      opacity: 0.86;
    }

    .process .eyebrow {
      color: var(--white);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .step-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      padding: 24px;
    }

    .step-number {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--orange);
      display: grid;
      place-items: center;
      font-family: var(--font-heading);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 18px;
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--grey-bg);
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testimonial {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .stars {
      color: #f5a623;
      font-size: 1.08rem;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    .testimonial blockquote {
      color: var(--grey-dark);
      margin-bottom: 18px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--blue-dark);
      color: var(--white);
      display: grid;
      place-items: center;
      font-family: var(--font-heading);
      font-weight: 900;
    }

    .testimonial-author strong {
      display: block;
      font-family: var(--font-heading);
      color: var(--text);
    }

    .testimonial-author span {
      color: var(--grey);
      font-size: 0.9rem;
    }

    /* QUOTE */
    .quote {
      background: var(--white);
    }

    .quote-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 38px;
      align-items: start;
    }

    .quote-info {
      background: var(--blue-soft);
      border: 1px solid var(--blue-border);
      border-radius: var(--radius-lg);
      padding: 30px;
    }

    .quote-info h3 {
      color: var(--blue-dark);
      margin-bottom: 16px;
    }

    .quote-form {
      background: var(--grey-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow-soft);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    label {
      display: block;
      margin-bottom: 7px;
      font-family: var(--font-heading);
      font-size: 0.9rem;
      font-weight: 850;
      color: var(--grey-dark);
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 13px;
      background: var(--white);
      color: var(--text);
      padding: 13px 14px;
      outline: none;
      transition: border-color 0.16s ease, box-shadow 0.16s ease;
    }

    textarea {
      min-height: 108px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(30, 115, 190, 0.12);
    }

    .form-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 20px;
    }

    .form-note {
      color: var(--grey);
      font-size: 0.9rem;
      margin-top: 12px;
    }

    .estimate-box {
      display: none;
      margin-top: 20px;
      padding: 18px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid var(--blue-border);
    }

    .estimate-box.show {
      display: block;
    }

    .estimate-box strong {
      display: block;
      font-family: var(--font-heading);
      color: var(--blue-dark);
      font-size: 1.08rem;
      margin-bottom: 8px;
    }

    .estimate-box p {
      margin-bottom: 12px;
    }

    .estimate-box .btn {
      padding: 12px 18px;
      font-size: 0.94rem;
    }

    /* FAQ */
    .faq {
      background: var(--grey-bg);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 44px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    details {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(16, 24, 40, 0.04);
    }

    summary {
      cursor: pointer;
      padding: 18px 20px;
      font-family: var(--font-heading);
      font-weight: 900;
      color: var(--text);
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--blue-soft);
      color: var(--blue);
      display: grid;
      place-items: center;
      font-weight: 900;
      flex: 0 0 auto;
    }

    details[open] summary::after {
      content: "−";
      background: var(--orange);
      color: var(--white);
    }

    details p {
      padding: 0 20px 20px;
      color: var(--grey-dark);
    }

    /* FINAL CTA */
    .final-cta {
      background:
        linear-gradient(rgba(18, 59, 99, 0.92), rgba(18, 59, 99, 0.92)),
        url("/images/robinet.webp") center/cover no-repeat;
      color: var(--white);
      padding: 86px 0;
      text-align: center;
    }

    .final-cta h2,
    .final-cta p {
      color: var(--white);
    }

    .final-cta h2 {
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 16px;
    }

    .final-cta p {
      max-width: 680px;
      margin: 0 auto 28px;
      opacity: 0.92;
      font-size: 1.1rem;
    }

    .final-phone {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-family: var(--font-heading);
      font-weight: 900;
      font-size: clamp(1.8rem, 4vw, 3rem);
      margin-bottom: 22px;
    }

    .final-cta .cta-row {
      justify-content: center;
    }

    /* FOOTER */
    .footer {
      background: #0f263d;
      color: var(--white);
      padding: 58px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(4, 1fr);
      gap: 30px;
      margin-bottom: 36px;
    }

    .footer .logo-mark {
      background: var(--orange);
    }

    .footer .logo-text strong,
    .footer h4 {
      color: var(--white);
    }

    .footer .logo-text span,
    .footer p,
    .footer a,
    .footer li {
      color: rgba(255, 255, 255, 0.74);
    }

    .footer h4 {
      font-size: 0.92rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 14px;
    }

    .footer ul {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer a:hover {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: rgba(255, 255, 255, 0.66);
      font-size: 0.9rem;
    }

    /* FLOATING CTA */
    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 22px;
      z-index: 120;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: #25d366;
      color: var(--white);
      display: grid;
      place-items: center;
      font-size: 2rem;
      box-shadow: 0 12px 28px rgba(37, 211, 102, 0.34);
      transition: transform 0.16s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-3px) scale(1.04);
    }

    .mobile-sticky {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 130;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
      gap: 10px;
      box-shadow: 0 -8px 24px rgba(16, 24, 40, 0.12);
    }

    .mobile-sticky a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 13px 10px;
      font-family: var(--font-heading);
      font-weight: 900;
    }

    .mobile-call {
      background: var(--orange);
      color: var(--white);
    }

    .mobile-wa {
      background: #25d366;
      color: var(--white);
    }

    /* RESPONSIVE */
    @media (max-width: 1060px) {
      .nav-links {
        display: none;
      }

      .menu-btn {
        display: inline-grid;
        place-items: center;
      }

      .hero-grid,
      .local-grid,
      .zones-grid,
      .quote-layout,
      .faq-layout {
        grid-template-columns: 1fr;
      }

      .hero-mini-stats,
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .services-grid,
      .why-grid,
      .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
      }
    }

    @media (max-width: 760px) {
      body {
        padding-bottom: 78px;
      }

      .topbar-inner {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 4px 12px;
        padding: 6px 0;
      }

      .topbar-left {
        justify-content: center;
      }

      .topbar-right {
        display: none;
      }

      .header-inner {
        min-height: 70px;
      }

      .hero {
        padding: 38px 0 42px;
      }

      .hero-grid {
        gap: 32px;
      }

      .hero-trust,
      .hero-mini-stats,
      .services-grid,
      .why-grid,
      .process-grid,
      .testimonial-grid,
      .form-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-photo-card {
        border-width: 6px;
      }

      .photo-placeholder,
      .photo-box div {
        min-height: 340px;
      }

      .urgent-strip-inner {
        flex-direction: column;
        text-align: center;
      }

      .section {
        padding: 62px 0;
      }

      .quote-form,
      .quote-info,
      .zone-panel {
        padding: 22px;
      }

      .cta-row .btn,
      .form-actions .btn {
        width: 100%;
      }

      .whatsapp-float {
        display: none;
      }

      .mobile-sticky {
        display: flex;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 430px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      h1 {
        font-size: 2.35rem;
      }

      .btn {
        padding: 14px 18px;
        font-size: 0.96rem;
      }

      .urgent-label {
        font-size: 0.88rem;
      }
    }

    /* === HEADER MOBILE COMPACT (< 480px) === */
    @media (max-width: 480px) {
      .header-inner { gap: 10px; min-height: 64px; }
      .logo-mark.logo-image-wrap { width: 44px; height: 44px; }
      .logo { gap: 9px; }
      .logo-text span { display: none; }
      .logo-text strong { font-size: clamp(0.95rem, 4.2vw, 1.05rem); }
      .lang-btn { min-width: 44px; width: 44px; height: 44px; padding: 0; flex-shrink: 0; }
      .menu-btn { width: 44px; height: 44px; flex-shrink: 0; }
      .header-actions .btn-call {
        width: 44px; height: 44px; min-width: 44px; padding: 0;
        border-radius: 50%; font-size: 0; gap: 0; overflow: hidden; flex-shrink: 0;
      }
      .header-actions .btn-call .call-icon { margin: 0; }
    }

    /* === KANAL DÉBOUCHAGE — DA BLEU MARINE / CYAN + APPEL ROUGE === */
    .btn-call {
      background: linear-gradient(135deg, var(--red-call), #ff3347);
      color: var(--white);
      box-shadow: 0 12px 26px rgba(225, 29, 46, 0.28);
      animation: pulse-call 2s ease-in-out infinite;
    }

    .btn-call:hover {
      background: linear-gradient(135deg, var(--red-call-dark), var(--red-call));
      box-shadow: 0 14px 32px rgba(225, 29, 46, 0.38);
    }

    @keyframes pulse-call {
      0%, 100% { box-shadow: 0 12px 26px rgba(225, 29, 46, 0.28); }
      50% { box-shadow: 0 14px 34px rgba(225, 29, 46, 0.48), 0 0 0 6px rgba(225, 29, 46, 0.10); }
    }

    .topbar {
      background: linear-gradient(90deg, var(--navy), #083b7c);
    }

    .site-header {
      background: rgba(255, 255, 255, 0.98);
      border-bottom: 1px solid rgba(14, 165, 233, 0.16);
    }

    .logo-mark.logo-image-wrap {
      width: 72px;
      height: 72px;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: hidden;
      padding: 0;
    }

    .logo-mark.logo-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .logo-text strong {
      color: var(--navy);
      font-size: 1.14rem;
      letter-spacing: -0.03em;
    }

    .logo-text span {
      color: #407096;
    }

    .nav-links a:hover,
    .service-link,
    h1 span,
    h2 span,
    .eyebrow {
      color: var(--cyan);
    }

    .eyebrow::before {
      background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
    }

    .hero {
      background:
        radial-gradient(circle at 82% 18%, rgba(14, 165, 233, 0.13), transparent 28%),
        linear-gradient(135deg, #f6fbff 0%, #ffffff 48%, #edf8ff 100%);
    }

    .hero::after {
      background: rgba(14, 165, 233, 0.11);
    }

    .urgent-label,
    .trust-pill,
    .mini-stat,
    .service-card,
    .testimonial,
    details {
      border-color: rgba(14, 165, 233, 0.16);
    }

    .urgent-strip {
      background: linear-gradient(90deg, var(--navy), var(--navy-2));
    }

    .urgent-strip .btn {
      background: var(--red-call);
      color: var(--white);
      box-shadow: 0 12px 26px rgba(225, 29, 46, 0.32);
    }

    .badge-icon,
    .step-number,
    details[open] summary::after {
      background: var(--cyan);
    }

    .why-card {
      background: linear-gradient(180deg, #f4fbff, #ffffff);
      border-color: rgba(14, 165, 233, 0.20);
    }

    .why-card .why-icon {
      color: var(--cyan);
    }

    .process,
    .footer,
    .final-cta {
      background-color: var(--navy);
    }

    .process {
      background: linear-gradient(135deg, var(--navy), #073c80);
    }

    .footer {
      background: #041f45;
    }

    .final-cta {
      background:
        linear-gradient(rgba(6, 43, 95, 0.92), rgba(6, 43, 95, 0.92)),
        url("/images/robinet.webp") center/cover no-repeat;
    }

    .service-icon {
      background: var(--cyan-soft);
      color: var(--cyan);
      font-size: 1.3rem;
    }

    .service-icon svg,
    .why-icon svg {
      width: 28px;
      height: 28px;
      stroke: currentColor;
      stroke-width: 2.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mobile-call {
      background: var(--red-call);
      color: var(--white);
    }

  

    /* === Devis interactif + icônes propres === */
    .call-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      background: rgba(255, 255, 255, 0.96);
      color: #071f3f;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
    }

    .call-icon svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      display: block;
    }

    .mail-icon svg {
      width: 15px;
      height: 15px;
    }

    .wizard-actions [hidden] {
      display: none !important;
    }

    .btn-call .call-icon,
    .mobile-call .call-icon,
    .quote-direct-call .call-icon,
    .success-call .call-icon {
      background: transparent;
      box-shadow: none;
      color: #06172f;
      width: 22px;
      height: 22px;
    }

    .btn-call .call-icon svg,
    .mobile-call .call-icon svg,
    .quote-direct-call .call-icon svg,
    .success-call .call-icon svg {
      width: 18px;
      height: 18px;
    }

    .quote {
      background:
        radial-gradient(circle at 12% 0%, rgba(14, 165, 233, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    }

    .quote-wizard {
      max-width: 880px;
      margin: 0 auto;
      background: rgba(255,255,255,0.96);
      border: 1px solid #dbe7f4;
      border-radius: 26px;
      padding: clamp(22px, 4vw, 42px);
      box-shadow: 0 24px 60px rgba(7, 31, 63, 0.12);
      position: relative;
      overflow: hidden;
    }

    .quote-wizard::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.10), transparent 24%);
    }

    .quote-wizard > * {
      position: relative;
      z-index: 1;
    }

    .quote-wizard-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      padding-bottom: 26px;
      border-bottom: 1px solid #dbe7f4;
    }

    .quote-wizard-head h2 {
      margin-bottom: 8px;
      color: #071f3f;
    }

    .quote-wizard-head p {
      color: #334e6f;
      font-weight: 650;
    }

    .quote-direct-call {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 999px;
      background: #e11d2e;
      color: #fff;
      font-family: var(--font-heading);
      font-weight: 900;
      box-shadow: 0 12px 28px rgba(225, 29, 46, 0.26);
      white-space: nowrap;
    }

    .wizard-progress {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin: 30px 0 36px;
    }

    .wizard-progress span {
      height: 5px;
      border-radius: 999px;
      background: #eef3f8;
      overflow: hidden;
      position: relative;
    }

    .wizard-progress span::after {
      content: "";
      position: absolute;
      inset: 0;
      width: 0;
      background: linear-gradient(90deg, #0ea5e9, #38bdf8);
      border-radius: inherit;
      transition: width .24s ease;
    }

    .wizard-progress span.active::after {
      width: 100%;
    }

    .wizard-step {
      display: none;
      animation: wizardFade .2s ease;
    }

    .wizard-step.active {
      display: block;
    }

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

    .wizard-step h3 {
      font-size: clamp(1.45rem, 2.4vw, 1.85rem);
      color: #071f3f;
      margin-bottom: 8px;
    }

    .wizard-subtitle {
      color: #334e6f;
      margin-bottom: 24px;
      font-size: 1.02rem;
    }

    .choice-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .urgency-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .choice-card {
      min-height: 104px;
      width: 100%;
      border: 2px solid #dbe7f4;
      background: #fff;
      color: #071f3f;
      border-radius: 16px;
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 16px;
      text-align: left;
      cursor: pointer;
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
    }

    .choice-card:hover {
      transform: translateY(-2px);
      border-color: rgba(14,165,233,.55);
      box-shadow: 0 14px 30px rgba(7, 31, 63, 0.08);
    }

    .choice-card.selected {
      border-color: #0ea5e9;
      background: linear-gradient(180deg, #f0fbff 0%, #ffffff 100%);
      box-shadow: 0 16px 34px rgba(14, 165, 233, 0.14);
    }

    .choice-card.center {
      flex-direction: column;
      justify-content: center;
      text-align: center;
      min-height: 150px;
    }

    .choice-card strong {
      display: block;
      font-size: 1.08rem;
      line-height: 1.2;
      color: #071f3f;
      margin-bottom: 6px;
    }

    .choice-card small {
      display: block;
      color: #48617f;
      font-size: .92rem;
    }

    .choice-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      background: #e8f7ff;
      color: #0a4a8a;
    }

    .choice-icon.big {
      width: 54px;
      height: 54px;
      border-radius: 18px;
    }

    .choice-icon svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    .wizard-advice {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-top: 20px;
      padding: 16px;
      border-radius: 18px;
      background: #fff7ed;
      border: 1px solid #fed7aa;
      color: #7c2d12;
    }

    .wizard-advice[hidden] {
      display: none;
    }

    .wizard-advice strong {
      display: block;
      color: #9a3412;
      margin-bottom: 2px;
      font-family: var(--font-heading);
    }

    .wizard-advice p {
      color: #7c2d12;
      margin: 0;
    }

    .advice-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #fb923c;
      color: #fff;
      font-weight: 900;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
    }

    .wizard-fields {
      margin-top: 6px;
    }

    .form-group span {
      color: #6b7f99;
      font-weight: 650;
    }

    .quote-wizard input,
    .quote-wizard textarea {
      border: 2px solid #dbe7f4;
      min-height: 62px;
      font-size: 1rem;
    }

    .quote-wizard textarea {
      min-height: 126px;
    }

    .quote-wizard input:focus,
    .quote-wizard textarea:focus {
      border-color: #0ea5e9;
      box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.12);
    }

    .mini-choice-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .mini-choice {
      border: 1px solid #dbe7f4;
      background: #fff;
      color: #0a315f;
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 850;
      cursor: pointer;
      transition: .16s ease;
    }

    .mini-choice:hover,
    .mini-choice.selected {
      border-color: #0ea5e9;
      background: #e8f7ff;
      color: #075985;
    }

    .summary-card {
      margin-top: 18px;
      background: #f8fbff;
      border: 1px solid #dbe7f4;
      border-radius: 18px;
      padding: 18px;
    }

    .summary-card strong {
      color: #071f3f;
      font-family: var(--font-heading);
    }

    .summary-card ul {
      display: grid;
      gap: 8px;
      list-style: none;
      margin: 12px 0;
    }

    .summary-card li {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      color: #48617f;
      border-bottom: 1px dashed #dbe7f4;
      padding-bottom: 8px;
    }

    .summary-card li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .summary-card b {
      color: #071f3f;
      text-align: right;
    }

    .summary-card p {
      margin-top: 8px;
      color: #334e6f;
      font-size: .96rem;
    }

    .wizard-error {
      margin-top: 18px;
      padding: 12px 14px;
      border-radius: 14px;
      background: #fef2f2;
      border: 1px solid #fecaca;
      color: #991b1b;
      font-weight: 800;
    }

    .wizard-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      margin-top: 32px;
    }

    .btn-prev {
      background: #f1f5f9;
      color: #334e6f;
      box-shadow: none;
    }

    .btn-prev:disabled {
      opacity: .55;
      cursor: not-allowed;
      transform: none;
    }

    .wizard-success {
      text-align: center;
      padding: 24px 8px 8px;
    }

    .success-check {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 22px;
      background: #dcfce7;
      color: #16a34a;
      border: 3px solid #16a34a;
      font-size: 2.2rem;
      font-weight: 900;
    }

    .wizard-success h3 {
      font-size: clamp(1.7rem, 3vw, 2.15rem);
      color: #071f3f;
    }

    .wizard-success p {
      max-width: 620px;
      margin: 12px auto;
      color: #334e6f;
      font-size: 1.06rem;
    }

    .success-delay {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 18px auto;
      padding: 14px 20px;
      border-radius: 999px;
      background: #fff7ed;
      color: #c2410c;
      font-weight: 900;
    }

    .success-small {
      font-size: .98rem !important;
    }

    .success-call {
      margin-top: 8px;
      font-size: 1.2rem;
      padding: 18px 26px;
    }

    .whatsapp-float {
      font-size: 0;
    }

    .wa-icon {
      width: 34px;
      height: 34px;
      display: block;
      fill: currentColor;
    }

    .mobile-wa {
      gap: 8px;
    }

    .mobile-wa .wa-icon {
      width: 20px;
      height: 20px;
    }

    @media (max-width: 760px) {
      .quote-wizard-head {
        flex-direction: column;
      }

      .quote-direct-call {
        width: 100%;
        justify-content: center;
      }

      .choice-grid,
      .urgency-grid {
        grid-template-columns: 1fr;
      }

      .choice-card.center {
        min-height: 116px;
      }

      .wizard-actions {
        flex-direction: column-reverse;
      }

      .wizard-actions .btn {
        width: 100%;
      }

      .summary-card li {
        flex-direction: column;
        gap: 2px;
      }

      .summary-card b {
        text-align: left;
      }
    }



/* ============================================================
   AJOUTS PAGES LOCALES (Wallonie, villes, zones)
   Réutilise les tokens et composants existants ci-dessus.
   ============================================================ */

/* Fil d'ariane */
.breadcrumb { font-size: .86rem; color: var(--grey); padding: 14px 0 0; }
.breadcrumb a { color: var(--grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--cyan); text-decoration: underline; }
.breadcrumb span { color: var(--grey-dark); }

/* Grille de villes / liens internes */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.city-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, border-color .16s ease;
  color: var(--navy);
  font-weight: 600;
}
.city-card:hover { transform: translateY(-2px); border-color: var(--cyan); }
.city-card .city-arrow { margin-left: auto; color: var(--cyan); font-weight: 700; }

/* Cartes "services / problèmes" réutilisables */
.local-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 10px;
}
.local-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.local-card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 8px; }
.local-card p { color: var(--grey-dark); font-size: .95rem; }

/* Étapes d'intervention */
.steps { display: grid; gap: 14px; margin-top: 10px; counter-reset: step; }
.step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--grey-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
}
.step::before {
  counter-increment: step; content: counter(step);
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 700;
  display: grid; place-items: center;
}
.step h3 { color: var(--navy); font-size: 1rem; margin-bottom: 2px; }
.step p { color: var(--grey-dark); font-size: .93rem; }

/* FAQ locale */
.faq-list { margin-top: 10px; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--cyan); font-size: 1.3rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 20px 18px; color: var(--grey-dark); }

/* Liens "proches" en bas de page ville */
.nearby {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px;
}
.nearby a {
  background: var(--cyan-soft); color: var(--navy-2);
  border: 1px solid var(--blue-border); border-radius: 999px;
  padding: 9px 16px; font-weight: 600; font-size: .92rem; text-decoration: none;
}
.nearby a:hover { background: #d6f0fd; }

/* Bandeau intro régional */
.region-lead { max-width: 760px; }

/* Zones hub : deux colonnes */
.zones-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 8px; }
@media (max-width: 760px) { .zones-groups { grid-template-columns: 1fr; } }
.zones-group h2 { margin-bottom: 12px; }
