/**
 * Landing Page — Africa Import Hub
 * Infine Design System
 * Mobile-First, High Conversion
 * Font: Plus Jakarta Sans | Palette: Teal #019297, Green #73ED7C, Dark #042A2D
 */

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #042A2D;
    background: #F2F1ED;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* =========================================
   TOKENS
   ========================================= */
:root {
    --primary: #019297;
    --primary-dark: #017A7E;
    --primary-light: #E0F5F5;
    --accent: #73ED7C;
    --gradient: linear-gradient(135deg, #019297, #73ED7C);
    --success: #059669;
    --success-light: #D1FAE5;
    --danger: #DC2626;
    --danger-light: #FEE2E2;
    --warning: #D97706;
    --info: #2563EB;
    --dark: #042A2D;
    --page-bg: #F2F1ED;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #8F8F8F;
    --gray-600: #6B7280;
    --gray-700: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #042A2D;
    --divider: #DFE1DE;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 50px;
    --radius-section: 30px;
    --shadow: 0 1px 3px rgba(4,42,45,.06);
    --shadow-md: 0 4px 12px rgba(4,42,45,.08);
    --shadow-lg: 0 8px 30px rgba(4,42,45,.10);
    --shadow-xl: 0 20px 60px rgba(4,42,45,.12);
}

/* =========================================
   LAYOUT
   ========================================= */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.lp-section__title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--dark);
}
.lp-section__sub {
    text-align: center;
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 40px;
}
.lp-text--primary {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-text--danger { color: var(--danger); }
.lp-text--white { color: #fff; }

/* =========================================
   BUTTONS
   ========================================= */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    transition: all .25s ease;
    white-space: nowrap;
}
.lp-btn--primary {
    background: var(--gradient);
    color: #fff;
    border: none;
}
.lp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1,146,151,.35);
}
.lp-btn--outline {
    border: 2px solid var(--divider);
    color: var(--dark);
    background: #fff;
}
.lp-btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.lp-btn--ghost { color: var(--gray-600); }
.lp-btn--ghost:hover { color: var(--primary); }
.lp-btn--white {
    background: #fff;
    color: var(--dark);
    font-weight: 700;
}
.lp-btn--white:hover {
    background: #F2F1ED;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.lp-btn--lg { padding: 16px 36px; font-size: 17px; }
.lp-btn--full { width: 100%; }

/* =========================================
   NAV
   ========================================= */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(242,241,237,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--divider);
    transition: box-shadow .3s;
}
.lp-nav--scrolled { box-shadow: var(--shadow-md); }
.lp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}
.lp-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    flex-shrink: 0;
}
.lp-nav__links {
    display: none;
    gap: 28px;
}
.lp-nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color .2s;
}
.lp-nav__links a:hover { color: var(--primary); }
.lp-nav__cta { display: none; gap: 10px; }
.lp-nav__cta .lp-btn { padding: 8px 16px; font-size: 13px; }

/* Burger */
.lp-nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.lp-nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s;
}

