/* ==========================================================================
   DESIGN SYSTEM — JDC Numérique des Prépas de Mathilde
   Landing page · "Papier Premium" · Conversion-focused
   ========================================================================== */

:root {
    /* Brand — Rose signature Mathilde */
    --primary: #2E2A27;
    --primary-light: #6D645E;
    --accent: #F4A5B8;
    --accent-hover: #e8899f;
    --accent-light: #FDF2F4;
    --accent-dark: #d4849a;

    /* Domaines de compétences */
    --mint: #7DD3B3;
    --sky: #7AB8E0;
    --lemon: #F5E07A;
    --coral: #E57373;
    --lavender: #C4A8E0;
    --peach: #F5B895;

    /* Neutrals — Papier Premium */
    --white: #FFFFFF;
    --cream: #FAFAF8;
    --gray-50: #F5F3F0;
    --gray-100: #EDE9E5;
    --gray-200: #E8E4E0;
    --gray-300: #D4CFC9;
    --gray-400: #B5AEA6;
    --gray-500: #9E9690;
    --gray-600: #6D645E;
    --gray-700: #4A4540;
    --gray-800: #2E2A27;
    --gray-900: #1A1816;

    /* Fonts */
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-gap: 120px;
    --container-width: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows — Paper style */
    --shadow-xs: 0 1px 2px rgba(46,42,39,0.04);
    --shadow-sm: 0 2px 8px rgba(46,42,39,0.06);
    --shadow-md: 0 4px 16px rgba(46,42,39,0.08);
    --shadow-lg: 0 12px 40px rgba(46,42,39,0.10);
    --shadow-xl: 0 24px 60px rgba(46,42,39,0.14);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--gray-800);
    line-height: 1.2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--accent-light);
    color: var(--accent-dark);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 640px;
    line-height: 1.7;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-display);
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 16px rgba(244, 165, 184, 0.35);
    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 0.3s;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 165, 184, 0.45);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:active {
    transform: translateY(0) scale(0.97);
}

.btn-primary.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: var(--radius-xl);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-hover);
    transform: translateY(-1px);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s var(--ease), top 0.3s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--gray-200);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-800);
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: var(--radius-sm);
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gray-800);
}

