/* ===========================================
   SchoolMboa Landing Page — landing.css
   Palette : Bleu Marine + Or
   =========================================== */

/* ---------- Variables ---------- */
:root {
    --blue-deep: #1e3a8a;
    --blue-mid: #2563eb;
    --blue-light: #60a5fa;
    --blue-bright: #3b82f6;
    --gold: #f59e0b;
    --gold-dark: #d97706;
    --wa: #25D366;
    --wa-dark: #1da851;
    --cream: #f0f5ff;
    --dark: #0f172a;
    --gray: #6b7280;
    --border: rgba(30, 58, 138, 0.12);
    --font-title: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --shadow-card: 0 4px 24px rgba(30, 58, 138, 0.10);
    --shadow-wa: 0 4px 24px rgba(37, 211, 102, 0.30);
    --shadow-blue: 0 4px 24px rgba(37, 99, 235, 0.25);
    --radius-card: 20px;
    --radius-btn: 14px;
    --transition: 0.3s ease;
}

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

.landing-page {
    font-family: var(--font-body);
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 {
    font-family: var(--font-title);
    line-height: 1.15;
}

.landing-page a {
    text-decoration: none;
    color: inherit;
}

.landing-page ul {
    list-style: none;
}

.landing-page img {
    max-width: 100%;
    display: block;
}

.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ---------- Animations globales ---------- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Bouton WhatsApp ---------- */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-wa);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-wa:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.45);
}

/* ---------- Bouton outline (bleu) ---------- */
.btn-wa-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--blue-mid);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: var(--radius-btn);
    border: 2px solid var(--blue-mid);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-wa-outline:hover {
    background: var(--blue-mid);
    color: #fff;
    transform: translateY(-2px);
}

.btn-wa-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: var(--radius-btn);
    border: 2px solid rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-wa-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ================================================
   NAV SECTION
   ================================================ */
.l-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.l-nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(30, 58, 138, 0.10);
    padding: 12px 0;
}

.l-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.l-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.l-nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-deep);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--gold);
    flex-shrink: 0;
}

.l-nav-logo-text {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--blue-deep);
    letter-spacing: -0.5px;
}

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

.l-nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--blue-deep);
    transition: color 0.2s;
}

.l-nav-links a:hover {
    color: var(--blue-mid);
}

/* CTA + hamburger */
.l-nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.l-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.l-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue-deep);
    border-radius: 2px;
    transition: var(--transition);
}

.l-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.l-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.l-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.l-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.l-mobile-menu.open {
    display: flex;
    max-height: 400px;
    padding: 16px 0 24px;
    border-top: 1px solid var(--border);
}

.l-mobile-menu a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--blue-deep);
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
}

.l-mobile-menu a:last-child {
    border-bottom: none;
}

.l-mobile-menu .btn-wa {
    margin: 16px 24px 0;
    justify-content: center;
}

/* ================================================
   HERO SECTION
   ================================================ */
.l-hero {
    padding: 140px 0 80px;
    background: linear-gradient(145deg, #f0f5ff 0%, #e0eaff 55%, #c7d9ff 100%);
    overflow: hidden;
}

.l-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Badge */
.l-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.18);
    color: var(--blue-deep);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.l-hero-title {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    color: var(--blue-deep);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.l-hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.l-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Social proof */
.l-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.l-avatars {
    display: flex;
}

.l-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
    margin-left: -10px;
    flex-shrink: 0;
}

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

.l-avatar-a {
    background: var(--blue-mid);
}

.l-avatar-b {
    background: var(--gold);
}

.l-avatar-c {
    background: var(--blue-deep);
}

.l-social-proof-text {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

/* ---- Mock Dashboard ---- */
.l-mock-wrap {
    position: relative;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.l-mock-dashboard {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(30, 58, 138, 0.18);
    overflow: hidden;
    border: 1px solid var(--border);
}

.l-mock-titlebar {
    background: var(--blue-deep);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.l-mock-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.l-mock-dot-r {
    background: #ff5f57;
}

.l-mock-dot-y {
    background: #ffbd2e;
}

.l-mock-dot-g {
    background: #29c040;
}

.l-mock-titlebar-text {
    margin-left: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.l-mock-body {
    display: flex;
    min-height: 340px;
}

.l-mock-sidebar {
    width: 130px;
    background: var(--cream);
    border-right: 1px solid var(--border);
    padding: 16px 0;
    flex-shrink: 0;
}

.l-mock-sidebar-item {
    padding: 9px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 8px;
    margin: 2px 6px;
    cursor: default;
}

.l-mock-sidebar-item.active {
    background: var(--blue-deep);
    color: #fff;
}

.l-mock-content {
    flex: 1;
    padding: 16px;
    overflow: hidden;
}

.l-mock-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.l-mock-stat-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
}

.l-mock-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.l-mock-stat-val {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--blue-deep);
}

.l-mock-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
}

.l-mock-table th {
    background: var(--cream);
    color: var(--gray);
    font-weight: 700;
    text-align: left;
    padding: 6px 8px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.l-mock-table td {
    padding: 7px 8px;
    border-bottom: 1px solid var(--border);
}

.l-badge-paid {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.l-badge-partial {
    background: #fff7ed;
    color: #d97706;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.l-badge-unpaid {
    background: #fee2e2;
    color: #dc2626;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

/* Floating notification */
.l-mock-notif {
    position: absolute;
    bottom: 20px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue-bright);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--blue-deep);
    box-shadow: var(--shadow-card);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}

/* ================================================
   PAIN SECTION
   ================================================ */
.l-pain {
    background: var(--blue-deep);
    padding: 96px 0;
}

.l-pain-title {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.l-pain-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 56px;
}

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

.l-pain-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-card);
    padding: 36px 28px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.l-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.l-pain-emoji {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.l-pain-card-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
}

.l-pain-card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.l-features {
    background: var(--cream);
    padding: 96px 0;
}

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

.l-section-title {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--blue-deep);
    margin-bottom: 12px;
}

