/* Couleurs */
:root {
    --primary-color: #009E60;
    --green-color: #064E3B;
    --blue-color: #0EA5E9;
    --yellow-color: #F59E0B;
    --bg-footer: #1F2937;
    --bg-color: #F9FAFB;
    --top-bg: #E4F1F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #111827;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* TOP SECTION */
.top-section {
    background-color: var(--top-bg);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding-bottom: 50px;
}

.top-section2 {
    background-color: var(--top-bg);
}

.header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 15px 5%;
    border-radius: 100px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.308);

    /* Effet Glassmorphism Apple */
    background: rgba(233, 233, 233, 0.5);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.logo:hover {
    color: var(--primary-color);
}

.logo img {
    height: 35px;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav a {
    position: relative;
    text-decoration: none;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    transition:
        color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        transform 0.25s ease;
    /* Pseudo-element prêt mais invisible */
    overflow: hidden;
    z-index: 0;
}

/* Fond glass animé (l'effet surbrillance) */
.nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: #ffffff33;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 4px 16px rgba(0, 158, 96, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: scaleX(0.5) scaleY(0.1);
    z-index: -1;
}

/* Éclat lumineux qui glisse (shimmer) */
.nav a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 120%;
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.nav a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav a:hover::before {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
}

.nav a:hover::after {
    left: 120%;
}

/* ── Lien actif (page courante) ────────────────────────────── */
.nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav a.active::before {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(181, 255, 225, 0.18) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 4px 18px rgba(0, 158, 96, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: none;
    /* déjà visible, pas d'animation */
}

/* Petit point vert sous le lien actif */


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.97);
}

.btn-dark {
    background-color: var(--green-color);
    color: white;
}

.btn-dark:hover {
    background-color: #04382A;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #00824F;
}

.btn-icon {
    gap: 10px;
}

.icon {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column;
    padding: 140px 40px 20px 40px;
    /* Offset to compensate for fixed header */
}

.hero-text {
    width: 100%;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #374151;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 158, 96, 0.08) 0%, rgba(6, 78, 59, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 158, 96, 0.1);
    border-left: 4px solid var(--primary-color);
}

.highlight-icon-wrapper {
    background: var(--green-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 158, 96, 0.15);
    flex-shrink: 0;
}

.highlight-icon-wrapper .icon-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-highlight p {
    margin-bottom: 0;
}

.hero-highlight strong {
    color: var(--green-color);
    font-weight: 700;
}

.highlight-text-accent {
    color: var(--primary-color) !important;
}

.hero-image {
    width: 100%;
    margin-bottom: 40px;
}

.hero-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* SOLUTION SECTION */
.solution-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #111827;
}

.cards-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.card {
    border-radius: 20px;
    padding: 15px;
    display: flex;
    gap: 20px;
    width: 48%;
    align-items: stretch;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.308);
}

.card-day {
    background-color: var(--green-color);
    color: white;
    transition: all 0.5s ease;
}

.card-night {
    background-color: var(--primary-color);
    color: white;
    transition: all 0.5s ease;
}

/*Card-day hover*/
.card-day:hover {
    transform: translateY(-5px) scale(1.01);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.308));
    transition: all 0.5s ease;
}

/*Card-night hover*/
.card-night:hover {
    transform: translateY(-5px) scale(1.01);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.308));
    transition: all 0.5s ease;
}

.card-img {
    width: 180px;
    object-fit: contain;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 15px;
    flex: 1;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #F3F4F6;
}

/* TRUST SECTION */
.trust-section {
    background-color: var(--top-bg);
    padding: 60px 20px;
    text-align: center;
}

.trust-section h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 40px;
}