.nav-cta {
    padding: 10px 22px !important;
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

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

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

/* ==========================================================================
   HERO
   ========================================================================== */

/* ==========================================================================
   HERO — "Papier Premium" édition Mathilde
   ========================================================================== */
html, body { overflow-x: hidden; }

.hero {
    padding: 120px 0 60px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero * { box-sizing: border-box; }

/* Bulle dégradé rose derrière Mathilde — plus compacte, juste autour d'elle */
.hero::before {
    content: '';
    position: absolute;
    top: 180px;
    right: 5%;
    width: 38%;
    height: 55%;
    background: radial-gradient(ellipse at center,
        #FBD3C8 0%,
        #FCDDD4 35%,
        rgba(253,221,211,0.5) 65%,
        rgba(253,237,230,0) 85%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

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

/* ----- Top band: brand + hello ----- */
.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 18px;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 18px rgba(46,42,39,0.08);
    font-family: var(--font-display);
}

.hero-brand-icon {
    font-size: 22px;
    line-height: 1;
}

.hero-brand-text {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: 0.5px;
}

.hero-brand-text em {
    font-style: italic;
    font-weight: 500;
    font-size: 12px;
    color: var(--gray-600);
    letter-spacing: 0;
}

.hero-brand-sparkle {
    font-size: 18px;
}

.hero-hello {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.hero-hello-text {
    font-family: 'Caveat', 'Sora', cursive;
    font-size: 22px;
    color: #E85A7C;
    font-weight: 600;
    line-height: 1.1;
    transform: rotate(-4deg);
    white-space: nowrap;
}

.hero-hello-arrow {
    width: 38px;
    height: 50px;
    margin-top: 6px;
}

/* ----- Headline ----- */
.hero-headline {
    text-align: center;
    margin-bottom: 36px;
    padding: 0;
    overflow-wrap: break-word;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 4.4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    overflow-wrap: break-word;
}

.hero-title .title-accent {
    color: #E85A7C;
    background: none;
    -webkit-text-fill-color: #E85A7C;
    position: relative;
    display: inline-block;
}

/* Doodle souligné ondulé sous "PAR" */
.hero-title .title-accent::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: -10px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M2 4 Q 15 1, 28 4 T 54 4 T 80 4 T 98 4' stroke='%23E85A7C' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}

.hero-heart {
    display: inline-block;
    font-size: 0.9em;
    transform: translateY(-2px);
}

.hero-tagline {
    font-size: clamp(14px, 1.7vw, 19px);
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.hero-tagline-chip {
    font-family: 'Caveat', 'Sora', cursive;
    background: #FFE7DC;
    color: #E85A7C;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 1.1em;
    font-weight: 700;
    border: 1.5px dashed #F4A5B8;
    transform: rotate(-2deg);
}

/* ----- Body: features + photo ----- */
.hero-body {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 0;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.35;
    background: rgba(255,255,255,0.55);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.hero-feature:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(46,42,39,0.06);
    background: var(--white);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon svg {
    width: 20px;
    height: 20px;
}

.hero-feature-icon--rose     { background: #FCE0E6; color: #C0577C; }
.hero-feature-icon--mint     { background: #D6F0E3; color: #2E8463; }
.hero-feature-icon--sky      { background: #D6EAF7; color: #2D6B95; }
.hero-feature-icon--lavender { background: #E8DCF5; color: #6B4D94; }

.hero-feature--full strong {
    color: #E85A7C;
    font-weight: 800;
}

/* ----- Visual: Mathilde photo + desktop mockups ----- */
.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 420px;
}

.hero-mathilde {
    position: relative;
    z-index: 2;
    max-width: 360px;
    width: 100%;
    animation: fadeInUp 0.8s var(--ease) 0.2s both;
    margin-bottom: 0;
}

.hero-mathilde img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
    filter: drop-shadow(0 18px 40px rgba(46,42,39,0.15));
}

/* Desktop mockups behind/around photo */
.hero-devices-desktop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
}

.hero-tablet-mockup {
    position: absolute;
    top: 18%;
    right: -8%;
    width: 58%;
    aspect-ratio: 4/3;
    border-radius: 18px;
    background: #1a1816;
    padding: 10px;
    box-shadow: 0 24px 60px rgba(26,24,22,0.22);
    overflow: hidden;
    z-index: 1;
    animation: tabletSlideIn 0.9s var(--ease) 0.5s both;
}

.hero-tablet-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    background: var(--cream);
}

.hero-phone-mockup {
    position: absolute;
    bottom: 4%;
    left: -2%;
    width: 22%;
    aspect-ratio: 9/19;
    border-radius: 22px;
    background: #1a1816;
    padding: 6px;
    box-shadow: 0 22px 50px rgba(26,24,22,0.28);
    overflow: hidden;
    z-index: 3;
    animation: mobileSlideIn 0.9s var(--ease) 0.7s both;
}

.hero-phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    background: var(--cream);
}

.hero-click-chip {
    position: absolute;
    right: -4px;
    bottom: 4%;
    font-family: 'Caveat', 'Sora', cursive;
    font-size: 22px;
    font-weight: 700;
    color: #E85A7C;
    transform: rotate(-6deg);
    z-index: 4;
    display: none;
}

/* ----- Trust row ----- */
.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 24px 8px;
    border-top: 1.5px dashed rgba(232,90,124,0.25);
    margin-bottom: 28px;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.25;
}

.hero-trust-item em {
    color: #E85A7C;
    font-style: normal;
    font-weight: 700;
}

.hero-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(46,42,39,0.06);
}

.hero-trust-icon svg {
    width: 22px;
    height: 22px;
}

.hero-trust-icon--rose     { color: #E85A7C; }
.hero-trust-icon--sky      { color: #2D6B95; }
.hero-trust-icon--lavender { color: #6B4D94; }
.hero-trust-icon--mint     { color: #2E8463; }

/* ----- CTA wrap ----- */
.hero-cta-wrap {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.hero-cta-wrap .hero-price-line {
    justify-content: center;
}

.hero-cta-wrap .btn-primary.btn-lg {
    width: 100%;
    justify-content: center;
}

.hero-platforms-line {
    margin-top: 10px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.hero-platform-sep {
    color: var(--gray-400);
    margin: 0 4px;
}

/* Mockup animations used by hero-tablet-mockup / hero-phone-mockup */
@keyframes tabletSlideIn {
    from { opacity: 0; transform: translateX(-30px) scale(0.97); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes mobileSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Generic mockup placeholder (used in feature sections) */
.mockup-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    text-align: center;
    color: var(--gray-400);
}

.mockup-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}

.mockup-placeholder span {
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================================================
   SECTION GENERICS
   ========================================================================== */

section {
    padding: var(--section-gap) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   PAIN POINTS SECTION
   ========================================================================== */

.pain-section {
    background: var(--white);
}

.pain-intro {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.pain-intro p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}

.pain-intro .pain-emphasis {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.pain-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s var(--ease);
}

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

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    background: var(--accent-light);
}

.pain-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.pain-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.pain-social-proof {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 48px;
    margin-bottom: 24px;
}

.pain-transition {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--gray-800);
}

.pain-transition p {
    margin-bottom: 8px;
}

.pain-transition span {
    color: var(--accent);
}

/* ==========================================================================
   POSITIONING SECTION
   ========================================================================== */

.positioning-section {
    background: var(--cream);
}

.positioning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.positioning-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gauge-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-100);
}

.gauge-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.gauge-bar {
    height: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--mint));
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 1.5s var(--ease-spring);
}

.gauge-fill.animated {
    width: 100%;
}

.positioning-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pos-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s var(--ease);
}

.pos-badge:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.pos-badge .badge-icon {
    font-size: 16px;
}

/* Photo + Citation Mathilde */
.positioning-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.mathilde-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 4px solid var(--accent-light);
    box-shadow: var(--shadow-lg);
}

.mathilde-photo-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.mathilde-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 400px;
}

.mathilde-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}

.mathilde-role {
    font-size: 13px;
    color: var(--gray-500);
}

/* ==========================================================================
   STORYTELLING MATHILDE
   ========================================================================== */

.storytelling-section {
    padding: 80px 0 60px;
    background: var(--cream);
}

.storytelling-content {
    display: flex;
    align-items: center;
    gap: 56px;
    max-width: 1000px;
    margin: 0 auto;
}

.storytelling-photo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.storytelling-photo-blob {
    width: 300px;
    height: 440px;
    overflow: hidden;
    border-radius: 60% 40% 50% 50% / 55% 50% 50% 45%;
    background: var(--accent-light);
    position: relative;
}

.storytelling-photo-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.storytelling-photo-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: 0.02em;
}

