/* ============================================
   Theme GDM — Landing Pages CSS
   Shared styles for espace-prestataire, cagnotte-mariage, lea
   ============================================ */

/* ── Layout ── */
.gdm-landing { overflow-x: hidden; }
.gdm-landing .gdm-main { max-width: none; padding: 0; }

.gdm-section {
    padding: 80px 0;
    position: relative;
}

.gdm-section--sm { padding: 48px 0; }

.gdm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.gdm-container--narrow { max-width: 800px; }

/* Backgrounds */
.gdm-section--white { background: #fff; }
.gdm-section--gray { background: #f8f7fa; }
.gdm-section--violet-light { background: #f5f0ff; }
.gdm-section--dark { background: #1a1225; color: #e0d8ef; }
.gdm-section--gradient { background: linear-gradient(135deg, #7c3aed, #6d28d9); color: #fff; }
.gdm-section--gradient-soft { background: linear-gradient(180deg, rgba(124,58,237,.04) 0%, #fff 100%); }

/* ── Section titles ── */
.gdm-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(124,58,237,.08);
    color: var(--gdm-primary);
    border-radius: 99px;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.gdm-section__title {
    font-family: var(--gdm-font-headings);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--gdm-text);
}

.gdm-section--dark .gdm-section__title,
.gdm-section--gradient .gdm-section__title { color: #fff; }

.gdm-section__subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gdm-text-muted);
    max-width: 560px;
}

.gdm-section--dark .gdm-section__subtitle { color: #c4b5fd; }
.gdm-section--gradient .gdm-section__subtitle { color: rgba(255,255,255,.8); }

.gdm-section__title--center,
.gdm-section__subtitle--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── Hero Full-width (image background, like homepage) ── */
/* ════════════════════════════════════════════
   HERO FULL — Desktop : image fond, texte blanc à gauche (NO overlay)
   Mobile : split seamless image/texte (continuité violet)
   ════════════════════════════════════════════ */

.gdm-hero-full {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image — NO overlay, le fond violet des images = contraste naturel */
.gdm-hero-full__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gdm-hero-full__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* L'overlay est supprimé — plus de div .gdm-hero-full__overlay en HTML */
/* Le texte blanc se lit directement sur le fond violet des images */

.gdm-hero-full__content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.gdm-hero-full__title {
    font-family: var(--gdm-font-headings);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    max-width: 520px;
    text-shadow: 0 2px 20px rgba(15, 13, 21, .3);
}

.gdm-hero-full__subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 32px;
    max-width: 440px;
    text-shadow: 0 1px 8px rgba(15, 13, 21, .2);
}

.gdm-hero-full .gdm-hero__ctas {
    max-width: 440px;
}

.gdm-hero-full .gdm-hero__proof {
    max-width: 440px;
    margin-top: 20px;
}

/* Desktop: hide mobile-only elements */
.gdm-hero-full__sub-mobile { display: none; }

/* Desktop: bottom-zone layout (horizontal, left-aligned) */
.gdm-hero-full__bottom-zone {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 440px;
}

.gdm-hero-full__micro {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    letter-spacing: .03em;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(15,13,21,.2);
}

.gdm-hero-full__proof-line {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    text-shadow: 0 1px 8px rgba(15,13,21,.2);
    margin-bottom: 8px;
}

.gdm-hero-full__proof-line strong { color: #fff; }

/* Léa: chat demo — positioned right on desktop */
.gdm-hero-full__chat {
    position: absolute;
    right: 32px;
    bottom: 60px;
    z-index: 3;
    max-width: 380px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--gdm-radius);
    padding: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

@media (min-width: 1200px) {
    .gdm-hero-full__chat {
        right: calc((100vw - 1200px) / 2 + 32px);
    }
}

/* ── MOBILE : Image plein écran, titre en haut, CTAs en bas (pattern accueil-7) ── */
@media (max-width: 768px) {
    .gdm-hero-full {
        min-height: 100vh;
        min-height: 100dvh;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    /* Image reste en absolute plein écran */
    .gdm-hero-full__bg {
        position: absolute;
        inset: 0;
    }

    .gdm-hero-full__bg img {
        object-position: center center;
    }

    /* Contenu en absolute par-dessus, TOUT empilé en haut (image = impact visuel en bas) */
    .gdm-hero-full__content {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 48px 24px max(32px, env(safe-area-inset-bottom));
        text-align: center;
        pointer-events: none;
        max-width: none;
        width: 100%;
        background: none;
        gap: 14px;
    }

    /* Scrim haut : dégradé violet foncé → transparent, améliore la lisibilité du bloc texte */
    .gdm-hero-full__content::before {
        content: '';
        position: absolute;
        inset: 0 0 auto 0;
        height: 55%;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(15,6,32,.45) 0%, rgba(15,6,32,.22) 45%, rgba(15,6,32,0) 100%);
        z-index: -1;
    }

    /* Scrim bas : dégradé transparent → violet foncé pour isoler les CTAs */
    .gdm-hero-full__content::after {
        content: '';
        position: absolute;
        inset: auto 0 0 0;
        height: 35%;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(15,6,32,0) 0%, rgba(15,6,32,.25) 50%, rgba(15,6,32,.5) 100%);
        z-index: -1;
    }

    /* Zone haute — badge + titre + sub */
    .gdm-hero-full__top-zone {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 30px;
        padding-top: 8px;
        gap: 12px;
    }

    .gdm-hero-full .gdm-section__badge {
        margin-left: auto;
        margin-right: auto;
    }

    .gdm-hero-full__title {
        max-width: 320px;
        font-size: 2rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 2px 20px rgba(0,0,0,.35);
    }

    /* Sous-titre desktop — masqué sur mobile */
    .gdm-hero-full__subtitle {
        display: none;
    }

    /* Sous-titre mobile court (1 ligne) */
    .gdm-hero-full__sub-mobile {
        display: block;
        font-size: .88rem;
        color: rgba(255,255,255,.75);
        text-shadow: 0 1px 10px rgba(0,0,0,.3);
        margin-top: 8px;
        max-width: 280px;
        line-height: 1.4;
    }

    /* Zone basse — micro + proof juste après le top zone (plus stick au bas) */
    .gdm-hero-full__bottom-zone {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        pointer-events: auto;
        gap: 8px;
    }

    .gdm-hero-full__micro {
        font-size: .72rem;
        color: rgba(255,255,255,.7);
        letter-spacing: .02em;
        text-align: center;
        line-height: 1.5;
        text-shadow: 0 1px 8px rgba(0,0,0,.4);
    }

    .gdm-hero-full__proof-line {
        font-size: .78rem;
        color: rgba(255,255,255,.85);
        text-align: center;
        text-shadow: 0 1px 8px rgba(0,0,0,.4);
    }

    .gdm-hero-full__proof-line strong {
        color: #fff;
    }

    /* CTAs — pinned bottom absolute, largeur contenue, effet glass sur ghost */
    .gdm-hero-full .gdm-hero__ctas {
        position: absolute;
        bottom: max(28px, env(safe-area-inset-bottom));
        left: 24px;
        right: 24px;
        max-width: 300px;
        margin: 0 auto;
        width: calc(100% - 48px);
        flex-direction: column;
        align-items: stretch;
        pointer-events: auto;
        gap: 10px;
        z-index: 3;
    }

    .gdm-hero-full .gdm-hero__ctas .gdm-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .gdm-hero-full .gdm-hero__ctas .gdm-btn--white {
        background: #fff;
        color: var(--gdm-text);
        box-shadow: 0 12px 32px rgba(0,0,0,.25), 0 4px 12px rgba(0,0,0,.15);
        font-size: .92rem;
        font-weight: 700;
        padding: 16px 24px;
        border-radius: 14px;
    }

    /* Ghost button : glassmorphism blur */
    .gdm-hero-full .gdm-hero__ctas .gdm-btn--white-ghost {
        font-size: .82rem;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 14px;
        color: #fff;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.22);
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
        box-shadow: 0 4px 16px rgba(0,0,0,.15);
        transition: background .2s ease, border-color .2s ease;
    }
    .gdm-hero-full .gdm-hero__ctas .gdm-btn--white-ghost:hover,
    .gdm-hero-full .gdm-hero__ctas .gdm-btn--white-ghost:active {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.35);
    }

    /* Chat demo Léa — masqué dans le hero mobile */
    .gdm-hero-full__chat {
        display: none;
    }
}

/* ── Section "sous-titre mobile" — affiché uniquement en mobile après le hero ── */
.gdm-hero-full-mobile-sub {
    display: none;
}

@media (max-width: 768px) {
    .gdm-hero-full-mobile-sub {
        display: block;
        padding: 28px 24px 0;
        text-align: center;
    }

    .gdm-hero-full-mobile-sub p {
        font-size: .95rem;
        line-height: 1.6;
        color: var(--gdm-text-muted);
        max-width: 360px;
        margin: 0 auto;
    }
}

/* ── Hero Split (kept for other uses) ── */
.gdm-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 520px;
}

.gdm-hero__content { padding: 40px 0; }

.gdm-hero__title {
    font-family: var(--gdm-font-headings);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gdm-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--gdm-text-muted);
    margin-bottom: 32px;
    max-width: 480px;
}

.gdm-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.gdm-hero__proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--gdm-text-muted);
}

.gdm-hero__proof strong { color: var(--gdm-text); }

.gdm-hero__image {
    position: relative;
    border-radius: var(--gdm-radius);
    overflow: hidden;
}

.gdm-hero__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--gdm-radius);
}

