/* -------------------------------------------------
   Police
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* -------------------------------------------------
   Global
-------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2933;
}

/* Pour ne pas que main.css casse le fond blanc de la landing */
.landing-page {
    background: #ffffff;
}

/* Containers génériques */
.landing-section {
    width: 100%;
    padding: 80px 0;
}

/* Utilisé pour les effets reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

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

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    transform: translateX(0);
}

/* -------------------------------------------------
   HERO
-------------------------------------------------- */
.coach-prez {
    width: 100%;
    min-height: 25vh;
    max-height: 40%;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #f9fafb;
}

.hero-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
}

.hero-content {
    max-width: 560px;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 20px;
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.hero-badges {
    margin-top: 14px;
    font-size: 13px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Réseaux sociaux */
.hero-social {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    font-size: 13px;
    opacity: 0.9;
}

/* Image à droite */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image {
    position: relative;
    max-width:600px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.65);
    border: 2px solid rgba(248, 250, 252, 0.35);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------------------------------
   SECTION FORMULES
-------------------------------------------------- */

.card-home-pro {
    position: relative;
    z-index: 1;
}

.section-light {
    background: #ffffff;
}

.formulas {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.formulas-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.formulas-image img {
    width: 320px;
    max-width: 40%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

.formulas-card p {
    margin: 0 0 10px;
    line-height: 1.6;
}

.formulas-card ul {
    margin: 8px 0 14px 18px;
    padding: 0;
    font-size: 14px;
}

.link-inline {
    font-weight: 600;
    color: #3a2d00;
    text-decoration: none;
    border-bottom: 1px solid rgba(58, 45, 0, 0.4);
}

/* -------------------------------------------------
   FOOTER CONTACT
-------------------------------------------------- */
footer.landing-footer {
    background: #fff7a7;
    padding: 60px 0;
    margin-top: 40px;
}

.footer-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 16px;
    margin: 4px 0;
    line-height: 1.6;
}

.footer-left a {
    color: #3a2d00;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(58, 45, 0, 0.4);
}

.footer-right {
    max-width: 360px;
    width: 100%;
}

.footer-right form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-right input,
.footer-right textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #3a2d00;
    background: transparent;
    padding: 6px 2px;
    font-family: inherit;
    font-size: 14px;
}

.footer-right textarea {
    resize: vertical;
    min-height: 70px;
}



.footer-right button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.45);
}

/* -------------------------------------------------
   STAGGER ANIMATION (items cascade)
-------------------------------------------------- */
.stagger-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.stagger-item.stagger-visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------
   STATS BANNER (chiffres animés)
-------------------------------------------------- */
.stats-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    overflow: hidden;
}
.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item {
    color: #fff;
}
.stat-number {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--byam-gold), #e6a817);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.stat-suffix {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--byam-gold), #e6a817);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    display: block;
    margin-top: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    letter-spacing: .5px;
}

/* -------------------------------------------------
   VALUES SECTION (cartes valeurs)
-------------------------------------------------- */
.values-section {
    padding: 80px 0;
    background: #fafafa;
}
.values-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.values-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 48px;
    position: relative;
}
.values-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--byam-gold);
    border-radius: 2px;
    margin: 16px auto 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
    will-change: transform;
    cursor: default;
}
.value-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(200,138,50,.1), rgba(200,138,50,.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--byam-gold);
    transition: transform .3s, background .3s;
}
.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--byam-gold);
    color: #fff;
}
.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}
.value-card p {
    font-size: .92rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* -------------------------------------------------
   LANDING SHOWCASE (override ent-showcase pour la landing)
-------------------------------------------------- */
.landing-showcase {
    background: #fff;
}
.landing-showcase:nth-child(even) {
    background: #fafafa;
}

/* -------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {

    .hero-inner {
        flex-direction: column;
        text-align: left;
        gap: 32px;
    }

    .hero {
        min-height: unset;
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-image-wrapper {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        max-width: 320px;
        border-radius: 24px;
    }

    .formulas-inner {
        flex-direction: column;
    }

    .formulas-card {
        order: 2;
        width: 100%;
    }

    .formulas-image {
        order: 1;
    }

    .full-photo-section {
        min-height: 340px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .values-section {
        padding: 50px 0;
    }
}

@media (max-width: 640px) {

    .hero h1 {
        font-size: 32px;
    }

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

    .landing-section {
        padding: 60px 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-number {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .value-card {
        padding: 24px 20px;
    }
}

/* -- 2K + grands écrans -- */
@media (min-width: 1921px) {

    .hero-inner {
        max-width: 1600px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero p {
        font-size: 20px;
    }

    .hero-image {
        max-width: 700px;
    }

    .footer-inner {
        max-width: 1400px;
    }

    .landing-section {
        padding: 120px 0;
    }
}
