/* =========================================================
   KARALINK
   wwwroot/css/site.css
   Charte : Neon Moderne
   ========================================================= */

:root {
    --bg: #05060d;
    --bg-soft: #090b16;
    --card: rgba(12, 14, 29, .82);
    --line: rgba(154, 103, 255, .24);
    --text: #f8f8ff;
    --muted: #aaa9bc;
    --blue: #3676ff;
    --violet: #8f32ff;
    --pink: #ef22cb;
    --cyan: #24d6ff;
    --radius: 22px;
    --content-width: 1180px;
    --page-padding: 20px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient( circle at 70% 15%, rgba(98, 20, 210, .16), transparent 34% ), var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
}


/* =========================================================
   HEADER
   ========================================================= */

.topbar {
    height: 88px;
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 28px;
    padding-left: max( var(--page-padding), calc((100vw - var(--content-width)) / 2) );
    padding-right: max( var(--page-padding), calc((100vw - var(--content-width)) / 2) );
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 6, 13, .94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}


/* =========================================================
   LOGO OFFICIEL KARALINK
   ========================================================= */

.brand {
    display: flex;
    align-items: center;
}

    .brand img {
        display: block;
        width: 225px;
        height: 72px;
        object-fit: contain;
        object-position: left center;
    }


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #d8d7e3;
    font-size: 14px;
    font-weight: 600;
}

    .main-nav a {
        position: relative;
        padding: 32px 0 26px;
        white-space: nowrap;
        transition: color .2s ease;
    }

        .main-nav a:hover {
            color: #ffffff;
        }

        .main-nav a:first-child::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 22px;
            height: 2px;
            background: linear-gradient( 90deg, var(--blue), var(--violet), var(--pink) );
            box-shadow: 0 0 12px var(--violet);
        }


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #77798e;
    font-size: 12px;
    white-space: nowrap;
}

    .language-switcher a {
        transition: color .2s ease;
    }

        .language-switcher a.active,
        .language-switcher a:hover {
            color: #ffffff;
        }


/* =========================================================
   BOUTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    color: #ffffff;
    background: linear-gradient( 100deg, #285cff 0%, #8d27f5 45%, #f018bd 100% );
    box-shadow: 0 10px 32px rgba(153, 35, 242, .26);
}

    .btn-primary:hover {
        box-shadow: 0 12px 38px rgba(228, 28, 190, .38);
    }

.btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(4, 5, 14, .48);
    backdrop-filter: blur(8px);
}

    .btn-outline:hover {
        border-color: rgba(181, 72, 255, .80);
        box-shadow: 0 0 24px rgba(143, 50, 255, .18);
    }

.btn-small {
    padding: 12px 16px;
    font-size: 12px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 690px;
    position: relative;
    overflow: hidden;
    padding-top: 55px;
    padding-bottom: 32px;
    padding-left: max( var(--page-padding), calc((100vw - var(--content-width)) / 2) );
    padding-right: max( var(--page-padding), calc((100vw - var(--content-width)) / 2) );
    background: #05060d;
}


/* =========================================================
   HERO - FOND BAR / KARAOKE
   ========================================================= */

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("/images/hero-bar.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 55% center;
    transform: scale(1.01);
}


/* =========================================================
   HERO - OMBRAGE
   ========================================================= */

.hero-dark-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(2, 3, 10, .90) 0%, rgba(2, 3, 10, .72) 24%, rgba(2, 3, 10, .38) 44%, rgba(2, 3, 10, .10) 66%, rgba(2, 3, 10, .08) 100% );
}

/* =========================================================
   HERO - COULEUR NEON LEGERE
   ========================================================= */

.hero-color-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient( circle at 75% 42%, rgba(116, 35, 255, .06), transparent 38% ), linear-gradient( 0deg, rgba(5, 6, 13, .42) 0%, transparent 28% );
}


/* =========================================================
   HERO - CONTENU
   ========================================================= */

.hero-main {
    position: relative;
    z-index: 5;
    min-height: 465px;
    display: grid;
    grid-template-columns: .90fr 1.10fr;
    gap: 45px;
    align-items: center;
}


/* =========================================================
   HERO - TEXTE
   ========================================================= */

.hero-copy {
    position: relative;
    z-index: 10;
    max-width: 500px;
}