/* Hero image picture element */
.gdm-hero__image picture {
    display: block;
    border-radius: var(--gdm-radius);
    overflow: hidden;
}

.gdm-hero__image picture img {
    border-radius: 0;
}

/* ── Buttons ── */
.gdm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 99px;
    font-size: .9rem;
    font-weight: 700;
    font-family: var(--gdm-font-body);
    border: none;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.gdm-btn--primary {
    background: var(--gdm-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(124,58,237,.25);
}

.gdm-btn--primary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,58,237,.35);
}

.gdm-btn--ghost {
    background: transparent;
    color: var(--gdm-primary);
    border: 1.5px solid rgba(124,58,237,.25);
}

.gdm-btn--ghost:hover {
    border-color: var(--gdm-primary);
    background: rgba(124,58,237,.04);
}

.gdm-btn--white {
    background: #fff;
    color: var(--gdm-primary);
}

.gdm-btn--white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.gdm-btn--white-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
}

.gdm-btn--white-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.gdm-btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ── Stats bar ── */
.gdm-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.gdm-stat__number {
    font-family: var(--gdm-font-headings);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gdm-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.gdm-stat__label {
    font-size: .82rem;
    color: var(--gdm-text-muted);
    font-weight: 500;
}

/* ── Trust bar ── */
.gdm-trust-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gdm-text-muted);
}