/* Mobile menu */
.lp-nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--page-bg);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
    box-shadow: var(--shadow-lg);
}
.lp-nav__links.active + .lp-nav__cta {
    display: flex;
    position: absolute;
    top: calc(64px + 140px);
    left: 0;
    right: 0;
    padding: 0 20px 20px;
    background: var(--page-bg);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   HERO
   ========================================= */
.lp-hero {
    padding: 100px 0 40px;
    text-align: center;
    background: var(--page-bg);
}
.lp-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.lp-hero__title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--dark);
}
.lp-hero__highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.lp-hero__sub {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.lp-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
}
.lp-hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
}
.lp-hero__avatars { display: flex; }
.lp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--page-bg);
    margin-left: -8px;
}
.lp-avatar:first-child { margin-left: 0; }
.lp-avatar:nth-child(2) { background: #73ED7C; color: var(--dark); }
.lp-avatar:nth-child(3) { background: #042A2D; }
.lp-avatar:nth-child(4) { background: var(--warning); }
.lp-avatar:nth-child(5) { background: #8B5CF6; }

/* Trust bar */
.lp-hero__trust {
    text-align: center;
}
.lp-trust__label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.lp-trust__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.lp-trust__badge {
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--divider);
    background: #fff;
}
.lp-trust--orange { color: #F57C00; border-color: #FFCC80; background: #FFF3E0; }
.lp-trust--mtn { color: #F9A825; border-color: #FFF176; background: #FFFDE7; }
.lp-trust--djomy { color: var(--primary); border-color: #B2DFDB; background: #E0F2F1; }
.lp-trust--wallet { color: var(--success); border-color: #A5D6A7; background: #E8F5E9; }

/* =========================================
   STATS (COMPTEURS) — Dark section
   ========================================= */
.lp-stats {
    padding: 40px 0;
    background: var(--dark);
    margin: 0 20px;
    border-radius: var(--radius-section);
}
.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.lp-stat {
    text-align: center;
    padding: 20px 12px;
}
.lp-stat__icon { font-size: 28px; display: block; margin-bottom: 8px; }
.lp-stat__number {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    display: block;
}
.lp-stat__label {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
    display: block;
}

/* =========================================
   AGITATION (Comparaison)
   ========================================= */
.lp-agitation {
    padding: 60px 0;
    background: var(--page-bg);
}
.lp-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}
.lp-compare__card {
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    border: 2px solid;
}
.lp-compare--bad {
    border-color: #FECACA;
    background: #FFF5F5;
}
.lp-compare--good {
    border-color: #A7F3D0;
    background: #F0FDF9;
}
.lp-compare__header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--divider);
}
.lp-compare--bad .lp-compare__header { color: var(--danger); }
.lp-compare--good .lp-compare__header { color: var(--primary); }
.lp-compare__card li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
    padding-left: 24px;
    position: relative;
}
.lp-compare--bad li::before { content: '\2717'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }
.lp-compare--good li::before { content: '\2713'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* =========================================
   CALCULATOR
   ========================================= */
.lp-calculator {
    padding: 60px 0;
    background: var(--page-bg);
}
.lp-calc {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow);
}
.lp-calc__form { display: flex; flex-direction: column; gap: 16px; }
.lp-calc__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.lp-calc__field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.lp-calc__field select,
.lp-calc__field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    font-size: 15px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    color: var(--dark);
}
.lp-calc__field select:focus,
.lp-calc__field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Result */
.lp-calc__result {
    margin-top: 24px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: slideUp .4s ease;
}
.lp-calc__result-header {
    background: var(--primary-light);
    padding: 14px 20px;
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}
.lp-calc__result-grid {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-calc__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--divider);
}
.lp-calc__item:last-child { border-bottom: none; }
.lp-calc__item-label { font-size: 14px; color: var(--gray-600); }
.lp-calc__item-value { font-size: 15px; font-weight: 700; color: var(--dark); }
.lp-calc__item--total {
    background: var(--page-bg);
    margin: 0 -20px;
    padding: 12px 20px;
    border-bottom: none;
}
.lp-calc__item--total .lp-calc__item-value {
    color: var(--primary);
    font-size: 18px;
}

/* Upsell */
.lp-calc__upsell {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--primary-light);
    border-top: 1px solid #B2DFDB;
}
.lp-calc__upsell > span { font-size: 28px; flex-shrink: 0; }
.lp-calc__upsell p { font-size: 13px; color: var(--gray-600); margin-top: 2px; }
.lp-calc__upsell .lp-btn { flex-shrink: 0; padding: 8px 16px; font-size: 13px; }

/* Loading / Error */
.lp-calc__loading {
    text-align: center;
    padding: 32px;
    color: var(--gray-500);
}
.lp-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--divider);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}
.lp-calc__error {
    margin-top: 16px;
    padding: 14px 20px;
    background: var(--danger-light);
    color: var(--danger);
    border-radius: var(--radius);
    font-size: 14px;
}

/* =========================================
   VIDEO — Dark section
   ========================================= */
