/* ===== VARIABLES CSS ===== */
:root {
    --vert-lime: #B5CC18;
    --vert-lime-hover: #9DB315;
    --vert-lime-light: #F4F8E1;
    --noir: #1A1A1A;
    --noir-nav: #111111;
    --blanc: #FFFFFF;
    --fond-alt: #F5F7FA;
    --texte-sec: #4A5568;
    --rouge: #DC2626;
    --rouge-pale: #FFF5F5;
    --radius: 8px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--noir);
    background: var(--blanc);
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding-bottom: 70px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 46px;
    font-weight: 800;
}

h2 {
    font-size: 34px;
    margin-bottom: 24px;
}

h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 25px;
    }
    h3 {
        font-size: 20px;
    }
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
    background: var(--noir-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo-img {
    height: 45px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--blanc);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--vert-lime);
}

.lang-link {
    font-weight: 600;
}

.btn-cta-nav {
    background: var(--vert-lime);
    color: var(--noir);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-cta-nav:hover {
    background: var(--vert-lime-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.tel-number {
    font-weight: 800;
}

.hamburger,
.phone-icon-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--noir-nav);
        flex-direction: column;
        justify-content: center;
        gap: 48px;
        font-size: 24px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .btn-cta-nav {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2000;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: var(--blanc);
        transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .phone-icon-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--vert-lime);
        width: 36px;
        height: 36px;
    }
    .phone-icon-mobile svg {
        width: 24px;
        height: 24px;
        stroke: var(--vert-lime);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--vert-lime);
        z-index: 9999;
        height: 58px;
    }

    .mobile-sticky-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        color: var(--noir);
        font-weight: 700;
        font-size: 16px;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 48px 0;
    }
}

.section-alt {
    background: var(--fond-alt);
}

.section-dark {
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-nav) 100%);
    color: var(--blanc);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-nav) 100%);
    color: var(--blanc);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 17px;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.trust-bar {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .trust-bar {
        gap: 16px;
        font-size: 13px;
    }
}

/* ===== HERO INTERNAL ===== */
.hero-internal {
    background: var(--noir);
    color: var(--blanc);
    padding: 80px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-internal {
        padding: 60px 0;
    }
}

.hero-internal h1 {
    margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn-cta {
    display: inline-block;
    background: var(--vert-lime);
    color: var(--noir);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: var(--vert-lime-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-cta-large {
    padding: 20px 48px;
    font-size: 20px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--blanc);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--blanc);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ===== URGENCE BANNER ===== */
.urgence-banner {
    background: var(--rouge);
    color: var(--blanc);
    padding: 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .urgence-banner {
        font-size: 16px;
        padding: 20px;
    }
}

/* ===== GRIDS ===== */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ===== CARDS ===== */
.card {
    background: var(--blanc);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-danger {
    border-left: 4px solid var(--rouge);
}

.card-border-green {
    border-left: 4px solid var(--vert-lime);
}

.card-border-red {
    border-left: 4px solid var(--rouge);
}

.card-indicator {
    text-align: center;
}

.indicator-icon {
    margin-bottom: 16px;
}

.card-green {
    background: var(--vert-lime-light);
}

.card-yellow {
    background: #FFF9E5;
}

.card-red {
    background: var(--rouge-pale);
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.step-card {
    background: var(--blanc);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--noir);
    color: var(--vert-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    background: var(--blanc);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header {
    background: var(--noir);
    color: var(--blanc);
    font-weight: 700;
}

.comparison-cell {
    padding: 16px 24px;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-positive {
    background: var(--vert-lime-light);
}

.comparison-negative {
    background: var(--rouge-pale);
}

@media (max-width: 768px) {
    .comparison-table {
        display: block;
    }

    .comparison-row {
        display: block;
        margin-bottom: 24px;
        background: var(--blanc);
        border-radius: var(--radius);
        overflow: hidden;
    }

    .comparison-header {
        display: none;
    }

    .comparison-cell {
        padding: 12px 16px;
    }

    .comparison-cell:first-child {
        font-weight: 700;
        background: var(--fond-alt);
    }
}

/* ===== CREDIBILITY GRID ===== */
.credibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.credibility-card {
    background: var(--blanc);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.credibility-icon {
    width: 64px;
    height: 64px;
    background: var(--noir);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.credibility-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--vert-lime);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== SERVICES ===== */
.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    display: block;
}

/* ===== SVG ICON SYSTEM ===== */
.card-icon {
    width: 40px;
    height: 40px;
    stroke: var(--vert-lime);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    margin-bottom: 16px;
}
.btn-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: -4px;
    margin-right: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.btn-icon-trail {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: -4px;
    margin-left: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.check-icon {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: -2px;
    margin-right: 8px;
    stroke: var(--vert-lime);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.star-icon {
    width: 18px;
    height: 18px;
    fill: #F59E0B;
    stroke: #F59E0B;
    stroke-width: 1;
    display: inline;
    vertical-align: -3px;
}
.contact-icon-svg {
    width: 20px;
    height: 20px;
    stroke: var(--vert-lime);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}
.type-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 16px;
}
.type-dot-green { background: #16A34A; }
.type-dot-yellow { background: #CA8A04; }
.type-dot-red  { background: #DC2626; }
.list-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: -3px;
    margin-right: 8px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.list-icon-check { stroke: var(--vert-lime); }
.list-icon-x     { stroke: var(--rouge); }

/* ===== TESTIMONIALS ===== */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    margin: 0 8px;
    background: var(--blanc);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: calc(100% - 16px);
    }
}

.testimonial-stars {
    color: #F59E0B;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--texte-sec);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    background: var(--vert-lime);
    color: var(--noir);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-arrow:hover {
    background: var(--vert-lime-hover);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: #D1D5DB;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--vert-lime);
    width: 32px;
    border-radius: 6px;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--blanc);
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--fond-alt);
}

.faq-icon {
    font-size: 24px;
    color: var(--vert-lime);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--texte-sec);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===== QUOTE BOX ===== */
.quote-box {
    background: var(--vert-lime-light);
    border-left: 4px solid var(--vert-lime);
    padding: 32px;
    border-radius: var(--radius);
    margin: 32px 0;
}

.quote-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.quote-author {
    font-weight: 600;
    color: var(--texte-sec);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: var(--vert-lime-light);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 32px;
}

/* ===== PHONE DISPLAY ===== */
.phone-display {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--vert-lime);
    margin: 32px 0;
}

@media (max-width: 768px) {
    .phone-display {
        font-size: 36px;
    }
}

/* ===== CTA CENTER ===== */
.cta-center {
    text-align: center;
    margin-top: 48px;
}

.text-center {
    text-align: center;
}

/* ===== CHECK LIST ===== */
.check-list {
    list-style: none;
}

.check-list li {
    padding: 8px 0;
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 48px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.required {
    color: var(--rouge);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vert-lime);
}

.contact-info-box {
    background: var(--fond-alt);
    padding: 32px;
    border-radius: var(--radius);
    position: sticky;
    top: 100px;
}

.contact-phone-large {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-phone-large a {
    color: var(--vert-lime);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--noir-nav);
    color: var(--blanc);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-col h4 {
    margin-bottom: 16px;
    color: var(--vert-lime);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--vert-lime);
}

.footer-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--vert-lime);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UTILITIES ===== */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}