.gdm-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gdm-trust-bar__icon { font-size: 1.1rem; }

/* ── Feature grid ── */
.gdm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.gdm-feature {
    padding: 28px;
    border-radius: var(--gdm-radius);
    background: #fff;
    border: 1px solid rgba(0,0,0,.04);
    transition: box-shadow .25s, transform .25s;
}

.gdm-feature:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    transform: translateY(-3px);
}

.gdm-feature__icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: block;
}

.gdm-feature__title {
    font-family: var(--gdm-font-headings);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.gdm-feature__text {
    font-size: .875rem;
    color: var(--gdm-text-muted);
    line-height: 1.5;
}

/* ── Steps ── */
.gdm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.gdm-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--gdm-primary), var(--gdm-cuivre));
    opacity: .2;
}

.gdm-step { text-align: center; position: relative; }

.gdm-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gdm-primary);
    color: #fff;
    font-family: var(--gdm-font-headings);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.gdm-step__title {
    font-family: var(--gdm-font-headings);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.gdm-step__text {
    font-size: .875rem;
    color: var(--gdm-text-muted);
    line-height: 1.5;
}

/* ── Pricing cards ── */
.gdm-pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.gdm-pricing-card {
    padding: 32px 24px;
    border-radius: var(--gdm-radius);
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    text-align: center;
    transition: box-shadow .25s, transform .25s;
    position: relative;
}

.gdm-pricing-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transform: translateY(-4px);
}

.gdm-pricing-card--popular {
    border-color: var(--gdm-primary);
    box-shadow: 0 4px 20px rgba(124,58,237,.12);
    transform: translateY(-8px);
}

.gdm-pricing-card--popular:hover {
    transform: translateY(-12px);
}

.gdm-pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gdm-primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.gdm-pricing__name {
    font-family: var(--gdm-font-headings);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    margin-top: 8px;
}

.gdm-pricing__price {
    font-family: var(--gdm-font-headings);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--gdm-text);
    line-height: 1;
}

.gdm-pricing__period {
    font-size: .8rem;
    color: var(--gdm-text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.gdm-pricing__contact {
    font-size: .85rem;
    color: var(--gdm-primary);
    font-weight: 700;
    margin-bottom: 16px;
}

.gdm-pricing__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.gdm-pricing__list li {
    font-size: .82rem;
    padding: 6px 0;
    color: var(--gdm-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gdm-pricing__list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
}

.gdm-pricing__boost {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gdm-primary);
    padding: 6px 12px;
    background: rgba(124,58,237,.06);
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 16px;
}

/* ── Testimonial ── */
.gdm-testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.gdm-testimonial__quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #e0d8ef;
}

.gdm-testimonial__author { font-weight: 700; color: #fff; }
.gdm-testimonial__role { font-size: .85rem; color: #a78bfa; }

/* ── FAQ accordion ── */
.gdm-faq { max-width: 700px; margin: 0 auto; }

.gdm-faq__item {
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.gdm-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    font-size: .95rem;
    font-weight: 600;
    font-family: var(--gdm-font-body);
    color: var(--gdm-text);
    cursor: pointer;
    text-align: left;
}

.gdm-faq__icon {
    font-size: 1.2rem;
    transition: transform .2s;
    flex-shrink: 0;
    color: var(--gdm-primary);
}

.gdm-faq__item.is-open .gdm-faq__icon { transform: rotate(45deg); }

.gdm-faq__answer {
    display: none;
    padding: 0 0 18px;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--gdm-text-muted);
}

.gdm-faq__item.is-open .gdm-faq__answer { display: block; }

/* ── Fees table ── */
.gdm-fees-table {
    width: 100%;
    max-width: 500px;
    margin: 24px auto 0;
    border-collapse: collapse;
}

.gdm-fees-table th,
.gdm-fees-table td {
    padding: 12px 16px;
    text-align: center;
    font-size: .9rem;
}

.gdm-fees-table thead th {
    font-weight: 700;
    color: var(--gdm-text);
    border-bottom: 2px solid rgba(0,0,0,.08);
}

.gdm-fees-table tbody td {
    color: var(--gdm-text-muted);
    border-bottom: 1px solid rgba(0,0,0,.04);
}

.gdm-fees-table .gdm-fees-table__highlight {
    color: var(--gdm-primary);
    font-weight: 700;
    font-size: 1rem;
}

/* ── Chat bubbles (Léa page) ── */
.gdm-chat-demo { max-width: 400px; margin: 0 auto; }

.gdm-chat-bubble {
    padding: 14px 18px;
    border-radius: 18px;
    margin-bottom: 10px;
    font-size: .9rem;
    line-height: 1.5;
    max-width: 85%;
    animation: gdmFadeUp .4s ease both;
}

.gdm-chat-bubble--user {
    background: var(--gdm-primary);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 6px;
}

.gdm-chat-bubble--lea {
    background: #f0edf7;
    color: var(--gdm-text);
    border-bottom-left-radius: 6px;
}

.gdm-chat-bubble--action {
    background: rgba(124,58,237,.06);
    color: var(--gdm-primary);
    font-weight: 600;
    font-size: .82rem;
    border: 1px dashed rgba(124,58,237,.2);
}

/* Chat demo on image overlay (Léa page) */
.gdm-hero__image .gdm-chat-demo {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--gdm-radius);
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

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

/* ── Tabs ── */
.gdm-tabs-nav {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 32px;
    background: rgba(0,0,0,.03);
    border-radius: 99px;
    padding: 4px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.gdm-tabs-nav__btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 99px;
    font-size: .85rem;
    font-weight: 600;
    font-family: var(--gdm-font-body);
    color: var(--gdm-text-muted);
    cursor: pointer;
    transition: all .2s;
}

.gdm-tabs-nav__btn.is-active {
    background: #fff;
    color: var(--gdm-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.gdm-tab-panel { display: none; }
.gdm-tab-panel.is-active { display: block; }

/* ── Scroll reveal ── */
.gdm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.gdm-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.gdm-reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.gdm-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.gdm-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .1s; opacity: 1; transform: none; }
.gdm-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .2s; opacity: 1; transform: none; }
.gdm-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .3s; opacity: 1; transform: none; }
.gdm-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .4s; opacity: 1; transform: none; }
.gdm-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .5s; opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .gdm-hero { grid-template-columns: 1fr; gap: 32px; }
    .gdm-hero__image { order: -1; }
    .gdm-hero__image img { min-height: 280px; }
    .gdm-features { grid-template-columns: repeat(2, 1fr); }
    .gdm-pricing { grid-template-columns: repeat(2, 1fr); }
    .gdm-pricing-card--popular { transform: none; }
    .gdm-steps { grid-template-columns: 1fr; gap: 32px; }
    .gdm-steps::before { display: none; }
}