.l-section-sub {
    color: var(--gray);
    font-size: 1.05rem;
}

/* Tabs */
.l-tabs {
    display: flex;
    gap: 8px;
    background: #e0eaff;
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 48px;
    overflow-x: auto;
    scrollbar-width: none;
}

.l-tabs::-webkit-scrollbar {
    display: none;
}

.l-tab {
    flex: 1;
    min-width: max-content;
    background: none;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.l-tab:hover {
    background: rgba(30, 58, 138, 0.07);
    color: var(--blue-deep);
}

.l-tab.active {
    background: var(--blue-deep);
    color: #fff;
}

/* Tab panel */
.l-tab-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    animation: fadeSlideUp 0.25s ease both;
}

.l-feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--blue-deep);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.l-feat-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.65rem;
    color: var(--blue-deep);
    margin-bottom: 14px;
}

.l-feat-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.l-feat-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.l-feat-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: #374151;
}

.l-feat-bullet-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--blue-deep);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    margin-top: 2px;
}

/* Feature Mock container */
.l-feat-mock {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.l-feat-mock-head {
    background: var(--blue-deep);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.l-feat-mock-head .l-mock-dot {
    width: 10px;
    height: 10px;
}

.l-feat-mock-body {
    padding: 20px;
}

/* Student mock */
.l-mock-student-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.l-mock-student-row:last-child {
    border-bottom: none;
}

.l-stu-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    flex-shrink: 0;
}

.l-stu-info {
    flex: 1;
}

.l-stu-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: #1a1a1a;
}

.l-stu-class {
    font-size: 0.75rem;
    color: var(--gray);
}

.l-btn-sm {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--blue-mid);
    border: 1px solid var(--blue-mid);
    padding: 4px 10px;
    border-radius: 8px;
    background: none;
    cursor: pointer;
    white-space: nowrap;
}

/* Notes mock */
.l-mock-notes-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.l-mock-notes-table th {
    background: var(--cream);
    padding: 7px 10px;
    text-align: left;
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
}

.l-mock-notes-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--border);
}

.l-mock-notes-table tr.total-row td {
    font-weight: 700;
    background: #e0eaff;
    color: var(--blue-deep);
}

.l-btn-generate {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    background: var(--blue-deep);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 14px;
    cursor: pointer;
    width: 100%;
}

/* Finances mock */
.l-fin-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.l-fin-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
}

.l-fin-card-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.l-fin-card-val {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blue-deep);
}

.l-fin-family-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
}

.l-fin-family-row:last-child {
    border-bottom: none;
}

.l-fin-family-name {
    font-weight: 600;
    color: #1a1a1a;
}

.l-fin-family-amount {
    color: var(--gray);
    font-size: 0.75rem;
}