.storytelling-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-600);
}

.storytelling-text p {
    margin-bottom: 16px;
}

.storytelling-intro {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px !important;
}

.storytelling-signature {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.storytelling-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}

.storytelling-role {
    font-size: 13px;
    color: var(--gray-500);
}

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

    .storytelling-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .storytelling-photo-blob {
        width: 220px;
        height: 260px;
    }

    .storytelling-intro {
        font-size: 20px;
    }

    .storytelling-text {
        font-size: 16px;
    }

    .storytelling-signature {
        align-items: center;
    }
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
    background: var(--white);
    padding-top: 0;
    padding-bottom: 0;
}

.features-section > .container {
    padding-top: 0;
    padding-bottom: 0;
}

.features-section > .container > .section-header {
    padding-top: var(--section-gap);
    padding-bottom: 40px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 0;
    padding: 80px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.feature-block:nth-child(even) {
    background: var(--white);
}

.feature-block:nth-child(odd) {
    background: var(--cream);
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-text h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
}

.feature-text p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-600);
}

.feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background: var(--mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* Domain highlight banners */
.domain-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.domain-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(244,165,184,0.12), rgba(244,165,184,0.04));
    border: 1px solid rgba(244,165,184,0.3);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.5;
}

.domain-highlight .highlight-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.domain-highlight strong {
    color: var(--rose);
}

/* Level badge M1 → P6 */
.level-badge {
    gap: 10px;
    padding: 14px 24px;
}

