/* ═══════════════════════════════════
   SCOUT LANDING — page-specific styles
   Shared base: u21-common.css
   ═══════════════════════════════════ */
section h2 {
    color: white;
}

section {
    padding: 2rem;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #1a0000 0%, var(--night) 40%, var(--night) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(204, 0, 0, .03) 2px, rgba(204, 0, 0, .03) 4px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(204, 0, 0, .12) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .5s .1s forwards;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 8vw, 100px);
    line-height: .92;
    opacity: 0;
    animation: fadeUp .5s .25s forwards;
}

.hero-title .accent {
    color: var(--red);
}

.hero-sub {
    font-size: 17px;
    color: #CCCCCC;
    line-height: 1.7;
    margin: 24px auto 36px;
    max-width: 540px;
    opacity: 0;
    animation: fadeUp .5s .4s forwards;
}

.hero-sub strong {
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp .5s .55s forwards;
}


/* ── AVANTAGES ── */
.avantages-section {
    background: var(--night2);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.avantage-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}

.avantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
}

.avantage-card:hover {
    border-color: rgba(204, 0, 0, .4);
    transform: translateY(-3px);
}

.avantage-card:hover::before {
    transform: scaleX(1);
}

.avantage-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.avantage-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.avantage-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── PROCESS ── */
.process-section {
    background: var(--night);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0;
    margin-top: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.process-step {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    position: relative;
}

.process-step:last-child {
    border-right: none;
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: rgba(204, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── PROFILS ── */
.profils-section {
    background: var(--night2);
}

.profils-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.profil-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profil-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color .2s;
}

.profil-feature:hover {
    border-color: rgba(204, 0, 0, .4);
}

.feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--red-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.profil-feature h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profil-feature p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* ── FAKE PROFIL ── */
.fake-profil {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.fake-profil-header {
    background: linear-gradient(135deg, #1a0000, #2a0a0a);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.fake-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(204, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 2px solid rgba(204, 0, 0, 0.4);
}

.fake-name {
    font-size: 18px;
    font-weight: 700;
}

.fake-pos {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--red);
    letter-spacing: 1.5px;
    margin-top: 3px;
    text-transform: uppercase;
}

.fake-club {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}

.fake-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
}

.fake-stat {
    padding: 16px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.fake-stat:last-child {
    border-right: none;
}

.fake-stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--red);
}

.fake-stat-lbl {
    font-size: 10px;
    color: var(--muted);
    margin-top: 2px;
}

.fake-tags {
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.fake-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--card2);
    color: var(--muted);
    border: 1px solid var(--border);
}

.fake-video-row {
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fake-video-thumb {
    width: 80px;
    height: 52px;
    border-radius: 6px;
    background: var(--card2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fake-video-info {
    font-size: 12px;
}

.fake-video-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.fake-video-meta {
    color: var(--muted);
}

.fake-note-row {
    padding: 14px 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.fake-note-label {
    font-size: 12px;
    color: var(--muted);
}

.stars {
    color: var(--red);
    font-size: 16px;
    letter-spacing: 2px;
}

/* ── TÉMOIGNAGES ── */
.temoignages-section {
    background: var(--night);
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.temoignage {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
}

.temoignage-quote {
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.temoignage-quote::before {
    content: '"';
    color: var(--red);
    font-size: 24px;
    font-style: normal;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.temoignage-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--card2);
    overflow: hidden;
}

.temoignage-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.temoignage-name {
    font-size: 14px;
    font-weight: 700;
}

.temoignage-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ── CTA FINAL ── */
.cta-section {
    background: var(--night2);
    text-align: center;
    padding: 100px 5%;
    border-top: 1px solid var(--border);
}

.cta-section .sec-title {
    font-size: clamp(40px, 6vw, 80px);
    margin-bottom: 20px;
}

.cta-section .sec-sub {
    margin: 0 auto 40px;
    text-align: center;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero {
        padding: 100px 5% 60px;
    }

    .hero-title {
        font-size: clamp(40px, 10vw, 72px);
    }

    .hero-sub {
        font-size: 15px;
    }

    .profils-inner {
        grid-template-columns: 1fr;
    }

    .fake-profil {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .process-step {
        border-bottom: 1px solid var(--border);
    }

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

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

    .cta-section {
        padding: 60px 5%;
    }

    .cta-section .sec-title {
        font-size: clamp(30px, 7vw, 50px);
    }
}

@media (max-width: 600px) {
    section {
        padding: 50px 4%;
    }

    .hero {
        min-height: auto;
        padding: 90px 4% 50px;
    }

    .hero-title {
        font-size: clamp(34px, 12vw, 52px);
    }

    .hero-sub {
        font-size: 14px;
        margin: 18px 0 28px;
    }

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

    .hero-cta .btn-red-lg,
    .hero-cta .btn-outline-lg {
        width: 100%;
        text-align: center;
    }

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

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

    .avantage-card {
        padding: 22px 20px;
    }

    .profils-inner {
        gap: 28px;
    }

    .profil-feature {
        flex-direction: column;
        gap: 12px;
    }

    .temoignage {
        padding: 20px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn-red-lg,
    .cta-actions .btn-outline-lg {
        width: 100%;
        text-align: center;
    }

    .cta-section .sec-sub {
        font-size: 14px;
    }

    .sec-title {
        font-size: clamp(28px, 8vw, 38px);
    }

    .sec-sub {
        font-size: 14px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }
}