/* Planning mock */
.l-planning-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.l-planning-day-head {
    background: var(--blue-deep);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    padding: 6px 4px;
    border-radius: 6px 6px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.l-planning-cell {
    min-height: 40px;
    border-radius: 6px;
    padding: 5px 6px;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.l-cell-math {
    background: #dbeafe;
    color: #1e40af;
}

.l-cell-fr {
    background: #dcfce7;
    color: #15803d;
}

.l-cell-svt {
    background: #fff7ed;
    color: #c2410c;
}

.l-cell-hist {
    background: #fdf2f8;
    color: #7e22ce;
}

.l-cell-phys {
    background: #f0fdf4;
    color: #166534;
}

.l-cell-empty {
    background: var(--cream);
}

.l-cell-geo {
    background: #fefce8;
    color: #a16207;
}

/* Library mock */
.l-lib-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.l-lib-item:last-child {
    border-bottom: none;
}

.l-lib-cover {
    width: 32px;
    height: 42px;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.l-lib-info {
    flex: 1;
}

.l-lib-title {
    font-weight: 600;
    font-size: 0.82rem;
    color: #1a1a1a;
}

.l-lib-author {
    font-size: 0.72rem;
    color: var(--gray);
}

.l-badge-avail {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    background: #dcfce7;
    color: #16a34a;
}

.l-badge-borrow {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    background: #fee2e2;
    color: #dc2626;
}

/* ================================================
   STATS SECTION
   ================================================ */
.l-stats {
    background: #fff;
    padding: 96px 0;
}

.l-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.l-stat-number {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: var(--blue-deep);
    line-height: 1;
    margin-bottom: 10px;
}

.l-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
}

/* ================================================
   VIDEO SECTION
   ================================================ */
.l-video {
    background: var(--cream);
    padding: 80px 0 40px;
}

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

.l-video-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(30, 58, 138, 0.18);
    background: #000;
}

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

/* ================================================
   PRICING SECTION
   ================================================ */
.l-pricing {
    background: var(--cream);
    padding: 24px 0 96px;
    /* Reduced top padding to remove huge gap */
}

.l-pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

/* Gauche : Logiciel de base */
.l-pricing-base {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.l-pricing-base-head {
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.l-pricing-subtitle {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--blue-deep);
    margin-top: 12px;
    text-transform: uppercase;
}

.l-pricing-h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.l-pricing-desc {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-mid);
    margin-top: 8px;
}

.l-pmod-title {
    font-size: 1.1rem;
    color: var(--blue-deep);
    margin-bottom: 16px;
}

.l-pricing-modules-list>ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.l-pricing-modules-list>ul>li {
    background: var(--cream);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.l-pricing-modules-list>ul>li>strong {
    display: block;
    font-size: 0.95rem;
    color: var(--blue-deep);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    padding-bottom: 6px;
}

.l-pricing-modules-list>ul>li>ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.l-pricing-modules-list>ul>li>ul>li {
    position: relative;
    padding-left: 16px;
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

.l-pricing-modules-list>ul>li>ul>li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue-mid);
    font-weight: bold;
}

/* Droite : Récapitulatif */
.l-pricing-summary {
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.4);
}

.l-ps-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.l-ps-head .l-pricing-h3 {
    color: #fff;
}

.l-ps-body {
    margin-bottom: 32px;
}

.l-ps-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.l-ps-row:last-child {
    border-bottom: none;
}

.l-ps-highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.l-ps-highlight .l-ps-name {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.05rem;
}

.l-ps-highlight .l-ps-price {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.l-ps-name {
    color: rgba(255, 255, 255, 0.8);
}

.l-ps-price {
    font-family: var(--font-title);
    font-weight: 600;
}

.l-ps-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================
/* ================================================
   FAQ SECTION
   ================================================ */
.l-faq {
    background: #e8eeff;
    padding: 96px 0;
}

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

.l-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.l-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--blue-deep);
    transition: background 0.2s;
}

.l-faq-trigger:hover {
    background: var(--cream);
}

.l-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--blue-deep);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.l-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.l-faq-body.open {
    max-height: 500px;
}

.l-faq-answer {
    padding: 16px 24px 20px;
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

/* ================================================
   CTA FINAL
   ================================================ */
.l-cta-final {
    background: var(--blue-deep);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.l-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.l-cta-title {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    margin-bottom: 18px;
    position: relative;
}

.l-cta-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
}

.l-cta-final .btn-wa {
    font-size: 1.1rem;
    padding: 16px 36px;
    position: relative;
}

.l-cta-guarantee {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    position: relative;
}

/* ================================================
   FOOTER
   ================================================ */
.l-footer {
    background: var(--dark);
    padding: 56px 0 0;
}

.l-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.l-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.l-footer-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1rem;
    color: var(--gold);
}

.l-footer-logo-text {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

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

.l-footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.l-footer-wa {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.l-footer-wa-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--wa);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow-wa);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.l-footer-wa-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.l-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.l-footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

/* ================================================
   RESPONSIVE — 768px
   ================================================ */
@media (max-width: 768px) {
    .l-nav-links {
        display: none;
    }

    .l-hamburger {
        display: flex;
    }

    .l-hero {
        padding: 100px 0 60px;
    }

    .l-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .l-mock-wrap {
        order: -1;
    }

    .l-mock-sidebar {
        width: 100px;
    }

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

    .l-tab-panel {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .l-tabs {
        gap: 6px;
    }

    .l-tab {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .l-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .l-pricing-modules-list>ul {
        grid-template-columns: 1fr;
    }

    .l-footer-grid {
        grid-template-columns: 1fr;
    }

    .l-footer-wa {
        align-items: flex-start;
    }

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

@media (max-width: 480px) {
    .l-hero-btns {
        flex-direction: column;
    }

    .btn-wa,
    .btn-wa-outline {
        width: 100%;
        justify-content: center;
    }

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