.level-from, .level-to {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.level-from {
    background: rgba(244,165,184,0.2);
    color: #c4707e;
}

.level-to {
    background: rgba(196,168,224,0.2);
    color: #7b5a9e;
}

.level-arrow {
    font-size: 20px;
    color: var(--gray-400);
}

/* Feature mockup */
.feature-mockup {
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   DEVICE MOCKUP FRAMES — Tablet & Phone bezels
   ========================================================================== */

.device-mockup {
    background: transparent;
    border: none;
    box-shadow: none;
    aspect-ratio: auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
    position: relative;
}

/* Zoom indicator on hover */
.device-mockup::after {
    content: '';
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s var(--ease);
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232E2A27' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.device-mockup:hover::after {
    opacity: 1;
    transform: scale(1);
}

.device-mockup:hover .device-bezel {
    box-shadow:
        0 28px 70px rgba(26,24,22,0.28),
        0 10px 24px rgba(26,24,22,0.16),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ==========================================================================
   FEATURE DUAL DEVICES — Tablet + Phone combo in feature sections
   ========================================================================== */

.feature-dual-devices {
    background: transparent;
    border: none;
    box-shadow: none;
    aspect-ratio: auto;
    overflow: visible;
    padding: 0;
}

.feature-devices {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
}

/* Tablette en arrière-plan */
.feat-device-tablet {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    cursor: pointer;
}

.feat-device-tablet .device-bezel {
    background: #1a1816;
    border-radius: 18px;
    padding: 10px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 20px 50px rgba(26,24,22,0.22),
        0 6px 16px rgba(26,24,22,0.12),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.feat-device-tablet .device-screen-inner {
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
}

.feat-device-tablet .device-screen-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.feat-device-tablet .device-notch-bar {
    width: 16%;
}

/* Mobile en avant-plan */
.feat-device-mobile {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 2;
    cursor: pointer;
}

.feat-device-mobile .device-bezel {
    background: #1a1816;
    border-radius: 22px;
    padding: 8px 6px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 26px 60px rgba(26,24,22,0.30),
        0 8px 20px rgba(26,24,22,0.18),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.feat-device-mobile .device-screen-inner {
    border-radius: 14px;
    overflow: hidden;
    background: var(--cream);
}

.feat-device-mobile .device-screen-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.feat-device-mobile .device-notch-bar {
    width: 26%;
    top: 4px;
    height: 2px;
}

@media (max-width: 1024px) {
    .feature-devices {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .feat-device-tablet .device-bezel {
        border-radius: 12px;
        padding: 6px;
    }
    .feat-device-mobile .device-bezel {
        border-radius: 16px;
        padding: 5px 4px;
    }
    .feat-device-mobile {
        width: 42%;
        right: -4%;
    }
}

.device-bezel {
    background: #1a1816;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(26,24,22,0.22),
        0 8px 20px rgba(26,24,22,0.12),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.device-notch-bar {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    z-index: 2;
}

.device-screen-inner {
    width: 100%;
    overflow: hidden;
    background: var(--cream);
}

.device-screen-inner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tablet portrait — tall screen (ratio image 1840:2944 ≈ 0.625) */
.device-mockup.tablet-portrait .device-bezel {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    padding: 14px;
}

.device-mockup.tablet-portrait .device-screen-inner {
    border-radius: 8px;
}

.device-mockup.tablet-portrait .device-notch-bar {
    width: 18%;
}

/* Tablet landscape — wide screen (ratio image 2944:1840 = 1.6) */
.device-mockup.tablet-landscape .device-bezel {
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    padding: 12px;
}

.device-mockup.tablet-landscape .device-screen-inner {
    border-radius: 6px;
}

.device-mockup.tablet-landscape .device-notch-bar {
    width: 14%;
}

/* Phone portrait — narrow tall (ratio image 1840:2944 ≈ 0.625) */
.device-mockup.phone-portrait .device-bezel {
    width: 100%;
    max-width: 280px;
    border-radius: 28px;
    padding: 12px 10px;
}

.device-mockup.phone-portrait .device-screen-inner {
    border-radius: 18px;
}

.device-mockup.phone-portrait .device-notch-bar {
    width: 26%;
    top: 5px;
    height: 3px;
}

@media (max-width: 1024px) {
    .device-mockup.tablet-portrait .device-bezel {
        max-width: 340px;
    }
    .device-mockup.tablet-landscape .device-bezel {
        max-width: 100%;
    }
    .device-mockup.phone-portrait .device-bezel {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .device-mockup {
        padding: 10px;
    }
    .device-mockup.tablet-portrait .device-bezel {
        max-width: 280px;
        border-radius: 14px;
        padding: 8px;
    }
    .device-mockup.phone-portrait .device-bezel {
        max-width: 220px;
        border-radius: 20px;
        padding: 8px 6px;
    }
}

/* ==========================================================================
   SECURITY SECTION
   ========================================================================== */

.security-section {
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(244,165,184,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(122,184,224,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.security-section .section-badge {
    background: rgba(244,165,184,0.15);
    color: var(--accent);
}

.security-section .section-title {
    color: var(--white);
}

.security-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.security-checks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-check {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s var(--ease);
}

.security-check:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(4px);
}

.security-check-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(125,211,179,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.security-check h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.security-check p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.security-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.security-illustration {
    width: 300px;
    max-width: 100%;
    animation: security-float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    transition: filter 0.4s var(--ease);
}

.security-illustration:hover {
    filter: drop-shadow(0 28px 50px rgba(0,0,0,0.5));
}

@keyframes security-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(0.5deg); }
    75% { transform: translateY(6px) rotate(-0.5deg); }
}

.security-quote {
    text-align: center;
    max-width: 360px;
}

.security-quote p {
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin-bottom: 8px;
}

.security-quote span {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

.rgpd-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(122,184,224,0.15);
    border: 1px solid rgba(122,184,224,0.2);
    border-radius: var(--radius-full);
    color: var(--sky);
    font-size: 13px;
    font-weight: 600;
}

/* ==========================================================================
   CENTRALIZATION SECTION
   ========================================================================== */

.central-section {
    background: var(--white);
}

.central-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.central-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.central-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.central-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.central-tag:nth-child(1) { background: rgba(125,211,179,0.15); border: 1px solid rgba(125,211,179,0.3); color: #3a8a68; }
.central-tag:nth-child(2) { background: rgba(196,168,224,0.15); border: 1px solid rgba(196,168,224,0.3); color: #7a5aa0; }
.central-tag:nth-child(3) { background: rgba(244,165,184,0.15); border: 1px solid rgba(244,165,184,0.3); color: #c4708a; }
.central-tag:nth-child(4) { background: rgba(122,184,224,0.15); border: 1px solid rgba(122,184,224,0.3); color: #4a88b0; }
.central-tag:nth-child(5) { background: rgba(245,184,149,0.15); border: 1px solid rgba(245,184,149,0.3); color: #b87a4a; }

/* ==========================================================================
   EXPORT SECTION
   ========================================================================== */

.export-section {
    background: var(--cream);
}

.export-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.export-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.export-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}

.export-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.export-step span {
    font-size: 15px;
    color: var(--gray-700);
}

.export-humor {
    margin-top: 24px;
    font-size: 15px;
    color: var(--gray-500);
    font-style: italic;
}

.export-humor + .export-humor {
    margin-top: 8px;
}

/* Export — GIF Showcase Device Mockup */
.export-gif-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.pdf-float-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: white;
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: var(--shadow-lg);
    animation: pdf-float 3s ease-in-out infinite;
    line-height: 0;
}

@keyframes pdf-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.export-gif-device {
    width: 100%;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.export-gif-device:hover {
    transform: scale(1.02);
}

.export-gif-device .device-bezel {
    background: #1a1816;
    border-radius: 28px;
    padding: 10px 8px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 30px 70px rgba(26,24,22,0.28),
        0 10px 24px rgba(26,24,22,0.16),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.export-gif-device .device-notch-bar {
    width: 26%;
    top: 5px;
    height: 3px;
}

.export-gif-device .device-screen-inner {
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
}

.export-gif-device .device-screen-inner img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 480px) {
    .export-gif-device .device-bezel {
        border-radius: 20px;
        padding: 6px 5px;
    }
    .export-gif-device .device-screen-inner {
        border-radius: 14px;
    }
}

/* ==========================================================================
   SOCIAL PROOF SECTION
   ========================================================================== */

.proof-section {
    background: var(--white);
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

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

.proof-stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.proof-stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

.proof-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.proof-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.5s var(--ease);
}

.proof-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-100);
    min-width: calc(33.333% - 16px);
}

.proof-card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    color: var(--lemon);
    font-size: 16px;
}

.proof-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.proof-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.proof-card-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
}

.proof-card-role {
    font-size: 13px;
    color: var(--gray-500);
}

.proof-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s var(--ease);
    color: var(--gray-700);
    font-size: 18px;
}

.proof-carousel-btn:hover {
    background: var(--accent-light);
    border-color: var(--accent);
}

.proof-carousel-btn.prev { left: 0; }
.proof-carousel-btn.next { right: 0; }

.proof-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

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

.proof-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-section {
    background: var(--cream);
    position: relative;
}

.pricing-card {
    max-width: 540px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--lavender));
}

.pricing-founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-old-price {
    font-size: 20px;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-800);
    line-height: 1;
}

.pricing-price .period {
    font-size: 18px;
    color: var(--gray-500);
}

.pricing-monthly {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-600);
}

.pricing-includes li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--mint);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-comparisons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.pricing-comparison {
    font-size: 15px;
    color: var(--gray-500);
}

.pricing-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: color 0.3s;
    font-family: var(--font-body);
}

.faq-item.active .faq-question {
    color: var(--accent-dark);
}

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease);
    color: var(--gray-400);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}

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

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta-section {
    background: linear-gradient(135deg, var(--gray-900), #1a1816);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(244,165,184,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.final-cta-section .section-title {
    color: var(--white);
    margin-bottom: 12px;
}

.final-cta-highlight {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 24px;
}

.final-cta-highlight span {
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
}

.final-cta-highlight strong {
    color: var(--accent);
}

.final-cta-section .section-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0 auto 40px;
}