.eyebrow {
    margin: 0 0 16px;
    color: #d129ff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero h1 {
    max-width: 500px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: clamp(46px, 4.1vw, 61px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

    .hero h1 span {
        background: linear-gradient( 90deg, #7651ff 0%, #9e35f7 42%, #f21dc4 100% );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-text {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   HERO - BOUTONS
   ========================================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
}

    .hero-actions .btn {
        min-height: 50px;
        padding: 0 23px;
    }

.download-symbol {
    margin-right: 9px;
    font-size: 22px;
    line-height: 1;
}

.play-symbol {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #090a13;
    font-size: 9px;
}


/* =========================================================
   HERO - ZONE TELEPHONES
   ========================================================= */

.hero-visual {
    position: relative;
    z-index: 6;
    min-height: 440px;
}


/* =========================================================
   TELEPHONES
   ========================================================= */

.phone {
    position: absolute;
    width: min(40%, 235px);
    padding: 6px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: #04050a;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .60), 0 0 30px rgba(144, 40, 255, .25);
    transform-origin: center;
    will-change: transform;
}

    .phone img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 28px;
    }


/* Téléphone gauche */

.phone-left {
    left: 16%;
    top: 20px;
    z-index: 1;
    animation: karaPhoneLeft 5.5s ease-in-out infinite;
}


/* Téléphone droit */

.phone-right {
    right: 7%;
    top: 56px;
    z-index: 2;
    animation: karaPhoneRight 6.2s ease-in-out infinite;
}


/* =========================================================
   HALO SOUS LES TELEPHONES
   ========================================================= */

.hero-visual::after {
    content: "";
    position: absolute;
    width: 68%;
    height: 72px;
    left: 19%;
    bottom: 22px;
    border-radius: 50%;
    background: radial-gradient( ellipse, rgba(214, 31, 255, .23), transparent 70% );
    filter: blur(18px);
    pointer-events: none;
}


/* =========================================================
   FEATURE STRIP
   ========================================================= */

.feature-strip {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 17px;
    border: 1px solid rgba(175, 49, 255, .45);
    background: rgba(5, 6, 17, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .35), 0 0 24px rgba(158, 46, 255, .09);
}

    .feature-strip article {
        min-height: 118px;
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 22px 26px;
        border-right: 1px solid rgba(255, 255, 255, .08);
    }

        .feature-strip article:last-child {
            border-right: none;
        }

.feature-icon {
    flex-shrink: 0;
    min-width: 44px;
    color: #a53bff;
    font-size: 34px;
    text-align: center;
    text-shadow: 0 0 20px rgba(190, 47, 255, .68);
}

.feature-strip h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-family: Poppins, Inter, sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.feature-strip p {
    margin: 0;
    color: #aaa9bc;
    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   CONTENEURS
   ========================================================= */

.section-wrap {
    width: min( var(--content-width), calc(100% - (var(--page-padding) * 2)) );
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   CHANTEURS / PRESTATAIRES / ETABLISSEMENTS
   ========================================================= */

.hero + .audiences {
    margin-top: 0;
}

.audiences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding-top: 34px;
    padding-bottom: 72px;
}

.audience-card {
    min-height: 390px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(154, 103, 255, .22);
    background: linear-gradient(150deg, rgba(13, 15, 31, .98) 0%, rgba(9, 10, 22, .95) 62%, rgba(10, 10, 18, .98) 100%);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

    .audience-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 3px;
        opacity: .95;
    }

.singer-card::before {
    background: linear-gradient(90deg, #2d6dff, #20d5ff);
}

.provider-card::before {
    background: linear-gradient(90deg, #7840ff, #d329ff);
}

.venue-card::before {
    background: linear-gradient(90deg, #d62aff, #ff2b8e);
}

.audience-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .17;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
}

.singer-card::after {
    background: #2f79ff;
}

.provider-card::after {
    background: #a632ff;
}

.venue-card::after {
    background: #f52a9d;
}

.audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(178, 92, 255, .48);
    box-shadow: 0 28px 72px rgba(0, 0, 0, .34), 0 0 28px rgba(135, 54, 255, .10);
}

    .audience-card:hover::after {
        opacity: .25;
        transform: scale(1.08);
    }

.audience-topline {
    position: relative;
    z-index: 2;
    min-height: 52px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.audience-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 22px;
    border: 1px solid rgba(255, 255, 255, .09);
}

.singer-card .audience-icon {
    color: #58a6ff;
    background: linear-gradient(145deg, rgba(45, 109, 255, .20), rgba(36, 214, 255, .08));
}

.provider-card .audience-icon {
    color: #c557ff;
    background: linear-gradient(145deg, rgba(126, 55, 255, .20), rgba(220, 42, 255, .08));
}

.venue-card .audience-icon {
    color: #ff58a8;
    background: linear-gradient(145deg, rgba(232, 38, 181, .18), rgba(255, 43, 142, .08));
}

.audience-label {
    color: #8e8fa3;
    font-size: 14px;
}

.audience-card h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.singer-card h2 {
    color: #3e8dff;
}

.provider-card h2 {
    color: #bf43ff;
}

.venue-card h2 {
    color: #ff419d;
}

.audience-card h3 {
    position: relative;
    z-index: 2;
    min-height: 58px;
    margin: 11px 0 18px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.audience-card ul {
    position: relative;
    z-index: 2;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
    color: #c5c5d2;
    font-size: 14px;
    line-height: 1.55;
}

.audience-card li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 24px;
}

    .audience-card li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        font-weight: 800;
    }

.singer-card li::before {
    color: #4b9dff;
}

.provider-card li::before {
    color: #bd49ff;
}

.venue-card li::before {
    color: #ff479f;
}

.text-link {
    position: relative;
    z-index: 3;
    margin-top: auto;
    align-self: flex-start;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border-radius: 10px;
    border: 1px solid rgba(172, 84, 255, .26);
    background: rgba(137, 48, 255, .08);
    color: #d6a7ff;
    font-size: 13px;
    font-weight: 700;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

    .text-link:hover {
        transform: translateX(3px);
        border-color: rgba(187, 88, 255, .60);
        background: rgba(137, 48, 255, .16);
    }

    .text-link span {
        font-size: 17px;
        line-height: 1;
    }


/* =========================================================
   COMMENT CA MARCHE
   ========================================================= */

.how {
    padding-top: 34px;
    padding-bottom: 82px;
}

.how-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

    .how-heading .eyebrow {
        margin-bottom: 10px;
    }

.how h2 {
    margin: 0;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    letter-spacing: -.025em;
}

.steps {
    display: grid;
    grid-template-columns: 1fr 54px 1fr 54px 1fr;
    gap: 0;
    align-items: stretch;
}

.step-card {
    min-height: 250px;
    position: relative;
    padding: 30px 26px 28px;
    overflow: hidden;
    border: 1px solid rgba(154, 103, 255, .24);
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(13, 15, 31, .96) 0%, rgba(7, 9, 20, .96) 100%);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .23);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

    .step-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -80px;
        bottom: -85px;
        border-radius: 50%;
        background: #9134ff;
        filter: blur(62px);
        opacity: .13;
        pointer-events: none;
    }

    .step-card:hover {
        transform: translateY(-5px);
        border-color: rgba(178, 86, 255, .48);
        box-shadow: 0 26px 68px rgba(0, 0, 0, .30), 0 0 24px rgba(135, 54, 255, .08);
    }

.step-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, .09);
    font-size: 27px;
    background: linear-gradient(145deg, rgba(63, 94, 255, .18), rgba(191, 44, 255, .10));
    box-shadow: 0 0 26px rgba(144, 50, 255, .10);
}

.step-icon-find {
    color: #4b9dff;
}

.step-icon-sing {
    color: #c253ff;
}

.step-icon-stage {
    color: #ff4ca3;
}

.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--violet), var(--pink));
    box-shadow: 0 0 20px rgba(153, 53, 255, .25);
    font-size: 13px;
    font-weight: 800;
}

.step-content {
    position: relative;
    z-index: 2;
}

    .step-content h3 {
        margin: 0 0 10px;
        color: #ffffff;
        font-family: Poppins, sans-serif;
        font-size: 19px;
        font-weight: 600;
    }

    .step-content p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
    }

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a743ff;
    font-size: 26px;
    text-shadow: 0 0 18px rgba(167, 67, 255, .45);
}

    .step-connector span {
        transform: translateY(-2px);
    }


/* =========================================================
   DOWNLOAD
   ========================================================= */

.download {
    position: relative;
    margin-bottom: 72px;
    min-height: 230px;
    padding: 38px 42px;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    background: linear-gradient( 105deg, rgba(26, 74, 220, .88) 0%, rgba(91, 28, 205, .90) 48%, rgba(219, 27, 172, .86) 100% );
    box-shadow: 0 24px 80px rgba(94, 29, 232, .20);
}

    .download::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 120deg, rgba(255, 255, 255, .06), transparent 32%, transparent 70%, rgba(255, 255, 255, .04) );
    }

.download-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.download-glow-a {
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -140px;
    background: rgba(39, 134, 255, .42);
}

.download-glow-b {
    width: 260px;
    height: 260px;
    right: -100px;
    top: -130px;
    background: rgba(255, 47, 176, .32);
}

.download-brand,
.download-copy,
.download-action {
    position: relative;
    z-index: 2;
}

.download-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(4, 6, 18, .30);
    backdrop-filter: blur(10px);
}

    .download-brand img {
        display: block;
        width: 170px;
        height: 96px;
        object-fit: contain;
    }

.download-copy {
    max-width: 650px;
}

    .download-copy .eyebrow {
        margin-bottom: 8px;
        color: rgba(255, 255, 255, .76);
    }

.download h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.download p {
    margin: 0;
    max-width: 660px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.65;
}

.download-action {
    display: flex;
    justify-content: flex-end;
}

    .download-action .btn {
        min-width: 190px;
        min-height: 52px;
        background: rgba(8, 9, 20, .72);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
    }

        .download-action .btn:hover {
            background: rgba(8, 9, 20, .88);
            box-shadow: 0 15px 38px rgba(0, 0, 0, .30);
        }


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: linear-gradient( 180deg, rgba(7, 8, 17, .72), rgba(4, 5, 11, .96) );
}

.footer-inner {
    min-height: 190px;
    padding-top: 34px;
    padding-bottom: 42px;
    display: grid;
    grid-template-columns: 270px 1fr auto;
    gap: 38px;
    align-items: center;
}

