/* ======================================
   HERO STYLE MAQUETTE - VALIDE PRO
====================================== */

/* Application de la nouvelle police par défaut (Jakarta) */
.hero, .hero button, .hero a {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    
    background-color: #0b0c08; 
    background-image: url('../images/home.png');
    background-repeat: no-repeat;
    background-size: cover;

    /* Grand écran standard (Desktop) : 
       La tombe est poussée de manière stable vers la droite */
    background-position: -50% center; 
    overflow: hidden;
    transition: background-position 0.2s ease; /* Fluidité si on redimensionne la fenêtre */
}

/* ==========================================================================
   PALIERS DE RESPONSIVE POUR L'IMAGE (Évite le chevauchement sur PC portables)
   ========================================================================== */

/* 1. Écrans intermédiaires & Ordinateurs portables (ex: MacBook Air, écrans 13-15") 
   Quand la largeur diminue, on pousse la tombe encore plus loin à droite pour protéger le texte */
@media (max-width: 1440px) {
    .hero {
        background-position: -50% center;
    }
}

/* 2. Petits PC portables et grandes tablettes en mode paysage 
   Ici, le texte prend beaucoup de place. On force l'image à se caler tout à droite (100%) */
@media (max-width: 1250px) {
    .hero {
        background-position: 0% center;
    }
    
    /* Optionnel : On peut aussi réduire très légèrement la taille du H1 
       sur ce palier pour redonner de l'air à la composition */
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-content-left {
        max-width: 55%; /* On donne 5% d'espace en plus au texte */
    }
}

/* 3. Tablettes en mode portrait et mobiles 
   Le texte passe au centre, la tombe repasse en arrière-plan central planqué sous le fondu sombre */
@media (max-width: 1000px) {
    .hero {
        min-height: auto;
        background-position: center center;
    }
}

/* ======================================
   CORRECTION HERO-OVERLAY : DOUBLE FONDU
====================================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    
    /* On superpose deux dégradés (séparés par une virgule).
       Le navigateur les empile.
    */
    background: 
        /* 1er dégradé (Vertical, du bas vers le haut) : 
           Il part du noir total en bas pour masquer la ligne blanche,
           et devient transparent vers le milieu de l'image.
        */
        linear-gradient(
            to top,
            rgba(11, 12, 8, 1) 0%,      /* Noir opaque tout en bas */
            rgba(11, 12, 8, 0.9) 15%,   /* Reste très sombre au niveau des features */
            rgba(11, 12, 8, 0.5) 30%,   /* Transition douce */
            rgba(11, 12, 8, 0) 50%      /* Transparent au milieu */
        ),
        /* 2e dégradé (Horizontal, de gauche à droite) : 
           C'est celui qu'on avait déjà pour la zone de texte.
        */
        linear-gradient(
            90deg,
            rgba(11, 12, 8, 1) 0%,      /* Noir opaque à gauche (zone texte) */
            rgba(11, 12, 8, 1) 35%,
            rgba(11, 12, 8, 0.85) 50%,
            rgba(11, 12, 8, 0.2) 70%,
            rgba(11, 12, 8, 0) 100%     /* Transparent à droite */
        );
        
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 1440px; /* Largeur max de la zone de contenu du site */
    margin: 0 auto;
    padding: 160px 80px 80px 80px;
    position: relative;
    z-index: 2;
}

/* On force tout le bloc textuel à ne pas dépasser la moitié gauche de l'écran */
.hero-content-left {
    max-width: 50%;
}

.hero-subtitle {
    display: block;
    color: #a4b39b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: 'Cinzel', serif; /* La nouvelle police haut de gamme */
    color: #ffffff;
    font-size: 3.2rem; /* Taille réajustée pour être harmonieuse en max 50% width */
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 35px 0;
}

.hero h1 span {
    color: #8da84e;
}

.hero p {
    color: #b3b3b3;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 45px;
}

.desktop-only {
    display: inline;
}

/* BOUTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 90px;
}

.btn {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s ease;
}

.btn-primary {
    background: #8da84e;
    color: #fff;
    border: 1px solid #8da84e;
}

.btn-primary:hover {
    background: #79943f;
    border-color: #79943f;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-secondary:hover {
    border-color: #8da84e;
    color: #8da84e;
    background: rgba(141, 168, 78, 0.05);
}

/* CARACTÉRISTIQUES (FEATURES) */
.hero-features {
    display: flex;
    justify-content: space-between; /* Distribue l'espace uniformément */
    gap: 40px;
    
    /* Bordure haute subtile de la maquette */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    /* On ajoute du padding interne pour créer le bandeau */
    padding: 30px 40px; 
    margin-top: 50px;
    
    /* Largeur maximale pour s'aligner avec le reste du site */
    width: 100%;
    box-sizing: border-box;

    /* Fond noir dégradé semi-transparent pour masquer le bas de la photo */
    background: linear-gradient(
        180deg, 
        rgba(11, 12, 8, 0.6) 0%, 
        rgba(11, 12, 8, 0.9) 100%
    );
    border-radius: 6px; /* Optionnel : adoucit les angles du bandeau */
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1; /* C'EST LA CLÉ : force les 3 boîtes à occuper tout l'espace disponible équitablement */
}

.feature-icon {
    font-size: 18px;
    color: #8da84e;
    line-height: 1;
    margin-top: 2px;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.hero-features strong {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
    white-space: nowrap; /* Évite que le titre du bloc ne passe à la ligne trop tôt */
}

.hero-features span {
    color: #999999;
    font-size: 13px;
}

/* Ajustement pour les tablettes / mobiles */
@media (max-width: 1000px) {
    .hero-features {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    .hero-features strong {
        white-space: normal;
    }
}

/* ======================================
   RESPONSIVE (MOBILE & TABLETTE)
====================================== */

@media (max-width: 1200px) {
    .hero {
        background-position: 70% center;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-content-left {
        max-width: 60%; /* On élargit un peu sur tablette */
    }
}

@media (max-width: 1000px) {
    .hero {
        min-height: auto;
        background-position: center center;
        padding-top: 100px;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(11, 12, 8, 0.80) 0%,
            rgba(11, 12, 8, 0.95) 100%
        );
    }

    .hero-content {
        padding: 60px 24px 60px 24px;
    }

    .hero-content-left {
        max-width: 100%; /* Pleine largeur sur mobile */
        text-align: center;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin: 20px auto;
    }

    .hero p {
        font-size: 16px;
    }

    .desktop-only {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 320px;
        margin: 0 auto 60px auto;
    }

    .hero-features {
        flex-direction: column;
        gap: 25px;
        max-width: 320px;
        margin: 0 auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
    }
    
    .feature-item {
        width: 100%;
        text-align: left;
    }
}

/* ======================================
   SECTION SERVICES (MAQUETTE STYLE)
====================================== */

.services-section {
    background-color: #fcfbfa; /* Fond crème très clair et chaleureux comme la maquette */
    padding: 100px 24px;
}

.services-container {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.services-subtitle {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #8da84e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.services-title {
    font-family: 'Cinzel', serif;
    color: #1a1b15;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 auto 60px auto;
    max-width: 800px;
}

/* GRILLE DES CARTES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes parfaites */
    gap: 30px;
    margin-bottom: 50px;
}

/* LA CARTE SERVICE */
.service-card {
    background: #ffffff;
    border: 1px solid #eae8e5;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    color: inherit;
}

/* EFFET HOVER TECHNIQUE : Zoom sur l'image et élévation de la carte */
.service-card:hover {
    transform: translateY(-8px); /* La carte monte légèrement */
    box-shadow: 0 20px 40px rgba(11, 12, 8, 0.06); /* Ombre douce */
    border-color: #dcd9 text-transform;
}

/* CONTENEUR DE L'IMAGE */
.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #0b0c08;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* L'image remplit la zone sans se déformer */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Déclenchement du zoom de l'image au hover sur la carte */
.service-card:hover .service-image-wrapper img {
    transform: scale(1.06);
}

/* TEXTE À L'INTÉRIEUR DES CARTES */
.service-card-content {
    padding: 30px 25px;
    text-align: center;
}

.service-card-content h3 {
    font-family: 'Cinzel', serif;
    color: #1a1b15;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

/* Le titre passe au vert de votre marque quand on survole n'importe où sur la carte */
.service-card:hover .service-card-content h3 {
    color: #8da84e;
}

.service-card-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.service-more {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #8da84e;
    font-size: 13px;
    font-weight: 700;
    transition: padding-left 0.3s ease;
}

.service-card:hover .service-more {
    padding-left: 5px; /* La flèche se décale discrètement vers la droite */
}

/* BOUTON DU BAS */
.services-actions {
    margin-top: 20px;
}

.services-actions .btn {
    display: inline-block;
}

/* ======================================
   RESPONSIVE SERVICES
====================================== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 sur tablettes */
        gap: 25px;
    }
    .services-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 16px;
    }
    .services-grid {
        grid-template-columns: 1fr; /* 1 seule colonne sur mobile */
        gap: 20px;
    }
    .services-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    .service-image-wrapper {
        height: 200px;
    }
}