@media (max-width: 768px) {
    .gdm-section { padding: 48px 0; }
    .gdm-container { padding: 0 20px; }
    .gdm-features { grid-template-columns: 1fr; }
    .gdm-stats { gap: 20px; }
    .gdm-trust-bar { gap: 12px; font-size: .72rem; }
    .gdm-hero__ctas { flex-direction: column; }
    .gdm-hero__ctas .gdm-btn { text-align: center; justify-content: center; }

    /* Pricing — scroll horizontal snap */
    .gdm-pricing {
        grid-template-columns: none;
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        max-width: none;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .gdm-pricing-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .gdm-pricing-card--popular {
        transform: none;
    }

    /* Masquer la section "Problème" sur mobile (les pros savent) */
    .gdm-landing .gdm-section--problem-mobile-hide { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   LANDING v2 — Premium Upgrade Layer
   Enrichit sans casser : tokens supplémentaires + mesh + glass
   Inspiration : Stripe, Liveblocks, Linear
   ═══════════════════════════════════════════════════════════ */

.gdm-landing {
    --gdm-ease: .3s cubic-bezier(.2, .8, .2, 1);
    --gdm-ease-spring: .5s cubic-bezier(.2, .9, .3, 1.2);
    --gdm-radius-lg: 20px;
    --gdm-radius-xl: 28px;
    --gdm-shadow-sm: 0 1px 2px rgba(15, 13, 21, .04);
    --gdm-shadow-md: 0 4px 16px rgba(15, 13, 21, .06), 0 2px 4px rgba(15, 13, 21, .03);
    --gdm-shadow-lg: 0 12px 40px rgba(15, 13, 21, .08), 0 4px 12px rgba(15, 13, 21, .04);
    --gdm-shadow-xl: 0 24px 60px rgba(15, 13, 21, .12), 0 8px 20px rgba(15, 13, 21, .06);
    --gdm-shadow-glow: 0 0 40px rgba(124, 58, 237, .08), 0 0 80px rgba(124, 58, 237, .04);
    --gdm-glass-bg: rgba(255, 255, 255, .72);
    --gdm-glass-border: rgba(255, 255, 255, .55);
    --gdm-glass-blur: blur(20px) saturate(1.4);
    --gdm-success: #10b981;
    --gdm-star: #f59e0b;
}

/* ── Mesh Gradient — Living background ── */
.gdm-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gdm-mesh__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}

.gdm-mesh__blob--1 {
    width: 600px; height: 600px;
    background: rgba(124, 58, 237, .12);
    top: -10%; left: -5%;
    animation: gdmMesh1 22s ease-in-out infinite alternate;
}

.gdm-mesh__blob--2 {
    width: 500px; height: 500px;
    background: rgba(168, 85, 247, .10);
    top: 25%; right: -10%;
    animation: gdmMesh2 26s ease-in-out infinite alternate;
}

.gdm-mesh__blob--3 {
    width: 450px; height: 450px;
    background: rgba(212, 165, 116, .08);
    bottom: 15%; left: 20%;
    animation: gdmMesh3 24s ease-in-out infinite alternate;
}

.gdm-mesh__blob--4 {
    width: 400px; height: 400px;
    background: rgba(240, 171, 252, .08);
    bottom: -5%; right: 15%;
    animation: gdmMesh4 20s ease-in-out infinite alternate;
}

@keyframes gdmMesh1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes gdmMesh2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 80px) scale(1.1); }
}
@keyframes gdmMesh3 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -40px) scale(1.2); }
}
@keyframes gdmMesh4 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, -60px) scale(1.15); }
}

/* Sections above mesh */
.gdm-landing .gdm-section,
.gdm-landing .gdm-hero-full,
.gdm-landing .gdm-hero-full-mobile-sub { position: relative; z-index: 1; }

