/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --accent: #F472B6;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
    --bg: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --border: #E2E8F0;
    --card-bg: #FFFFFF;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation moderne */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
}

.logo h1 {
    background: linear-gradient(135deg, #2DD4BF 0%, #F472B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary);
    background: var(--bg-secondary);
}

.nav-menu a.active {
    color: var(--primary);
    background: var(--bg-secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ============================================================
   HERO DARK
   ============================================================ */
.hero-dark {
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #312e81 100%);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-dark .hero-content h2 {
    color: #ffffff;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-dark .hero-content p {
    color: rgba(255,255,255,0.92);
    font-size: 20px;
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.12);
    top: -100px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(244, 114, 182, 0.10);
    bottom: -80px;
    left: -80px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-badge-dark {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.45);
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, #7C3AED 0%, #F472B6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
    transition: all 0.2s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(124, 58, 237, 0.55);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px);
}

/* ============================================================
   HERO SPLIT (accueil uniquement)
   ============================================================ */
.hero-split .container {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.hero-split .hero-content {
    flex: 1;
    min-width: 0;
}

.hero-split .hero-content h2 {
    margin-left: 0;
    margin-right: 0;
}

.hero-split .hero-content p {
    margin-left: 0;
    margin-right: 0;
}

.hero-split .hero-image {
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
}

.hero-split .hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.25), 0 8px 24px rgba(0,0,0,0.10);
    display: block;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--bg);
    padding: 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
    max-width: 160px;
}

/* ============================================================
   CTA DARK
   ============================================================ */
.cta-dark {
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 60%, #be185d 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-dark-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(244, 114, 182, 0.15);
    border-radius: 50%;
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-dark-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-dark-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-dark-sub strong {
    color: rgba(255,255,255,0.95);
}

/* ============================================================
   SECTION SUBTITLE
   ============================================================ */
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -8px;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   WHY DIFFERENT
   ============================================================ */
.why-different {
    background:
        linear-gradient(135deg, rgba(76, 29, 149, 0.88) 0%, rgba(124, 58, 237, 0.82) 50%, rgba(190, 24, 93, 0.88) 100%),
        url('images/devam-jhabak-PZMNQ7ZlkAw-unsplash.jpg') center center / cover no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-different::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.why-different .section-title {
    color: white;
    position: relative;
}

/* ============================================================
   COMMENT ÇA MARCHE
   ============================================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 16px;
}

.step-card {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    margin-top: 8px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    flex: 0 0 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin-top: 80px;
    position: relative;
    opacity: 0.4;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent);
    border-top: 2px solid var(--accent);
    transform: rotate(45deg);
}

/* ============================================================
   POUR QUI
   ============================================================ */
.for-who {
    padding: 100px 0;
    background: var(--bg);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.who-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: default;
}

.who-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.1);
}

.who-icon {
    font-size: 32px;
    line-height: 1;
}

.who-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.who-card-more {
    background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(244,114,182,0.06));
    border-color: rgba(124,58,237,0.2);
}

.who-card-more .who-icon {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-card-more .who-label {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================================
   PHOTO STRIP (citation contexte)
   ============================================================ */
.photo-strip {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.photo-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(76, 29, 149, 0.80) 0%, rgba(124, 58, 237, 0.65) 55%, rgba(0,0,0,0.20) 100%);
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.photo-strip-quote {
    color: white;
    font-size: 1.45rem;
    font-weight: 700;
    max-width: 640px;
    line-height: 1.45;
    font-style: italic;
    margin: 0;
}

.photo-strip-quote cite {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 14px;
    opacity: 0.80;
    font-style: normal;
    letter-spacing: 0.02em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.08);
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE NOUVELLES SECTIONS
   ============================================================ */
@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        gap: 32px;
    }

    .step-connector {
        display: none;
    }

    .who-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   BADGE HERO (base - light pages)
   ============================================================ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(244, 114, 182, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.25);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Hero moderne avec gradient subtil */
.hero {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 40%, #fce7f3 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Boutons modernes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #EC4899 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: var(--text-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.025em;
}

/* Cartes style moderne React/SaaS */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.feature-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.feature-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Sections alternées - Style moderne */
.feature-alternate {
    padding: 100px 0;
}

.feature-alternate.alternate-bg {
    background: var(--bg-secondary);
}

.feature-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row .feature-image {
    order: 1;
}

.feature-row .feature-text {
    order: 2;
}

.feature-row.reverse .feature-image {
    order: 2;
}

.feature-row.reverse .feature-text {
    order: 1;
}

.feature-image {
    text-align: center;
}

.feature-image img {
    width: 100%;
    max-width: 780px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.placeholder-image {
    font-size: 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px;
    border-radius: 20px;
    border: 2px dashed var(--border);
}

.feature-text h2 {
    color: var(--text-primary);
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    color: var(--text-secondary);
    padding: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 800;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-text ul {
    margin-top: 20px;
}

.about-text ul li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.about-image {
    text-align: center;
    font-size: 120px;
}

/* Roadmap */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.roadmap-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.roadmap-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.roadmap-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.roadmap-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.roadmap-card ul {
    list-style: none;
    padding: 0;
}

.roadmap-card ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.roadmap-card ul li:last-child {
    border-bottom: none;
}

.roadmap-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.status-dev {
    background: #fef3c7;
    color: #92400e;
}

.status-soon {
    background: #dbeafe;
    color: #1e40af;
}

.status-planned {
    background: #f3e8ff;
    color: #6b21a8;
}

/* Formules tarifaires */
.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.formule-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.formule-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.formule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
    border-color: var(--primary);
}

.formule-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.12);
}