.form-note {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.hero .form-note {
    color: var(--gray-500);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.5);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 13px;
}

/* ==========================================================================
   STICKY CTA (Mobile)
   ========================================================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    display: none;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ===== Desktop & large tablet (default >1024px) ===== */
@media (min-width: 1025px) {
    /* Show desktop mockups around Mathilde photo */
    .hero-devices-desktop { display: block; }
    .hero-click-chip      { display: block; }
    .hero-mathilde { max-width: 320px; }
}

/* ===== Tablet (PC reduit, iPad paysage) ===== */
@media (max-width: 1024px) {
    :root { --section-gap: 80px; }

    .positioning-content,
    .security-content,
    .central-content,
    .export-content,
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block.reverse { direction: ltr; }

    /* Hero: keep features+photo side by side but tighter */
    .hero-body {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .hero-mathilde { max-width: 320px; }

    .proof-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

/* ===== Tablet portrait (iPad portrait, Android tablette) — entre 768 et 860 ===== */
@media (max-width: 860px) and (min-width: 769px) {
    .hero-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-features-list { order: 2; }
    .hero-visual { order: 1; min-height: 360px; }
    .hero-mathilde { max-width: 280px; }
}

/* ===== Mobile (iOS & Android phones) ===== */
@media (max-width: 768px) {
    :root { --section-gap: 64px; }

    .nav-links { display: none; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(250,250,248,0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 999;
    }
    .nav-links.mobile-open a {
        font-size: 20px;
        font-weight: 500;
    }
    .nav-mobile-toggle { display: flex; z-index: 1001; }

    .hero { padding: 64px 0 48px; }

    /* Bulle dégradé mobile : petite, juste un halo derrière la photo */
    .hero::before {
        top: 140px;
        right: -10%;
        width: 65%;
        height: 35%;
    }

    /* Container relatif pour la photo absolue */
    .hero-card { position: relative; }

    /* HERO-TOP : logo à gauche, hello en haut à droite par-dessus la photo */
    .hero-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
        position: relative;
        z-index: 3;
    }
    .hero-brand { padding: 6px 10px; gap: 6px; }
    .hero-brand-icon { font-size: 16px; }
    .hero-brand-text { font-size: 10px; line-height: 1.05; }
    .hero-brand-text em { font-size: 9px; }
    .hero-brand-sparkle { font-size: 13px; }
    .hero-hello { gap: 2px; }
    .hero-hello-text {
        font-size: 14px;
        transform: rotate(-6deg);
        text-align: right;
    }
    .hero-hello-arrow { width: 24px; height: 30px; margin-top: 2px; }

    /* HEADLINE : aligné à gauche, prend ~55% de la largeur */
    .hero-headline {
        text-align: left;
        margin-bottom: 18px;
        padding: 0;
        max-width: 60%;
        position: relative;
        z-index: 3;
    }
    .hero-title {
        font-size: 22px;
        line-height: 1.15;
        text-align: left;
    }
    .hero-tagline {
        font-size: 13px;
        gap: 4px;
        justify-content: flex-start;
        text-align: left;
    }
    .hero-tagline-chip { font-size: 14px; padding: 2px 10px; }

    /* HERO-BODY mobile : photo Mathilde en absolute à droite, features à gauche */
    .hero-body {
        display: block;
        margin-bottom: 0;
        position: relative;
    }
    .hero-features-list {
        width: 70%;
        position: relative;
        z-index: 2;
        gap: 10px;
        order: unset;
    }

    /* PHOTO MATHILDE : en absolute à droite, collée au bas du hero-body */
    .hero-visual {
        position: absolute;
        top: auto;
        bottom: 0;
        right: -16px;
        width: 52%;
        min-height: 0;
        height: auto;
        z-index: 5;
        pointer-events: none;
        order: unset;
    }
    .hero-mathilde {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .hero-mathilde img {
        width: 100%;
        height: auto;
        margin-bottom: 0;
        vertical-align: bottom;
        filter: drop-shadow(0 8px 24px rgba(46,42,39,0.12));
    }

    /* Features mobile : plus petites */
    .hero-feature {
        font-size: 13px;
        padding: 7px 10px;
        gap: 10px;
        background: rgba(255,255,255,0.7);
    }
    .hero-feature-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .hero-feature-icon svg { width: 16px; height: 16px; }
    .hero-feature--full {
        width: 100%;
        font-size: 12px;
    }

    /* TRUST ROW : full width sous tout */
    .hero-trust-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 20px 0 0;
        position: relative;
        z-index: 3;
        margin-top: 0;
    }
    .hero-trust-icon { width: 36px; height: 36px; }
    .hero-trust-icon svg { width: 17px; height: 17px; }
    .hero-trust-item { font-size: 10px; gap: 6px; }

    /* CTA mobile */
    .hero-cta-wrap { position: relative; z-index: 3; }
    .btn-primary.btn-lg { width: 100%; justify-content: center; }

    .pain-grid { grid-template-columns: 1fr 1fr; }

    .positioning-right { order: -1; }

    .proof-card {
        flex: 0 0 calc(100% - 16px);
        min-width: calc(100% - 16px);
    }
    .proof-carousel-btn { display: none; }
    .proof-carousel-container { padding: 0; }

    .pricing-card { padding: 32px 24px; }

    .proof-stats { flex-direction: column; gap: 24px; }

    .sticky-cta { display: block; }

    .footer-content { flex-direction: column; text-align: center; }
}

/* ===== Petit mobile (iPhone SE, Android compact) ===== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .section-title { font-size: 26px; }

    .pain-grid { grid-template-columns: 1fr; }

    .hero-title { font-size: 20px; }
    .hero-tagline { font-size: 12px; }
    .hero-tagline-chip { font-size: 13px; }

    .pricing-price .amount { font-size: 44px; }

    /* Photo Mathilde reste à droite full hauteur — pas de max-width */
    .hero-features-list { width: 58%; gap: 8px; }
    .hero-visual { width: 50%; right: -12px; }

    .hero-feature { padding: 6px 8px; gap: 8px; font-size: 12px; }
    .hero-feature-icon { width: 28px; height: 28px; }
    .hero-feature-icon svg { width: 14px; height: 14px; }

    /* Trust row reste en 4 colonnes (compact) */
    .hero-trust-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        padding: 18px 0 0;
    }
    .hero-trust-item { font-size: 9px; gap: 5px; }
    .hero-trust-icon { width: 32px; height: 32px; border-radius: 10px; }
    .hero-trust-icon svg { width: 15px; height: 15px; }
}

