@charset "utf-8";


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --vert:       #2d7a3a;
      --vert-clair: #4caf58;
      --vert-pale:  #eef7ee;
      --vert-mid:   #d4edda;
      --noir:       #1a1a1a;
      --gris:       #555;
      --gris-clair: #f5f5f5;
      --blanc:      #ffffff;
      --orange:     #e8640a;
      --radius:     10px;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--noir);
      background: var(--blanc);
      line-height: 1.65;
      font-size: 16px;
    }

    a { color: inherit; text-decoration: none; }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--vert);
      color: #fff;
      text-align: center;
      padding: .55rem 1rem;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .03em;
    }
    .topbar a { color: #fff; text-decoration: underline; }

    /* ── HEADER ── */
    header {
      background: var(--blanc);
      border-bottom: 2px solid var(--vert-mid);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .logo-zone img { height: 55px; width: auto; }
    .header-cta a {
      background: var(--vert);
      color: #fff;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: .9rem;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: background .2s;
    }
    .header-cta a:hover { background: #1e5c28; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #1e5c28 0%, var(--vert) 60%, #3d9b4a 100%);
      color: #fff;
      padding: 3rem 1.5rem 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-badge {
      display: inline-block;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 50px;
      padding: .35rem 1.1rem;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }
    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 6vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: .9rem;
      text-shadow: 0 2px 8px rgba(0,0,0,.25);
    }
    .hero-sub {
      font-size: 1.05rem;
      opacity: .9;
      margin-bottom: 1.6rem;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-checks {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: .6rem 1.4rem;
      margin-bottom: 2rem;
      font-size: .88rem;
      font-weight: 600;
    }
    .hero-checks span { display: flex; align-items: center; gap: .4rem; }
    .hero-checks i { color: #a5f3a8; }
    .cta-phone {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      background: var(--orange);
      color: #fff;
      font-size: 1.1rem;
      font-weight: 800;
      padding: 1rem 2.2rem;
      border-radius: 50px;
      box-shadow: 0 6px 24px rgba(0,0,0,.3);
      transition: transform .15s, background .2s;
      animation: pulse 2.5s infinite;
    }
    .cta-phone:hover { background: #c4520a; transform: scale(1.03); }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(232,100,10,.4); }
      50%       { box-shadow: 0 6px 32px rgba(232,100,10,.7); }
    }
    .hero-note { margin-top: 1rem; font-size: .78rem; opacity: .7; }

    /* ── SECTIONS ── */
    .section { padding: 3rem 1.5rem; }
    .section.bg-pale { background: var(--vert-pale); }
    .section.bg-grey { background: var(--gris-clair); }
    .container-inner { max-width: 860px; margin: 0 auto; }

    .section-eyebrow {
      font-size: .75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--vert);
      margin-bottom: .5rem;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.5rem, 4vw, 2.1rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1.2rem;
      color: var(--noir);
    }
    .section-title span { color: var(--vert); }
    .section-lead {
      font-size: 1.02rem;
      color: var(--gris);
      margin-bottom: 1.8rem;
      max-width: 700px;
    }

    /* ── CARDS GRILLE ── */
    .grid-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.2rem;
      margin-top: 1.5rem;
    }
    .card {
      background: var(--blanc);
      border: 1.5px solid var(--vert-mid);
      border-radius: var(--radius);
      padding: 1.4rem 1.2rem;
    }
    .card-icon {
      width: 46px; height: 46px;
      background: var(--vert-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--vert);
      font-size: 1.2rem;
      margin-bottom: .9rem;
    }
    .card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .5rem;
    }
    .card p { font-size: .88rem; color: var(--gris); }

    /* ── ÉTAPES ── */
    .steps { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
    .step {
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      background: var(--blanc);
      border-radius: var(--radius);
      padding: 1.2rem 1.1rem;
      border-left: 4px solid var(--vert);
    }
    .step-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--vert);
      line-height: 1;
      min-width: 36px;
    }
    .step-body h3 { font-size: .98rem; font-weight: 700; margin-bottom: .3rem; }
    .step-body p  { font-size: .87rem; color: var(--gris); }

    /* ── TEXTE SEO ── */
    .seo-block { font-size: .95rem; color: #333; }
    .seo-block h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      margin: 1.6rem 0 .6rem;
      color: var(--vert);
    }
    .seo-block p { margin-bottom: .9rem; }
    .seo-block ul { padding-left: 1.4rem; margin-bottom: .9rem; }
    .seo-block li { margin-bottom: .4rem; }

    /* ── ZONES ── */
    .zones-grid {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-top: 1rem;
    }
    .zone-tag {
      background: var(--blanc);
      border: 1.5px solid var(--vert-mid);
      border-radius: 50px;
      padding: .35rem .9rem;
      font-size: .82rem;
      font-weight: 600;
      color: var(--vert);
      display: flex; align-items: center; gap: .4rem;
    }

    /* ── MAP SECTION ── */
    .map-section { padding: 3rem 1.5rem; background: var(--blanc); }
    .map-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      max-width: 860px;
      margin: 1.5rem auto 0;
    }
    @media(max-width: 640px) { .map-grid { grid-template-columns: 1fr; } }
    .map-grid iframe { border-radius: var(--radius); border: 0; width: 100%; height: 360px; display: block; }
    .contact-box {
      background: var(--vert-pale);
      border-radius: var(--radius);
      padding: 1.6rem 1.4rem;
      display: flex;
      flex-direction: column;
      gap: .9rem;
    }
    .contact-box h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
    }
    .phone-display {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--vert);
      display: flex; align-items: center; gap: .5rem;
    }
    .btn-call {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      background: var(--vert);
      color: #fff;
      font-weight: 700;
      font-size: .95rem;
      padding: .85rem 1.5rem;
      border-radius: 50px;
      transition: background .2s;
    }
    .btn-call:hover { background: #1e5c28; }
    .contact-detail { font-size: .82rem; color: var(--gris); }
    .contact-detail i { color: var(--vert); margin-right: .3rem; }

    /* ── BANDEAU PROMO ── */
    .promo-band {
      background: var(--vert);
      color: #fff;
      text-align: center;
      padding: 2rem 1.5rem;
    }
    .promo-band p { font-size: 1.05rem; font-weight: 600; margin-bottom: 1.2rem; }
    .promo-band .cta-phone { background: #fff; color: var(--vert); font-size: 1rem; padding: .85rem 1.8rem; }
    .promo-band .cta-phone:hover { background: #e0f0e0; }

    /* ── FAQ ── */
    .faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
    details {
      background: var(--blanc);
      border: 1.5px solid var(--vert-mid);
      border-radius: var(--radius);
      padding: 1rem 1.2rem;
    }
    summary {
      font-weight: 600;
      font-size: .95rem;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: .5rem;
    }
    summary::after { content: '+'; font-size: 1.3rem; color: var(--vert); }
    details[open] summary::after { content: '−'; }
    details p { margin-top: .8rem; font-size: .88rem; color: var(--gris); }

    /* ── FOOTER ── */
    footer {
      background: var(--vert);
      color: #fff;
      text-align: center;
      padding: 1.8rem 1rem;
      font-size: .8rem;
      line-height: 1.7;
    }
    footer a { color: var(--vert-clair); }

    /* ── BANNIÈRE SAM AUTOS ── */
    .sam-banner { text-align: center; padding: 2rem 1.5rem; background: var(--gris-clair); }
    .sam-banner a img { max-width: 320px; width: 100%; border-radius: var(--radius); box-shadow: 0 4px 16px rgba(0,0,0,.1); }

