/* PaieWatch — Style principal — Navy + Émeraude */

:root {
    /* Navy */
    --color-navy: #0f172a;
    --color-navy-light: #1e293b;
    --color-navy-mid: #334155;

    /* Primary — Émeraude (replaced indigo) */
    --color-primary: #10b981;
    --color-primary-dark: #059669;

    /* Émeraude — CTA & succès */
    --color-emerald: #059669;
    --color-emerald-dark: #047857;
    --color-emerald-light: #d1fae5;
    --color-emerald-bright: #10b981;

    /* Accents */
    --color-accent: #f59e0b;
    --color-accent-light: #fef3c7;
    --color-danger: #ef4444;
    --color-warning: #f59e0b;
    --color-success: #059669;

    /* Neutrals — warm tone */
    --color-bg: #fafaf8;
    --color-bg-alt: #f5f4f0;
    --color-bg-warm: #fdf8f0;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-border: #e8e5df;
    --color-shadow: 30 25 20;

    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 2px 12px rgba(30, 25, 20, 0.07);
    --shadow-md: 0 6px 24px rgba(30, 25, 20, 0.11);
    --shadow-lg: 0 12px 40px rgba(30, 25, 20, 0.15);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    padding: 14px 0;
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

/* Two-level header : left group (main nav next to logo) + right group (utility + CTA) */
.nav-groups {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    margin-left: 32px;
}

.nav-main, .nav-utility {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-main a,
.nav-utility a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-main a:hover,
.nav-utility a:hover {
    color: #ffffff;
}

.btn-cta-header {
    display: inline-block;
    padding: 9px 18px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff !important;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
    color: #ffffff !important;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.logo-icon {
    flex-shrink: 0;
}

/* Header logo image (<img>) — white circular background makes the dark owl pop on the navy header */
img.logo-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    padding: 6px;
    object-fit: contain;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Bigger logo → bigger wordmark too for balance */
.logo {
    font-size: 1.6rem;
}

@media (max-width: 640px) {
    img.logo-icon {
        width: 48px;
        height: 48px;
        padding: 4px;
    }
    .logo {
        font-size: 1.3rem;
    }
}

.logo span {
    color: var(--color-emerald-bright);
}

.footer-tagline {
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 4px;
}

.header nav a {
    margin-left: 32px;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.header nav a:hover {
    color: #ffffff;
}

/* ============================================
   HERO — Split layout with photo
   ============================================ */
.hero {
    padding: 72px 0 64px;
    text-align: left;
    background: linear-gradient(150deg, #fff7ed 0%, #fdf8f0 30%, #f0fdf4 70%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

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

.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-photo-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    max-width: 420px;
}

.hero-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.hero-photo-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-emerald);
    line-height: 1.2;
}

.hero-badge-text {
    font-size: 0.78rem;
    color: var(--color-text-light);
    font-weight: 500;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Animated blob in background */
.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.13) 0%, rgba(245, 158, 11, 0.07) 50%, transparent 70%);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
    pointer-events: none;
    animation: blobFloat 10s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.09) 0%, rgba(16, 185, 129, 0.06) 50%, transparent 70%);
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%;
    pointer-events: none;
    animation: blobFloat 14s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(20px, -20px) scale(1.04); }
    100% { transform: translate(-10px, 10px) scale(0.97); }
}

.hero h1 {
    font-size: 2.9rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 0 20px;
    color: var(--color-navy);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.hero h1 strong {
    color: var(--color-emerald);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 0 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.hero-subtitle strong {
    color: var(--color-text);
}

/* Upload zone — Warm glowing resting state */
.upload-zone {
    max-width: 520px;
    margin: 0 0 20px;
    border: 2px dashed rgba(16, 185, 129, 0.45);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08), 0 4px 20px rgba(16, 185, 129, 0.06);
    text-align: center;
    position: relative;
    z-index: 1;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--color-emerald-bright);
    border-style: solid;
    background: rgba(16, 185, 129, 0.06);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14), 0 4px 24px rgba(16, 185, 129, 0.12);
    transform: scale(1.01);
}

