* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --padding-x: clamp(1rem, 4vw, 6rem);
    --padding-y: clamp(3rem, 8vh, 6rem);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Loading Bar */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0073, #00d2ff);
    animation: loading 2s infinite;
    z-index: 10000;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Cookies Banner */
.cookies {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    max-width: 600px;
    width: calc(100% - 2rem);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.cookies button {
    background: #ff0073;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.cookies button:hover {
    background: #dbe600;
}

/* Custom Cursor - Desktop Only */
.cursor,
.cursor-dot {
    display: none;
}

@media (min-width: 1024px) and (pointer: fine) {
    body {
        cursor: none;
    }

    .cursor {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: all 0.15s ease;
        transform: translate(-50%, -50%);
        display: block;
    }

    .cursor-dot {
        width: 6px;
        height: 6px;
        background: #fff;
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: all 0.1s ease;
        transform: translate(-50%, -50%);
        display: block;
    }

    .cursor-hover {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.08);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(50px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.96);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 var(--padding-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: clamp(70px, 10vh, 100px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 2vw, 1.5rem);
}

.logo-image {
    height: clamp(30px, 5vw, 50px);
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    display: none;
}

@media (min-width: 1024px) {
    .logo-image {
        display: block;
    }
}

.logo-text {
    font-size: clamp(0.55rem, 1.5vw, 0.85rem);
    font-weight: 400;
    letter-spacing: clamp(1px, 0.4vw, 3px);
    text-transform: uppercase;
    opacity: 0.9;
}

.nav-center {
    display: none;
}

@media (min-width: 1024px) {
    .nav-center {
        display: flex;
        gap: clamp(2rem, 4vw, 4.5rem);
    }

    .nav-center a {
        color: #fff;
        text-decoration: none;
        font-size: clamp(0.65rem, 0.9vw, 0.72rem);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 400;
        position: relative;
        padding: 0.5rem 0;
        transition: all 0.3s;
    }

    .nav-center a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 1px;
        background: #fff;
        transition: all 0.4s;
        transform: translateX(-50%);
    }

    .nav-center a:hover::before {
        width: 100%;
    }

    .nav-center a:hover {
        opacity: 0.6;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    display: none;
}

@media (min-width: 1024px) {
    .btn-login {
        display: inline-block;
        padding: clamp(0.8rem, 1.2vw, 1rem) clamp(1.8rem, 3vw, 2.8rem);
        background: #fff;
        color: #000;
        text-decoration: none;
        font-size: clamp(0.6rem, 0.8vw, 0.68rem);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        transition: all 0.5s;
        border: 1px solid #fff;
        white-space: nowrap;
    }

    .btn-login:hover {
        background: #000;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
    }
}

.menu-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    cursor: pointer;
    padding: 0.7rem 1rem;
    transition: all 0.3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: clamp(70px, 10vh, 100px);
    left: 0;
    width: 100%;
    height: calc(100vh - clamp(70px, 10vh, 100px));
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(50px);
    z-index: 999;
    padding: clamp(2rem, 5vh, 4rem) var(--padding-x);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
}

.mobile-menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 200;
    letter-spacing: -1px;
    padding: clamp(1.2rem, 3vh, 2rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.mobile-menu-links a:hover {
    padding-left: 1.5rem;
    opacity: 0.6;
}

.mobile-menu-bottom {
    margin-top: clamp(2rem, 5vh, 4rem);
    padding-top: clamp(2rem, 4vh, 3rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--padding-y) var(--padding-x);
    position: relative;
    background: #000;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, 0.006) 2px 4px),
        repeating-linear-gradient(90deg, transparent 0 2px, rgba(255, 255, 255, 0.006) 2px 4px);
    animation: gridMove 40s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 0, 115, 0.03) 50%, transparent 100%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gridMove {
    to {
        transform: translate(100px, 100px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: clamp(0.5rem, 1vh, 0.7rem) clamp(1rem, 2vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: clamp(0.5rem, 1vw, 0.6rem);
    letter-spacing: clamp(2px, 0.5vw, 4px);
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.hero h1 {
    font-size: clamp(2.5rem, 12vw, 7rem);
    font-weight: 100;
    letter-spacing: clamp(-2px, -1vw, -6px);
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    line-height: 0.95;
}

.hero-divider {
    width: 1px;
    height: clamp(60px, 12vh, 120px);
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.25), transparent);
    margin: clamp(2rem, 4vh, 4rem) auto;
}

.hero-subtitle {
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    font-weight: 300;
    letter-spacing: clamp(2px, 1vw, 6px);
    text-transform: uppercase;
    opacity: 0.35;
    margin-bottom: clamp(3rem, 6vh, 5rem);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vh, 2.5rem);
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-button {
    display: inline-block;
    padding: clamp(1rem, 2vh, 1.6rem) clamp(2.5rem, 6vw, 4.5rem);
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: clamp(1.5px, 0.5vw, 3px);
    text-transform: uppercase;
    font-size: clamp(0.6rem, 1vw, 0.68rem);
    transition: all 0.6s;
    border: 1px solid #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

@media (min-width: 640px) {
    .cta-button {
        width: auto;
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #000;
    transition: width 0.7s, height 0.7s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.cta-button:hover::before {
    width: 400%;
    height: 400%;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
}

.cta-button-outline {
    background: transparent;
    color: #fff;
}

.cta-button-outline::before {
    background: #fff;
}

.cta-button-outline:hover {
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: clamp(2rem, 5vh, 4rem);
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(0.5rem, 1vw, 0.6rem);
    letter-spacing: clamp(2px, 0.5vw, 4px);
    text-transform: uppercase;
    opacity: 0.2;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 20px);
    }
}

/* Sections */
section {
    padding: var(--padding-y) var(--padding-x);
    max-width: 2000px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: clamp(3rem, 8vh, 7rem);
    padding-bottom: clamp(1.5rem, 4vh, 3.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.section-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 100;
    letter-spacing: clamp(-2px, -1vw, -5px);
}

.section-number {
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    font-weight: 300;
    letter-spacing: clamp(2px, 1vw, 6px);
    opacity: 0.2;
    font-family: 'Courier New', monospace;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vh, 5rem);
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 2fr;
        gap: clamp(4rem, 8vh, 8rem);
    }

    .about-sidebar {
        position: sticky;
        top: 150px;
    }
}

.about-label {
    font-size: clamp(0.55rem, 1vw, 0.6rem);
    letter-spacing: clamp(2px, 1vw, 6px);
    text-transform: uppercase;
    opacity: 0.2;
    margin-bottom: clamp(2rem, 4vh, 4rem);
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(2rem, 4vh, 4rem);
}

.stat-item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: clamp(1.5rem, 3vh, 2.5rem);
}

.stat-item h3 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 100;
    letter-spacing: clamp(-2px, -0.5vw, -4px);
    margin-bottom: clamp(0.8rem, 1.5vh, 1.2rem);
}

.stat-item p {
    font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    opacity: 0.35;
    letter-spacing: clamp(1px, 0.4vw, 2.5px);
    text-transform: uppercase;
    font-weight: 300;
}

.about-content {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    line-height: 2;
    opacity: 0.75;
    letter-spacing: 0.3px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: #000;
    padding: clamp(3rem, 6vh, 5rem);
    transition: all 0.7s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: #0a0a0a;
}

.service-number {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    font-weight: 300;
    letter-spacing: clamp(2px, 0.8vw, 5px);
    opacity: 0.18;
    margin-bottom: clamp(2rem, 4vh, 3rem);
    font-family: 'Courier New', monospace;
}

.service-card h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: clamp(2rem, 4vh, 3rem);
    text-transform: uppercase;
}

.service-card p {
    opacity: 0.55;
    font-weight: 300;
    line-height: 2;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    letter-spacing: 0.3px;
}

/* Labels */
.labels-section {
    background: #0a0a0a;
    margin: 0 calc(-1 * var(--padding-x));
    padding: var(--padding-y) var(--padding-x);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.labels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vh, 5rem);
    margin-bottom: clamp(5rem, 10vh, 10rem);
}