/* Sections translucides pour laisser respirer la mesh */
.gdm-landing .gdm-section--gray {
    background: rgba(248, 247, 250, .72);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
}

.gdm-landing .gdm-section--violet-light {
    background: rgba(245, 240, 255, .68);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
}

/* Mobile : pas de backdrop-blur (perf) — on solidifie */
@media (max-width: 768px) {
    .gdm-landing .gdm-section--gray {
        background: #f8f7fa;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .gdm-landing .gdm-section--violet-light {
        background: #f5f0ff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ── Typography v2 — titres plus premium ── */
.gdm-landing .gdm-section__title {
    letter-spacing: -.02em;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.gdm-landing .gdm-hero-full__title {
    letter-spacing: -.03em;
}

.gdm-landing .gdm-section__badge {
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .7rem;
    padding: 7px 14px;
    border: 1px solid rgba(124, 58, 237, .12);
}

/* ── Feature cards v2 — glass + spring hover ── */
.gdm-landing .gdm-feature {
    padding: 28px 24px;
    border-radius: var(--gdm-radius-lg);
    border: 1px solid rgba(15, 13, 21, .06);
    background: #fff;
    box-shadow: var(--gdm-shadow-sm);
    transition: transform var(--gdm-ease-spring), box-shadow var(--gdm-ease), border-color var(--gdm-ease);
    position: relative;
    overflow: hidden;
}

.gdm-landing .gdm-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, .04), transparent 50%);
    opacity: 0;
    transition: opacity var(--gdm-ease);
    pointer-events: none;
}

.gdm-landing .gdm-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--gdm-shadow-lg), var(--gdm-shadow-glow);
    border-color: rgba(124, 58, 237, .14);
}

.gdm-landing .gdm-feature:hover::before {
    opacity: 1;
}

.gdm-landing .gdm-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .08), rgba(168, 85, 247, .04));
    border: 1px solid rgba(124, 58, 237, .1);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.gdm-landing .gdm-feature__title {
    font-size: 1.05rem;
    letter-spacing: -.01em;
}

.gdm-landing .gdm-feature__text {
    font-size: .9rem;
    line-height: 1.6;
}

/* Sur fond violet-light : cards deviennent plus transparentes (glass effect) */
.gdm-landing .gdm-section--violet-light .gdm-feature {
    background: rgba(255, 255, 255, .72);
    backdrop-filter: var(--gdm-glass-blur);
    -webkit-backdrop-filter: var(--gdm-glass-blur);
    border-color: rgba(255, 255, 255, .8);
}

/* ── Steps v2 — timeline avec rail plus premium ── */
.gdm-landing .gdm-steps::before {
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gdm-primary) 15%,
        var(--gdm-cuivre) 85%,
        transparent 100%);
    opacity: .35;
}

.gdm-landing .gdm-step__number {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gdm-primary), var(--gdm-primary-light));
    box-shadow: 0 8px 24px rgba(124, 58, 237, .28), 0 0 0 4px #fff;
    margin-bottom: 20px;
}

.gdm-landing .gdm-step__title {
    font-size: 1.05rem;
    letter-spacing: -.01em;
}

/* ── Pricing v2 — popular plus évident ── */
.gdm-landing .gdm-pricing-card {
    border-radius: var(--gdm-radius-lg);
    padding: 36px 24px;
    transition: transform var(--gdm-ease-spring), box-shadow var(--gdm-ease), border-color var(--gdm-ease);
}

.gdm-landing .gdm-pricing-card:hover {
    box-shadow: var(--gdm-shadow-lg);
    border-color: rgba(124, 58, 237, .2);
}

.gdm-landing .gdm-pricing-card--popular {
    border-width: 2px;
    box-shadow: 0 16px 48px rgba(124, 58, 237, .18), 0 4px 12px rgba(124, 58, 237, .08);
    background: linear-gradient(180deg, #fff 0%, #faf8ff 100%);
}

.gdm-landing .gdm-pricing-card--popular:hover {
    box-shadow: 0 24px 64px rgba(124, 58, 237, .22), 0 8px 16px rgba(124, 58, 237, .1);
}

.gdm-landing .gdm-pricing__badge {
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--gdm-primary), #a855f7);
    box-shadow: 0 4px 14px rgba(124, 58, 237, .35);
    top: -14px;
    font-size: .68rem;
    letter-spacing: .08em;
}

.gdm-landing .gdm-pricing__price {
    background: linear-gradient(135deg, var(--gdm-text) 0%, var(--gdm-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.6rem;
    letter-spacing: -.03em;
}

/* ── Stats v2 — numbers gradient text ── */
.gdm-landing .gdm-stat__number {
    background: linear-gradient(135deg, var(--gdm-primary), var(--gdm-cuivre));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.6rem;
    letter-spacing: -.02em;
    line-height: 1;
    font-weight: 800;
}

.gdm-landing .gdm-stat__label {
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .72rem;
    font-weight: 600;
    color: var(--gdm-text-muted);
}

/* ── Trust bar v2 — cards posées ── */
.gdm-landing .gdm-trust-bar {
    gap: 20px;
}

.gdm-landing .gdm-trust-bar__item {
    padding: 14px 20px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(15, 13, 21, .05);
    border-radius: 99px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color var(--gdm-ease), background var(--gdm-ease);
}

.gdm-landing .gdm-trust-bar__item:hover {
    border-color: rgba(124, 58, 237, .15);
    background: rgba(255, 255, 255, .9);
}

/* ── Testimonial v2 — guillemet décoratif ── */
.gdm-landing .gdm-section--dark {
    background: linear-gradient(135deg, #1a0f2e 0%, #0f0820 100%);
    overflow: hidden;
    position: relative;
}

.gdm-landing .gdm-section--dark::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, .18) 0%, transparent 60%);
    pointer-events: none;
}