.upload-icon {
    color: var(--color-emerald-bright);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.upload-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-navy);
}

.upload-subtext {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.upload-btn {
    font-size: 1.05rem;
    padding: 14px 36px;
}

.upload-format {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

.trust-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.88rem;
}

.trust-badge--gift {
    font-weight: 700;
    color: var(--color-emerald-dark);
    background: var(--color-emerald-light);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.85rem;
}

.trust-badge svg {
    color: var(--color-emerald);
    flex-shrink: 0;
}

.trust-sep {
    color: var(--color-text-muted);
}

.trust-link {
    color: var(--color-emerald) !important;
    text-decoration: underline;
    font-weight: 500;
}

.trust-note svg {
    vertical-align: middle;
    margin-right: 4px;
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(16, 185, 129, 0.15);
    border-top-color: var(--color-emerald-bright);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

#progress-text {
    color: var(--color-text-light);
}

.progress-steps {
    margin-top: 20px;
    text-align: left;
    display: inline-block;
}

.progress-step {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color 0.3s, opacity 0.3s;
    opacity: 0.5;
}

.progress-step.active {
    color: var(--color-primary);
    opacity: 1;
    font-weight: 600;
}

.progress-step.done {
    color: var(--color-success);
    opacity: 0.8;
}

.progress-step .step-icon {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 4px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof {
    padding: 40px 0;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 40%, #0f172a 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(245, 158, 11, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.social-proof-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
}

.proof-item {
    text-align: center;
    padding: 12px 40px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.proof-item:last-child {
    border-right: none;
}

.proof-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.proof-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================
   REASSURANCE
   ============================================ */
.reassurance {
    padding: 72px 0;
    background: var(--color-bg);
}

/* Wrapper handles horizontal scroll on mobile */
.reassurance-scroll-wrapper {
    overflow: visible;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reassurance-item {
    text-align: left;
    padding: 36px 28px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 4px 20px rgba(30, 25, 20, 0.08);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Green card */
.reassurance-item--green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

/* Orange card */
.reassurance-item--orange {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

/* Purple card */
.reassurance-item--purple {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.reassurance-emoji {
    font-size: 2.4rem;
    margin-bottom: 16px;
    line-height: 1;
    display: block;
}

.reassurance-item h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-navy);
    letter-spacing: -0.3px;
}

.reassurance-item p {
    font-size: 0.92rem;
    color: var(--color-navy-mid);
    line-height: 1.65;
}

/* ============================================
   STEPS — Comment ça marche
   ============================================ */
.steps {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-text);
    letter-spacing: -0.3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.steps h2,
.features h2,
.pricing h2,
.faq h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

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

.step {
    text-align: center;
    padding: 36px 28px;
    background: var(--color-bg);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(30, 25, 20, 0.07);
    border: 1px solid var(--color-border);
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--color-text);
}

.step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS — Carousel
   ============================================ */
.testimonials {
    padding: 80px 0;
    background: var(--color-bg);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.testimonials-rating .stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    background: linear-gradient(145deg, #fefefe 0%, #fdf8f0 100%);
    border: 1px solid rgba(232, 229, 223, 0.7);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(30, 25, 20, 0.08);
    display: flex;
    flex-direction: column;
    width: 340px;
    min-width: 340px;
    flex-shrink: 0;
    transition: box-shadow 0.25s, transform 0.25s;
}

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

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.testimonial-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-emerald);
    margin-bottom: 12px;
}

.testimonial-quote {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    color: #fff;
    background: #64748b;
    letter-spacing: 0;
}

/* Varied, muted colors per avatar — looks like real individual users */
.testimonial-card:nth-child(8n+1) .testimonial-avatar { background: #059669; }
.testimonial-card:nth-child(8n+2) .testimonial-avatar { background: #6366f1; }
.testimonial-card:nth-child(8n+3) .testimonial-avatar { background: #db2777; }
.testimonial-card:nth-child(8n+4) .testimonial-avatar { background: #d97706; }
.testimonial-card:nth-child(8n+5) .testimonial-avatar { background: #0891b2; }
.testimonial-card:nth-child(8n+6) .testimonial-avatar { background: #7c3aed; }
.testimonial-card:nth-child(8n+7) .testimonial-avatar { background: #ea580c; }
.testimonial-card:nth-child(8n)   .testimonial-avatar { background: #475569; }

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.2s;
}

.testimonial-nav-btn:hover {
    border-color: var(--color-emerald);
    color: var(--color-emerald);
    background: rgba(16, 185, 129, 0.05);
}

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

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: var(--color-emerald);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   FEATURES — Avantages
   ============================================ */
.features {
    padding: 80px 0;
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg);
    box-shadow: 0 1px 8px rgba(30, 25, 20, 0.06);
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-left-color 0.25s;
}

.feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-left: 3px solid var(--color-emerald-bright);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--color-emerald-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-emerald);
}

.feature h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.feature p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 80px 0;
    background: var(--color-navy);
}

.pricing h2 {
    color: #ffffff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.pricing-card {
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
    color: #cbd5e1;
}

.pricing-card li::before {
    content: "✓ ";
    color: var(--color-emerald-bright);
    font-weight: 700;
}

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

/* Pricing CTAs */
.btn-pricing {
    display: block;
    text-align: center;
    padding: 12px 24px;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}

.btn-pricing:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

.btn-pricing-featured {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: var(--color-emerald);
}

.btn-pricing-featured:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 6px 24px rgba(5, 150, 105, 0.35);
}

/* Featured card */
.pricing-card.featured {
    border-color: var(--color-emerald);
    border-top: 3px solid var(--color-emerald-bright);
    background: rgba(16, 185, 129, 0.08);
    position: relative;
}

.pricing-card.featured .price {
    color: var(--color-emerald-bright);
}

.pricing-card.featured::before {
    content: "★ Le plus populaire";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-emerald);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 80px 0;
    background: var(--color-bg-warm);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
    padding: 20px 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    list-style: none;
    color: var(--color-text);
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item summary:hover {
    color: var(--color-emerald);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";
    display: inline-block;
    width: 28px;
    font-weight: 700;
    color: var(--color-emerald);
    font-size: 1.2rem;
}

.faq-item[open] summary::before {
    content: "−";
}

.faq-item p {
    padding: 0 0 20px 28px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   SEO CONTENT
   ============================================ */
.seo-content {
    padding: 64px 0;
    background: var(--color-bg-alt);
}

.seo-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-navy-light);
    margin-bottom: 24px;
    line-height: 1.3;
}

.seo-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

.seo-content strong {
    color: var(--color-text);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 72px 0;
    text-align: center;
    background: linear-gradient(170deg, #fdf8f0 0%, #f0fdf4 100%);
}

.final-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.final-cta-sub {
    color: var(--color-text-light);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0 32px;
    background: var(--color-navy);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer .logo {
    color: white;
    margin-bottom: 8px;
    display: block;
}

.footer a {
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--color-emerald-bright);
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 6px 24px rgba(5, 150, 105, 0.35);
    transform: translateY(-1px);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(5, 150, 105, 0.35);
}

/* ============================================
   HAMBURGER BUTTON
   ============================================ */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ============================================
   MISSION — Section humaine
   ============================================ */
.mission {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.mission-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.mission-photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.mission-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.mission-tag {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-emerald-dark);
    background: var(--color-emerald-light);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.mission-content h2 {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-navy);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.mission-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 28px;
}

.mission-content p strong {
    color: var(--color-text);
}

.mission-stats {
    display: flex;
    gap: 32px;
}

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

.mission-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-emerald);
    line-height: 1.2;
}

.mission-stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ============================================
   VIDEO DEMO
   ============================================ */
.video-demo {
    padding: 80px 0;
    background: var(--color-bg);
    text-align: center;
}

.video-demo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.video-subtitle {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 48px rgba(15, 23, 42, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.video-thumbnail {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.25s;
}

.video-placeholder:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.7));
    padding: 40px 24px 24px;
    z-index: 2;
}

.video-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    /* --- HEADER / NAV --- */
    .nav-toggle {
        display: flex;
    }

    /* Off-canvas panel containing both nav-main and nav-utility */
    .nav-groups {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-navy);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin-left: 0;
        padding: 80px 24px 32px;
        gap: 0;
        box-shadow: -4px 0 24px rgba(0,0,0,0.3);
        z-index: 105;
        overflow-y: auto;
    }

    .nav-groups.open {
        display: flex;
    }

    .nav-main,
    .nav-utility {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-utility {
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .nav-main a,
    .nav-utility a {
        font-size: 1.05rem;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: #cbd5e1;
    }

    .nav-main a:hover,
    .nav-utility a:hover {
        color: var(--color-emerald-bright);
    }

    /* CTA in mobile panel : full width, green box, at the bottom of utility */
    .nav-utility .btn-cta-header {
        margin-top: 14px;
        text-align: center;
        padding: 14px 20px;
        border-bottom: none;
    }

    /* --- HERO --- */
    .hero {
        padding: 40px 0 36px;
        text-align: center;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin: 0 auto 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 28px;
    }

    .upload-zone {
        padding: 32px 20px;
        margin: 0 auto 16px;
    }

    .upload-btn {
        font-size: 0.95rem;
        padding: 12px 28px;
    }

    .hero-right {
        order: -1;
    }

    .hero-photo-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-photo {
        height: 320px;
    }

    .hero-photo-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 16px;
    }

    .hero-badge-amount {
        font-size: 1.2rem;
    }

    /* --- SOCIAL PROOF --- */
    .social-proof-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .proof-item {
        padding: 16px 12px;
        border-right: 1px solid rgba(255,255,255,0.12);
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .proof-item:nth-child(even) {
        border-right: none;
    }

    .proof-item:nth-child(n+3) {
        border-bottom: none;
    }

    .proof-number {
        font-size: 1.5rem;
    }

    .proof-label {
        font-size: 0.75rem;
    }

    /* --- SECTIONS --- */
    .reassurance {
        padding: 48px 0;
    }

    /* Horizontal scroll for reassurance cards (Alan-style) */
    .reassurance-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -24px;
        padding: 0 24px 12px;
        scrollbar-width: none;
    }

    .reassurance-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .reassurance-grid {
        display: flex;
        flex-direction: row;
        gap: 16px;
        grid-template-columns: unset;
        width: max-content;
    }

    .reassurance-item {
        width: 260px;
        min-width: 260px;
        flex-shrink: 0;
    }

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps,
    .features,
    .testimonials,
    .faq {
        padding: 56px 0;
    }

    .section-title,
    .steps h2,
    .features h2,
    .pricing h2,
    .faq h2,
    .testimonials-header h2 {
        font-size: 1.4rem;
    }

    /* --- TESTIMONIALS --- */
    .testimonial-card {
        width: calc(100vw - 80px);
        min-width: calc(100vw - 80px);
    }

    /* --- PRICING --- */
    .pricing {
        padding: 56px 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 28px;
    }

    .price {
        font-size: 2rem;
    }

    /* --- FOOTER --- */
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    /* --- CTA --- */
    .final-cta {
        padding: 48px 0;
    }

    .final-cta h2 {
        font-size: 1.4rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* --- TRUST NOTE --- */
    .trust-note {
        font-size: 0.78rem;
    }

    /* --- MISSION --- */
    .mission {
        padding: 56px 0;
    }

    .mission-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mission-img {
        height: 240px;
    }

    .mission-content h2 {
        font-size: 1.4rem;
    }

    .mission-stats {
        gap: 20px;
    }

    .mission-stat-number {
        font-size: 1.3rem;
    }

    /* --- VIDEO --- */
    .video-demo {
        padding: 56px 0;
    }

    .video-demo h2 {
        font-size: 1.4rem;
    }

    .video-thumbnail {
        height: 220px;
    }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 12px 0;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: var(--color-text-muted);
}