/* ==========================================================================
   NEW ELEMENTS — Content update
   ========================================================================== */

/* ==========================================================================
   TOP BANNER — Plan Manolo
   ========================================================================== */

.top-banner {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1001;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.top-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s var(--ease);
}

.top-banner-link:hover {
    background: rgba(255,255,255,0.08);
}

.top-banner-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.top-banner-link strong {
    font-weight: 700;
}

.top-banner-cta {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

/* Pricing — Manolo badge */
.pricing-manolo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border: 1px solid #A5D6A7;
    border-radius: var(--radius-full);
    font-size: 14px;
    color: #2E7D32;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.3s var(--ease);
}

.pricing-manolo:hover {
    background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.2);
}

.pricing-manolo strong {
    font-weight: 700;
}

.pricing-manolo-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-manolo svg {
    flex-shrink: 0;
    color: #4CAF50;
    transition: transform 0.3s var(--ease);
}

.pricing-manolo:hover svg {
    transform: translateX(2px);
}

/* Platform icon — Web/Ordinateur */
.platform-icon--web {
    background: #5C6BC0;
    color: var(--white);
}

/* Hero network badges (FWB + SEGEC) */
.hero-networks {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 10px;
    animation: fadeInUp 0.6s var(--ease) 0.25s both;
}

