/* ========================================
   WebFlash v2 - CSS Principal
   ======================================== */

/* --- Reset & Variables --- */
:root {
    --primary: #FF6B00;
    --orange: #FF6B00;
    --blue: #1E3A5F;
    --blue-light: #457b9d;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --green: #10b981;
    --dark: #000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--blue);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { color: inherit; }

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo .web { color: var(--orange); }
.logo .flash { color: var(--blue); }

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--blue);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover {
    background: var(--light);
    color: var(--orange);
}

.nav-link.active {
    color: var(--orange);
    font-weight: 600;
}

.header-cta {
    background: var(--green);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.header-cta:hover {
    background: #0ea472;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--blue);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }
}

/* ========================================
   SECTIONS COMMUNES
   ======================================== */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--blue);
}

.section-title p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Page hero (pages internes) */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, #1a2f47 50%, #2a4a6d 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero h1 .highlight { color: var(--orange); }

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: #ccc;
}

/* ========================================
   HERO (Accueil)
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, #1a2f47 50%, #2a4a6d 100%);
    color: white;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-animation {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-animation .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.hero-bg-animation .shape-1 {
    width: 500px; height: 500px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.3) 0%, rgba(255, 107, 0, 0.1) 100%);
    top: -10%; right: -5%;
    animation-delay: 0s; animation-duration: 25s;
}

.hero-bg-animation .shape-2 {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, rgba(69, 123, 157, 0.4) 0%, rgba(69, 123, 157, 0.1) 100%);
    bottom: -15%; left: -10%;
    animation-delay: -5s; animation-duration: 30s;
}

.hero-bg-animation .shape-3 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, transparent 100%);
    top: 40%; left: 30%;
    animation-delay: -10s; animation-duration: 22s;
}

.hero-bg-animation .shape-4 {
    width: 250px; height: 250px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, transparent 100%);
    top: 20%; right: 20%;
    animation-delay: -7s; animation-duration: 28s;
}

.hero-bg-animation .shape-5 {
    width: 350px; height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    bottom: 10%; right: 30%;
    animation-delay: -15s; animation-duration: 35s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(30px, -40px) rotate(5deg) scale(1.05); }
    50% { transform: translate(-20px, 20px) rotate(-5deg) scale(0.95); }
    75% { transform: translate(40px, 30px) rotate(3deg) scale(1.02); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: lightSweep 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes lightSweep {
    0%, 100% { left: -50%; }
    50% { left: 100%; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight { color: var(--orange); }

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Benefits grid */
.hero-benefits { margin-bottom: 2rem; }

.hero-benefits-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 0.75rem;
}

.benefit-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 20px; height: 20px;
    color: white;
}

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

.benefit-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.benefit-text span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

/* Hero price box */
.hero-price-box {
    text-align: center;
    padding: 0.75rem 0;
}

.price-text {
    display: block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
}

.price-text strong {
    color: white;
    font-weight: 700;
}

.price-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-badge {
    background: rgba(16, 185, 129, 0.25);
    color: #6ee7b7;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========================================
   FORM CARD
   ======================================== */
.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h2 {
    color: var(--blue);
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.form-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--blue);
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group select {
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236c757d' viewBox='0 0 24 24'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 24px;
}

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

.form-group input.error { border-color: var(--orange); }
.error-message { color: var(--orange); font-size: 0.8rem; margin-top: 0.25rem; display: none; }

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #D66B03;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(238, 120, 3, 0.35);
}