.footer-brand img {
    display: block;
    width: 165px;
    height: 64px;
    margin-bottom: 10px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    margin: 0;
    max-width: 260px;
    color: #8f8fa2;
    font-size: 13px;
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    column-gap: 34px;
    row-gap: 14px;
    color: #b9b9c7;
    font-size: 13px;
    font-weight: 600;
}

    .footer-nav a {
        transition: color .2s ease, transform .2s ease;
    }

        .footer-nav a:hover {
            color: #ffffff;
            transform: translateX(2px);
        }

.footer-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.footer-languages {
    font-size: 12px;
}

.copyright {
    margin: 0;
    color: #737487;
    font-size: 12px;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes karaPhoneLeft {

    0%, 100% {
        transform: rotate(-4deg) translateY(0);
    }

    50% {
        transform: rotate(-4deg) translateY(-16px);
    }
}

@keyframes karaPhoneRight {

    0%, 100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(14px);
    }
}


/* =========================================================
   RESPONSIVE - TABLETTE
   ========================================================= */

@media (max-width: 1050px) {

    .topbar {
        display: flex;
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 55px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-main {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-copy {
        width: min(100%, 720px);
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero h1 {
        max-width: 720px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        width: min(620px, 100%);
        min-height: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .phone {
        width: min(40%, 235px);
    }

    .phone-left {
        left: 14%;
    }

    .phone-right {
        right: 8%;
    }

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

        .feature-strip article:nth-child(2) {
            border-right: none;
        }

        .feature-strip article:nth-child(1),
        .feature-strip article:nth-child(2) {
            border-bottom: 1px solid rgba(255, 255, 255, .09);
        }

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

    .audience-card {
        min-height: 340px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-connector {
        display: none;
    }

    .download {
        grid-template-columns: 150px 1fr;
        gap: 26px;
    }

    .download-action {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-side {
        align-items: center;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 650px) {

    :root {
        --page-padding: 14px;
    }


    /* HEADER */

    .topbar {
        height: 72px;
        padding-left: 16px;
        padding-right: 16px;
        gap: 12px;
    }

    .brand img {
        width: 145px;
        height: 50px;
    }

    .topbar-actions {
        gap: 10px;
    }

        .topbar-actions .btn {
            display: none;
        }

    .language-switcher {
        font-size: 11px;
    }


    /* HERO */

    .hero {
        padding-top: 40px;
        padding-bottom: 32px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-background {
        background-position: 62% center;
        transform: scale(1.02);
    }

    .hero-dark-overlay {
        background: linear-gradient( 180deg, rgba(3, 4, 11, .88) 0%, rgba(3, 4, 11, .70) 48%, rgba(3, 4, 11, .94) 100% );
    }

    .hero-main {
        display: block;
    }

    .hero-copy {
        text-align: left;
    }

    .eyebrow {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: 43px;
        line-height: 1.08;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions .btn {
            width: 100%;
        }


    /* TELEPHONES */

    .hero-visual {
        min-height: 360px;
        margin-top: 32px;
    }

    .phone {
        width: 49%;
        padding: 5px;
        border-radius: 28px;
    }

        .phone img {
            border-radius: 22px;
        }

    .phone-left {
        left: 3%;
        top: 8px;
    }

    .phone-right {
        right: 3%;
        top: 42px;
    }

    .hero-visual::after {
        width: 90%;
        left: 5%;
    }


    /* FEATURES */

    .feature-strip {
        grid-template-columns: 1fr;
        margin-top: 12px;
    }

        .feature-strip article {
            min-height: auto;
            padding: 20px 22px;
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

            .feature-strip article:last-child {
                border-bottom: none;
            }


    /* CONTENEURS */

    .section-wrap {
        width: min( calc(100% - 28px), var(--content-width) );
    }


    /* CARTES */

    .audiences {
        padding-top: 30px;
        padding-bottom: 48px;
    }

    .audience-card {
        min-height: 360px;
        padding: 26px;
    }


    .how {
        padding-top: 22px;
        padding-bottom: 56px;
    }

    .how-heading {
        margin-bottom: 26px;
    }

    .step-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .step-number {
        top: 20px;
        right: 20px;
    }

    /* DOWNLOAD */

    .download {
        min-height: auto;
        padding: 26px 22px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .download-brand {
        min-height: 96px;
        justify-content: flex-start;
    }

        .download-brand img {
            width: 150px;
            height: 78px;
        }

    .download-action {
        grid-column: auto;
    }

        .download-action .btn {
            width: 100%;
        }


    /* FOOTER */

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

        .footer img {
            margin-left: auto;
            margin-right: auto;
        }

    .copyright {
        justify-self: center;
    }
}


/* =========================================================
   TRES PETITS ECRANS
   ========================================================= */

@media (max-width: 390px) {

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

    .language-switcher span {
        display: none;
    }

    .phone {
        width: 51%;
    }

    .feature-icon {
        min-width: 38px;
        font-size: 30px;
    }
}


/* =========================================================
   PAGE CHANTEURS
   ========================================================= */

.singers-page {
    background: radial-gradient(circle at 74% 10%, rgba(106, 33, 255, .14), transparent 28%), var(--bg);
}

.singers-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 60px;
    padding-left: max(var(--page-padding), calc((100vw - var(--content-width)) / 2));
    padding-right: max(var(--page-padding), calc((100vw - var(--content-width)) / 2));
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient( 135deg, rgba(4, 6, 18, .98) 0%, rgba(7, 10, 28, .94) 48%, rgba(20, 9, 34, .94) 100% );
}

    .singers-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 68% 45%, rgba(51, 113, 255, .14), transparent 24%), radial-gradient(circle at 80% 30%, rgba(228, 35, 199, .10), transparent 26%);
    }

.singers-hero-copy,
.singers-hero-visual {
    position: relative;
    z-index: 2;
}

.singers-hero-copy {
    max-width: 590px;
}

    .singers-hero-copy .eyebrow {
        margin-bottom: 14px;
    }

    .singers-hero-copy h1 {
        margin: 0 0 22px;
        color: #ffffff;
        font-family: Poppins, Inter, Arial, sans-serif;
        font-size: clamp(48px, 5vw, 72px);
        font-weight: 800;
        line-height: 1.03;
        letter-spacing: -.04em;
    }

        .singers-hero-copy h1 span {
            background: linear-gradient( 90deg, #4a88ff 0%, #8e43ff 45%, #f12ac9 100% );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .singers-hero-copy p {
        margin: 0;
        max-width: 560px;
        color: rgba(255, 255, 255, .86);
        font-size: 17px;
        line-height: 1.75;
    }

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

.singers-hero-visual {
    min-height: 470px;
}

.singers-device {
    position: absolute;
    width: min(45%, 250px);
    padding: 7px;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: #05060d;
    box-shadow: 0 26px 76px rgba(0, 0, 0, .56), 0 0 34px rgba(82, 98, 255, .16);
}

    .singers-device img {
        display: block;
        width: 100%;
        border-radius: 29px;
    }

.singers-device-a {
    left: 12%;
    top: 16px;
    transform: rotate(-5deg);
}

.singers-device-b {
    right: 4%;
    top: 62px;
    transform: rotate(5deg);
}

.singers-device-glow {
    position: absolute;
    left: 18%;
    right: 8%;
    bottom: 24px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient( ellipse, rgba(120, 53, 255, .26), transparent 70% );
    filter: blur(18px);
}

.singers-section {
    padding-top: 78px;
    padding-bottom: 78px;
}

.singers-section-heading {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
}

    .singers-section-heading h2 {
        margin: 0 0 12px;
        color: #ffffff;
        font-family: Poppins, sans-serif;
        font-size: clamp(30px, 4vw, 46px);
        font-weight: 700;
        letter-spacing: -.025em;
    }

    .singers-section-heading p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

.singer-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.singer-feature-card {
    min-height: 230px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(104, 99, 255, .22);
    background: linear-gradient( 150deg, rgba(13, 15, 31, .98), rgba(8, 10, 21, .95) );
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .singer-feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(77, 131, 255, .42);
        box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
    }

.singer-feature-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: linear-gradient( 145deg, rgba(45, 109, 255, .20), rgba(182, 45, 255, .10) );
    color: #69a8ff;
    font-size: 24px;
}

.singer-feature-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 19px;
}

.singer-feature-card p {
    margin: 0;
    color: #b8b7c7;
    font-size: 14px;
    line-height: 1.7;
}

.singers-progress {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: center;
    padding-top: 38px;
    padding-bottom: 78px;
}

.singers-progress-card {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid rgba(154, 103, 255, .25);
    background: linear-gradient( 145deg, rgba(16, 16, 35, .96), rgba(9, 10, 20, .96) );
}

    .singers-progress-card h2 {
        margin: 0 0 16px;
        font-family: Poppins, sans-serif;
        font-size: clamp(28px, 3.2vw, 40px);
    }

    .singers-progress-card p {
        margin: 0 0 18px;
        color: var(--muted);
        line-height: 1.7;
    }

.singers-progress-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

    .singers-progress-list li {
        position: relative;
        padding-left: 28px;
        color: #d0d0dc;
    }

        .singers-progress-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #55a0ff;
            font-weight: 800;
        }

.singers-ranking {
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(115, 78, 255, .24);
    background: linear-gradient( 140deg, rgba(17, 21, 44, .98), rgba(22, 11, 38, .94) );
}

    .singers-ranking h3 {
        margin: 0 0 20px;
        font-family: Poppins, sans-serif;
        font-size: 22px;
    }

.ranking-row {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

    .ranking-row:last-child {
        border-bottom: 0;
    }

.ranking-position {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(78, 97, 255, .12);
    color: #8db4ff;
    font-weight: 800;
}

.ranking-name {
    color: #ffffff;
    font-weight: 700;
}

.ranking-points {
    color: #c95bff;
    font-size: 13px;
    font-weight: 800;
}

.singers-cta {
    margin-bottom: 72px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient( 100deg, rgba(35, 86, 230, .86), rgba(95, 31, 209, .90), rgba(225, 31, 174, .86) );
}

    .singers-cta h2 {
        margin: 0 0 8px;
        font-family: Poppins, sans-serif;
        font-size: clamp(28px, 4vw, 42px);
    }

    .singers-cta p {
        margin: 0;
        color: rgba(255, 255, 255, .88);
        line-height: 1.65;
    }

@media (max-width: 1050px) {

    .singers-hero {
        grid-template-columns: 1fr;
    }

    .singers-hero-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

        .singers-hero-copy p {
            margin-left: auto;
            margin-right: auto;
        }

    .singers-hero-actions {
        justify-content: center;
    }

    .singers-hero-visual {
        width: min(650px, 100%);
        margin: 0 auto;
    }

    .singer-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .singers-progress {
        grid-template-columns: 1fr;
    }

    .singers-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {

    .singers-hero {
        min-height: auto;
        padding-top: 44px;
        padding-bottom: 42px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .singers-hero-copy {
        text-align: left;
    }

        .singers-hero-copy h1 {
            font-size: 43px;
        }

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

    .singers-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .singers-hero-actions .btn {
            width: 100%;
        }

    .singers-hero-visual {
        min-height: 350px;
        margin-top: 24px;
    }

    .singers-device {
        width: 49%;
    }

    .singers-device-a {
        left: 2%;
    }

    .singers-device-b {
        right: 2%;
    }

    .singers-section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .singer-feature-grid {
        grid-template-columns: 1fr;
    }

    .singers-progress {
        gap: 20px;
        padding-bottom: 54px;
    }

    .singers-progress-card,
    .singers-ranking {
        padding: 24px;
    }

    .singers-cta {
        margin-bottom: 50px;
        padding: 28px 24px;
    }

        .singers-cta .btn {
            width: 100%;
        }
}


/* =========================================================
   PAGE PRESTATAIRES
   ========================================================= */

.providers-page {
    background: radial-gradient(circle at 76% 8%, rgba(160, 48, 255, .15), transparent 28%), radial-gradient(circle at 16% 20%, rgba(45, 93, 255, .08), transparent 24%), var(--bg);
}

.providers-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 60px;
    padding-left: max(var(--page-padding), calc((100vw - var(--content-width)) / 2));
    padding-right: max(var(--page-padding), calc((100vw - var(--content-width)) / 2));
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 54px;
    align-items: center;
    background: linear-gradient( 135deg, rgba(5, 6, 18, .98) 0%, rgba(14, 8, 30, .96) 52%, rgba(25, 8, 42, .94) 100% );
}

    .providers-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 67% 42%, rgba(142, 50, 255, .18), transparent 24%), radial-gradient(circle at 82% 30%, rgba(239, 34, 203, .10), transparent 24%);
    }

.providers-hero-copy,
.providers-hero-visual {
    position: relative;
    z-index: 2;
}

.providers-hero-copy {
    max-width: 610px;
}

    .providers-hero-copy h1 {
        margin: 0 0 22px;
        color: #ffffff;
        font-family: Poppins, Inter, Arial, sans-serif;
        font-size: clamp(48px, 5vw, 72px);
        font-weight: 800;
        line-height: 1.03;
        letter-spacing: -.04em;
    }

        .providers-hero-copy h1 span {
            background: linear-gradient( 90deg, #8a4cff 0%, #bb38ff 45%, #f027c7 100% );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .providers-hero-copy p {
        margin: 0;
        max-width: 570px;
        color: rgba(255, 255, 255, .86);
        font-size: 17px;
        line-height: 1.75;
    }

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

.providers-hero-visual {
    min-height: 480px;
}

.provider-device {
    position: absolute;
    width: min(45%, 250px);
    padding: 7px;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: #05060d;
    box-shadow: 0 26px 76px rgba(0, 0, 0, .58), 0 0 34px rgba(162, 54, 255, .18);
}

    .provider-device img {
        display: block;
        width: 100%;
        border-radius: 29px;
    }

.provider-device-a {
    left: 12%;
    top: 10px;
    transform: rotate(-5deg);
}

.provider-device-b {
    right: 3%;
    top: 66px;
    transform: rotate(5deg);
}

.provider-device-glow {
    position: absolute;
    left: 18%;
    right: 8%;
    bottom: 24px;
    height: 74px;
    border-radius: 50%;
    background: radial-gradient( ellipse, rgba(190, 46, 255, .28), transparent 70% );
    filter: blur(18px);
}

.providers-section {
    padding-top: 78px;
    padding-bottom: 78px;
}

.providers-section-heading {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

    .providers-section-heading h2 {
        margin: 0 0 12px;
        color: #ffffff;
        font-family: Poppins, sans-serif;
        font-size: clamp(30px, 4vw, 46px);
        font-weight: 700;
        letter-spacing: -.025em;
    }

    .providers-section-heading p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

.provider-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.provider-feature-card {
    min-height: 235px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(156, 76, 255, .24);
    background: linear-gradient( 150deg, rgba(16, 13, 32, .98), rgba(9, 8, 22, .96) );
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .provider-feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(193, 74, 255, .46);
        box-shadow: 0 24px 64px rgba(0, 0, 0, .26);
    }

.provider-feature-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: linear-gradient( 145deg, rgba(126, 55, 255, .22), rgba(229, 42, 255, .11) );
    color: #cb66ff;
    font-size: 24px;
}

.provider-feature-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 19px;
}

.provider-feature-card p {
    margin: 0;
    color: #b8b7c7;
    font-size: 14px;
    line-height: 1.7;
}

.providers-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding-top: 36px;
    padding-bottom: 78px;
}

.provider-panel {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid rgba(154, 103, 255, .24);
    background: linear-gradient( 145deg, rgba(16, 14, 34, .96), rgba(9, 10, 20, .96) );
}

    .provider-panel h2,
    .provider-panel h3 {
        font-family: Poppins, sans-serif;
    }

    .provider-panel h2 {
        margin: 0 0 14px;
        font-size: clamp(28px, 3vw, 40px);
    }

    .provider-panel h3 {
        margin: 0 0 18px;
        font-size: 22px;
    }

    .provider-panel p {
        margin: 0 0 18px;
        color: var(--muted);
        line-height: 1.7;
    }

.provider-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

    .provider-checklist li {
        position: relative;
        padding-left: 28px;
        color: #d0d0dc;
    }

        .provider-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #c555ff;
            font-weight: 800;
        }

.provider-dashboard {
    display: grid;
    gap: 14px;
}

.provider-stat {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .025);
}

    .provider-stat strong {
        display: block;
        margin-bottom: 4px;
        color: #ffffff;
        font-size: 14px;
    }

    .provider-stat span {
        color: #8f8fa2;
        font-size: 12px;
    }

.provider-stat-value {
    color: #d561ff;
    font-size: 24px;
    font-weight: 800;
}

.providers-cta {
    margin-bottom: 72px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient( 100deg, rgba(94, 36, 226, .90), rgba(151, 35, 224, .92), rgba(229, 32, 177, .86) );
}

    .providers-cta h2 {
        margin: 0 0 8px;
        font-family: Poppins, sans-serif;
        font-size: clamp(28px, 4vw, 42px);
    }

    .providers-cta p {
        margin: 0;
        color: rgba(255, 255, 255, .88);
        line-height: 1.65;
    }

@media (max-width: 1050px) {

    .providers-hero {
        grid-template-columns: 1fr;
    }

    .providers-hero-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

        .providers-hero-copy p {
            margin-left: auto;
            margin-right: auto;
        }

    .providers-hero-actions {
        justify-content: center;
    }

    .providers-hero-visual {
        width: min(650px, 100%);
        margin: 0 auto;
    }

    .provider-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .providers-control {
        grid-template-columns: 1fr;
    }

    .providers-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {

    .providers-hero {
        min-height: auto;
        padding-top: 44px;
        padding-bottom: 42px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .providers-hero-copy {
        text-align: left;
    }

        .providers-hero-copy h1 {
            font-size: 43px;
        }

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

    .providers-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .providers-hero-actions .btn {
            width: 100%;
        }

    .providers-hero-visual {
        min-height: 350px;
        margin-top: 24px;
    }

    .provider-device {
        width: 49%;
    }

    .provider-device-a {
        left: 2%;
    }

    .provider-device-b {
        right: 2%;
    }

    .providers-section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .provider-feature-grid {
        grid-template-columns: 1fr;
    }

    .providers-control {
        gap: 20px;
        padding-bottom: 54px;
    }

    .provider-panel {
        padding: 24px;
    }

    .providers-cta {
        margin-bottom: 50px;
        padding: 28px 24px;
    }

        .providers-cta .btn {
            width: 100%;
        }
}


/* =========================================================
   PAGE ETABLISSEMENTS
   ========================================================= */

.venues-page {
    background: radial-gradient(circle at 78% 9%, rgba(236, 40, 167, .14), transparent 29%), radial-gradient(circle at 18% 24%, rgba(85, 59, 255, .08), transparent 24%), var(--bg);
}

.venues-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 60px;
    padding-left: max(var(--page-padding), calc((100vw - var(--content-width)) / 2));
    padding-right: max(var(--page-padding), calc((100vw - var(--content-width)) / 2));
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
    background: linear-gradient( 135deg, rgba(5, 6, 18, .98) 0%, rgba(20, 8, 28, .96) 52%, rgba(34, 8, 34, .94) 100% );
}

    .venues-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 70% 40%, rgba(229, 42, 174, .16), transparent 25%), radial-gradient(circle at 82% 30%, rgba(138, 55, 255, .10), transparent 25%);
    }

.venues-hero-copy,
.venues-hero-visual {
    position: relative;
    z-index: 2;
}

.venues-hero-copy {
    max-width: 610px;
}

    .venues-hero-copy h1 {
        margin: 0 0 22px;
        color: #ffffff;
        font-family: Poppins, Inter, Arial, sans-serif;
        font-size: clamp(48px, 5vw, 72px);
        font-weight: 800;
        line-height: 1.03;
        letter-spacing: -.04em;
    }

        .venues-hero-copy h1 span {
            background: linear-gradient( 90deg, #ff4aa9 0%, #e83be1 45%, #9a45ff 100% );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .venues-hero-copy p {
        margin: 0;
        max-width: 570px;
        color: rgba(255, 255, 255, .86);
        font-size: 17px;
        line-height: 1.75;
    }

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

.venues-hero-visual {
    min-height: 470px;
}

.venue-showcase {
    position: absolute;
    inset: 30px 0 20px 7%;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(145deg, rgba(30, 12, 36, .96), rgba(10, 10, 22, .98));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .48), 0 0 42px rgba(232, 51, 177, .14);
}

    .venue-showcase::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 72% 24%, rgba(255, 68, 177, .18), transparent 26%), radial-gradient(circle at 28% 70%, rgba(121, 65, 255, .14), transparent 30%);
        pointer-events: none;
    }