.network-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    border: 1px solid;
    transition: all 0.3s var(--ease);
}

.network-badge:hover {
    transform: translateY(-2px);
}

.network-badge--fwb {
    background: rgba(122,184,224,0.08);
    border-color: rgba(122,184,224,0.3);
}

.network-badge--fwb:hover {
    box-shadow: 0 4px 12px rgba(122,184,224,0.15);
}

.network-badge--segec {
    background: rgba(196,168,224,0.08);
    border-color: rgba(196,168,224,0.3);
}

.network-badge--segec:hover {
    box-shadow: 0 4px 12px rgba(196,168,224,0.15);
}

.network-badge--fwb .network-check {
    background: var(--sky);
}

.network-badge--segec .network-check {
    background: var(--lavender);
}

.network-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.network-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.network-detail {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 400;
    line-height: 1.2;
}

.network-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

/* Hero benefits (bullets) */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

.hero-benefit-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    font-family: var(--font-body);
}

/* Hero social proof line */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s var(--ease) 0.35s both;
}

.hero-social-proof strong {
    font-weight: 700;
    color: var(--gray-800);
}

.hero-avatars {
    display: flex;
    flex-shrink: 0;
}

.hero-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream);
    margin-left: -8px;
}

.hero-avatar:first-child {
    margin-left: 0;
}

/* Hero platform badges (iOS, Android, PC & Mac) */
.hero-platforms {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 14px;
    animation: fadeInUp 0.6s var(--ease) 0.36s both;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s var(--ease);
}

.platform-badge:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(244,165,184,0.1);
    transform: translateY(-2px);
}

.platform-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: var(--gray-900);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon svg {
    width: 15px;
    height: 15px;
}

.platform-icon--android {
    background: #3DDC84;
    color: var(--white);
}

.platform-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.platform-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.platform-sub {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 400;
    line-height: 1.2;
}

/* Hero price anchor */
.hero-price-line {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    animation: fadeInUp 0.6s var(--ease) 0.38s both;
}

.hero-old-price {
    font-size: 18px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.hero-new-price {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--gray-800);
}

.hero-manolo-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: #2E7D32;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s var(--ease);
    align-self: center;
}

.hero-manolo-chip:hover {
    background: #C8E6C9;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

/* Countdown chip */
.hero-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--accent-light);
    border: 1px solid rgba(244, 165, 184, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 12px;
    animation: fadeInUp 0.6s var(--ease) 0.42s both;
}

.hero-countdown.hidden {
    display: none;
}

.countdown-icon {
    font-size: 15px;
}

.countdown-label {
    color: var(--gray-600);
}

.countdown-timer {
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--gray-800);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 480px) {
    .hero-countdown {
        font-size: 13px;
        padding: 6px 12px;
        gap: 4px;
    }
}