.gdm-landing .gdm-testimonial {
    position: relative;
    padding-top: 40px;
}

.gdm-landing .gdm-testimonial::before {
    content: '“';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
    color: rgba(168, 85, 247, .25);
    pointer-events: none;
}

.gdm-landing .gdm-testimonial__quote {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 400;
    color: #e9e2f8;
}

.gdm-landing .gdm-testimonial__author {
    font-size: 1rem;
    letter-spacing: .02em;
}

/* ── Fees table v2 — highlight row subtle gradient ── */
.gdm-landing .gdm-fees-table tbody tr {
    transition: background var(--gdm-ease);
}

.gdm-landing .gdm-fees-table tbody tr:hover {
    background: rgba(124, 58, 237, .03);
}

.gdm-landing .gdm-fees-table .gdm-fees-table__highlight {
    font-size: 1.05rem;
    font-weight: 800;
}

/* ── FAQ v2 — chevron SVG + smooth accordion ── */
.gdm-landing .gdm-faq__item {
    border-bottom: 1px solid rgba(15, 13, 21, .08);
    transition: border-color var(--gdm-ease);
}

.gdm-landing .gdm-faq__item.is-open {
    border-bottom-color: rgba(124, 58, 237, .2);
}

.gdm-landing .gdm-faq__question {
    padding: 22px 0;
    font-size: 1rem;
    letter-spacing: -.005em;
    transition: color var(--gdm-ease);
}

.gdm-landing .gdm-faq__question:hover {
    color: var(--gdm-primary);
}

.gdm-landing .gdm-faq__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(124, 58, 237, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    transition: background var(--gdm-ease), transform var(--gdm-ease-spring);
}

.gdm-landing .gdm-faq__item.is-open .gdm-faq__icon {
    background: var(--gdm-primary);
    color: #fff;
    transform: rotate(45deg);
}

.gdm-landing .gdm-faq__answer {
    padding: 0 40px 22px 0;
    font-size: .92rem;
}

/* ── Tabs v2 ── */
.gdm-landing .gdm-tabs-nav {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 13, 21, .06);
    box-shadow: var(--gdm-shadow-sm);
}

.gdm-landing .gdm-tabs-nav__btn {
    transition: all var(--gdm-ease);
}

.gdm-landing .gdm-tabs-nav__btn.is-active {
    box-shadow: var(--gdm-shadow-md);
    transform: translateY(-1px);
}

/* ── CTA final (gradient section) v2 ── */
.gdm-landing .gdm-section--gradient {
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, .2) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(192, 132, 252, .25) 0%, transparent 50%),
        linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    overflow: hidden;
    position: relative;
}

.gdm-landing .gdm-section--gradient .gdm-btn--white {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25), 0 4px 12px rgba(0, 0, 0, .15);
    transition: transform var(--gdm-ease-spring), box-shadow var(--gdm-ease);
}

.gdm-landing .gdm-section--gradient .gdm-btn--white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3), 0 6px 16px rgba(0, 0, 0, .2);
}

/* ── Buttons v2 — spring easing ── */
.gdm-landing .gdm-btn {
    transition: transform var(--gdm-ease-spring), box-shadow var(--gdm-ease), background var(--gdm-ease), border-color var(--gdm-ease);
    letter-spacing: -.005em;
}

.gdm-landing .gdm-btn--primary {
    background: linear-gradient(135deg, var(--gdm-primary), #6d28d9);
    box-shadow: 0 4px 20px rgba(124, 58, 237, .28);
}

.gdm-landing .gdm-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, .35);
}

/* ── Pulse dot utility (Léa, stats) ── */
.gdm-landing .gdm-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gdm-success);
    border-radius: 50%;
    margin-right: 6px;
    animation: gdmPulse 2s ease-in-out infinite;
}