.venue-showcase-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.venue-badge {
    align-self: flex-start;
    min-height: 36px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(7, 8, 20, .58);
    color: #ff82bd;
    font-size: 12px;
    font-weight: 800;
}

.venue-showcase h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 30px;
}

.venue-showcase p {
    margin: 0;
    color: #c7c5d2;
    line-height: 1.7;
}

.venue-showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.venue-mini-stat {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .035);
}

    .venue-mini-stat strong {
        display: block;
        margin-bottom: 4px;
        color: #ffffff;
        font-size: 20px;
    }

    .venue-mini-stat span {
        color: #9292a5;
        font-size: 11px;
    }

.venues-section {
    padding-top: 78px;
    padding-bottom: 78px;
}

.venues-section-heading {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

    .venues-section-heading h2 {
        margin: 0 0 12px;
        color: #ffffff;
        font-family: Poppins, sans-serif;
        font-size: clamp(30px, 4vw, 46px);
        font-weight: 700;
        letter-spacing: -.025em;
    }

    .venues-section-heading p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

.venue-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.venue-feature-card {
    min-height: 235px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(236, 62, 166, .22);
    background: linear-gradient( 150deg, rgba(20, 12, 31, .98), rgba(10, 9, 22, .96) );
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .venue-feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 73, 173, .44);
        box-shadow: 0 24px 64px rgba(0, 0, 0, .26);
    }

