/* ========================================
   Les Prépas de Mathilde - Landing Page
   Système de Suivi Pédagogique Maternelle
   Style: Ludique / École / Joyful
   ======================================== */

/* Variables */
:root {
    /* Main Colors - Vibrant & Joyful */
    --orange: #FF6B35;
    --orange-light: #FF8F5C;
    --orange-pale: #FFF0EB;

    --turquoise: #00C9B7;
    --turquoise-light: #5DDFD0;
    --turquoise-pale: #E6FAF8;

    --pink: #FF8FAB;
    --pink-light: #FFB3C6;
    --pink-pale: #FFF0F4;

    --yellow: #FFD166;
    --yellow-light: #FFE08A;
    --yellow-pale: #FFFBEB;

    --purple: #9B5DE5;
    --purple-light: #B88AEE;
    --purple-pale: #F5EEFF;

    --green: #06D6A0;
    --green-light: #4DE8BF;
    --green-pale: #E6FBF5;

    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FFFCF7;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-500: #6C757D;
    --gray-700: #495057;
    --gray-900: #212529;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);

    /* Color Shadows */
    --shadow-orange: 0 10px 40px rgba(255, 107, 53, 0.25);
    --shadow-turquoise: 0 10px 40px rgba(0, 201, 183, 0.25);
    --shadow-pink: 0 10px 40px rgba(255, 143, 171, 0.25);
    --shadow-yellow: 0 10px 40px rgba(255, 209, 102, 0.3);
    --shadow-purple: 0 10px 40px rgba(155, 93, 229, 0.25);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Floating Elements Background
   ======================================== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.08;
    animation: floatAround 20s ease-in-out infinite;
}

.float-pencil { top: 10%; left: 5%; animation-delay: 0s; }
.float-star { top: 20%; right: 8%; animation-delay: 2s; }
.float-book { top: 50%; left: 3%; animation-delay: 4s; }
.float-apple { top: 70%; right: 5%; animation-delay: 6s; }
.float-heart { bottom: 20%; left: 10%; animation-delay: 8s; }
.float-ruler { bottom: 30%; right: 12%; animation-delay: 10s; }

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(-3deg); }
    75% { transform: translateY(20px) rotate(3deg); }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 252, 247, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 209, 102, 0.3);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--gray-900);
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
}

.nav-cta:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255, 107, 53, 0.35);
}

.nav-cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover .nav-cta-arrow {
    transform: translateX(4px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #FFF8E8 0%, #FFFCF7 60%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape { position: absolute; border-radius: 50%; }
.shape-circle-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.15) 0%, transparent 70%);
    top: -50px; right: -50px;
}
.shape-circle-2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 143, 171, 0.12) 0%, transparent 70%);
    bottom: 0; left: -30px;
}
.shape-blob-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 201, 183, 0.08) 0%, transparent 70%);
    top: 30%; left: 60%;
}
.shape-dots {
    width: 100px; height: 100px;
    background-image: radial-gradient(var(--orange) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.15;
    top: 20%; left: 10%;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-pale);
    border: 2px solid var(--yellow);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.tag-emoji {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--gray-900);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title .highlight {
    color: var(--orange);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--yellow-light);
    z-index: -1;
    border-radius: 4px;
}

.hero-title .badge {
    display: inline-block;
    background: var(--turquoise);
    color: var(--white);
    font-size: 0.7em;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    vertical-align: middle;
    margin-left: 8px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid;
}