@media (min-width: 640px) {
    .labels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .labels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .labels-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-card {
    background: transparent;
    text-align: left;
    transition: all 0.6s;
}

.label-card:hover {
    transform: translateY(-8px);
}

.label-logo {
    width: 100%;
    height: clamp(160px, 30vh, 240px);
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(2rem, 4vh, 3rem);
    overflow: hidden;
    transition: all 0.6s;
}

.label-card:hover .label-logo {
    border-color: rgba(255, 255, 255, 0.15);
    background: #050505;
}

.label-logo img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.6s;
}

.label-card:hover .label-logo img {
    opacity: 1;
    transform: scale(1.05);
}

.label-number {
    font-size: clamp(0.6rem, 1vw, 0.65rem);
    font-weight: 300;
    opacity: 0.2;
    margin-bottom: clamp(1rem, 2vh, 2rem);
    letter-spacing: clamp(2px, 0.8vw, 5px);
    font-family: 'Courier New', monospace;
}

.label-card h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 400;
    margin-bottom: clamp(1rem, 2vh, 1.8rem);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.label-card p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    opacity: 0.45;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Artists */
.artists-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 8vh, 6rem);
}

@media (min-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.artist-card {
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.7s;
    overflow: hidden;
    background: #000;
}

.artist-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.artist-image {
    width: 100%;
    height: clamp(280px, 50vh, 450px);
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.7s;
}

.artist-card:hover .artist-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.artist-info {
    padding: clamp(2.5rem, 5vh, 4.5rem);
}

.artist-info h3 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
    letter-spacing: -0.5px;
}