/* ======================================
   SECTION ABONNEMENTS / PRODUITS
====================================== */

.packages-section {
    background-color: #0b0c08; /* Fond sombre pour faire ressortir les blocs blancs et verts */
    padding: 100px 24px;
    position: relative;
}

.packages-container {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.packages-subtitle {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #8da84e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.packages-title {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 auto 60px auto;
    max-width: 800px;
}

/* Alignement parfait sur 3 colonnes */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch; /* Aligne toutes les cartes à la même hauteur */
    max-width: 1200px;
    margin: 0 auto;
}

/* ======================================
   CARTES STANDARD (BLANCHES)
====================================== */

.package-card {
    background: #fcfbfa; /* Blanc crème doux */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* En-tête de la carte */
.package-icon-wrapper {
    margin-bottom: 20px;
}

.package-icon {
    font-size: 32px;
    display: inline-block;
}

.package-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #1a1b15;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

/* Le petit tag sous le titre (PONCTUEL / SUR-MESURE) */
.package-tag {
    display: inline-block;
    background: #eae8e5;
    color: #555555;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.package-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 35px 0;
    min-height: 50px;
}

/* Corps de la carte (Liste à puces) */
.package-body {
    flex-grow: 1;
    border-top: 1px solid #eae8e5;
    padding-top: 30px;
    margin-bottom: 35px;
}

.package-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.package-body ul li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    padding-left: 28px;
    position: relative;
    margin-bottom: 16px;
}

/* Coche verte stylisée de la maquette */
.package-body ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: -1px;
    color: #8da84e;
    font-size: 14px;
}