.venue-feature-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: linear-gradient( 145deg, rgba(232, 38, 181, .20), rgba(255, 43, 142, .10) );
    color: #ff67ae;
    font-size: 24px;
}

.venue-feature-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 19px;
}

.venue-feature-card p {
    margin: 0;
    color: #b8b7c7;
    font-size: 14px;
    line-height: 1.7;
}

.venues-value {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding-top: 36px;
    padding-bottom: 78px;
}

.venue-value-panel {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid rgba(220, 56, 168, .22);
    background: linear-gradient( 145deg, rgba(20, 13, 31, .96), rgba(9, 10, 20, .96) );
}

    .venue-value-panel h2,
    .venue-value-panel h3 {
        font-family: Poppins, sans-serif;
    }

    .venue-value-panel h2 {
        margin: 0 0 14px;
        font-size: clamp(28px, 3vw, 40px);
    }

    .venue-value-panel h3 {
        margin: 0 0 18px;
        font-size: 22px;
    }

    .venue-value-panel p {
        margin: 0 0 18px;
        color: var(--muted);
        line-height: 1.7;
    }

.venue-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

    .venue-checklist li {
        position: relative;
        padding-left: 28px;
        color: #d0d0dc;
    }

        .venue-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ff5aa6;
            font-weight: 800;
        }