/* Positioning features line */
.positioning-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.positioning-features span {
    padding: 6px 14px;
    background: var(--accent-light);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
}

/* Section transition */
.section-transition {
    padding: 48px 0;
    text-align: center;
}

.transition-text {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--gray-800);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Proof transition */
.proof-transition {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: var(--gray-600);
    margin-top: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */

.gallery-section {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: all 0.3s var(--ease);
    aspect-ratio: 9/16;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(26,24,22,0.85));
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s var(--ease);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26,24,22,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 92vw;
    max-height: 94vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    animation: lightboxZoomIn 0.3s var(--ease-spring) both;
}

@keyframes lightboxZoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.lightbox-counter {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .lightbox-nav { display: none; }
    .lightbox-close { top: 12px; right: 12px; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-caption {
        font-size: 11px;
        padding: 8px 10px;
    }
}

/* ==========================================================================
   VIDEO PLAY OVERLAY & MODAL
   ========================================================================== */

/* Play overlay on device mockup */
.video-trigger {
    position: relative;
}

.video-trigger::after {
    display: none;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 5;
    cursor: pointer;
    border-radius: var(--radius-xl);
    background: radial-gradient(ellipse at center, rgba(26,24,22,0.35) 0%, transparent 70%);
    transition: all 0.4s var(--ease);
}

.video-play-overlay:hover {
    background: radial-gradient(ellipse at center, rgba(26,24,22,0.45) 0%, transparent 75%);
}

.video-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 32px rgba(244,165,184,0.5),
        0 0 0 0 rgba(244,165,184,0.4);
    transition: all 0.4s var(--ease);
    animation: playBtnPulse 2.5s ease-in-out infinite;
}

.video-play-overlay:hover .video-play-btn {
    transform: scale(1.12);
    box-shadow:
        0 12px 40px rgba(244,165,184,0.6),
        0 0 0 12px rgba(244,165,184,0.15);
    animation: none;
}

@keyframes playBtnPulse {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(244,165,184,0.5),
            0 0 0 0 rgba(244,165,184,0.4);
    }
    50% {
        box-shadow:
            0 8px 32px rgba(244,165,184,0.5),
            0 0 0 16px rgba(244,165,184,0);
    }
}

.video-play-label {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: rgba(26,24,22,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-md);
}

.video-play-overlay:hover .video-play-label {
    background: rgba(26,24,22,0.85);
    transform: translateY(-2px);
}

/* Video Modal (fullscreen) */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(26,24,22,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.video-modal-content {
    width: 92vw;
    max-width: 1100px;
    animation: videoModalIn 0.4s var(--ease-spring) both;
}

@keyframes videoModalIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.video-modal-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    background: #000;
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn svg {
        width: 22px;
        height: 22px;
    }

    .video-play-label {
        font-size: 13px;
        padding: 6px 16px;
    }

    .video-modal-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 26px;
    }

    .video-modal-content {
        width: 96vw;
    }
}

@media (max-width: 480px) {
    .video-play-btn {
        width: 52px;
        height: 52px;
    }

    .video-play-btn svg {
        width: 20px;
        height: 20px;
    }

    .video-play-label {
        font-size: 12px;
        padding: 5px 14px;
    }
}

/* 4th floating badge */
.hero-float-badge.badge-extra {
    position: absolute;
    bottom: -10px;
    left: 10%;
}

@media (max-width: 768px) {
    .hero-benefits {
        gap: 8px;
    }

    .hero-platforms {
        gap: 8px;
    }

    .platform-badge {
        flex: 1;
        padding: 10px 14px;
        gap: 10px;
    }

    .platform-icon {
        width: 32px;
        height: 32px;
    }

    .platform-icon svg {
        width: 16px;
        height: 16px;
    }

    .positioning-features {
        justify-content: center;
    }

    .hero-float-badge.badge-extra {
        display: none;
    }

    .top-banner-link {
        font-size: 11px;
        padding: 7px 12px;
        flex-wrap: nowrap;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
    }

    .top-banner-link > span:not(.top-banner-cta) {
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }

    .top-banner-cta {
        width: auto;
        flex-shrink: 0;
    }

    .hero-platforms {
        flex-wrap: wrap;
    }

    .hero-networks {
        gap: 8px;
    }

    .network-badge {
        flex: 1;
        padding: 8px 12px;
        gap: 8px;
    }

    .network-name {
        font-size: 13px;
    }

    .network-detail {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-float-badge.badge-extra {
        display: none;
    }

    .top-banner-link {
        font-size: 10px;
        padding: 7px 10px;
        gap: 4px;
    }

    .pricing-manolo {
        font-size: 12px;
        padding: 8px 14px;
    }

    .platform-badge {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
    }
}
