    :root {
      --bg: #ffffff;
      --surface: #f8fafc;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --brand: #f59e0b;
      --brand2: #38bdf8;
      --max: 1180px
    }

    * {
      box-sizing: border-box
    }


    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
      /* ou 70/90px selon la hauteur réelle */
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6
    }

    .zones-map {
      width: 100%;
      height: 360px;
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 1rem;
      z-index: 0;
    }

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

    img {
      max-width: 100%;
      display: block;
      border-radius: 14px
    }

    .container {
      width: min(var(--max), calc(100% - 2rem));
      margin: auto
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 0, 0, .08)
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      gap: 1rem
    }

    .logo {
      display: inline-flex;
      flex-direction: column;
      font-weight: 800;
      letter-spacing: .2px;
      line-height: 1.1;
    }

    .logo-main span {
      color: var(--brand);
    }

    .logo-sub {
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--muted);
    }

    /* .logo span {
      color: var(--brand)
    } */

    .links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: flex-end
    }

    .links a {
      color: var(--muted)
    }

    .links a:hover {
      color: var(--brand)
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      padding: .9rem 1.3rem;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      cursor: pointer
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--brand), #fbbf24);
      color: #111827
    }

    .btn-secondary {
      border-color: rgba(0, 0, 0, .15);
      background: #f1f5f9;
      color: var(--text)
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #fbbf24, var(--brand))
    }

    .btn-secondary:hover {
      background: #e8ebee
    }

    .hero {
      padding: 5rem 0 3rem;
      /* background: linear-gradient(180deg, #f8fafc, #ffffff 60%) */
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 2rem;
      align-items: center
    }

    .badge {
      display: inline-flex;
      padding: .4rem .8rem;
      border: 1px solid rgba(56, 189, 248, .4);
      border-radius: 999px;
      color: #0284c7;
      background: rgba(56, 189, 248, .12);
      font-size: .92rem
    }

    h1 {
      font-size: clamp(2.2rem, 5vw, 4.2rem);
      line-height: 1.08;
      margin: .9rem 0 1rem;
      color: #111827
    }

    .lead {
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 62ch
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin: 1.6rem 0 1rem
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 2.2rem
    }

    .stat {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, .06);
      border-radius: 18px;
      padding: 1.1rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
    }

    .stat strong {
      display: block;
      font-size: 1.15rem;
      color: #111827
    }

    .panel {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 24px;
      padding: 1.5rem;
      box-shadow: 0 8px 30px rgba(0, 0, 0, .06)
    }

    .panel h2 {
      margin: 0 0 .75rem;
      font-size: 1.25rem;
      color: #111827
    }

    .checklist {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: .85rem
    }

    .checklist li {
      padding: .95rem 1.1rem;
      background: #f8fafc;
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, .04)
    }

    section {
      padding: 3.5rem 0
    }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      margin: 0 0 .7rem;
      color: #111827
    }

    .section-sub {
      color: var(--muted);
      max-width: 72ch;
      margin: 0 0 1.8rem
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem
    }

    .card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 20px;
      padding: 1.4rem;
      box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
      text-align: justify;
    }

    .card h3,
    .card h4 {
      margin-top: 0;
      color: #111827
    }

    .tags {
      display: flex;
      gap: .6rem;
      flex-wrap: wrap
    }

    .tag {
      padding: .4rem .75rem;
      border-radius: 999px;
      background: rgba(56, 189, 248, .12);
      border: 1px solid rgba(56, 189, 248, .25);
      font-size: .92rem;
      color: #0284c7
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem
    }

    .faq details {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 18px;
      padding: 1.1rem 1.2rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
    }

    .faq summary {
      cursor: pointer;
      font-weight: 600;
      color: #111827
    }

    .faq details+details {
      margin-top: 1rem
    }

    .faq details p {
      margin: .8rem 0 0;
      color: var(--muted)
    }

    .contact {
      background: linear-gradient(135deg, rgba(245, 158, 11, .08), rgba(56, 189, 248, .08));
      border: 1px solid rgba(245, 158, 11, .25);
      border-radius: 26px;
      padding: 1.6rem
    }

    form {
      display: grid;
      gap: 1.1rem
    }

    input,
    textarea {
      width: 100%;
      padding: 1.1rem 1.15rem;
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, .12);
      background: #ffffff;
      color: var(--text);
      font-size: 1rem
    }

    input:focus,
    textarea:focus {
      border-color: var(--brand);
      outline: none
    }

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

    footer {
      padding: 2.2rem 0;
      border-top: 1px solid rgba(0, 0, 0, .08);
      color: var(--muted)
    }

    .small {
      font-size: .92rem
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 1.3rem
    }

    .service-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 20px;
      padding: 1.4rem;
      display: flex;
      flex-direction: column;
      box-shadow: 0 3px 12px rgba(0, 0, 0, .04)
    }

    .service-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      margin-bottom: 1.1rem;
      border-radius: 14px
    }

    .service-card h3 {
      margin: 0 0 .6rem;
      font-size: 1.35rem;
      color: #111827
    }

    .service-card p {
      color: var(--muted);
      margin: 0;
      line-height: 1.55;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.3rem;
      margin-bottom: 1.6rem;
    }

    .review-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 18px;
      padding: 1.2rem 1.3rem;
      box-shadow: 0 3px 12px rgba(0, 0, 0, .03);
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: .4rem;
    }

    .review-initials {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: #e5f2ff;
      color: #1d4ed8;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: .95rem;
    }

    .review-name {
      margin: 0;
      font-weight: 600;
      color: #111827;
      font-size: .98rem;
    }

    .review-date {
      margin: 0;
      font-size: .9rem;
      color: #6b7280;
    }

    .review-stars {
      margin: .4rem 0 .5rem;
      color: #f59e0b;
      letter-spacing: .08em;
      font-size: 1.05rem;
    }

    .review-text {
      margin: 0;
      color: #4b5563;
      font-size: .97rem;
      line-height: 1.55;
    }

    .reviews-footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      justify-content: space-between;
    }

    .reviews-summary {
      margin: 0;
      color: #4b5563;
      font-size: .98rem;
    }

    @media (max-width: 640px) {
      .reviews-footer {
        flex-direction: column;
        align-items: flex-start;
      }

      .reviews-footer .btn {
        width: auto;
      }
    }

    @media (max-width:900px) {

      .hero-grid,
      .grid-3,
      .two-col,
      .stats {
        grid-template-columns: 1fr
      }

      .links {
        display: none
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 2rem;
      align-items: center;
    }

    .hero-visual {
      position: relative;
    }

    .hero-visual img {
      width: 100%;
      height: min(560px, 62vw);
      object-fit: cover;
      border-radius: 24px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .hero-visual-card {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      padding: 1rem 1.1rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 0, 0, .08);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    }

    .hero-visual-card strong {
      display: block;
      color: #111827;
      margin-bottom: .2rem;
      font-size: 1rem;
    }

    .hero-visual-card span {
      color: #4b5563;
      font-size: .95rem;
    }

    @media (max-width: 768px) {
      .badge-mobile-hide {
        display: none;
      }

      hero {
        padding: 2rem 0 3rem;
      }
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual img {
        height: 360px;
      }
    }

    /* Par défaut (desktop/tablette) */
    .hero-actions {
      display: flex;
      gap: 1rem;
    }

    /* Mobile : ajuster le breakpoint selon ton design */
    @media (max-width: 768px) {
      .hero-actions {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
      }

      .hero-actions .btn {
        flex: 0 1 auto;
        white-space: nowrap;
      }

      .hero.container{
        padding: 1rem 0 3rem;
      }
    }