.badge-orange { background: var(--orange-pale); border-color: var(--orange-light); color: var(--orange); }
.badge-turquoise { background: var(--turquoise-pale); border-color: var(--turquoise-light); color: #009688; }
.badge-pink { background: var(--pink-pale); border-color: var(--pink-light); color: #D84C6F; }

.badge-icon { font-size: 1.1rem; }

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out 0.4s both;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 50px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.cta-icon { font-size: 1.3rem; }
.cta-sparkles { font-size: 1.2rem; }

.cta-subtext {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 12px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.subtext-icon { font-size: 1rem; }

.hero-promises {
    margin-top: 20px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.promise {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.promise em {
    font-style: italic;
    color: var(--gray-700);
}

.promise-arrow {
    color: var(--turquoise);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.sticker {
    position: absolute;
    font-size: 2rem;
    z-index: 5;
    animation: floatAround 4s ease-in-out infinite;
}

.sticker-star { top: -15px; right: -10px; animation-delay: 0s; }
.sticker-pencil { top: 40%; left: -20px; animation-delay: 1s; }
.sticker-heart { bottom: -10px; right: 30px; animation-delay: 2s; }

/* ========================================
   Hero Fan (Éventail des pages de garde)
   ======================================== */
.hero-fan {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.fan-card {
    position: absolute;
    width: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--white);
}

.fan-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Fan positions — éventail ouvert */
.fan-card-1 {
    transform: rotate(-12deg) translateX(-80px);
    z-index: 1;
}

.fan-card-2 {
    transform: rotate(0deg) translateY(-10px);
    z-index: 3;
}

.fan-card-3 {
    transform: rotate(12deg) translateX(80px);
    z-index: 2;
}

/* Hover effects */
.fan-card:hover {
    z-index: 10 !important;
    transform: rotate(0deg) translateY(-20px) scale(1.08) !important;
    box-shadow: var(--shadow-xl);
}

.hero-fan:hover .fan-card:not(:hover) {
    opacity: 0.7;
    filter: brightness(0.95);
}

.info-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 5;
}

.pill-left { bottom: 20px; left: -30px; }
.pill-right { top: 20px; right: -20px; }
.pill-icon { font-size: 1.2rem; }

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-emoji {
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 600;
}

.section-intro {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 8px;
}

/* ========================================
   Problem Section (Pain Points)
   ======================================== */
.problem-section {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}

.section-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--cream);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--pink);
    border-radius: 4px 0 0 4px;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink-light);
}

.problem-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.result-box {
    background: linear-gradient(135deg, var(--pink-pale) 0%, var(--yellow-pale) 100%);
    border: 2px solid var(--pink-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.result-box h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.result-items p {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--gray-700);
    font-weight: 600;
}

/* ========================================
   Pivot Section
   ======================================== */
.pivot-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--turquoise-pale) 50%, var(--white) 100%);
    text-align: center;
}

.pivot-content {
    max-width: 700px;
    margin: 0 auto;
}

.pivot-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.pivot-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.highlight-handwritten {
    color: var(--turquoise);
    position: relative;
}

.highlight-handwritten::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--turquoise-light);
    border-radius: 3px;
    opacity: 0.5;
}

.pivot-content p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.pivot-subtitle {
    font-size: 1rem !important;
    color: var(--gray-500) !important;
}

.arrow-down {
    font-size: 2rem;
    color: var(--turquoise);
    margin-top: 24px;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ========================================
   System Section (3 outils)
   ======================================== */
.system-section {
    padding: 80px 0;
    background: var(--cream);
}

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

.system-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.system-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.system-card-ribbon {
    text-align: center;
    padding: 10px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.system-card-child .system-card-ribbon {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-light) 100%);
    color: var(--white);
}

.system-card-teacher .system-card-ribbon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
}

.system-card-institution .system-card-ribbon {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: var(--white);
}

.system-card-icon {
    font-size: 2.5rem;
    text-align: center;
    padding-top: 24px;
}

.system-card h3 {
    text-align: center;
    font-size: 1.25rem;
    padding: 8px 24px 0;
    color: var(--gray-900);
}

.system-card-tagline {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    padding: 4px 24px 16px;
    font-weight: 600;
}

.system-card-visual {
    padding: 0 20px;
    margin-bottom: 20px;
}

.system-card-visual img {
    border-radius: var(--radius-md);
    width: 100%;
    border: 2px solid var(--gray-200);
}

.system-features {
    padding: 0 24px;
    flex: 1;
}

.system-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.system-features .check {
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
}