.lp-video {
    padding: 80px 0;
    background: var(--dark);
    margin: 0 20px;
    border-radius: var(--radius-section);
}
.lp-video .lp-section__title { color: #fff; }
.lp-video .lp-section__sub { color: rgba(255,255,255,.5); }
.lp-video__placeholder {
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: transform .2s;
    border: 1px solid rgba(255,255,255,.1);
}
.lp-video__placeholder:hover { transform: scale(1.01); }
.lp-video__play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
    box-shadow: 0 0 0 8px rgba(1,146,151,.25);
}
.lp-video__placeholder p { font-size: 14px; color: rgba(255,255,255,.5); }

/* =========================================
   FEATURES (4 Piliers)
   ========================================= */
.lp-features {
    padding: 60px 0;
    background: var(--page-bg);
}
.lp-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}
.lp-feature {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.lp-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.lp-feature__icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.lp-feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.lp-feature p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}
.lp-feature__tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--page-bg);
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-pill);
}
.lp-feature__tag--pro {
    background: var(--primary-light);
    color: var(--primary);
}

/* =========================================
   PEDAGOGY
   ========================================= */
.lp-pedagogy {
    padding: 60px 0;
    background: var(--page-bg);
}
.lp-pedagogy__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.lp-pedagogy__text h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--dark);
}
.lp-pedagogy__text > p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}
.lp-pedagogy__terms { display: flex; flex-direction: column; gap: 14px; }
.lp-term {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--divider);
    font-size: 14px;
    line-height: 1.6;
}
.lp-term__audio {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.lp-term__audio:hover { background: var(--primary); color: #fff; }
.lp-term strong { color: var(--dark); }

/* Devis preview */
.lp-devis-preview {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.lp-devis__header {
    background: var(--dark);
    color: #fff;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 15px;
}
.lp-devis__line {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray-700);
}
.lp-devis__sep { height: 1px; background: var(--divider); margin: 4px 20px; }
.lp-devis__total {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    background: var(--page-bg);
    padding: 14px 20px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.lp-testimonials {
    padding: 60px 0;
    background: var(--page-bg);
}
.lp-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}
.lp-testimonial {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius-xl);
    padding: 24px;
}
.lp-testimonial__stars { font-size: 16px; margin-bottom: 12px; }
.lp-testimonial p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.lp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-testimonial__author strong { display: block; font-size: 14px; color: var(--dark); }
.lp-testimonial__author span:last-child { font-size: 13px; color: var(--gray-500); }

/* =========================================
   PRICING
   ========================================= */
.lp-pricing {
    padding: 60px 0;
    background: var(--page-bg);
}
.lp-pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}
.lp-plan {
    background: #fff;
    border: 2px solid var(--divider);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.lp-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-plan--popular {
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow-lg);
}
.lp-plan__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.lp-plan__emoji { font-size: 36px; margin-bottom: 12px; }
.lp-plan__name { font-size: 20px; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.lp-plan__desc { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; }
.lp-plan__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.lp-plan__amount { font-size: 36px; font-weight: 900; color: var(--dark); }
.lp-plan__currency { font-size: 16px; font-weight: 600; color: var(--gray-500); }
.lp-plan__period { font-size: 14px; color: var(--gray-500); }
.lp-plan__features {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-plan__features li {
    font-size: 14px;
    color: var(--gray-600);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.lp-plan__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}

/* =========================================
   GUARANTEE
   ========================================= */
.lp-guarantee {
    padding: 60px 0;
    background: var(--page-bg);
}
.lp-guarantee__inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.lp-guarantee__shield {
    font-size: 56px;
    margin-bottom: 16px;
}
.lp-guarantee__inner h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--dark);
}
.lp-guarantee__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}
.lp-guarantee__item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    align-items: flex-start;
}
.lp-guarantee__item > span { font-size: 22px; flex-shrink: 0; }
.lp-guarantee__item strong { display: block; font-size: 15px; margin-bottom: 2px; color: var(--dark); }
.lp-guarantee__item p { font-size: 14px; color: var(--gray-600); }

/* =========================================
   FAQ
   ========================================= */