.artist-info a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.artist-info a:hover {
    opacity: 0.6;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.voir-plus {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: clamp(1rem, 2vh, 1.3rem) clamp(2.5rem, 4vw, 3.5rem);
    cursor: pointer;
    margin-top: 2rem;
    font-size: clamp(0.6rem, 1vw, 0.68rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.6s;
    width: 100%;
}

@media (min-width: 640px) {
    .voir-plus {
        width: auto;
    }
}

.voir-plus:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

.artist-details {
    margin-top: clamp(2rem, 4vh, 3.5rem);
    padding-top: clamp(2rem, 4vh, 3.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0.55;
    font-weight: 300;
    line-height: 2;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    letter-spacing: 0.3px;
}

.hidden {
    display: none;
}

/* Releases */
.releases-section {
    background: #000;
}

.search-bar {
    max-width: 500px;
    margin: 0 auto clamp(2rem, 4vh, 4rem);
}

.search-bar input {
    width: 100%;
    padding: clamp(0.8rem, 2vh, 1rem);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    transition: all 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: clamp(2rem, 4vh, 3rem);
}

@media (max-width: 480px) {
    .releases-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

.release-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.release-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 0.4s;
}

.release-card:hover img {
    transform: scale(1.05);
    opacity: 0.5;
}

.release-hover-text {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: 1.5px;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    text-transform: uppercase;
    text-align: center;
    padding: 0 1rem;
}

.release-card:hover .release-hover-text {
    opacity: 1;
}

.release-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    font-weight: bold;
    color: white;
    border-radius: 3px;
    z-index: 2;
}

.released {
    background-color: #28a745;
}

.upcoming {
    background-color: #ffc107;
}

.release-card audio {
    width: 100%;
    margin-top: 8px;
    outline: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    height: clamp(30px, 6vh, 40px);
}

.releases-fallback {
    grid-column: 1 / -1;
    text-align: center;
    padding: clamp(3rem, 6vh, 5rem);
    opacity: 0.5;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

/* PARTNERS CAROUSEL */
.partners-wrapper {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    cursor: grab;
}

.partners-wrapper:active {
    cursor: grabbing;
}

.partners-track {
    display: flex;
    gap: 90px;
    user-select: none;
}

.partner-item {
    flex-shrink: 0;
    width: 300px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%),
        var(--gris-dark);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blanc);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.partner-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.partner-item img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.4);
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
}

