/* ADS landing pages (SZP-162). Ports the reference maquette design system (indigo #5751E1 + yellow
   #FFC224, Poppins/Inter, hard-shadow buttons). Everything is namespaced under .landing-* so this
   file can load site-wide without affecting other pages. */

.landing-section {
    --lp-primary: #5751E1;
    --lp-secondary: #FFC224;
    --lp-heading: #161439;
    --lp-body: #6D6C80;
    --lp-muted: #7F7E97;
    --lp-navy: #161439;
    --lp-blue: #050071;
    --lp-gray: #F7F7F9;
    --lp-gray-2: #EFEEFE;
    --lp-border: #E2E2E2;
    --lp-border-1: #C9C9DD;
    --lp-green: #12BB6A;
    --lp-green-dark: #0E8E51;
    --lp-red: #E11B24;
    --lp-radius-card: 16px;
    --lp-radius-pill: 50px;
    --lp-shadow-btn: 4px 6px 0 0 var(--lp-blue);
    --lp-shadow-btn-yellow: 4px 4px 0 0 #3D3D3D;
    --lp-shadow-card: 0 12px 30px rgba(87, 81, 225, 0.08);

    padding: 96px 0;
    color: var(--lp-body);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.landing-section--sm {
    padding: 56px 0;
}

.landing-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.landing-section--gray {
    background: var(--lp-gray-2);
}

.landing-section--gray2 {
    background: var(--lp-gray);
}

.landing-section--navy {
    background: var(--lp-navy);
}

.landing-section h1,
.landing-section h2,
.landing-section h3,
.landing-section h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--lp-heading);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 0.5em;
}

.landing-section--navy h1,
.landing-section--navy h2,
.landing-section--navy h3,
.landing-section--navy p {
    color: #fff;
}

.landing-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
}

/* Centered section head (eyebrow + title + subtitle) */
.landing-sec-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.landing-sec-head .landing-subtitle,
.landing-sec-head p {
    color: var(--lp-muted);
    font-size: 17px;
    margin: 0;
}

.landing-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lp-primary);
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.landing-muted {
    color: var(--lp-muted);
}

/* Buttons (hard-shadow style) */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 15px 28px;
    border-radius: var(--lp-radius-pill);
    border: 2px solid var(--lp-primary);
    background: var(--lp-primary);
    color: #fff;
    box-shadow: var(--lp-shadow-btn);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.landing-btn:hover {
    background: var(--lp-secondary);
    border-color: var(--lp-secondary);
    color: var(--lp-heading);
    box-shadow: 0 0 0 0;
    transform: translate(2px, 3px);
}

.landing-btn--yellow {
    background: var(--lp-secondary);
    border: 2px solid #000;
    box-shadow: var(--lp-shadow-btn-yellow);
    color: #000;
}

.landing-btn--yellow:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 0;
}

.landing-btn--outline {
    background: #fff;
    border: 1px solid var(--lp-primary);
    color: var(--lp-primary);
    box-shadow: 0 0 0 0;
}

.landing-btn--outline:hover {
    background: var(--lp-primary);
    color: #fff;
    transform: none;
}

.landing-btn--lg {
    padding: 20px 36px;
    font-size: 17px;
}

/* Cards & grids */
.landing-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-card);
    padding: 28px;
}

.landing-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.landing-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-gray-2);
    color: var(--lp-primary);
    font-size: 22px;
    margin-bottom: 16px;
}

.landing-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--lp-border-1);
    border-radius: var(--lp-radius-pill);
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-primary);
    font-family: 'Poppins', sans-serif;
}

.landing-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-green);
}

.landing-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--lp-primary);
    background: var(--lp-gray-2);
    border-radius: var(--lp-radius-pill);
    padding: 5px 12px;
    margin: 8px 6px 0 0;
    font-family: 'Poppins', sans-serif;
}

/* Hero */
.landing-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.landing-hero__badge {
    margin-bottom: 22px;
}