.venue-promo-card {
    padding: 18px;
    margin-bottom: 14px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .03);
}

    .venue-promo-card:last-child {
        margin-bottom: 0;
    }

    .venue-promo-card strong {
        display: block;
        margin-bottom: 5px;
        color: #ffffff;
    }

    .venue-promo-card span {
        color: #9b99aa;
        font-size: 13px;
        line-height: 1.55;
    }

.venues-cta {
    margin-bottom: 72px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient( 100deg, rgba(198, 34, 151, .90), rgba(156, 37, 199, .92), rgba(102, 52, 225, .88) );
}

    .venues-cta h2 {
        margin: 0 0 8px;
        font-family: Poppins, sans-serif;
        font-size: clamp(28px, 4vw, 42px);
    }

    .venues-cta p {
        margin: 0;
        color: rgba(255, 255, 255, .88);
        line-height: 1.65;
    }

@media (max-width: 1050px) {

    .venues-hero {
        grid-template-columns: 1fr;
    }

    .venues-hero-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

        .venues-hero-copy p {
            margin-left: auto;
            margin-right: auto;
        }

    .venues-hero-actions {
        justify-content: center;
    }

    .venues-hero-visual {
        width: min(650px, 100%);
        margin: 0 auto;
    }

    .venue-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .venues-value {
        grid-template-columns: 1fr;
    }

    .venues-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {

    .venues-hero {
        min-height: auto;
        padding-top: 44px;
        padding-bottom: 42px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .venues-hero-copy {
        text-align: left;
    }

        .venues-hero-copy h1 {
            font-size: 43px;
        }

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

    .venues-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .venues-hero-actions .btn {
            width: 100%;
        }

    .venues-hero-visual {
        min-height: 390px;
        margin-top: 24px;
    }

    .venue-showcase {
        inset: 20px 0 10px 0;
    }

    .venue-showcase-content {
        padding: 24px;
    }

    .venue-showcase-stats {
        grid-template-columns: 1fr;
    }

    .venues-section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .venue-feature-grid {
        grid-template-columns: 1fr;
    }

    .venues-value {
        gap: 20px;
        padding-bottom: 54px;
    }

    .venue-value-panel {
        padding: 24px;
    }

    .venues-cta {
        margin-bottom: 50px;
        padding: 28px 24px;
    }

        .venues-cta .btn {
            width: 100%;
        }
}


/* =========================================================
   PAGE TARIFS
   ========================================================= */

.pricing-page {
    min-height: 100vh;
    background: radial-gradient(circle at 50% 9%, rgba(124, 52, 255, .16), transparent 28%), radial-gradient(circle at 82% 28%, rgba(239, 34, 203, .08), transparent 22%), var(--bg);
}

.pricing-hero {
    padding-top: 82px;
    padding-bottom: 46px;
    text-align: center;
}

    .pricing-hero h1 {
        max-width: 900px;
        margin: 0 auto 18px;
        color: #fff;
        font-family: Poppins, Inter, sans-serif;
        font-size: clamp(42px, 5vw, 68px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -.04em;
    }

.pricing-lead {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.pricing-audience-block {
    min-height: 180px;
    margin-bottom: 64px;
    padding: 30px 34px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 28px;
    align-items: center;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(145deg, rgba(15,16,33,.96), rgba(8,9,20,.98));
}

.pricing-singer-block {
    border-color: rgba(70,138,255,.26);
    box-shadow: 0 18px 60px rgba(0,0,0,.20), 0 0 28px rgba(54,118,255,.06);
}

.pricing-venue-block {
    border-color: rgba(238,54,171,.22);
    box-shadow: 0 18px 60px rgba(0,0,0,.20), 0 0 28px rgba(239,34,203,.05);
}

.pricing-audience-copy {
    max-width: 680px;
}

.pricing-audience-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: #c9c7d9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.pricing-audience-copy h2 {
    margin: 0 0 8px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: clamp(27px,3vw,38px);
}

.pricing-audience-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.pricing-audience-price {
    min-width: 130px;
    text-align: center;
}

    .pricing-audience-price strong {
        display: block;
        color: #fff;
        font-family: Poppins, sans-serif;
        font-size: 40px;
        line-height: 1;
    }

    .pricing-audience-price span {
        display: block;
        margin-top: 6px;
        color: #8c8b9e;
        font-size: 12px;
    }

.pricing-audience-price-text strong {
    font-size: 26px;
}

.pricing-provider-section {
    padding-top: 12px;
    padding-bottom: 80px;
}

.providers-pricing-heading {
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center;
}

    .providers-pricing-heading h2 {
        margin: 0 0 12px;
        color: #fff;
        font-family: Poppins, sans-serif;
        font-size: clamp(32px,4vw,48px);
    }

    .providers-pricing-heading > p:last-child {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

.provider-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    min-height: 600px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(150deg, rgba(16,18,36,.98), rgba(8,9,20,.98));
    box-shadow: 0 22px 70px rgba(0,0,0,.24);
}

.pricing-card-featured {
    transform: translateY(-12px);
    border-color: rgba(174,64,255,.50);
    background: linear-gradient(150deg, rgba(28,15,51,.98), rgba(11,10,28,.98));
    box-shadow: 0 30px 90px rgba(0,0,0,.32), 0 0 35px rgba(160,54,255,.14);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7e52ff, #e62cc7);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}

.pricing-pill {
    display: inline-flex;
    min-height: 32px;
    padding: 0 12px;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.035);
    color: #c8a0ff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.essential-plan .pricing-pill {
    color: #8eb6ff;
}

.premium-plan .pricing-pill {
    color: #ff82c4;
}

.pricing-card h3 {
    margin: 18px 0 10px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 29px;
}

.pricing-card-top p {
    min-height: 76px;
    margin: 0;
    color: #aeadbf;
    line-height: 1.65;
    font-size: 14px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 28px 0 22px;
}

    .pricing-price strong {
        color: #fff;
        font-family: Poppins, sans-serif;
        font-size: 44px;
        line-height: 1;
    }

    .pricing-price span {
        color: #8f8ea2;
        font-size: 13px;
    }

.pricing-list {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}

    .pricing-list li {
        position: relative;
        padding-left: 27px;
        color: #d5d4df;
        font-size: 14px;
        line-height: 1.5;
    }

        .pricing-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #a965ff;
            font-weight: 800;
        }

.essential-plan .pricing-list li::before {
    color: #6298ff;
}

.premium-plan .pricing-list li::before {
    color: #ff5aae;
}

.pricing-button {
    margin-top: auto;
    width: 100%;
}

.pricing-cta {
    margin-bottom: 72px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(100deg, rgba(64,73,226,.92), rgba(131,45,221,.92), rgba(226,35,174,.88));
}

    .pricing-cta h2 {
        margin: 0 0 8px;
        font-family: Poppins, sans-serif;
        font-size: clamp(28px,4vw,42px);
    }

    .pricing-cta p {
        margin: 0;
        color: rgba(255,255,255,.88);
    }

@media (max-width: 1050px) {
    .pricing-audience-block {
        grid-template-columns: 1fr auto;
    }

        .pricing-audience-block .btn {
            grid-column: 1 / -1;
            width: 100%;
        }

    .provider-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-card-top p {
        min-height: auto;
    }

    .pricing-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {
    .pricing-hero {
        padding-top: 54px;
        padding-bottom: 34px;
        text-align: left;
    }

        .pricing-hero h1 {
            font-size: 42px;
        }

    .pricing-audience-block {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
        margin-bottom: 48px;
    }

    .pricing-audience-price {
        text-align: left;
    }

    .pricing-provider-section {
        padding-bottom: 56px;
    }

    .providers-pricing-heading {
        text-align: left;
        margin-bottom: 30px;
    }

    .pricing-card {
        padding: 25px 22px;
    }

    .pricing-price strong {
        font-size: 40px;
    }

    .pricing-cta {
        margin-bottom: 50px;
        padding: 28px 24px;
    }

        .pricing-cta .btn {
            width: 100%;
        }
}


/* =========================================================
   PAGE CONTACT
   ========================================================= */

.contact-page {
    min-height: 100vh;
    background: radial-gradient(circle at 48% 8%, rgba(121,53,255,.15), transparent 27%), radial-gradient(circle at 88% 30%, rgba(235,39,188,.07), transparent 23%), var(--bg);
}

.contact-hero {
    padding-top: 76px;
    padding-bottom: 42px;
    text-align: center;
}

    .contact-hero h1 {
        max-width: 850px;
        margin: 0 auto 16px;
        color: #fff;
        font-family: Poppins, Inter, sans-serif;
        font-size: clamp(42px,5vw,66px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -.04em;
    }

    .contact-hero > p:last-child {
        max-width: 700px;
        margin: 0 auto;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.75;
    }

.contact-layout {
    display: grid;
    grid-template-columns: 1.45fr .75fr;
    gap: 24px;
    padding-bottom: 82px;
    align-items: start;
}

.contact-form-card,
.contact-side-card {
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(150deg, rgba(16,17,34,.98), rgba(8,9,20,.98));
    box-shadow: 0 24px 75px rgba(0,0,0,.24);
}

.contact-form-card {
    padding: 34px;
}

.contact-form-heading h2 {
    margin: 0 0 8px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 30px;
}

.contact-form-heading p {
    margin: 0 0 28px;
    color: var(--muted);
    line-height: 1.65;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: #d7d6e1;
    font-size: 13px;
    font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.09);
    outline: none;
    border-radius: 12px;
    background: rgba(255,255,255,.035);
    color: #fff;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-field input,
.contact-field select {
    min-height: 49px;
    padding: 0 14px;
}

.contact-field textarea {
    min-height: 145px;
    padding: 13px 14px;
    resize: vertical;
}

.contact-field select option {
    background: #111322;
    color: #fff;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(156,70,255,.58);
    background: rgba(255,255,255,.05);
    box-shadow: 0 0 0 3px rgba(142,50,255,.10);
}

.contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-top: 5px;
}

    .contact-form-bottom p {
        max-width: 460px;
        margin: 0;
        color: #858496;
        font-size: 11px;
        line-height: 1.55;
    }

.contact-tech-note {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #777689;
    font-size: 11px;
    line-height: 1.55;
}

.contact-side {
    display: grid;
    gap: 20px;
}

.contact-side-card {
    padding: 28px;
}

.contact-demo-card {
    border-color: rgba(151,62,255,.26);
}

.contact-singer-card {
    border-color: rgba(54,118,255,.22);
}

.contact-side-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(139,50,255,.22), rgba(231,37,196,.10));
    font-size: 22px;
}

.contact-singer-card .contact-side-icon {
    background: linear-gradient(145deg, rgba(54,118,255,.22), rgba(36,214,255,.08));
}

.contact-side-card h2,
.contact-side-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: Poppins, sans-serif;
}

