/* ============================================================
   LOLA — Design System
   lolacare.fr
   ============================================================ */

/* ── Imports & Variables ──────────────────────────────────── */
:root {
    --orange: #f2a65a;
    --orange-dark: #e8956d;
    --orange-pale: #fce8d5;
    --navy: #2c3e50;
    --navy-light: #3d5166;
    --cream: #f5e6d3;
    --cream-dark: #eedec7;
    --white: #ffffff;
    --text: #1a1a2e;
    --text-muted: #5a6475;
    --text-light: #8fa0b4;
    --border: rgba(44, 62, 80, 0.1);
    --border-light: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 2px 12px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 8px 32px rgba(44, 62, 80, 0.12);
    --shadow-lg: 0 24px 64px rgba(44, 62, 80, 0.18);
    --shadow-glow: 0 0 60px rgba(242, 166, 90, 0.25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --max-width: 1200px;
    --nav-height: 76px;
}

/* ── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
canvas {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

/* ── Utilities ────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(242, 166, 90, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-tag-light {
    color: var(--cream);
    background: rgba(245, 230, 211, 0.12);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.8;
}

.section-subtitle-light {
    color: rgba(245, 230, 211, 0.75);
}

.section-header {
    margin-bottom: 64px;
}

.section-header-light {
    text-align: center;
}

.section-header-light .section-subtitle {
    margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(242, 166, 90, 0.4);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(242, 166, 90, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    font-size: 1.1rem;
    padding: 20px 52px;
}

.btn-full {
    width: 100%;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    transition: all var(--transition-fast);
}

.btn-ghost:hover {
    background: rgba(44, 62, 80, 0.05);
    border-color: var(--navy);
}

.btn-cible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(242, 166, 90, 0.35);
}

.btn-cible:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(242, 166, 90, 0.5);
}

.btn-cible-pro {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.3);
}

.btn-cible-pro:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.45);
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    color: var(--navy);
    background: rgba(44, 62, 80, 0.06);
}

.nav-links a.nav-active {
    color: var(--orange);
    background: rgba(242, 166, 90, 0.08);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Lang switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(44, 62, 80, 0.06);
    border-radius: 100px;
    padding: 3px;
}

.lang-btn {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 100px;
    transition: all var(--transition-fast);
    line-height: 1.4;
}

.lang-btn.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.lang-sep {
    width: 1px;
    height: 12px;
    background: var(--border);
    display: none;
}

.btn-cta-nav {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 10px 24px;
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(242, 166, 90, 0.35);
    transition: all var(--transition-fast);
}

.btn-cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(242, 166, 90, 0.5);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ============================================================
   SECTION HERO
   ============================================================ */
.section-hero {
    min-height: 100vh;
    padding: var(--nav-height) 0 0;
    background: linear-gradient(160deg, #fdfaf6 0%, #f5e6d3 40%, #fdf6ef 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(242, 166, 90, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    width: 100%;
}

/* Hero text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(242, 166, 90, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 166, 90, 0.25);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(242, 166, 90, 0.25);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(242, 166, 90, 0.1);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--navy);
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.feature-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(242, 166, 90, 0.12);
    color: var(--orange);
    flex-shrink: 0;
}

.feature-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-trust {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.scroll-scrubber-container {
    position: relative;
    width: 100%;
    max-width: 520px;
}

#watch-canvas {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

.scrubber-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(ellipse at center, rgba(242, 166, 90, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-hint-line {
    width: 32px;
    height: 1px;
    background: var(--text-light);
    opacity: 0.5;
}

/* ============================================================
   SECTION STATS
   ============================================================ */
.section-stats {
    background: var(--navy);
    padding: 80px 0;
}

.stats-intro {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-item {
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: background var(--transition-fast);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.stat-unit {
    font-size: 0.6em;
    color: var(--orange);
}

.stat-prefix {
    font-size: 0.65em;
    color: var(--text-light);
    font-weight: 400;
}

.stat-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

/* ============================================================
   SECTION PRODUIT
   ============================================================ */
.section-produit {
    padding: 120px 0;
    background: var(--white);
}

.produit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.produit-watch-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produit-watch-img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
    filter: drop-shadow(0 20px 60px rgba(44, 62, 80, 0.15));
}

.produit-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(242, 166, 90, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-card {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: start;
    transition: all var(--transition-fast);
    cursor: default;
}

.feature-card:first-child {
    padding-top: 0;
}

.feature-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-card-num {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.05em;
    padding-top: 4px;
}

.feature-card-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-card-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.feature-card-future {
    opacity: 0.7;
}

.future-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--cream);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

/* ============================================================
   SECTION CIBLES
   ============================================================ */
.section-cibles {
    padding: 120px 0;
    background: linear-gradient(180deg, #fdfaf6 0%, var(--cream) 100%);
}

.cibles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cible-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.cible-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cible-pro {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
    border-color: transparent;
}

.cible-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cible-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(242, 166, 90, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.cible-pro .cible-icon {
    background: rgba(245, 230, 211, 0.12);
    color: var(--cream);
}

.cible-icon svg {
    width: 22px;
    height: 22px;
}

.cible-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
}

.cible-pro .cible-title {
    color: rgba(245, 230, 211, 0.7);
}

.cible-promise {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.cible-pro .cible-promise {
    color: var(--white);
}

.cible-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.cible-pro .cible-desc {
    color: rgba(245, 230, 211, 0.65);
}

.cible-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.cible-list li {
    font-size: 0.9rem;
    color: var(--text);
    padding-left: 20px;
    position: relative;
}

.cible-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.cible-pro .cible-list li {
    color: rgba(245, 230, 211, 0.8);
}

.cible-pro .cible-list li::before {
    background: var(--orange);
}

/* ============================================================
   SECTION TECH
   ============================================================ */
.section-tech {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.section-tech::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(242, 166, 90, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.tech-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.tech-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: all var(--transition-fast);
}

.tech-step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(242, 166, 90, 0.2);
}

.tech-connector {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, rgba(242, 166, 90, 0.4), rgba(242, 166, 90, 0.1));
    margin: 0 0 0 75px;
}

.tech-step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.7;
    line-height: 1;
    padding-top: 4px;
}

.tech-step-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tech-step-body p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

/* ============================================================
   SECTION STORY
   ============================================================ */
.section-story {
    padding: 140px 0;
    background: var(--cream);
    overflow: hidden;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-img {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.story-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(ellipse at center, rgba(242, 166, 90, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.story-content .section-tag {
    margin-bottom: 16px;
}

.story-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
    padding: 24px 32px;
    border-left: 3px solid var(--orange);
    background: rgba(242, 166, 90, 0.06);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 32px;
}

/* ============================================================
   SECTION TÉMOIGNAGES
   ============================================================ */
.section-temoignages {
    padding: 120px 0;
    background: var(--white);
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 80px;
}

.temoignage-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.temoignage-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.temoignage-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
    flex: 1;
}

.temoignage-footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.temoignage-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.temoignage-avatar span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
}

.temoignage-name {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.temoignage-role {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 2px;
}

.trust-strip {
    text-align: center;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius-lg);
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.5;
    letter-spacing: 0.02em;
    transition: opacity var(--transition-fast);
}

.trust-logo-text:hover {
    opacity: 0.8;
}

.trust-sep {
    color: var(--border);
    font-size: 1.2rem;
}

/* ============================================================
   SECTION FAQ
   ============================================================ */
.section-faq {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #fdfaf6 100%);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--orange);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.faq-icon::before {
    width: 10px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--orange);
    border-color: var(--orange);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
    background: var(--white);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer.open {
    max-height: 300px;
}

/* ============================================================
   SECTION CTA FINAL
   ============================================================ */
.section-cta-final {
    padding: 140px 0;
    background: linear-gradient(160deg, var(--navy) 0%, #1a2a38 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 166, 90, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-final-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.cta-reassurance {
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #121c26;
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.8;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-address {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.22);
}

.footer-cert {
    color: rgba(242, 166, 90, 0.4) !important;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 28, 38, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 52px 48px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(44, 62, 80, 0.1);
    color: var(--navy);
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-back {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.modal-back:hover {
    background: rgba(44, 62, 80, 0.06);
    color: var(--navy);
}

.modal-back svg {
    width: 14px;
    height: 14px;
}

.modal-header {
    text-align: center;
    margin-bottom: 36px;
}

.modal-logo {
    height: 28px;
    margin: 0 auto 24px;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-option:hover {
    border-color: var(--orange);
    background: rgba(242, 166, 90, 0.04);
    transform: translateX(4px);
}

.modal-opt-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(242, 166, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.modal-opt-icon svg {
    width: 20px;
    height: 20px;
}

.modal-opt-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.modal-opt-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

.modal-opt-text span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.modal-opt-arrow {
    color: var(--text-light);
    transition: transform var(--transition-fast);
}

.modal-opt-arrow svg {
    width: 16px;
    height: 16px;
}

.modal-option:hover .modal-opt-arrow {
    transform: translateX(4px);
    color: var(--orange);
}

/* Email modal */
.modal-email .modal-header {
    margin-top: 20px;
}

.email-modal-title-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 166, 90, 0.12);
}

.form-legal {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(242, 166, 90, 0.1);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 28px;
    }

    .hero-content {
        gap: 40px;
        padding: 60px 28px;
    }

    .produit-layout {
        gap: 48px;
    }

    .story-layout {
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .temoignages-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE 768px
   ============================================================ */
@media (max-width: 768px) {

    /* ── Navbar ── */
    .nav-links,
    .btn-cta-nav {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        padding: 16px 20px 28px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        gap: 4px;
        z-index: 999;
    }

    .nav-links.mobile-open li {
        width: 100%;
    }

    .nav-links.mobile-open a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    /* Afficher le bouton CTA dans le menu mobile */
    .nav-links.mobile-open~.nav-right .btn-cta-nav {
        display: inline-flex;
    }

    /* ── Hero — désactiver le sticky scroll sur mobile ── */
    /* Sur mobile, l'effet de scroll-pinning est remplacé par
       une simple image statique (le canvas affiche la frame 0) */
    #hero {
        position: relative !important;
        height: auto !important;
        overflow: visible !important;
        min-height: 100svh;
    }

    #hero-sticky-wrapper {
        height: auto !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 20px 56px;
        text-align: center;
        align-items: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 32px;
        font-size: 1rem;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-ghost {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .hero-trust {
        text-align: center;
    }

    .hero-features {
        align-items: center;
    }

    /* Canvas watch — limité en taille sur mobile */
    .scroll-scrubber-container {
        max-width: 280px;
        margin: 0 auto;
    }

    /* ── Stats ── */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .stat-item {
        padding: 36px 28px;
    }

    /* ── Produit ── */
    .produit-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .produit-watch-visual {
        order: -1;
    }

    .produit-watch-img {
        max-width: 260px;
    }

    /* ── Cibles ── */
    .cibles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cible-card {
        padding: 36px 28px;
    }

    .cible-promise {
        font-size: 1.5rem;
    }

    /* ── Tech ── */
    .tech-step {
        grid-template-columns: 56px 1fr;
        gap: 20px;
        padding: 28px 24px;
    }

    .tech-connector {
        margin-left: 56px;
    }

    /* ── Story ── */
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-img {
        max-width: 320px;
        margin: 0 auto;
        display: block;
        aspect-ratio: 3/4;
    }

    .story-quote {
        font-size: 1.1rem;
        padding: 20px 24px;
    }

    /* ── Témoignages ── */
    .temoignages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .temoignage-card {
        padding: 28px 24px;
    }

    /* ── Trust strip ── */
    .trust-strip {
        padding: 28px 20px;
    }

    .trust-logos {
        gap: 12px;
    }

    .trust-logo-text {
        font-size: 0.88rem;
    }

    /* ── FAQ ── */
    .faq-question {
        font-size: 0.95rem;
        gap: 16px;
    }

    /* ── CTA Final ── */
    .cta-final-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .btn-large {
        width: 100%;
        max-width: 320px;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* ── Modal ── */
    .modal {
        padding: 32px 20px;
        border-radius: 24px;
        max-height: 90svh;
        overflow-y: auto;
    }

    .modal-option {
        padding: 18px 16px;
        gap: 14px;
    }

    .modal-opt-text strong {
        font-size: 0.95rem;
    }

    /* ── Sections padding général ── */
    .section-stats {
        padding: 64px 0;
    }

    .section-produit {
        padding: 80px 0;
    }

    .section-cibles {
        padding: 80px 0;
    }

    .section-tech {
        padding: 80px 0;
    }

    .section-story {
        padding: 80px 0;
    }

    .section-temoignages {
        padding: 80px 0;
    }

    .section-faq {
        padding: 80px 0;
    }

    .section-cta-final {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    }
}

/* ============================================================
   RESPONSIVE — PETIT MOBILE 480px
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --nav-height: 64px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 24px 16px 48px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .scroll-scrubber-container {
        max-width: 240px;
    }

    .stat-item {
        padding: 28px 20px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .tech-step {
        grid-template-columns: 44px 1fr;
        gap: 14px;
        padding: 22px 16px;
    }

    .tech-step-num {
        font-size: 1.4rem;
    }

    .tech-connector {
        margin-left: 44px;
    }

    .cible-card {
        padding: 28px 20px;
    }

    .cible-promise {
        font-size: 1.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .modal-options {
        gap: 10px;
    }

    .modal-option {
        padding: 16px 14px;
    }

    .section-tag {
        font-size: 0.7rem;
    }
}