.formule-header {
    margin-bottom: 28px;
}

.formule-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 16px;
}

.formule-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 12px;
}

.formule-price .price-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text);
}

.formule-price .price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.formule-price .price-period {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.formule-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.formule-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.formule-features li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 4px;
}

.formule-features li.non-inclus {
    color: #f87171;
    text-decoration: line-through;
    text-decoration-color: #f87171;
}

.formule-features li:not(.non-inclus) {
    color: #16a34a;
}

.formule-features li::first-letter {
    color: var(--primary);
    font-weight: 700;
}

/* Services modernes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.service-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Contact Form moderne */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s ease;
    background: var(--bg);
    color: var(--text-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

/* Pricing Page */
.pricing {
    padding: 100px 0;
}

.pricing-intro {
    margin-bottom: 64px;
}

.pricing-main-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.pricing-main-card h3 {
    color: var(--text-primary);
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 800;
}

.pricing-price {
    margin: 40px 0;
}

.price-amount {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.04em;
}

.price-currency {
    font-size: 24px;
    color: var(--text-secondary);
    margin-left: 8px;
    font-weight: 700;
}

.price-period {
    font-size: 18px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 36px 0;
    text-align: left;
}

.pricing-features li {
    padding: 14px 0;
    color: var(--text-secondary);
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

/* Modules */
.pricing-modules {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.module-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.module-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.module-card h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 700;
}

.module-price {
    margin: 24px 0;
}

.module-price .price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.module-price .period {
    color: var(--text-tertiary);
    font-size: 15px;
    font-weight: 500;
}

.module-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.module-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.module-features li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
}

/* Pricing Example */
.pricing-example {
    padding: 100px 0;
}

.example-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.example-card h3 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 36px;
    font-size: 28px;
    font-weight: 800;
}

.example-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.example-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.2s;
}

.example-item:hover {
    background: #f1f5f9;
}

.example-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
}

.example-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.example-total {
    display: flex;
    justify-content: space-between;
    padding: 24px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 16px;
    margin-top: 20px;
    font-size: 18px;
}

.total-label {
    font-weight: 600;
}

.total-price {
    font-weight: 900;
    font-size: 28px;
}

/* Footer moderne complet */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    background: linear-gradient(135deg, #2DD4BF 0%, #F472B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-column ul li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid var(--border);
        border-right: none;
    }

    .hero-dark .hero-content h2 {
        font-size: 2.5rem;
    }

    .cta-dark-title {
        font-size: 1.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        padding: 32px 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        font-size: 6rem;
    }

    /* Responsive pour sections alternées */
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Sur mobile, toujours image puis texte */
    .feature-row .feature-image,
    .feature-row.reverse .feature-image {
        order: 1;
    }

    .feature-row .feature-text,
    .feature-row.reverse .feature-text {
        order: 2;
    }

    .placeholder-image {
        font-size: 6rem;
        padding: 2.5rem;
    }

    .feature-text h2 {
        font-size: 1.75rem;
    }

    .feature-text p {
        font-size: 1.05rem;
    }

    .pricing-main-card {
        padding: 2.5rem 1.5rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Hero split responsive */
    .hero-split .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-split .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-split .hero-image {
        flex: none;
        width: 100%;
    }

    .hero-split .hero-content h2 {
        margin-left: auto;
        margin-right: auto;
    }

    /* Photo strip responsive */
    .photo-strip {
        height: 240px;
    }

    .photo-strip-overlay {
        padding: 0 28px;
    }

    .photo-strip-quote {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-text h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .example-card {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