.contact-side-card h2 {
    font-size: 26px;
}

.contact-side-card h3 {
    font-size: 22px;
}

.contact-side-card > p:not(.eyebrow) {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.65;
}

.contact-side-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.contact-side-card li {
    position: relative;
    padding-left: 25px;
    color: #ceceda;
    font-size: 13px;
}

    .contact-side-card li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #b65bff;
        font-weight: 800;
    }

.contact-singer-card .btn {
    width: 100%;
}

@media (max-width: 1050px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-side {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .contact-hero {
        padding-top: 52px;
        padding-bottom: 32px;
        text-align: left;
    }

        .contact-hero h1 {
            font-size: 42px;
        }

    .contact-form-card {
        padding: 24px 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-field-full {
        grid-column: auto;
    }

    .contact-form-bottom {
        flex-direction: column;
        align-items: stretch;
    }

        .contact-form-bottom .btn {
            width: 100%;
        }

    .contact-side {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        padding-bottom: 54px;
    }
}


/* =========================================================
   PAGE A PROPOS
   ========================================================= */

.about-page {
    min-height: 100vh;
    background: radial-gradient(circle at 70% 6%, rgba(139, 51, 255, .14), transparent 27%), radial-gradient(circle at 16% 34%, rgba(40, 119, 255, .07), transparent 23%), radial-gradient(circle at 88% 58%, rgba(239, 34, 203, .06), transparent 24%), var(--bg);
}

.about-hero {
    min-height: 620px;
    padding-top: 74px;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 58px;
    align-items: center;
}

.about-hero-copy h1 {
    margin: 0 0 22px;
    color: #fff;
    font-family: Poppins, Inter, sans-serif;
    font-size: clamp(48px, 5.2vw, 72px);
    line-height: 1.03;
    letter-spacing: -.04em;
}

    .about-hero-copy h1 span {
        display: block;
        background: linear-gradient(90deg, #7770ff, #a73dff 46%, #ef2ac6);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.about-hero-copy > p:last-of-type {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 17px;
    line-height: 1.76;
}

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

.about-hero-card {
    position: relative;
    min-height: 420px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(160, 71, 255, .26);
    background: radial-gradient(circle at 70% 20%, rgba(220, 50, 255, .16), transparent 30%), linear-gradient(145deg, rgba(22, 15, 42, .98), rgba(8, 9, 20, .98));
    box-shadow: 0 30px 90px rgba(0,0,0,.34), 0 0 35px rgba(155,56,255,.08);
}

.about-logo-panel {
    width: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.025);
}

    .about-logo-panel img {
        width: min(82%, 310px);
        height: auto;
    }

.about-manifesto {
    margin-top: 24px;
}

    .about-manifesto > span {
        display: inline-block;
        margin-bottom: 8px;
        color: #c657ff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .about-manifesto p {
        margin: 0;
        color: #fff;
        font-family: Poppins, sans-serif;
        font-size: 22px;
        line-height: 1.45;
    }

.about-mission,
.about-values {
    padding-top: 76px;
    padding-bottom: 76px;
}

.about-section-heading {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

    .about-section-heading h2 {
        margin: 0 0 12px;
        color: #fff;
        font-family: Poppins, sans-serif;
        font-size: clamp(32px,4vw,48px);
    }

    .about-section-heading > p:last-child {
        margin: 0;
        color: var(--muted);
        line-height: 1.75;
    }

.about-audiences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-audience-card {
    min-height: 260px;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(145deg, rgba(16,17,34,.97), rgba(8,9,20,.98));
}

    .about-audience-card.singer {
        border-color: rgba(54,118,255,.24);
    }

    .about-audience-card.provider {
        border-color: rgba(153,63,255,.26);
    }

    .about-audience-card.venue {
        border-color: rgba(239,52,174,.24);
    }

.about-audience-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    font-size: 23px;
}

.about-audience-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 23px;
}

.about-audience-card p {
    margin: 0 0 22px;
    color: #aaa9ba;
    line-height: 1.7;
}

.about-audience-card a {
    color: #d0a0ff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.about-problem {
    padding-top: 36px;
    padding-bottom: 78px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 46px;
    align-items: start;
}

.about-problem-copy h2 {
    margin: 0 0 14px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: clamp(32px,3.8vw,46px);
}

.about-problem-copy > p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.about-problem-grid {
    display: grid;
    gap: 16px;
}

    .about-problem-grid article {
        padding: 22px 24px;
        display: grid;
        grid-template-columns: 48px 1fr;
        column-gap: 16px;
        border-radius: 17px;
        border: 1px solid rgba(255,255,255,.07);
        background: rgba(255,255,255,.025);
    }

        .about-problem-grid article > span {
            grid-row: 1 / 3;
            color: #8c53ff;
            font-family: Poppins, sans-serif;
            font-size: 25px;
            font-weight: 800;
        }

    .about-problem-grid h3 {
        margin: 0 0 5px;
        color: #fff;
        font-family: Poppins, sans-serif;
        font-size: 18px;
    }

    .about-problem-grid p {
        margin: 0;
        color: #9f9ead;
        line-height: 1.62;
        font-size: 13px;
    }

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

    .about-values-grid article {
        min-height: 235px;
        padding: 26px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,.07);
        background: linear-gradient(145deg, rgba(15,16,31,.97), rgba(8,9,19,.98));
    }