@keyframes gdmPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .4); }
    50%      { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* ── Reveal v2 — smoother easing ── */
.gdm-landing .gdm-reveal {
    transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
    transform: translateY(32px);
}

.gdm-landing .gdm-reveal-stagger > * {
    transition: opacity .6s cubic-bezier(.2, .8, .2, 1), transform .6s cubic-bezier(.2, .8, .2, 1);
}


/* ═══════════════════════════════════════════════════════════
   MOBILE v2 — Polish critique
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Mesh allégée sur mobile (perf) */
    .gdm-mesh__blob { filter: blur(80px); }
    .gdm-mesh__blob--1 { width: 350px; height: 350px; }
    .gdm-mesh__blob--2 { width: 300px; height: 300px; }
    .gdm-mesh__blob--3 { width: 260px; height: 260px; }
    .gdm-mesh__blob--4 { display: none; }

    /* Trust bar — 2×2 stable */
    .gdm-landing .gdm-trust-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gdm-landing .gdm-trust-bar__item {
        padding: 12px 14px;
        font-size: .78rem;
        justify-content: center;
        border-radius: 14px;
    }

    /* Steps — timeline verticale avec rail gauche */
    .gdm-landing .gdm-steps {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        padding-left: 64px;
    }

    .gdm-landing .gdm-steps::before {
        display: block !important;
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 24px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg,
            var(--gdm-primary) 0%,
            rgba(124, 58, 237, .3) 50%,
            var(--gdm-cuivre) 100%);
        opacity: .4;
    }

    .gdm-landing .gdm-step {
        text-align: left;
        padding: 20px 0;
        position: relative;
    }

    .gdm-landing .gdm-step__number {
        position: absolute;
        left: -64px;
        top: 12px;
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
        margin: 0;
        box-shadow: 0 6px 16px rgba(124, 58, 237, .28), 0 0 0 4px #fff;
    }

    /* Features — stack avec entrée progressive */
    .gdm-landing .gdm-features {
        gap: 14px;
    }

    .gdm-landing .gdm-feature {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .gdm-landing .gdm-feature__icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    /* Stats — 3 en ligne compacte */
    .gdm-landing .gdm-stats {
        gap: 12px;
        justify-content: space-between;
    }

    .gdm-landing .gdm-stat {
        flex: 1;
        min-width: 0;
    }

    .gdm-landing .gdm-stat__number {
        font-size: 1.8rem;
    }

    .gdm-landing .gdm-stat__label {
        font-size: .65rem;
        letter-spacing: .04em;
    }

    /* Pricing — cards plus premium même en scroll */
    .gdm-landing .gdm-pricing-card {
        min-width: 260px;
        padding: 28px 22px;
    }

    .gdm-landing .gdm-pricing-card--popular {
        transform: none;
        box-shadow: 0 12px 32px rgba(124, 58, 237, .2), 0 0 0 2px var(--gdm-primary);
    }

    /* Fees table → stack en cards */
    .gdm-landing .gdm-fees-table {
        display: block;
        max-width: none;
        border: none;
    }

    .gdm-landing .gdm-fees-table thead {
        display: none;
    }

    .gdm-landing .gdm-fees-table tbody {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .gdm-landing .gdm-fees-table tbody tr {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        padding: 16px 18px;
        background: #fff;
        border: 1px solid rgba(15, 13, 21, .06);
        border-radius: 14px;
        box-shadow: var(--gdm-shadow-sm);
    }

    .gdm-landing .gdm-fees-table tbody tr:hover {
        background: #fff;
    }

    .gdm-landing .gdm-fees-table tbody td {
        border: none;
        padding: 0;
        text-align: left;
        font-size: .88rem;
    }

    .gdm-landing .gdm-fees-table tbody td:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        font-weight: 700;
        color: var(--gdm-text);
    }

    .gdm-landing .gdm-fees-table tbody td:nth-child(1)::before {
        content: 'Invités donnent · ';
        font-weight: 500;
        color: var(--gdm-text-muted);
        text-transform: uppercase;
        font-size: .68rem;
        letter-spacing: .06em;
    }

    .gdm-landing .gdm-fees-table tbody td:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        font-size: .78rem;
        color: var(--gdm-text-muted);
    }

    .gdm-landing .gdm-fees-table tbody td:nth-child(2)::before {
        content: 'Frais 7,6% · ';
    }

    .gdm-landing .gdm-fees-table tbody td:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        justify-self: end;
        font-size: 1.15rem !important;
        font-weight: 800;
    }

    /* Testimonial mobile */
    .gdm-landing .gdm-testimonial__quote {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .gdm-landing .gdm-testimonial::before {
        font-size: 5.5rem;
        top: -20px;
    }

    /* FAQ mobile — question plus aérée */
    .gdm-landing .gdm-faq__question {
        font-size: .92rem;
        padding: 18px 0;
        gap: 16px;
    }

    .gdm-landing .gdm-faq__answer {
        padding-right: 0;
        font-size: .88rem;
    }

    /* CTA final mobile — impact + respiration */
    .gdm-landing .gdm-section--gradient {
        padding: 64px 0 72px;
    }

    .gdm-landing .gdm-section--gradient .gdm-section__title {
        font-size: clamp(1.7rem, 6vw, 2.1rem);
        padding: 0 12px;
    }

    .gdm-landing .gdm-section--gradient .gdm-btn--lg {
        width: calc(100% - 16px);
        max-width: 340px;
        padding: 18px 24px;
        font-size: 1rem;
        border-radius: 16px;
    }

    /* Title center mobile — respiration */
    .gdm-landing .gdm-section__title--center {
        padding: 0 8px;
    }
}


/* ═══════════════════════════════════════════════════════════
   LÉA PAGE — Widget Showcase (section "comment ça marche")
   ═══════════════════════════════════════════════════════════ */
.gdm-landing .gdm-widget-showcase {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 72px;
    align-items: center;
}

.gdm-landing .gdm-widget-showcase__visual {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
}

.gdm-landing .gdm-widget-mock {
    background: #fff;
    border-radius: var(--gdm-radius-xl);
    padding: 24px;
    box-shadow: var(--gdm-shadow-lg), var(--gdm-shadow-glow);
    border: 1px solid rgba(15, 13, 21, .06);
    transform: rotate(-1.5deg);
    transition: transform var(--gdm-ease-spring), box-shadow var(--gdm-ease);
}