.lp-faq {
    padding: 60px 0;
    background: var(--page-bg);
}
.lp-faq__list {
    max-width: 720px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-faq__item {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s;
}
.lp-faq__item:hover { box-shadow: var(--shadow); }
.lp-faq__item summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--gray-500);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .2s, color .2s;
}
.lp-faq__item[open] summary::after { content: '\2212'; color: var(--primary); }
.lp-faq__item[open] summary { color: var(--primary); }
.lp-faq__item p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =========================================
   BLOG SECTION (3 derniers articles)
   ========================================= */
.lp-blog {
    padding: 60px 0;
    background: var(--page-bg);
}
.lp-blog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}
.lp-blog__card {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    color: inherit;
}
.lp-blog__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.lp-blog__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(1,146,151,.08);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    width: fit-content;
}
.lp-blog__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.35;
}
.lp-blog__excerpt {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 14px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-blog__meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: var(--gray-500);
}
.lp-blog__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* =========================================
   CTA FINAL — Dark section
   ========================================= */
.lp-cta-final {
    padding: 80px 0;
    background: var(--dark);
    margin: 0 20px;
    border-radius: var(--radius-section);
    text-align: center;
    color: #fff;
}
.lp-cta-final h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 12px;
}
.lp-cta-final h2 .lp-text--white {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-cta-final p {
    font-size: 17px;
    color: rgba(255,255,255,.6);
    margin-bottom: 32px;
}

/* =========================================
   FOOTER — Dark section
   ========================================= */
.lp-footer {
    padding: 32px 0;
    background: var(--dark);
    color: rgba(255,255,255,.5);
    margin: 20px 20px 20px;
    border-radius: var(--radius-section);
}
.lp-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.lp-footer__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
.lp-footer__links {
    display: flex;
    gap: 20px;
    font-size: 14px;
}
.lp-footer__links a:hover { color: #fff; }
.lp-footer__copy { font-size: 12px; }

/* =========================================
   SOCIAL TOASTS
   ========================================= */
.lp-toasts {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.lp-toast {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn .4s ease, toastOut .4s ease 4s forwards;
    max-width: 320px;
}
.lp-toast__icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes toastIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-30px); }
}

/* Scroll reveal — fade-up on scroll */
.lp-reveal {
    opacity: 0.15;
    transform: translateY(20px);
    transition: opacity .5s ease-out, transform .5s ease-out;
}
.lp-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE — TABLET (640px+)
   ========================================= */
@media (min-width: 640px) {
    .lp-container { padding: 0 40px; }
    .lp-hero__title { font-size: 40px; }
    .lp-hero__actions { flex-direction: row; }
    .lp-calc__row { grid-template-columns: 1fr 1fr; }
    .lp-compare { grid-template-columns: 1fr 1fr; }
    .lp-stats__grid { grid-template-columns: repeat(4, 1fr); }
    .lp-features__grid { grid-template-columns: 1fr 1fr; }
    .lp-testimonials__grid { grid-template-columns: 1fr 1fr 1fr; }
    .lp-blog__grid { grid-template-columns: 1fr 1fr 1fr; }
    .lp-pricing__grid { grid-template-columns: 1fr 1fr; }
    .lp-section__title { font-size: 36px; }
}

/* =========================================
   RESPONSIVE — DESKTOP (1024px+)
   ========================================= */
@media (min-width: 1024px) {
    .lp-nav__links { display: flex; }
    .lp-nav__cta { display: flex; }
    .lp-nav__burger { display: none; }

    .lp-hero { padding: 120px 0 60px; }
    .lp-hero__title { font-size: 56px; }
    .lp-hero__sub { font-size: 19px; }

    .lp-section__title { font-size: 44px; }

    .lp-pedagogy__inner { grid-template-columns: 1fr 1fr; }

    .lp-pricing__grid { grid-template-columns: repeat(4, 1fr); }

    .lp-cta-final h2 { font-size: 44px; }

    .lp-stats { padding: 60px 0; }
    .lp-video { padding: 80px 0; }
    .lp-cta-final { padding: 100px 0; }
}