.about-value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(131,57,255,.18), rgba(227,43,194,.08));
    color: #c869ff;
    font-size: 21px;
}

.about-values-grid h3 {
    margin: 0 0 9px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 19px;
}

.about-values-grid p {
    margin: 0;
    color: #9998aa;
    font-size: 13px;
    line-height: 1.68;
}

.about-vision {
    padding-top: 44px;
    padding-bottom: 82px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 42px;
    align-items: start;
}

.about-vision-copy h2 {
    margin: 0 0 14px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: clamp(32px,3.8vw,46px);
}

.about-vision-copy > p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.about-vision-steps {
    position: relative;
    display: grid;
    gap: 14px;
}

.about-vision-step {
    padding: 21px 23px;
    border-radius: 17px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
}

    .about-vision-step > span {
        display: block;
        margin-bottom: 5px;
        color: #c95dff;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .about-vision-step strong {
        display: block;
        margin-bottom: 5px;
        color: #fff;
        font-family: Poppins, sans-serif;
        font-size: 17px;
    }

    .about-vision-step p {
        margin: 0;
        color: #9b9aaa;
        font-size: 13px;
        line-height: 1.6;
    }

.about-cta {
    margin-bottom: 72px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(100deg, rgba(60,74,225,.92), rgba(133,45,220,.92), rgba(225,35,176,.88));
}

    .about-cta h2 {
        margin: 0 0 8px;
        font-family: Poppins, sans-serif;
        font-size: clamp(28px,4vw,42px);
    }

    .about-cta p {
        margin: 0;
        color: rgba(255,255,255,.88);
        line-height: 1.65;
    }

.about-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 1050px) {
    .about-hero,
    .about-problem,
    .about-vision {
        grid-template-columns: 1fr;
    }

    .about-hero-card {
        min-height: 360px;
    }

    .about-audiences {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {
    .about-hero {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 48px;
    }

    .about-hero-copy h1 {
        font-size: 43px;
    }

    .about-hero-actions,
    .about-cta-actions {
        flex-direction: column;
        width: 100%;
    }

        .about-hero-actions .btn,
        .about-cta-actions .btn {
            width: 100%;
        }

    .about-hero-card {
        min-height: 320px;
        padding: 24px;
    }

    .about-manifesto p {
        font-size: 19px;
    }

    .about-mission,
    .about-values {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .about-section-heading {
        text-align: left;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-problem,
    .about-vision {
        padding-bottom: 56px;
    }

    .about-problem-grid article {
        grid-template-columns: 40px 1fr;
        padding: 19px;
    }

    .about-cta {
        margin-bottom: 50px;
        padding: 28px 24px;
    }
}


/* =========================================================
   MOBILE NAVIGATION DRAWER - VERSION 100% CSS
   Aucune API et aucun InteractiveServer nécessaire.
   ========================================================= */

.mobile-nav-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
    cursor: pointer;
    user-select: none;
}

    .mobile-menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 99px;
        background: #fff;
    }

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 199;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(4px);
    transition: opacity .24s ease, visibility .24s ease;
    pointer-events: none;
    cursor: pointer;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    width: min(86vw, 390px);
    height: 100dvh;
    padding: 22px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(165,76,255,.20);
    background: radial-gradient(circle at 80% 12%, rgba(153,55,255,.18), transparent 28%), linear-gradient(180deg, rgba(8,9,20,.995), rgba(4,5,12,.995));
    box-shadow: -30px 0 80px rgba(0,0,0,.48);
    transform: translateX(105%);
    transition: transform .26s ease;
}

.mobile-nav-checkbox:checked ~ .mobile-menu-backdrop {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
}

.mobile-nav-checkbox:checked ~ .mobile-menu-drawer {
    transform: translateX(0) !important;
    visibility: visible;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

    .mobile-menu-head img {
        width: 150px;
        height: 54px;
        object-fit: contain;
        object-position: left center;
    }

.mobile-menu-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.mobile-menu-nav {
    display: grid;
    gap: 5px;
    padding: 18px 0 22px;
}

    .mobile-menu-nav a {
        display: flex;
        align-items: center;
        min-height: 50px;
        padding: 0 14px;
        border-radius: 12px;
        color: #f7f7fb;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        border: 1px solid transparent;
        transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }

        .mobile-menu-nav a:hover {
            border-color: rgba(163,70,255,.20);
            background: rgba(255,255,255,.04);
            transform: translateX(2px);
        }

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 18px;
    display: grid;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.mobile-menu-languages {
    justify-content: center;
}

.mobile-menu-download {
    width: 100%;
}

@media (max-width: 1050px) {
    .topbar-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 650px) {
    .topbar {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .topbar-actions {
        gap: 8px;
    }

        .topbar-actions > .language-switcher {
            display: flex;
            font-size: 12px;
        }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .mobile-menu-drawer {
        width: min(88vw, 360px);
        padding: 18px;
    }

    .mobile-menu-head img {
        width: 138px;
        height: 50px;
    }

    .mobile-menu-nav a {
        min-height: 48px;
        font-size: 14px;
    }
}