.landing-hero__title {
    font-family: 'Poppins', sans-serif;
    color: var(--lp-heading);
    font-size: clamp(38px, 4.6vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0 0 0.4em;
}

.landing-hero__highlight {
    position: relative;
    color: var(--lp-primary);
}

.landing-hero__highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 11px;
    background: var(--lp-secondary);
    opacity: 0.85;
    z-index: -1;
    border-radius: 4px;
}

.landing-hero__lead {
    font-size: 18px;
    color: var(--lp-muted);
    max-width: 540px;
    margin-bottom: 28px;
}

.landing-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.landing-hero__reassurance {
    margin-top: 14px;
    font-size: 14px;
    color: var(--lp-green-dark);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.landing-trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-heading);
    font-family: 'Poppins', sans-serif;
}

.landing-trust-row .landing-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lp-border-1);
}

.landing-hero__art {
    background: linear-gradient(160deg, #5751E1, #3A35B0);
    border-radius: 24px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.landing-hero__cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-hero__art.is-playable {
    cursor: pointer;
}

.landing-hero__media-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.landing-hero__play {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.landing-hero__video-label {
    margin-top: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    opacity: 0.9;
}

.landing-hero__modal .modal-content {
    position: relative;
    background: #000;
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.landing-hero__modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    filter: invert(1);
}

/* Results / indicators (navy) */
.landing-stat {
    text-align: center;
    padding: 8px;
}

.landing-stat__value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 46px);
    color: #fff;
    line-height: 1.1;
}

.landing-stat__label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.landing-results__footnote {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 24px 0 0;
}

/* Avant / Après */
.landing-aa__card {
    border-radius: var(--lp-radius-card);
    padding: 30px;
    border: 1px solid var(--lp-border);
}

.landing-aa__card ul {
    margin: 0;
    padding: 0;
}

.landing-aa__card li {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0 0 14px;
}

.landing-aa__card--bad {
    background: #FDF1F1;
    border-color: #F3D6D6;
}

.landing-aa__card--good {
    background: #EEFBF4;
    border-color: #CDEEDD;
}

.landing-aa__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
}

.landing-aa__card--bad .landing-aa__title {
    color: var(--lp-red);
}

.landing-aa__card--good .landing-aa__title {
    color: var(--lp-green-dark);
}

.landing-mk {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}

.landing-mk--x {
    background: var(--lp-red);
}

.landing-mk--v {
    background: var(--lp-green);
}

/* Cards content */
.landing-card h3 {
    font-size: clamp(20px, 2vw, 24px);
}

.landing-card__title {
    font-family: 'Poppins', sans-serif;
    color: var(--lp-heading);
    font-weight: 600;
}

.landing-card p {
    margin: 0;
}

/* Accordion (native details) */
.landing-ac {
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-card);
    background: #fff;
    margin-bottom: 14px;
    overflow: hidden;
}

.landing-ac > summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--lp-heading);
}

.landing-ac > summary::-webkit-details-marker {
    display: none;
}

.landing-ac__num {
    flex: 0 0 auto;
    font-weight: 700;
    color: var(--lp-primary);
}

.landing-ac__plus {
    margin-left: auto;
    font-size: 22px;
    color: var(--lp-primary);
    transition: transform 0.2s;
}

.landing-ac[open] .landing-ac__plus {
    transform: rotate(45deg);
}

.landing-ac__body {
    padding: 0 26px 24px 26px;
    color: var(--lp-muted);
}

.landing-accordion {
    max-width: 860px;
    margin: 0 auto;
}

/* Trainer */
.landing-tutor {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.landing-tutor__photo {
    background: var(--lp-gray-2);
    border-radius: 20px;
    min-height: 340px;
    width: 100%;
    object-fit: cover;
}

.landing-tutor__paragraph {
    color: var(--lp-body);
}

.landing-box {
    color: var(--lp-heading);
    background: var(--lp-gray-2);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 4px 0 0;
}

/* Funding banner */
.landing-funding__banner {
    margin-top: 28px;
    text-align: center;
}

.landing-funding__banner-title {
    margin: 0;
    color: var(--lp-heading);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.landing-funding__banner-text {
    margin: 0.4em 0 0;
    font-size: 14.5px;
}

/* Reassurance band */
.landing-reass {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.landing-reass__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
}

/* Audience */
.landing-audience__col-head {
    margin-bottom: 24px;
}

.landing-audience__col--against .landing-card {
    background: var(--lp-gray);
}

/* Process */
.landing-process__number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--lp-secondary);
}