/* Pied de carte / Bouton d'action */
.btn-package {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #1a1b15; /* Bouton noir comme sur l'image */
    color: #ffffff;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

.package-card:not(.featured) .btn-package:hover {
    background: #8da84e;
}


/* ======================================
   LA CARTE EN VEDETTE (VERT TEXTURÉ + BADGE)
====================================== */

.package-card.featured {
    /* Superposition d'un dégradé radial et d'un motif de lignes fines pour créer l'effet texturé "organique" */
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(162, 191, 98, 0.4) 0%, rgba(0, 0, 0, 0) 70%),
        linear-gradient(rgba(141, 168, 78, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 168, 78, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, #596b30, #36421c); /* Dégradé de base vert forêt */
    background-size: 100% 100%, 20px 20px, 20px 20px, 100% 100%; /* Maillage subtil */
    
    border-color: #8da84e;
    color: #ffffff;
    transform: scale(1.02); /* Légère emphase */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Variations des textes sur la carte verte */
.package-card.featured h3,
.package-card.featured .package-desc,
.package-card.featured .package-body ul li {
    color: #ffffff;
}

.package-card.featured .package-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.package-card.featured .package-body {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.package-card.featured .package-body ul li::before {
    color: #ffffff; /* Coche blanche sur fond vert */
}

/* Bouton spécifique pour la carte vedette */
.package-card.featured .btn-package {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.package-card.featured .btn-package:hover {
    background: #ffffff;
    color: #36421c;
}

/* LE BADGE DE POPULARITÉ */
.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #8da84e;
    background: #424242;
    color: #ffffff;
    padding: 6px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}


/* ======================================
   RESPONSIVE FORMULES
====================================== */

@media (max-width: 1024px) {
    .packages-grid {
        gap: 20px;
    }
    .package-card {
        padding: 35px 20px;
    }
    .package-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 900px) {
    .packages-grid {
        display: block;
        gap: 40px;
        max-width: 450px;
    }
    .package-card.featured {
        transform: scale(1);
        margin: 10px 0;
    }
}

/* ======================================
   SECTION GUIDES & CONSEILS (BLOG)
====================================== */

.guides-section {
    background-color: #fcfbfa; /* Fond crème très clair */
    padding: 100px 24px;
}

.guides-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* BLOC INTRODUCTION (GAUCHE) */
.guides-intro {
    flex: 0 0 320px; /* Largeur fixe pour le bloc de gauche */
    text-align: left;
    position: sticky;
    top: 120px; /* Reste visible si la section est longue */
}

.guides-subtitle {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #8da84e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.guides-title {
    font-family: 'Cinzel', serif;
    color: #1a1b15;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 35px 0;
}

.btn-guides-more {
    display: inline-block;
    padding: 14px 28px;
    background: #8da84e;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-guides-more:hover {
    background: #1a1b15;
}

/* GRILLE DES ARTICLES (DROITE) */
.guides-grid {
    flex: 1; /* Prend tout l'espace restant */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 articles côte à côte */
    gap: 25px;
}

/* LA CARTE ARTICLE */
.guide-card {
    background: #ffffff;
    border: 1px solid #eae8e5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.guide-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* CONTENEUR IMAGE + BADGE */
.guide-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #0b0c08;
}

.guide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-card:hover .guide-image-wrapper img {
    transform: scale(1.05);
}

/* LE BADGE CATEGORIE SUR L'IMAGE */
.guide-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(26, 27, 21, 0.85); /* Fond sombre transparent chic */
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TEXTES DE L'ARTICLE */
.guide-card-content {
    padding: 25px 20px;
    text-align: left;
}

.guide-card-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif; /* Reste en Sans-serif pour la lisibilité du blog */
    color: #1a1b15;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    min-height: 42px; /* Aligne les titres sur 2 lignes */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide-card:hover .guide-card-content h3 {
    color: #8da84e;
}

.guide-card-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Coupe le texte proprement à 3 lignes max */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 62px;
}

.guide-read-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #8da84e;
    font-size: 13px;
    font-weight: 700;
    transition: padding-left 0.3s ease;
    display: inline-block;
}

.guide-card:hover .guide-read-link {
    padding-left: 4px;
}

/* ======================================
   RESPONSIVE GUIDES
====================================== */

@media (max-width: 1200px) {
    .guides-container {
        flex-direction: column; /* L'intro passe au-dessus sur tablette */
        gap: 40px;
    }
    .guides-intro {
        flex: 1;
        width: 100%;
        text-align: center;
        position: static;
    }
    .guides-title {
        margin-bottom: 20px;
    }
}
@media (max-width: 1000px) {
    .hero h1 {
        font-size: 1.9rem;
        margin: 20px auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hero-features {
        flex-direction: column;
        gap: 25px;
        max-width: 100%; /* Passez de 320px à 100% pour épouser l'écran */
        width: 100%;
        padding: 20px 0; /* On réduit le padding haut/bas et on met 0 sur les côtés */
        margin: 30px auto 0 auto;
        background: none; /* On retire le fond dégradé qui crée l'effet de bloc rigide */
        box-sizing: border-box;
    }
    .hero-features .feature-item strong {
        white-space: normal !important; /* Force le texte à aller à la ligne */
    }
}
@media (max-width: 850px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .guides-section {
        padding: 60px 16px;
    }
    .guides-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    .guide-image-wrapper {
        height: 180px;
    }
}