.system-card-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--yellow-pale);
    border-top: 2px solid var(--yellow-light);
    padding: 16px 24px;
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.system-card-highlight span:first-child {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.system-card-highlight p {
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ========================================
   Card Gallery (mini galerie pages intérieures)
   ======================================== */
.card-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 0 16px 16px;
}

.card-gallery img {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.card-gallery img:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
    z-index: 2;
    position: relative;
}

/* ========================================
   Placeholder Tableau de correspondance
   ======================================== */
.system-card-visual-placeholder {
    padding: 0 16px !important;
    margin-bottom: 16px !important;
}

.placeholder-tableau {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 0.72rem;
}

.placeholder-header {
    background: var(--purple);
    color: var(--white);
    padding: 8px 12px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.placeholder-row {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-bottom: 1px solid var(--gray-100);
    gap: 6px;
}

.placeholder-row-fade {
    opacity: 0.5;
}

.ph-item {
    flex: 1;
    color: var(--gray-700);
    font-size: 0.72rem;
}

.ph-code {
    background: var(--turquoise-pale);
    color: var(--turquoise);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.65rem;
    white-space: nowrap;
}

.ph-type {
    background: var(--orange-pale);
    color: var(--orange);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.65rem;
}

.placeholder-more {
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: italic;
}

/* ========================================
   Pivot Image (vue d'ensemble)
   ======================================== */
.pivot-image {
    margin: 30px auto;
    max-width: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.pivot-image img {
    width: 100%;
    display: block;
}

/* System Link Section */
.system-link-section {
    background: linear-gradient(135deg, var(--turquoise-pale) 0%, var(--yellow-pale) 100%);
    border: 2px solid var(--turquoise-light);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.system-link-content h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--gray-900);
}

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

.system-link-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.link-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--turquoise);
    color: var(--white);
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.system-link-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.system-link-item p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ========================================
   Progression Section
   ======================================== */
.progression-section {
    padding: 80px 0;
    background: var(--white);
}

.progression-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.progression-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.dot-acc { background: var(--pink); }
.dot-m1 { background: var(--orange); }
.dot-m2 { background: var(--turquoise); }
.dot-m3 { background: var(--purple); }

.timeline-label {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.timeline-example {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-style: italic;
    padding: 0 4px;
    line-height: 1.4;
}

.timeline-connector {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gray-200), var(--gray-300));
    align-self: center;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    flex: 0.3;
}

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

.progression-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.progression-point p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ========================================
   Before / After Section
   ======================================== */
.before-after-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: var(--radius-xl);
    padding: 30px;
    position: relative;
}

.comparison-card.before {
    background: var(--pink-pale);
    border: 2px solid var(--pink-light);
}

.comparison-card.after {
    background: var(--green-pale);
    border: 2px solid var(--green-light);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.comparison-emoji {
    font-size: 2rem;
}

.comparison-header h3 {
    font-size: 1.2rem;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.icon-bad { color: #E53935; }
.icon-good { color: var(--green); font-weight: 800; }

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-vs span {
    background: var(--yellow);
    color: var(--gray-900);
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.1rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-yellow);
}

/* ========================================
   Story Section (Mathilde)
   ======================================== */
.story-section {
    padding: 80px 0;
    background: var(--cream);
}

.story-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.story-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.frame-decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 4px solid var(--yellow);
    z-index: 2;
}

.frame-top-left { top: -6px; left: -6px; border-right: none; border-bottom: none; border-radius: 8px 0 0 0; }
.frame-top-right { top: -6px; right: -6px; border-left: none; border-bottom: none; border-radius: 0 8px 0 0; }
.frame-bottom-left { bottom: -6px; left: -6px; border-right: none; border-top: none; border-radius: 0 0 0 8px; }
.frame-bottom-right { bottom: -6px; right: -6px; border-left: none; border-top: none; border-radius: 0 0 8px 0; }

.story-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.story-name-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 1rem;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.story-quote {
    position: relative;
    background: var(--yellow-pale);
    border-left: 4px solid var(--yellow);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
}

.quote-mark {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: var(--yellow);
    line-height: 0;
    position: absolute;
    top: 20px;
    left: 10px;
}

.story-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    font-style: normal;
    color: var(--gray-500);
}

.story-text p {
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--gray-700);
}

.story-highlight {
    background: var(--turquoise-pale);
    border: 2px solid var(--turquoise-light);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin: 20px 0;
}

.story-highlight p {
    margin-bottom: 12px !important;
}

.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.list-bullet {
    color: var(--turquoise);
    font-weight: 800;
    flex-shrink: 0;
}

/* ========================================
   Audience Section
   ======================================== */
.audience-section {
    padding: 80px 0;
    background: var(--white);
}

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

.audience-card {
    background: var(--cream);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--yellow-light);
}

.audience-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.wrap-orange { background: var(--orange-pale); }
.wrap-turquoise { background: var(--turquoise-pale); }
.wrap-pink { background: var(--pink-pale); }
.wrap-yellow { background: var(--yellow-pale); }
.wrap-purple { background: var(--purple-pale); }

.audience-icon {
    font-size: 1.8rem;
}

.audience-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--gray-900);
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--yellow-pale) 50%, var(--cream) 100%);
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #09825A;
    margin-bottom: 16px;
    align-self: flex-start;
}

.review-badge-icon { font-size: 0.85rem; }

.review-content {
    flex: 1;
}

.review-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.1rem;
}

