:root{
    --vert-fonce:#00612e;
    --vert:#009933;
    --vert-clair:#d5f9cf;
    --gris-fond:#f4f6f5;
    --gris-bordure:#e2e6e4;
    --texte:#1c2b22;
    --rouge:#CE1126;
    --jaune:#FCD116;
    --ombre:0 10px 30px rgba(0,40,15,.08);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
    margin:0;
    font-family:'Segoe UI',Roboto,Arial,sans-serif;
    background:var(--gris-fond);
    color:var(--texte);
    line-height:1.55;
}
a{color:inherit;}
img,svg{max-width:100%;display:block;}
.conteneur{
    max-width:1140px;
    margin:0 auto;
    padding:0 20px;
}

/* ---------- En-tête / navigation ---------- */
.entete-site{
    background:#fff;
    border-bottom:1px solid var(--gris-bordure);
    position:sticky;
    top:0;
    z-index:100;
}
.barre-nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 20px;
    max-width:1140px;
    margin:0 auto;
}
.marque{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-weight:800;
    font-size:1.3rem;
    color:var(--vert-fonce);
}
.marque .logo-icone{ width:34px; height:34px; }
.marque .accent{ color:var(--rouge); }

.liens-nav{
    display:flex;
    align-items:center;
    gap:6px;
}
.liens-nav a{
    text-decoration:none;
    color:var(--texte);
    font-weight:600;
    font-size:.92rem;
    padding:9px 14px;
    border-radius:8px;
    transition:all .2s ease;
    white-space:nowrap;
}
.liens-nav a:hover{ background:var(--vert-clair); color:var(--vert-fonce); }
.liens-nav a.actif{ background:var(--vert); color:#fff; }
.liens-nav a.bouton-cta{
    background:var(--vert-fonce);
    color:#fff;
}
.liens-nav a.bouton-cta:hover{ background:var(--vert); }

.langues-site{
    display:flex;
    gap:4px;
    background:var(--gris-fond);
    border-radius:20px;
    padding:3px;
    margin-left:6px;
}
.btn-lang-site{
    text-decoration:none;
    font-size:.75rem;
    font-weight:700;
    padding:6px 11px;
    border-radius:16px;
    color:var(--vert-fonce);
    opacity:.6;
}
.btn-lang-site.actif{
    background:var(--vert-fonce);
    color:#fff;
    opacity:1;
}
@media (max-width:860px){
    .langues-site{ margin:10px 0 0; align-self:flex-start; }
}

.bouton-menu{
    display:none;
    background:none;
    border:none;
    font-size:1.6rem;
    color:var(--vert-fonce);
    cursor:pointer;
}

@media (max-width:860px){
    .bouton-menu{ display:block; }
    .liens-nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        padding:10px 20px 18px;
        border-bottom:1px solid var(--gris-bordure);
        box-shadow:var(--ombre);
    }
    .liens-nav.ouvert{ display:flex; }
    .liens-nav a{ padding:12px 10px; }
}

/* ---------- Héros ---------- */
.heros{
    background:linear-gradient(135deg,var(--vert-fonce),var(--vert));
    color:#fff;
    padding:70px 20px 90px;
    text-align:center;
    position:relative;
    overflow:hidden;
}
.heros::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height:6px;
    background:linear-gradient(90deg,var(--vert-fonce) 0 33.33%, var(--rouge) 33.33% 66.66%, var(--jaune) 66.66% 100%);
}
.heros h1{
    font-size:2.4rem;
    margin:0 0 14px;
    letter-spacing:.5px;
}
.heros p{
    font-size:1.1rem;
    opacity:.92;
    max-width:640px;
    margin:0 auto 30px;
}
.heros .logo-heros{ width:80px; height:80px; margin:0 auto 20px; filter:drop-shadow(0 6px 14px rgba(0,0,0,.25)); }