.trust-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 30%;
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-card p {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FOOTER */
.footer {
    background-color: var(--bg-footer);
    color: white;
    padding: 60px 20px 20px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    border-bottom: 1px solid #374151;
    padding-bottom: 40px;
    text-align: left;
}

.footer-col-about {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links-list li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: #9CA3AF;
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-contact a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.icon-social {
    width: 24px;
    height: 24px;
    filter: invert(65%) sepia(13%) saturate(382%) hue-rotate(178deg) brightness(91%) contrast(87%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover .icon-social {
    filter: brightness(0) saturate(100%) invert(43%) sepia(91%) saturate(1483%) hue-rotate(128deg) brightness(96%) contrast(101%);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: #6B7280;
    font-size: 0.85rem;
    padding-top: 20px;
}

/* RESPONSIVE (Tablets & Mobiles) */
@media (max-width: 1024px) {
    .badge-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .badge-left {
        min-width: auto;
        max-width: none;
    }

    .badge-left img {
        height: 35px;
        margin-bottom: 10px;
    }

    .badge-left span {
        max-width: none;
        font-size: 1rem;
        font-weight: 600;
    }

    .badge-text {
        font-size: 0.85rem;
        padding-top: 7px;
    }
}

@media (max-width: 768px) {
    .cards-wrapper {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

    .header {
        flex-direction: column;
        gap: 10px;
        padding: 15px 5%;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    .nav a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .hero {
        padding-top: 230px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .trust-card {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }
}

/* INFO PAGE & CONTACT PAGE SPECIFIC STYLES */

.info-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 140px 40px 40px 40px;
    /* Offset for header */
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    width: 35%;
}

.info-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #374151;
    width: 60%;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 40px 30px 40px;
}

.badge-card {
    background: linear-gradient(135deg, var(--green-color) 0%, #033225 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.badge-card:hover {
    box-shadow: 0 15px 35px rgba(6, 78, 59, 0.25);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 25%;
    flex-shrink: 0;
}

.badge-left img {
    height: 38px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.badge-card:hover .badge-left img {
    transform: scale(1.1);
}

.badge-left span {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.badge-text {
    flex: 1;
    font-size: 0.95rem;
    color: #D1D5DB;
    line-height: 1.6;
    padding-left: 5px;
}

.info-bottom {
    padding: 40px 20px 80px 20px;
}

.info-content-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.info-image {
    width: 55%;
}

.info-image img {
    width: 100%;
    object-fit: cover;
}

.info-text-right {
    width: 45%;
}

.info-text-right h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #111827;
}

.contact-hero {
    display: flex;
    align-items: center;
    padding: 140px 40px 60px 40px;
    gap: 40px;
}

.contact-text {
    width: 40%;
}

.contact-text h1 {
    font-size: 3rem;
    line-height: 1.25;
    color: #111827;
}

.contact-image {
    width: 60%;
    display: flex;
    justify-content: center;
}

.contact-image img {
    max-width: 100%;
}

.contact-content-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.contact-image-bottom {
    width: 60%;
}

.contact-image-bottom img {
    width: 100%;
}

.contact-text-right {
    width: 40%;
}

.contact-text-right h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    color: #111827;
}

.contact-subtitle {
    width: 55%;
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.5;
    margin-top: 15px;
}

/* RESPONSIVE ADDITIONS FOR NEW PAGES */
@media (max-width: 768px) {
    .info-hero {
        flex-direction: column;
        gap: 20px;
        padding-top: 230px;
    }

    .info-title,
    .info-desc {
        width: 100%;
    }

    .badges-grid {
        grid-template-columns: 1fr;
    }

    .info-content-flex,
    .contact-hero,
    .contact-content-flex {
        flex-direction: column;
    }

    .contact-hero {
        padding-top: 230px;
    }

    .info-image,
    .info-text-right,
    .contact-text,
    .contact-image,
    .contact-image-bottom,
    .contact-text-right,
    .contact-subtitle {
        width: 100%;
    }
}

/* LEGAL PAGES */
.legal-page {
    padding: 140px 20px 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 30px;
    text-align: center;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content ul {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 230px;
    }

    .legal-content {
        padding: 20px;
    }
}

/* EQUIPEMENTS PAGE STYLES */
.equipements-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 40px 20px;
}

.equipements-hero-content {
    max-width: 800px;
}

.equipements-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.equipements-hero-content p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 30px;
    line-height: 1.6;
}

.equip-section {
    padding: 80px 20px;
}

.equip-section-reverse {
    background-color: var(--bg-color);
    border-radius: 40px;
}

.equip-content-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.equip-image {
    width: 50%;
}

.equip-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    object-fit: cover;
}

.equip-text {
    width: 50%;
}

.equip-text h2 {
    font-size: 2.2rem;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
}

.equip-text p {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.equip-benefits {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.equip-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: #111827;
}

.equip-icon-wrapper {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 158, 96, 0.2);
}

.icon-small-filter {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.equip-trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.equip-trust-card {
    width: 100%;
    min-width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.trust-icon-container {
    background: var(--top-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.equip-trust-card:hover .trust-icon-container {
    transform: scale(1.1);
    background: var(--primary-color);
}

.equip-trust-card:hover .trust-card-icon {
    filter: brightness(0) invert(1);
}

.trust-card-icon {
    width: 30px;
    height: 30px;
    transition: filter 0.3s ease;
}

.cta-finale {
    background: var(--green-color);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-finale-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-finale h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-finale p {
    font-size: 1.1rem;
    color: #E5E7EB;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-actions .btn-dark {
    background: transparent;
    border: 2px solid white;
}

.cta-actions .btn-dark:hover {
    background: white;
    color: var(--green-color);
}

@media (max-width: 1024px) {
    .equip-trust-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .equipements-hero {
        padding-top: 230px;
    }
    .equipements-hero-content h1 {
        font-size: 2.2rem;
    }
    .equip-content-flex {
        flex-direction: column;
        gap: 30px;
    }
    .equip-image, .equip-text {
        width: 100%;
    }
    .reverse-desktop {
        flex-direction: column-reverse;
    }
    .equip-trust-cards {
        grid-template-columns: 1fr;
    }
    .cta-actions {
        flex-direction: column;
    }
}

/* =============================================
   STATS SECTION (Homepage)
   ============================================= */
.stats-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stats-section h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--green-color) 0%, #033225 100%);
    border-radius: 20px;
    padding: 40px 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #D1D5DB;
    line-height: 1.5;
}

/* =============================================
   PROCESS SECTION (Info page)
   ============================================= */
.process-section {
    padding: 80px 20px;
}

.process-section h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
}

/* =============================================
   REASSURANCE / TESTIMONIALS (Info page)
   ============================================= */
.reassurance-section {
    background: linear-gradient(135deg, var(--green-color) 0%, #022a1e 100%);
    padding: 80px 20px;
    text-align: center;
}

.reassurance-section h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 50px;
}

.reassurance-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.reassurance-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.reassurance-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.14);
}

.reassurance-quote {
    font-size: 1rem;
    color: #E5E7EB;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.reassurance-quote::before {
    content: '\201C';
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-style: normal;
    line-height: 1;
}

.reassurance-author {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* =============================================
   SPECS SECTION (Equipements page)
   ============================================= */
.specs-section {
    padding: 80px 20px;
}

.specs-section h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 50px;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.spec-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spec-card h3 {
    font-size: 1.4rem;
    color: var(--green-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    color: #4B5563;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li::before {
    content: '\2713';
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* =============================================
   FAQ SECTION (Contact page)
   ============================================= */
.faq-section {
    padding: 80px 20px;
}

.faq-section h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 50px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 1.1rem;
    color: #111827;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE — New Sections
   ============================================= */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .reassurance-cards {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-finale h2 {
        font-size: 1.8rem;
    }
}