.partner-item:hover {
    border-color: var(--blanc);
    transform: translateY(-18px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.partner-item:hover img {
    filter: brightness(1) invert(0) opacity(1);
    transform: scale(1.12);
}

/* FAQ */
.faq-section {
    background: #000;
    padding: var(--padding-y) var(--padding-x);
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: clamp(2rem, 4vh, 3.5rem) 0;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s;
}

.faq-question:hover {
    opacity: 0.6;
}

.faq-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    transition: transform 0.5s;
    opacity: 0.3;
    font-weight: 200;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s;
}

.faq-answer-content {
    padding-bottom: clamp(2rem, 4vh, 3.5rem);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    line-height: 2;
    opacity: 0.5;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer iframe {
    width: 100%;
    height: clamp(400px, 60vh, 600px);
    border: none;
    margin-top: 1rem;
}

/* Contact */
.contact-section {
    background: #000;
    margin: 0 calc(-1 * var(--padding-x));
    padding: var(--padding-y) var(--padding-x);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: clamp(4rem, 8vh, 7rem);
    opacity: 0.55;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 2.2;
    letter-spacing: 0.3px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(2rem, 4vw, 4rem);
    }
}

.form-group {
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
    position: relative;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 300;
    transition: all 0.5s;
    letter-spacing: 0.3px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-form label {
    position: absolute;
    left: 0;
    top: clamp(1.5rem, 3vh, 2.5rem);
    font-size: clamp(0.65rem, 1vw, 0.7rem);
    letter-spacing: clamp(2px, 0.5vw, 4px);
    text-transform: uppercase;
    opacity: 0.25;
    transition: all 0.4s;
    pointer-events: none;
    font-weight: 300;
}

.contact-form input:focus+label,
.contact-form input:not(:placeholder-shown)+label,
.contact-form textarea:focus+label,
.contact-form textarea:not(:placeholder-shown)+label,
.contact-form select:focus+label,
.contact-form select:not(:placeholder-shown)+label {
    top: -0.5rem;
    font-size: clamp(0.55rem, 0.9vw, 0.6rem);
    opacity: 0.45;
}

.contact-form textarea {
    resize: vertical;
    min-height: clamp(150px, 30vh, 250px);
    font-family: inherit;
    padding-top: clamp(2rem, 4vh, 3.5rem);
}

.submit-btn {
    width: 100%;
    padding: clamp(1.5rem, 3vh, 2.5rem);
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    font-size: clamp(0.65rem, 1vw, 0.72rem);
    font-weight: 500;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.6s;
    margin-top: clamp(1.5rem, 3vh, 2.5rem);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #000;
    transition: width 0.7s, height 0.7s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.submit-btn:hover:not(:disabled)::before {
    width: 400%;
    height: 400%;
}

.submit-btn:hover:not(:disabled) {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.18);
}

.submit-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.form-status {
    margin-top: clamp(2rem, 4vh, 3.5rem);
    padding: clamp(1.5rem, 3vh, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    letter-spacing: 2px;
    display: none;
    text-transform: uppercase;
}

.form-status.success {
    border-color: rgba(0, 255, 0, 0.25);
    background: rgba(0, 255, 0, 0.02);
    color: #0f0;
    display: block;
}

.form-status.error {
    border-color: rgba(255, 0, 0, 0.25);
    background: rgba(255, 0, 0, 0.02);
    color: #f00;
    display: block;
}

/* Footer */
footer {
    padding: clamp(4rem, 8vh, 8rem) var(--padding-x);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
    max-width: 2000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vh, 6rem);
    margin-bottom: clamp(3rem, 6vh, 6rem);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-section h4 {
    font-size: clamp(0.6rem, 1vw, 0.65rem);
    letter-spacing: clamp(2px, 0.6vw, 5px);
    text-transform: uppercase;
    opacity: 0.25;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
    font-weight: 300;
}

.footer-logo-section .footer-logo-img {
    height: clamp(40px, 8vh, 60px);
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    opacity: 0.45;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.3px;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    padding-top: clamp(3rem, 5vh, 5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    font-size: clamp(0.6rem, 1vw, 0.65rem);
    letter-spacing: clamp(2px, 0.5vw, 4px);
    opacity: 0.18;
    font-weight: 300;
    text-transform: uppercase;
}

.footer-bottom a,
.footer-bottom button {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2px;
    transition: opacity 0.3s, border-color 0.3s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}

.footer-bottom a:hover,
.footer-bottom button:hover {
    opacity: 0.6;
    border-color: rgba(255, 255, 255, 0.3);
}

.localtime-belgium {
    margin-top: 1rem;
    font-size: clamp(0.6rem, 1vw, 0.7rem);
}

/* Responsive touch improvements */
@media (max-width: 768px) {
    .hero h1 br {
        display: none;
    }

    .cookies {
        flex-direction: column;
        align-items: stretch;
    }

    .cookies button {
        width: 100%;
    }
}

/* Landscape mobile optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: clamp(8rem, 15vh, 12rem) var(--padding-x) clamp(4rem, 8vh, 6rem);
    }

    .hero-divider {
        height: 40px;
        margin: 1.5rem auto;
    }

    .scroll-indicator {
        display: none;
    }
}