.gdm-landing .gdm-widget-mock:hover {
    transform: rotate(0) translateY(-4px);
    box-shadow: var(--gdm-shadow-xl), var(--gdm-shadow-glow);
}

.gdm-landing .gdm-widget-mock__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15, 13, 21, .06);
}

.gdm-landing .gdm-widget-mock__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gdm-primary), var(--gdm-primary-light));
    color: #fff;
    font-family: var(--gdm-font-headings);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -.02em;
    box-shadow: 0 4px 14px rgba(124, 58, 237, .3);
}

.gdm-landing .gdm-widget-mock__identity {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gdm-landing .gdm-widget-mock__name {
    font-weight: 700;
    color: var(--gdm-text);
    font-size: .95rem;
    letter-spacing: -.01em;
}

.gdm-landing .gdm-widget-mock__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    color: var(--gdm-text-muted);
    font-weight: 500;
}

.gdm-landing .gdm-widget-mock__bubble {
    background: #f4f1fa;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    padding: 12px 16px;
    font-size: .88rem;
    color: var(--gdm-text);
    line-height: 1.5;
    max-width: 92%;
    margin-bottom: 16px;
    animation: gdmBubbleIn .6s ease both;
}

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

.gdm-landing .gdm-widget-mock__chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.gdm-landing .gdm-widget-mock__chips span {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, .18);
    color: var(--gdm-primary);
    border-radius: 99px;
    font-size: .74rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--gdm-ease);
}

.gdm-landing .gdm-widget-mock__chips span:hover {
    background: var(--gdm-primary);
    color: #fff;
    transform: translateY(-1px);
}

.gdm-landing .gdm-widget-mock__float {
    position: absolute;
    bottom: -18px;
    right: -10px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gdm-primary), #6d28d9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(124, 58, 237, .35), 0 0 0 4px #f8f7fa;
    animation: gdmFloatY 3.2s ease-in-out infinite;
}

@keyframes gdmFloatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.gdm-landing .gdm-widget-showcase__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gdm-landing .gdm-widget-showcase__text .gdm-section__badge {
    align-self: flex-start;
    margin-bottom: 4px;
}

.gdm-landing .gdm-widget-showcase__text .gdm-section__title {
    margin-bottom: 4px;
}

.gdm-landing .gdm-widget-showcase__text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gdm-text-muted);
    max-width: none;
    margin: 0;
}

.gdm-landing .gdm-widget-showcase__highlight {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .07), rgba(168, 85, 247, .03));
    border-left: 3px solid var(--gdm-primary);
    border-radius: 12px;
    color: var(--gdm-text) !important;
    margin-top: 8px !important;
}

.gdm-landing .gdm-widget-showcase__highlight strong {
    color: var(--gdm-text);
    font-weight: 700;
}

@media (max-width: 900px) {
    .gdm-landing .gdm-widget-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gdm-landing .gdm-widget-showcase__visual {
        order: -1;
        max-width: 340px;
    }

    .gdm-landing .gdm-widget-showcase__text {
        text-align: center;
        align-items: center;
    }

    .gdm-landing .gdm-widget-showcase__text .gdm-section__badge {
        align-self: center;
    }

    .gdm-landing .gdm-widget-showcase__highlight {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .gdm-landing .gdm-widget-mock {
        padding: 20px;
        transform: rotate(-1deg);
    }

    .gdm-landing .gdm-widget-showcase__text p {
        font-size: .95rem;
    }

    .gdm-landing .gdm-widget-mock__float {
        width: 48px;
        height: 48px;
        bottom: -14px;
        right: -8px;
    }
}


/* ═══════════════════════════════════════════════════════════
   LÉA PAGE — spécifique (chat demo mobile + tabs)
   ═══════════════════════════════════════════════════════════ */

/* Chat demo détaché en mobile via JS → .gdm-chat-demo--detached */
.gdm-landing .gdm-chat-demo--detached {
    margin: 24px auto 0;
    padding: 16px;
    max-width: 360px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 13, 21, .1), 0 4px 10px rgba(15, 13, 21, .04);
    border: 1px solid rgba(15, 13, 21, .05);
}

.gdm-landing .gdm-chat-demo--detached .gdm-chat-bubble {
    font-size: .85rem;
    padding: 11px 15px;
    margin-bottom: 6px;
}

.gdm-landing .gdm-chat-demo--detached .gdm-chat-bubble--action {
    font-size: .74rem;
    padding: 8px 12px;
}

@media (max-width: 768px) {
    /* Tabs Léa : respire et tient sur l'écran */
    .gdm-landing .gdm-tabs-nav {
        max-width: calc(100% - 16px);
        margin: 0 auto 40px;
    }

    .gdm-landing .gdm-tabs-nav__btn {
        font-size: .8rem;
        padding: 10px 14px;
    }

    /* Gap renforcé entre tabs et features */
    .gdm-landing .gdm-tab-panel .gdm-features {
        margin-top: 32px !important;
    }
}


/* ═══════════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION — Accessibilité
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .gdm-mesh__blob { animation: none !important; }

    .gdm-landing .gdm-reveal,
    .gdm-landing .gdm-reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .gdm-landing .gdm-feature:hover,
    .gdm-landing .gdm-pricing-card:hover,
    .gdm-landing .gdm-btn:hover {
        transform: none !important;
    }

    .gdm-landing .gdm-pulse,
    [data-typewriter] { animation: none !important; }
}