/* Final CTA */
.landing-final-cta .container {
    text-align: center;
    max-width: 720px;
}

.landing-final-cta__lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

.landing-final-cta__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-final-cta__actions .landing-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.landing-final-cta__mention {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin: 22px 0 0;
}

/* Section helpers / modifiers (kept out of the templates) */
.landing-eyebrow--accent {
    color: var(--lp-secondary);
}

.landing-eyebrow--muted {
    color: var(--lp-muted);
}

.landing-card__text {
    color: var(--lp-muted);
    margin: 0.5em 0 0;
}

.landing-grid--gap-lg {
    gap: 40px;
}

.landing-grid--gap-sm {
    gap: 16px;
}

.landing-accordion--narrow {
    max-width: 820px;
}

.landing-trainer__title {
    margin-bottom: 14px;
}

.landing-trainer .landing-trust-row {
    margin-top: 18px;
}

.landing-funding .landing-ico {
    margin-bottom: 12px;
}

.landing-funding .landing-card h3 {
    font-size: 19px;
}

.landing-funding .landing-card p {
    font-size: 14.5px;
}

.landing-reass__card .landing-ico {
    margin: 0;
}

.landing-reass__caption {
    font-size: 13px;
}

/* Learner reviews — Google rating badge + screenshots grid */
.landing-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 40px;
    padding: 12px 22px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-pill);
    box-shadow: var(--lp-shadow-card);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--lp-heading);
}

.landing-learner-reviews .landing-google-badge {
    display: flex;
    width: fit-content;
}

.landing-google-badge__logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.landing-google-badge__g--blue {
    color: #4285F4;
}

.landing-google-badge__g--red {
    color: #EA4335;
}

.landing-google-badge__g--yellow {
    color: #FBBC05;
}

.landing-google-badge__g--green {
    color: #34A853;
}

.landing-google-badge__rating {
    font-size: 18px;
}

.landing-google-badge__stars {
    color: var(--lp-secondary);
    letter-spacing: 2px;
}

.landing-google-badge__count {
    color: var(--lp-muted);
    font-weight: 500;
    font-size: 14px;
}

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

.landing-reviews-grid__item {
    margin: 0;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-card);
    overflow: hidden;
    box-shadow: var(--lp-shadow-card);
    background: #fff;
}

.landing-reviews-grid__item img {
    display: block;
    width: 100%;
    height: auto;
}

/* Google reviews — reused banner + 16/9 video testimonials grid */
.landing-google-reviews__banner {
    margin-bottom: 48px;
}

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

.landing-video-reviews__item {
    border-radius: var(--lp-radius-card);
    overflow: hidden;
    box-shadow: var(--lp-shadow-card);
    background: var(--lp-navy);
}

/* Responsive */
@media (max-width: 1024px) {
    .landing-hero__grid,
    .landing-tutor {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 760px) {
    .landing-section {
        padding: 56px 0;
    }

    .landing-section--sm {
        padding: 40px 0;
    }

    .landing-grid--2,
    .landing-grid--3,
    .landing-grid--4 {
        grid-template-columns: 1fr;
    }

    .landing-grid--4,
    .landing-reass,
    .landing-reviews-grid,
    .landing-video-reviews {
        grid-template-columns: 1fr 1fr;
    }

    .landing-btn {
        width: 100%;
    }

    .landing-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .landing-grid--4,
    .landing-reass,
    .landing-reviews-grid,
    .landing-video-reviews {
        grid-template-columns: 1fr;
    }
}