.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.urgency-banner {
    background: linear-gradient(90deg, #EE7803 0%, #d66a00 100%);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    text-align: center;
}

.urgency-banner .urgency-icon { display: inline-block; margin-right: 0.5rem; }
.urgency-banner .urgency-text { font-size: 0.85rem; font-weight: 600; }

.form-footer {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.form-footer p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.form-footer .green { color: var(--green); font-weight: 600; }

.success-message { display: none; text-align: center; padding: 2rem 1rem; }
.success-message.show { display: block; }

.success-icon {
    width: 70px; height: 70px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg { width: 35px; height: 35px; fill: white; }
.success-message h3 { color: var(--blue); margin-bottom: 0.5rem; font-size: 1.3rem; }
.success-message p { color: var(--gray); }
.success-message .success-hint { color: #9ca3af; font-size: 0.85rem; margin-top: 0.5rem; }

.btn-form-direct {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--orange);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-form-direct:hover {
    background: #e65c00;
    transform: translateY(-2px);
    color: white;
}

/* ========================================
   TIMELINE (Comment ca marche)
   ======================================== */
.how-it-works { background: var(--light); }

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue), var(--green));
    border-radius: 3px;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-icon {
    width: 70px; height: 70px;
    background: white;
    border: 3px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-icon.icon-success { border-color: var(--green); }

.timeline-icon svg {
    width: 28px; height: 28px;
    color: var(--blue);
}

.timeline-icon.icon-success svg { color: var(--green); }

.timeline-number {
    position: absolute;
    top: -8px; right: -8px;
    width: 26px; height: 26px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon.icon-success .timeline-number { background: var(--green); }

.timeline-content {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    flex: 1;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.timeline-duration {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-step:last-child .timeline-duration { background: var(--green); }

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-details {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-details li {
    background: var(--light);
    color: var(--blue);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.timeline-details li::before {
    content: '\2713 ';
    color: var(--green);
    font-weight: 700;
}

/* ========================================
   CTA BUTTONS (shared)
   ======================================== */
.how-cta, .portfolio-cta, .pricing-cta, .seo-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-cta-orange {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(238, 120, 3, 0.3);
}

.btn-cta-orange:hover {
    background: #D66B03;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(238, 120, 3, 0.4);
}

.btn-cta-orange.large {
    padding: 1.1rem 3rem;
    font-size: 1.15rem;
    box-shadow: 0 10px 30px rgba(238, 120, 3, 0.4);
}

.cta-note {
    display: block;
    margin-top: 0.75rem;
    color: var(--gray);
    font-size: 0.85rem;
}

/* ========================================
   TRUST COUNTER
   ======================================== */
.trust-counter {
    background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: white;
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 3rem;
    color: var(--blue);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 18px; height: 18px;
    fill: #fbbf24;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--blue);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 0.15rem 0;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

.testimonial-source {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--gray);
}

.testimonial-source svg {
    width: 14px; height: 14px;
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio {
    background: var(--light);
    padding: 5rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.portfolio-mockup {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: white;
    border-radius: 12px 12px 0 0;
}

.portfolio-iframe-container {
    width: 100%; height: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio-iframe-container iframe {
    width: 1200px; height: 800px;
    border: none;
    transform: scale(0.29);
    transform-origin: top left;
    pointer-events: none;
}

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
    background: transparent;
    cursor: default;
}

.portfolio-info { padding: 1.5rem; }

.portfolio-sector {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.portfolio-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.35rem;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.portfolio-cta p {
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.portfolio-cta p strong { color: var(--orange); }

/* ========================================
   NOT FOR YOU (Filtrage)
   ======================================== */
.not-for-you {
    background: #f8fafc;
    padding: 4rem 0;
}

.not-for-you-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.not-for-you-list { list-style: none; }

.not-for-you-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--blue);
}

.not-for-you-list .x-icon {
    width: 24px; height: 24px;
    color: #ef4444;
    flex-shrink: 0;
}

.not-for-you-message {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.not-for-you-message h3 {
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.not-for-you-message p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.not-for-you-message .highlight-text {
    color: var(--green);
    font-weight: 600;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-section {
    background: linear-gradient(135deg, var(--blue) 0%, #2a4a6d 100%);
    color: white;
}

.pricing-section .section-title h2,
.pricing-section .section-title p { color: white; }

.pricing-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.pricing-card-main { color: var(--blue); }

.pricing-card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-label {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 1rem;
}

.pricing-amount .currency { font-size: 1.5rem; font-weight: 700; margin-top: 0.5rem; margin-right: 0.25rem; }
.pricing-amount .price { font-size: 4.5rem; font-weight: 800; }
.pricing-amount .decimals { font-size: 2rem; font-weight: 700; margin-top: 0.5rem; }
.pricing-amount .period { font-size: 1.1rem; font-weight: 500; color: var(--gray); align-self: flex-end; margin-bottom: 0.75rem; margin-left: 0.25rem; }

.pricing-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pricing-tags .tag {
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-tags .tag-green { background: var(--green); color: white; }
.pricing-tags .tag-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

.pricing-card-body { padding: 1.5rem 2rem 2rem; }

.pricing-list { list-style: none; }

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-list li:last-child { border-bottom: none; }

.pricing-list .check-icon {
    width: 22px; height: 22px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-list li div strong {
    display: block;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.15rem;
}

.pricing-list li div span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Free card */
.pricing-card-free {
    background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.pricing-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}

.pricing-free-badge svg { width: 18px; height: 18px; }

.pricing-card-free h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; }
.pricing-card-free > p { opacity: 0.9; line-height: 1.6; margin-bottom: 1.5rem; }

.pricing-free-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.pricing-free-value .value-label { font-size: 0.9rem; opacity: 0.9; }
.pricing-free-value .value-crossed { font-size: 1.75rem; font-weight: 700; text-decoration: line-through; opacity: 0.6; }
.pricing-free-value .value-arrow { font-size: 1.25rem; opacity: 0.7; }
.pricing-free-value .value-free { font-size: 2.25rem; font-weight: 800; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.pricing-free-list { list-style: none; margin-top: auto; }

.pricing-free-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-weight: 500;
}

.pricing-free-list .check-icon {
    width: 20px; height: 20px;
    color: white;
    flex-shrink: 0;
}

.pricing-free-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.free-guarantee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.1);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.free-guarantee svg { width: 24px; height: 24px; flex-shrink: 0; opacity: 0.9; }

.pricing-reassurance {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pricing-reassurance span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-reassurance svg { width: 18px; height: 18px; }

/* ========================================
   COMPARISON TABLE
   ======================================== */
.why-us { background: var(--light); }

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--blue);
    color: white;
}

.comparison-header .comparison-col {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-header .comparison-feature { justify-content: flex-start; }

.comparison-label { font-weight: 700; font-size: 1rem; }
.comparison-label .web { color: var(--orange); }

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-col {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-feature {
    font-weight: 600;
    color: var(--blue);
    font-size: 0.95rem;
}

.comparison-others {
    background: #fef2f2;
    justify-content: center;
    text-align: center;
    color: #991b1b;
    font-size: 0.9rem;
}

.comparison-us {
    background: #f0fdf4;
    justify-content: center;
    text-align: center;
    color: #166534;
    font-size: 0.9rem;
    font-weight: 500;
}

.price-tag {
    background: #fecaca;
    color: #991b1b;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.free-tag {
    background: var(--green);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.comparison-row-total {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.comparison-row-total .comparison-feature { font-size: 1.05rem; font-weight: 700; }

.price-high { font-size: 1.1rem; font-weight: 700; color: #dc2626; }
.price-low { font-size: 1.25rem; font-weight: 800; color: var(--green); }

/* ========================================
   SEO SECTION
   ======================================== */
.seo-section {
    background: linear-gradient(135deg, #1E3A5F 0%, #2a4a6d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.seo-section .section-title h2,
.seo-section .section-title p { color: white; }
.seo-section .section-title p { opacity: 0.85; }

.seo-content { position: relative; z-index: 1; }

.seo-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.seo-hero-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.seo-hero-text h3 span { color: var(--orange); }

.seo-hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.seo-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.seo-stat { text-align: center; }
.seo-stat-number { font-size: 2.5rem; font-weight: 800; color: var(--orange); display: block; }
.seo-stat-label { font-size: 0.85rem; opacity: 0.8; }

.seo-hero-visual {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-search-preview {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.seo-search-bar {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 25px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
}

.seo-search-bar svg { width: 20px; height: 20px; color: var(--gray); }
.seo-search-bar span { font-size: 0.9rem; color: var(--gray); }

.seo-result {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.seo-result:last-child { border-bottom: none; }

.seo-result-url { font-size: 0.8rem; color: var(--green); margin-bottom: 0.25rem; }
.seo-result-title { font-size: 1.1rem; font-weight: 600; color: #1a0dab; margin-bottom: 0.25rem; }
.seo-result-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

.seo-result.highlighted {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid var(--orange);
    position: relative;
}

.seo-result.highlighted::after {
    content: '1er';
    position: absolute;
    top: -10px; right: 10px;
    background: var(--orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.seo-feature {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.seo-feature-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
}

.seo-feature h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.seo-feature p { font-size: 0.9rem; opacity: 0.8; line-height: 1.6; }

.seo-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.seo-price-amount { font-size: 2.5rem; font-weight: 800; color: var(--orange); }
.seo-price-period { font-size: 1rem; opacity: 0.8; }
.seo-price-setup { font-size: 0.85rem; opacity: 0.7; display: block; margin-top: 0.25rem; }

.btn-seo {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-seo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

/* ========================================
   GOOGLE INCLUDED SECTION
   ======================================== */
.google-included {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.google-included::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.google-included .container { position: relative; z-index: 1; }

.gi-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid #bbf7d0;
}

.gi-badge svg { width: 18px; height: 18px; }

.gi-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.gi-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.gi-text h2 span { color: var(--orange); }

.gi-text > p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.gi-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.gi-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--light);
    border-radius: 14px;
    transition: all 0.3s;
}

.gi-feature:hover {
    background: #fff7ed;
    transform: translateX(5px);
}

.gi-feature-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gi-feature-icon svg {
    width: 22px; height: 22px;
    color: white; stroke: white; fill: none;
}

.gi-feature h4 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 0.2rem; }
.gi-feature p { font-size: 0.88rem; color: var(--gray); line-height: 1.5; }

/* Dashboard mockup */
.gi-dashboard {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12), 0 4px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.gi-dash-header {
    background: linear-gradient(135deg, var(--blue) 0%, #2a4a6d 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gi-dash-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gi-dash-title svg { width: 20px; height: 20px; }

.gi-dash-period {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.gi-dash-body { padding: 1.5rem; }

.gi-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.gi-dash-stat {
    text-align: center;
    padding: 0.85rem 0.5rem;
    border-radius: 12px;
    background: var(--light);
}

.gi-dash-stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.15rem;
}

.gi-dash-stat-value.blue { color: #3b82f6; }
.gi-dash-stat-value.green { color: var(--green); }
.gi-dash-stat-value.orange { color: var(--orange); }
.gi-dash-stat-value.purple { color: #8b5cf6; }

.gi-dash-stat-label {
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gi-dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
    padding: 0.75rem 0;
    border-top: 1px solid #f1f5f9;
}

.gi-chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    min-height: 8px;
    background: linear-gradient(180deg, #3b82f6 0%, rgba(59, 130, 246, 0.3) 100%);
    transition: height 0.3s;
}

.gi-chart-bar:hover {
    background: linear-gradient(180deg, var(--orange) 0%, rgba(255, 107, 0, 0.3) 100%);
}

.gi-dash-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.gi-dash-legend span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--gray);
}

.gi-legend-dot { width: 8px; height: 8px; border-radius: 2px; }
.gi-legend-dot.blue { background: #3b82f6; }
.gi-legend-dot.orange { background: var(--orange); }

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
    background: var(--orange);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-final h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-final p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.cta-final .btn-cta {
    display: inline-block;
    background: white;
    color: var(--orange);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-final .btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========================================
   FAQ
   ======================================== */
.faq-section { background: var(--light); }

.faq-categories {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category { margin-bottom: 2.5rem; }

.faq-category h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--orange); }

.faq-question .faq-icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.faq-item.open .faq-question { color: var(--orange); }

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

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--blue);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.footer-brand .logo .flash { color: white; }
.footer-brand p { opacity: 0.7; font-size: 0.85rem; line-height: 1.7; }

.footer h4 {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }

.footer ul a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer ul a:hover { opacity: 1; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
}

.footer-bottom a:hover { text-decoration: underline; }

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
    padding-top: 6rem;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero { align-items: flex-start; padding-top: 7rem; }
    .hero .container { grid-template-columns: 1fr; gap: 2rem; }
    .hero h1 { font-size: 2rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 968px) {
    .seo-hero { grid-template-columns: 1fr; gap: 2rem; }
    .seo-hero-text h3 { font-size: 1.75rem; }
    .seo-features { grid-template-columns: 1fr; }
    .gi-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .gi-text h2 { font-size: 1.65rem; }
    .gi-dash-stats { grid-template-columns: repeat(2, 1fr); }
    .gi-dashboard { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 900px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
    .portfolio-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-layout { grid-template-columns: 1fr; }
    .pricing-card-free { order: -1; }
    .not-for-you-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 6.5rem 0 2rem; min-height: auto; }
    .hero h1 { font-size: 1.65rem; margin-bottom: 0; }
    .hero-subtitle { margin-bottom: 0; }

    .hero .container { display: flex; flex-direction: column; gap: 1rem; }
    .hero-content { display: contents; }
    .hero-content h1 { order: 1; }
    .hero-content .hero-subtitle { order: 2; margin-bottom: 0; }
    .form-card { order: 3; }
    .hero-benefits { order: 4; display: block; margin-top: 0.5rem; }
    .hero-price-box { display: none; }

    .page-hero { padding: 7rem 0 3rem; }
    .page-hero h1 { font-size: 1.8rem; }

    .timeline::before { left: 25px; }
    .timeline-step { gap: 1.25rem; }
    .timeline-icon { width: 50px; height: 50px; }
    .timeline-icon svg { width: 22px; height: 22px; }
    .timeline-number { width: 22px; height: 22px; font-size: 0.75rem; top: -6px; right: -6px; }
    .timeline-content { padding: 1.25rem; }
    .timeline-content h3 { font-size: 1.1rem; }
    .timeline-details { flex-direction: column; }

    .trust-stats { gap: 1.5rem; }
    .trust-number { font-size: 1.8rem; }
    .trust-divider { display: none; }

    .comparison-header, .comparison-row { grid-template-columns: 1.2fr 1fr 1fr; }
    .comparison-header .comparison-col { padding: 0.75rem 0.5rem; }
    .comparison-label { font-size: 0.7rem; }
    .comparison-col { padding: 0.6rem 0.4rem; font-size: 0.75rem; }
    .comparison-feature { font-size: 0.7rem; }
    .comparison-others, .comparison-us { font-size: 0.7rem; }
    .price-tag, .free-tag { padding: 0.25rem 0.5rem; font-size: 0.65rem; }
    .price-high { font-size: 0.75rem; }
    .price-low { font-size: 0.85rem; }
    .comparison-row-total .comparison-feature { font-size: 0.75rem; }

    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-bottom a { margin: 0 0.75rem; }

    .pricing-reassurance { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 600px) {
    .pricing-amount .price { font-size: 3.5rem; }
}

@media (max-width: 500px) {
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .benefit-item { padding: 0.6rem 0.5rem; gap: 0.5rem; }
    .benefit-icon { width: 28px; height: 28px; min-width: 28px; }
    .benefit-icon svg { width: 14px; height: 14px; }
    .benefit-text strong { font-size: 0.75rem; line-height: 1.2; }
    .benefit-text span { font-size: 0.65rem; line-height: 1.2; }
}

/* ========================================
   MOBILE STICKY CTA (pages secondaires)
   ======================================== */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: white;
        padding: 0.75rem 1rem;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .mobile-sticky-cta a {
        display: block;
        width: 100%;
        text-align: center;
        background: var(--orange);
        color: white;
        padding: 0.85rem 1.5rem;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        font-family: inherit;
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    }

    /* Ajouter du padding-bottom au footer pour ne pas cacher le contenu */
    body:has(.mobile-sticky-cta) .footer {
        padding-bottom: 5rem;
    }
}