.cta-groupe{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
}
.bouton{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 26px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    font-size:.98rem;
    transition:all .2s ease;
    border:2px solid transparent;
}
.bouton-plein{ background:#fff; color:var(--vert-fonce); }
.bouton-plein:hover{ transform:translateY(-2px); box-shadow:var(--ombre); }
.bouton-contour{ border-color:rgba(255,255,255,.6); color:#fff; }
.bouton-contour:hover{ background:rgba(255,255,255,.15); }

/* ---------- Sections génériques ---------- */
section{ padding:60px 20px; }
.titre-section{
    text-align:center;
    max-width:640px;
    margin:0 auto 44px;
}
.titre-section h2{
    font-size:1.8rem;
    color:var(--vert-fonce);
    margin:0 0 10px;
}
.titre-section p{ color:#5c665f; margin:0; }

.grille{
    display:grid;
    gap:24px;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    max-width:1140px;
    margin:0 auto;
}
.carte{
    background:#fff;
    border:1px solid var(--gris-bordure);
    border-radius:16px;
    padding:28px 24px;
    box-shadow:var(--ombre);
    transition:transform .2s ease;
}
.carte:hover{ transform:translateY(-4px); }
.carte .icone{
    width:52px; height:52px;
    display:flex; align-items:center; justify-content:center;
    background:var(--vert-clair);
    color:var(--vert-fonce);
    border-radius:12px;
    font-size:1.5rem;
    margin-bottom:16px;
}
.carte h3{ margin:0 0 8px; font-size:1.1rem; color:var(--vert-fonce); }
.carte p{ margin:0; color:#5c665f; font-size:.92rem; }

/* ---------- Cartes aéroport ---------- */
.carte-aeroport{
    background:#fff;
    border:1px solid var(--gris-bordure);
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--ombre);
    display:flex;
    flex-direction:column;
}
.carte-aeroport .entete-carte{
    background:linear-gradient(135deg,var(--vert-fonce),var(--vert));
    color:#fff;
    padding:24px;
}
.carte-aeroport .entete-carte .code{
    font-size:.75rem;
    background:rgba(255,255,255,.2);
    padding:3px 10px;
    border-radius:20px;
    letter-spacing:1px;
}
.carte-aeroport .entete-carte h3{ margin:10px 0 0; font-size:1.35rem; }
.carte-aeroport .corps-carte{ padding:24px; flex:1; display:flex; flex-direction:column; gap:16px; }
.carte-aeroport .corps-carte p{ margin:0; color:#5c665f; font-size:.92rem; }
.carte-aeroport .bouton{ align-self:flex-start; }
.bouton-vert{ background:var(--vert); color:#fff; }
.bouton-vert:hover{ background:var(--vert-fonce); }

/* ---------- Téléchargement ---------- */
.carte-telechargement{
    background:#fff;
    border:1px solid var(--gris-bordure);
    border-radius:18px;
    padding:30px 26px;
    text-align:center;
    box-shadow:var(--ombre);
}
.carte-telechargement .logo-app{ width:70px; height:70px; margin:0 auto 18px; }
.carte-telechargement h3{ margin:0 0 6px; color:var(--vert-fonce); }
.carte-telechargement .sous-titre-app{ color:#8a908c; font-size:.85rem; margin-bottom:18px; }
.badge-android{
    display:inline-block;
    background:var(--vert-clair);
    color:var(--vert-fonce);
    font-size:.72rem;
    font-weight:700;
    padding:4px 10px;
    border-radius:20px;
    margin-bottom:14px;
}
.note-installation{
    max-width:760px;
    margin:40px auto 0;
    background:#fff8e1;
    border:1px solid #f1e0a3;
    border-radius:12px;
    padding:18px 20px;
    font-size:.88rem;
    color:#6b5a12;
}

/* ---------- Statistiques ---------- */
.grille-stats{
    display:grid;
    gap:24px;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    max-width:900px;
    margin:0 auto 40px;
}
.carte-stat{
    background:#fff;
    border:1px solid var(--gris-bordure);
    border-radius:16px;
    padding:26px;
    text-align:center;
    box-shadow:var(--ombre);
}
.carte-stat .valeur{
    font-size:2.4rem;
    font-weight:800;
    color:var(--vert-fonce);
    line-height:1;
    margin-bottom:8px;
}
.carte-stat .libelle{ color:#5c665f; font-size:.9rem; }
.carte-stat.accent-rouge .valeur{ color:var(--rouge); }
.carte-stat.accent-jaune .valeur{ color:#a6870b; }

.comparaison{
    max-width:700px;
    margin:0 auto;
    background:#fff;
    border:1px solid var(--gris-bordure);
    border-radius:16px;
    padding:26px 28px;
    box-shadow:var(--ombre);
}
.ligne-comparaison{ margin-bottom:20px; }
.ligne-comparaison:last-child{ margin-bottom:0; }
.ligne-comparaison .entete-ligne{
    display:flex;
    justify-content:space-between;
    font-size:.9rem;
    margin-bottom:6px;
    font-weight:600;
}
.barre-fond{
    background:var(--gris-fond);
    border-radius:20px;
    height:14px;
    overflow:hidden;
}
.barre-remplie{
    height:100%;
    border-radius:20px;
    background:linear-gradient(90deg,var(--vert-fonce),var(--vert));
}
.barre-remplie.rouge{ background:linear-gradient(90deg,#8f0d1c,var(--rouge)); }

.maj-stats{
    text-align:center;
    font-size:.78rem;
    color:#8a908c;
    margin-top:30px;
}

/* ---------- Contact ---------- */
.carte-coordonnees{
    background:#fff;
    border:1px solid var(--gris-bordure);
    border-radius:16px;
    padding:30px;
    box-shadow:var(--ombre);
    max-width:520px;
    margin:0 auto 60px;
}
.carte-coordonnees h3{ margin:0 0 18px; color:var(--vert-fonce); text-align:center; }
.ligne-coord{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 0;
    border-bottom:1px solid var(--gris-bordure);
}
.ligne-coord:last-of-type{ border-bottom:none; }
.ligne-coord .icone-coord{
    width:40px; height:40px;
    flex:0 0 40px;
    display:flex; align-items:center; justify-content:center;
    background:var(--vert-clair);
    color:var(--vert-fonce);
    border-radius:10px;
    font-size:1.1rem;
}
.ligne-coord .texte-coord .etiquette-coord{ font-size:.75rem; color:#8a908c; text-transform:uppercase; letter-spacing:.4px; }
.ligne-coord .texte-coord a{ text-decoration:none; font-weight:700; color:var(--vert-fonce); font-size:.98rem; }
.ligne-coord .texte-coord a:hover{ text-decoration:underline; }
.carte-coordonnees .bouton{ width:100%; justify-content:center; margin-top:18px; }

.carte-pub{
    background:#fff;
    border:1px solid var(--gris-bordure);
    border-left:5px solid var(--vert);
    border-radius:14px;
    padding:24px;
    box-shadow:var(--ombre);
}
.carte-pub.type2{ border-left-color:var(--rouge); }
.carte-pub .badge-duree{
    display:inline-block;
    background:var(--vert-clair);
    color:var(--vert-fonce);
    font-size:.72rem;
    font-weight:700;
    padding:4px 10px;
    border-radius:20px;
    margin-bottom:10px;
}
.carte-pub.type2 .badge-duree{ background:#fbe1e3; color:var(--rouge); }
.carte-pub h3{ margin:0 0 4px; color:var(--vert-fonce); }
.carte-pub .sous-titre-pub{ font-size:.82rem; color:#8a908c; margin-bottom:10px; }
.carte-pub p{ margin:0; font-size:.9rem; color:#5c665f; }

.tableau-tarifs{
    max-width:760px;
    margin:0 auto;
    background:#fff;
    border:1px solid var(--gris-bordure);
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--ombre);
}
.tableau-tarifs table{
    width:100%;
    border-collapse:collapse;
    font-size:.92rem;
}
.tableau-tarifs th{
    background:var(--vert-fonce);
    color:#fff;
    text-align:left;
    padding:14px 18px;
    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.4px;
}
.tableau-tarifs td{
    padding:14px 18px;
    border-bottom:1px solid var(--gris-bordure);
}
.tableau-tarifs tr:last-child td{ border-bottom:none; }
.tableau-tarifs tr:nth-child(even) td{ background:var(--gris-fond); }
.note-tarif{
    max-width:760px;
    margin:16px auto 0;
    font-size:.82rem;
    color:#8a908c;
    text-align:center;
}

.encart-deploiement{
    max-width:820px;
    margin:0 auto;
    background:#fff;
    border:1px solid var(--gris-bordure);
    border-left:5px solid var(--jaune);
    border-radius:16px;
    padding:28px 30px;
    box-shadow:var(--ombre);
}
.encart-deploiement h3{ margin:0 0 12px; color:var(--vert-fonce); }
.encart-deploiement p{ color:#5c665f; font-size:.93rem; }
.encart-deploiement ul{ margin:14px 0 0; padding-left:20px; color:#5c665f; font-size:.9rem; }
.encart-deploiement li{ margin-bottom:6px; }

.encart-final{
    max-width:640px;
    margin:50px auto 0;
    text-align:center;
    background:linear-gradient(135deg,var(--vert-fonce),var(--vert));
    color:#fff;
    border-radius:18px;
    padding:36px 30px;
}
.encart-final h3{ margin:0 0 10px; font-size:1.3rem; }
.encart-final p{ opacity:.92; margin:0 0 20px; }

/* ---------- Pied de page ---------- */
.pied-site{
    background:var(--vert-fonce);
    color:#fff;
    padding:40px 20px 24px;
    margin-top:40px;
}
.pied-grille{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    gap:30px;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}
.pied-site h4{ margin:0 0 12px; font-size:.95rem; }
.pied-site a{ color:#d7ead9; text-decoration:none; font-size:.88rem; }
.pied-site a:hover{ text-decoration:underline; }
.pied-site .marque-pied{ display:flex; align-items:center; gap:8px; font-weight:800; font-size:1.1rem; margin-bottom:10px; }
.pied-site .marque-pied .logo-icone{ width:28px; height:28px; }
.pied-liens{ display:flex; flex-direction:column; gap:8px; }
.bas-de-pied{
    max-width:1140px;
    margin:30px auto 0;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.15);
    font-size:.78rem;
    color:#b7d6bd;
    text-align:center;
}