.review-info strong {
    display: block;
    font-size: 0.9rem;
}

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

.review-stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.reviews-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.trust-icon {
    font-size: 1.3rem;
}

/* ========================================
   Offers Section (Pricing)
   ======================================== */
.offers-section {
    padding: 80px 0;
    background: var(--white);
}

.offers-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.offer-badge {
    background: var(--yellow-pale);
    border: 2px solid var(--yellow-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-700);
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 24px;
    margin-bottom: 30px;
    align-items: stretch;
}

.offer-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-card.featured {
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
    position: relative;
    z-index: 2;
    transform: scale(1.03);
}

.offer-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.offer-ribbon {
    text-align: center;
    padding: 10px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}

.ribbon-orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.ribbon-turquoise { background: linear-gradient(135deg, var(--turquoise), var(--turquoise-light)); }
.ribbon-gold { background: linear-gradient(135deg, #FF8F00, var(--orange)); }

.offer-header {
    padding: 20px 24px 10px;
    text-align: center;
}

.offer-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.offer-header h3 {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.offer-levels {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}

.offer-image {
    padding: 10px 24px;
}

.offer-img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
}

.offer-features {
    padding: 0 24px;
    flex: 1;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features .check {
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
}

.offer-price {
    padding: 20px 24px 10px;
    text-align: center;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.price-old {
    font-size: 1rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.discount-tag {
    background: var(--green);
    color: var(--white);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
}

.price {
    font-family: 'Baloo 2', cursive;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
}

.price-featured {
    color: var(--orange);
    font-size: 2.3rem;
}

.savings-tag {
    display: block;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 700;
    margin-top: 4px;
}

.offer-cta {
    display: block;
    text-align: center;
    margin: 16px 24px 24px;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 1rem;
    background: var(--gray-900);
    color: var(--white);
    transition: all 0.3s ease;
}

.offer-cta:hover {
    background: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-featured {
    background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
    box-shadow: var(--shadow-orange);
}

.cta-featured:hover {
    box-shadow: 0 14px 40px rgba(255, 107, 53, 0.4) !important;
}

.pricing-comparisons {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-comparison {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 600;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.pricing-trust .trust-item {
    font-size: 0.85rem;
}

/* ========================================
   Week Scenario Section
   ======================================== */
.week-scenario-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.scenario-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.scenario-step {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.scenario-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--turquoise-light);
}

.scenario-step:last-child {
    background: var(--turquoise-pale);
    border-color: var(--turquoise-light);
}

.scenario-day {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--turquoise);
    margin-bottom: 10px;
}

.scenario-step:last-child .scenario-day {
    color: var(--orange);
}

.scenario-step p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ========================================
   Tableau Explainer Section
   ======================================== */
.tableau-explainer {
    margin: 60px auto 0;
    max-width: 960px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--purple-light);
    overflow: hidden;
}

.tableau-explainer-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0;
    align-items: stretch;
}

.tableau-explainer-text {
    padding: 36px 40px;
}

.tableau-explainer-badge {
    display: inline-block;
    background: var(--purple-light);
    color: var(--purple);
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.tableau-explainer-text h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.tableau-explainer-tagline {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.tableau-explainer-text p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.tableau-explainer-text .system-features {
    margin: 12px 0 16px;
    padding: 0;
    list-style: none;
}

.tableau-explainer-text .system-features li {
    font-size: 0.9rem;
    color: var(--gray-700);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.tableau-explainer-text .system-features .check {
    color: var(--purple);
    font-weight: 700;
    flex-shrink: 0;
}

.tableau-explainer-note {
    font-size: 0.85rem !important;
    color: var(--gray-400) !important;
    font-weight: 600;
    margin-top: 8px;
}

.tableau-explainer-visual {
    background: var(--purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
}

.placeholder-tableau {
    width: 100%;
    padding: 20px;
}

.placeholder-header {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--purple);
    text-align: center;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border: 1px solid var(--purple-light);
    border-bottom: 2px solid var(--purple);
}

.placeholder-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 8px;
    padding: 8px 10px;
    background: var(--white);
    border: 1px solid var(--purple-light);
    border-top: none;
    font-size: 0.75rem;
    color: var(--gray-600);
    align-items: center;
}

.placeholder-row-fade {
    opacity: 0.4;
}

.ph-item {
    font-weight: 600;
    color: var(--gray-700);
}

.ph-code {
    font-family: monospace;
    font-size: 0.7rem;
    background: var(--purple-pale);
    color: var(--purple);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.ph-type {
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--orange);
}

.placeholder-more {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    font-style: italic;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--purple-light);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* ========================================
   Pack Complet Card (inside system-grid)
   ======================================== */
.system-card-pack {
    border: 2px solid var(--orange);
    position: relative;
}

.system-card-pack .ribbon-gold {
    background: linear-gradient(135deg, var(--orange), #e8a020);
    color: var(--white);
}

.system-card-pack .offer-price {
    padding: 12px 24px 4px;
}

.system-card-pack .price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.system-card-pack .price-old {
    font-size: 1rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.system-card-pack .discount-tag {
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--orange-pale);
    color: var(--orange);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.system-card-pack .price-featured {
    font-size: 2.2rem;
    color: var(--orange);
}

.system-card-pack .savings-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: 2px;
}

.system-card-pack .cta-featured {
    background: var(--orange);
    font-size: 1rem;
}

.system-card-pack .cta-featured:hover {
    background: #d4800e;
}

.pack-comparison {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    padding: 0 24px 24px;
}

/* ========================================
   Price & CTA inside System Cards
   ======================================== */
.system-card .offer-price {
    padding: 16px 24px 8px;
    text-align: center;
    margin-top: auto;
}

.system-card .offer-price .price {
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
}

.system-card .offer-cta {
    display: block;
    text-align: center;
    margin: 12px 24px 24px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--gray-900);
    color: var(--white);
    transition: all 0.3s ease;
}

.system-card .offer-cta:hover {
    background: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Offer-levels in system cards */
.system-card .offer-levels {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    padding: 0 24px 12px;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--cream);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.faq-item.open {
    border-color: var(--turquoise-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Baloo 2', cursive;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: left;
    transition: all 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--turquoise);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1a1a2e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-shape-1 {
    width: 300px; height: 300px;
    background: var(--orange);
    top: -100px; right: -100px;
}

.cta-shape-2 {
    width: 200px; height: 200px;
    background: var(--turquoise);
    bottom: -80px; left: -60px;
}

.cta-shape-3 {
    width: 150px; height: 150px;
    background: var(--yellow);
    top: 50%; left: 60%;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

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

.final-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.final-projection {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
}

.final-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.final-badges span {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.cta-large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.cta-arrow {
    font-size: 1.4rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.support-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 40px 0;
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-icon {
    font-size: 1.5rem;
}

.footer-heart {
    font-size: 1.2rem;
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

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

.footer-signature {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-fan {
        height: 350px;
    }

    .fan-card {
        width: 200px;
    }

    .fan-card-1 {
        transform: rotate(-10deg) translateX(-60px);
    }

    .fan-card-3 {
        transform: rotate(10deg) translateX(60px);
    }

    .card-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }

    .system-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .system-link-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .progression-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .progression-timeline {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-vs {
        display: flex;
        justify-content: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card.featured {
        transform: none;
        order: -1;
    }

    .offer-card.featured:hover {
        transform: translateY(-5px);
    }

    .scenario-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .tableau-explainer-content {
        grid-template-columns: 1fr;
    }

    .tableau-explainer-visual {
        min-height: 200px;
    }

    .tableau-explainer-text {
        padding: 28px 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

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

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

    .scenario-timeline {
        grid-template-columns: 1fr;
    }

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

    .tableau-explainer-text {
        padding: 24px 20px;
    }

    .tableau-explainer-text h3 {
        font-size: 1.3rem;
    }

    .tableau-explainer-visual {
        min-height: 180px;
    }

    .progression-timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-connector {
        width: 4px;
        height: 30px;
        margin-top: 0;
    }

    .info-pill {
        display: none;
    }

    .sticker {
        display: none;
    }

    .hero-fan {
        height: 280px;
    }

    .fan-card {
        width: 160px;
    }

    .fan-card-1 {
        transform: rotate(-10deg) translateX(-45px);
    }

    .fan-card-3 {
        transform: rotate(10deg) translateX(45px);
    }

    .card-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .pricing-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .final-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 10px 14px;
    }

    .nav-cta-arrow {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-fan {
        height: 220px;
    }

    .fan-card {
        width: 130px;
    }

    .fan-card-1 {
        transform: rotate(-8deg) translateX(-35px);
    }

    .fan-card-3 {
        transform: rotate(8deg) translateX(35px);
    }

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

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .system-link-section {
        padding: 24px;
    }

    .final-projection {
        padding: 16px;
        font-size: 0.9rem;
    }
}
