:root {
    --black: #05070d;
    --blue-night: #07111f;
    --panel: rgba(8, 15, 28, 0.78);
    --panel-strong: rgba(10, 18, 34, 0.94);
    --neon-blue: #00aeef;
    --neon-red: #ff1744;
    --warm-red: #ff3b30;
    --dark-purple: #26122f;
    --lyrics-yellow: #fff200;
    --white: #ffffff;
    --text-muted: #e1e6f2;
    --text-soft: #f5f7ff;
    --line: rgba(174, 182, 200, 0.16);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --radius: 8px;
    --container: min(1120px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(5, 7, 13, 0.92), rgba(5, 7, 13, 0.98)),
        url("../img/logo/logo_neon_fond_brique.webp") center top / 1100px auto fixed;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 23, 68, 0.14), transparent 28%),
        radial-gradient(circle at 86% 24%, rgba(0, 174, 239, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(5, 7, 13, 0.1), var(--black));
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: calc(var(--scroll-progress, 0) * 100%);
    height: 3px;
    background: linear-gradient(90deg, #b40f2e, var(--neon-red), var(--warm-red));
    box-shadow: 0 0 18px rgba(255, 23, 68, 0.34);
    pointer-events: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

picture {
    display: block;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    clip: auto;
    z-index: 30;
    padding: 10px 14px;
    background: var(--white);
    color: var(--black);
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.narrow {
    max-width: 900px;
    text-align: center;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 76px;
    padding: 10px max(20px, calc((100vw - 1120px) / 2));
    background: rgba(5, 7, 13, 0.72);
    border-bottom: 1px solid rgba(0, 174, 239, 0.22);
    backdrop-filter: blur(16px);
    transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    min-height: 66px;
    background: rgba(5, 7, 13, 0.9);
    border-bottom-color: rgba(255, 23, 68, 0.34);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
}

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

.brand-logo {
    display: block;
    width: 122px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.brand-logo-white,
.footer-logo-white {
    filter: invert(1) brightness(1.5);
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
}

.main-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, #b40f2e, var(--neon-red), var(--warm-red));
    transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active,
.main-nav .current-menu-item > a {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after,
.main-nav .current-menu-item > a::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-now-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 242, 0, 0.5);
    border-radius: 999px;
    background: rgba(255, 242, 0, 0.1);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 24px rgba(255, 242, 0, 0.12);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.live-now-link span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--lyrics-yellow);
    box-shadow: 0 0 14px rgba(255, 242, 0, 0.8);
    animation: livePulse 1.2s ease-in-out infinite;
}

.live-now-link:hover,
.live-now-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 242, 0, 0.88);
    background: rgba(255, 242, 0, 0.16);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%) skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: transform 520ms ease;
}

.btn:hover::before,
.btn:focus-visible::before {
    transform: translateX(120%) skewX(-18deg);
}

.btn {
    isolation: isolate;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--neon-red), #b40f2e);
    box-shadow: 0 10px 34px rgba(255, 23, 68, 0.22);
}

.btn-secondary {
    background: rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.62);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(0, 174, 239, 0.16);
    border-color: rgba(255, 255, 255, 0.34);
}

.btn-compact {
    min-height: 42px;
    padding-inline: 16px;
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.92) 0%, rgba(5, 7, 13, 0.66) 42%, rgba(5, 7, 13, 0.28) 100%),
        linear-gradient(0deg, var(--black) 0%, rgba(5, 7, 13, 0.62) 34%, rgba(5, 7, 13, 0.22) 100%),
        var(--black);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -8%;
    background:
        radial-gradient(circle at 72% 26%, rgba(0, 174, 239, 0.24), transparent 24%),
        radial-gradient(circle at 24% 76%, rgba(255, 23, 68, 0.2), transparent 24%);
    mix-blend-mode: screen;
    opacity: 0.58;
    pointer-events: none;
    animation: stageGlow 7s ease-in-out infinite alternate;
}

.hero-video,
.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-video {
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: saturate(1.08) contrast(1.06);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-media {
    opacity: 0;
    pointer-events: none;
}

.hero:not(:has(.hero-video)) .hero-media {
    opacity: 1;
}

.hero-overlay {
    background:
        linear-gradient(180deg, transparent 0%, rgba(5, 7, 13, 0.18) 55%, var(--black) 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 76px);
    opacity: 0.95;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 88px;
    max-width: 780px;
}

.hero-photo-stack {
    position: absolute;
    right: max(26px, calc((100vw - 1120px) / 2));
    bottom: clamp(56px, 9vh, 120px);
    z-index: 1;
    width: min(32vw, 390px);
    height: min(46vw, 560px);
    pointer-events: none;
}

.hero-photo-stack figure {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(8, 15, 28, 0.72);
    box-shadow: 0 30px 76px rgba(0, 0, 0, 0.44);
}

.hero-photo-stack figure:nth-child(1) {
    inset: 0 18% 20% 0;
    transform: rotate(-4deg);
}

.hero-photo-stack figure:nth-child(2) {
    inset: 24% 0 0 24%;
    transform: rotate(5deg);
}

.hero-photo-stack figure:nth-child(3) {
    inset: 54% 42% 2% 2%;
    transform: rotate(-2deg);
}

.hero-photo-stack picture,
.hero-photo-stack img {
    width: 100%;
    height: 100%;
}

.hero-photo-stack img {
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08);
}

.motion-ready .hero-photo-stack figure {
    animation: heroCardFloat 5.5s ease-in-out infinite alternate;
}

.motion-ready .hero-photo-stack figure:nth-child(2) {
    animation-delay: 500ms;
}

.motion-ready .hero-photo-stack figure:nth-child(3) {
    animation-delay: 1000ms;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 3;
    width: 34px;
    height: 52px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(5, 7, 13, 0.34);
    backdrop-filter: blur(8px);
}

.scroll-cue span {
    position: absolute;
    left: 50%;
    top: 10px;
    width: 5px;
    height: 10px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--white);
    animation: cueDrop 1.5s ease-in-out infinite;
}

.motion-ready .hero-content .eyebrow,
.motion-ready .hero-content h1,
.motion-ready .hero-lead,
.motion-ready .hero-actions,
.motion-ready .badge-list {
    animation: heroRise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-ready .hero-content h1 {
    animation-delay: 120ms;
}

.motion-ready .hero-lead {
    animation-delay: 240ms;
}

.motion-ready .hero-actions {
    animation-delay: 360ms;
}

.motion-ready .badge-list {
    animation-delay: 480ms;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--neon-blue);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: 0;
    color: var(--white);
}

h1 {
    max-width: 820px;
    font-size: clamp(4rem, 9vw, 7.6rem);
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 4px 34px rgba(0, 0, 0, 0.78);
}

h1 span {
    color: var(--lyrics-yellow);
    text-shadow: 0 0 24px rgba(255, 242, 0, 0.2), 0 4px 30px rgba(0, 0, 0, 0.62);
}

h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    text-transform: uppercase;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.62);
}

h3 {
    font-size: 1.7rem;
    text-transform: uppercase;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.46);
}

p {
    color: var(--text-muted);
}

.hero-lead {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: clamp(1.02rem, 2vw, 1.22rem);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.48);
}

.hero-actions,
.center-action {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 28px 0 clamp(44px, 6vh, 82px);
    padding: 0;
    list-style: none;
}

.badge-list li,
.event-tags span {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    font-size: 0.86rem;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.badge-list a {
    color: inherit;
    text-decoration: none;
}

.badge-list li:hover,
.event-tags span:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 174, 239, 0.38);
    background: rgba(0, 174, 239, 0.08);
}

.section {
    padding: clamp(76px, 9vw, 132px) 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.klb-home .section::before {
    content: "";
    position: absolute;
    inset: -16%;
    z-index: 0;
    background-image: var(--section-photo, none);
    background-size: cover;
    background-position: center calc(50% + var(--section-shift, 0px));
    background-attachment: fixed;
    opacity: 0;
    transform: scale(1.08);
    filter: saturate(1.06) contrast(1.04);
    pointer-events: none;
}

.klb-home .section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.94), rgba(5, 7, 13, 0.76) 42%, rgba(5, 7, 13, 0.88)),
        linear-gradient(180deg, rgba(5, 7, 13, 0.82), rgba(5, 7, 13, 0.96));
    opacity: 0;
    pointer-events: none;
}

.section-split::before {
    --section-photo: url("../img/photos/514589096_1232051902266183_5899058541186376431_n.webp");
    opacity: 0.34;
}

.video-section::before {
    --section-photo: url("../img/photos/audrey.jpg");
    opacity: 0.34;
}

.full-service-section::before {
    --section-photo: url("../img/photos/le-groupe.jpg");
    opacity: 0.3;
}

#fonctionnement::before {
    --section-photo: url("../img/photos/hero-stack-3.jpg");
    opacity: 0.26;
}

.app-section::before {
    --section-photo: url("../img/photos/filles.jpg");
    opacity: 0.24;
}

.lyrics-section::before {
    --section-photo: url("../img/photos/hero-stack-1.jpg");
    opacity: 0.22;
}

.gallery-section::before {
    --section-photo: url("../img/photos/hero-stack-4.jpg");
    opacity: 0.34;
}

.events-section::before {
    --section-photo: url("../img/photos/le-groupe.jpg");
    opacity: 0.28;
}

.dates-section::before {
    --section-photo: url("../img/photos/hero-stack-2.jpg");
    opacity: 0.28;
}

.contact-section::before {
    --section-photo: url("../img/photos/hero-stack-3.jpg");
    opacity: 0.24;
}

.partners-section::before {
    --section-photo: url("../img/photos/le-groupe.jpg");
    opacity: 0.2;
}

.section-split::after,
.full-service-section::after,
.video-section::after,
#fonctionnement::after,
.app-section::after,
.lyrics-section::after,
.gallery-section::after,
.events-section::after,
.dates-section::after,
.partners-section::after,
.contact-section::after {
    opacity: 1;
}

.klb-home .section h2,
.klb-home .section h3,
.klb-page h1,
.klb-page h2,
.klb-page h3 {
    color: var(--white);
}

.section-split {
    background: rgba(5, 7, 13, 0.94);
}

.concept-section {
    padding-bottom: clamp(28px, 4vw, 54px);
}

.proof-strip {
    position: relative;
    z-index: 2;
    border-block: 1px solid rgba(174, 182, 200, 0.16);
    background:
        linear-gradient(90deg, rgba(255, 23, 68, 0.12), rgba(0, 174, 239, 0.09)),
        rgba(5, 7, 13, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid div {
    position: relative;
    min-height: 118px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 22px clamp(14px, 2.5vw, 28px);
    border-left: 1px solid rgba(174, 182, 200, 0.12);
    overflow: hidden;
}

.proof-grid div:last-child {
    border-right: 1px solid rgba(174, 182, 200, 0.12);
}

.proof-grid strong {
    font-family: "Barlow Condensed", Impact, sans-serif;
    color: var(--lyrics-yellow);
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 0 0 26px rgba(255, 242, 0, 0.18);
}

.proof-grid span {
    color: var(--white);
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
}

.live-difference-section {
    padding-top: 0;
    background: rgba(5, 7, 13, 0.95);
}

.live-difference-section::before {
    --section-photo: url("../img/photos/bassiste.jpg");
    opacity: 0.3;
}

.live-difference-section::after {
    opacity: 1;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.difference-grid article {
    position: relative;
    min-height: 250px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(22px, 3vw, 30px);
    overflow: hidden;
    border: 1px solid rgba(174, 182, 200, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(150deg, rgba(255, 23, 68, 0.12), rgba(0, 174, 239, 0.06)),
        rgba(8, 15, 28, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.difference-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 240ms ease;
}

.difference-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 174, 239, 0.36);
    background:
        linear-gradient(150deg, rgba(255, 23, 68, 0.18), rgba(0, 174, 239, 0.1)),
        rgba(10, 18, 34, 0.9);
}

.difference-grid article:hover::before {
    opacity: 1;
}

.difference-grid span {
    position: relative;
    color: var(--neon-blue);
    font-weight: 900;
    text-transform: uppercase;
}

.difference-grid h3,
.difference-grid p {
    position: relative;
}

.difference-grid p {
    margin: 0;
    color: var(--text-soft);
}

.photo-flow {
    position: relative;
    overflow: hidden;
    padding: 28px 0;
    border-block: 1px solid rgba(174, 182, 200, 0.14);
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 1), rgba(5, 7, 13, 0.66) 18%, rgba(5, 7, 13, 0.66) 82%, rgba(5, 7, 13, 1)),
        rgba(5, 7, 13, 0.96);
}

.photo-flow::before,
.photo-flow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 18vw;
    pointer-events: none;
}

.photo-flow::before {
    left: 0;
    background: linear-gradient(90deg, var(--black), transparent);
}

.photo-flow::after {
    right: 0;
    background: linear-gradient(270deg, var(--black), transparent);
}

.photo-flow-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: photoFlow 38s linear infinite;
}

.photo-flow figure {
    width: clamp(240px, 25vw, 430px);
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(174, 182, 200, 0.16);
    border-radius: var(--radius);
    background: rgba(8, 15, 28, 0.86);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.photo-flow picture,
.photo-flow img {
    width: 100%;
    height: 100%;
}

.photo-flow img {
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04);
}

.scene-strip {
    position: relative;
    min-height: 58vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-block: 1px solid rgba(174, 182, 200, 0.14);
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.72), rgba(5, 7, 13, 0.18), rgba(5, 7, 13, 0.82)),
        url("../img/photos/hero-stack-3.jpg") center / cover fixed;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.58);
}

.scene-strip-red {
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.76), rgba(38, 18, 47, 0.25), rgba(5, 7, 13, 0.82)),
        url("../img/photos/audrey.jpg") center / cover fixed;
}

.scene-strip-compact {
    min-height: 42vh;
}

.scene-strip-compact .scene-strip-track {
    font-size: clamp(2.8rem, 7vw, 7rem);
    animation-duration: 86s;
}

.scene-strip-stage {
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.8), rgba(5, 7, 13, 0.2), rgba(5, 7, 13, 0.86)),
        url("../img/photos/filles.jpg") center 38% / cover fixed;
}

.scene-strip-blue {
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.86), rgba(0, 174, 239, 0.12), rgba(5, 7, 13, 0.82)),
        url("../img/photos/bassiste.jpg") center / cover fixed;
}

.scene-strip-waitlist {
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.88), rgba(255, 23, 68, 0.12), rgba(5, 7, 13, 0.82)),
        url("../img/photos/hero-stack-5.jpg") center / cover fixed;
}

.scene-strip-lyrics {
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.88), rgba(255, 242, 0, 0.08), rgba(5, 7, 13, 0.86)),
        url("../img/photos/482004297_1137155248422516_3892298158590150107_n.jpg") center / cover fixed;
}

.scene-strip-agenda {
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.78), rgba(5, 7, 13, 0.22), rgba(5, 7, 13, 0.84)),
        url("../img/photos/le-groupe.jpg") center / cover fixed;
}

.scene-strip-final {
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.82), rgba(38, 18, 47, 0.28), rgba(5, 7, 13, 0.86)),
        url("../img/photos/hero-stack-3.jpg") center / cover fixed;
}

.scene-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 28%, rgba(0, 174, 239, 0.22), transparent 26%),
        radial-gradient(circle at 24% 72%, rgba(255, 23, 68, 0.2), transparent 30%),
        linear-gradient(180deg, rgba(5, 7, 13, 0.04), rgba(5, 7, 13, 0.68));
}

.motion-ready .scene-strip {
    background-position: center calc(50% + var(--section-shift, 0px));
}

.scene-strip-track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0;
    width: max-content;
    padding-inline: 0;
    color: var(--white);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(3.4rem, 9vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 6px 34px rgba(0, 0, 0, 0.72);
    animation: marqueeSlow 96s linear infinite;
}

.scene-strip-track span {
    display: inline-flex;
    align-items: center;
}

.scene-strip-track span::after {
    content: ".";
    margin-left: 0.03em;
    margin-right: clamp(22px, 4vw, 56px);
    color: currentColor;
}

.scene-strip-track span:nth-child(3n+2) {
    color: var(--lyrics-yellow);
}

.scene-strip-track span:nth-child(3n) {
    color: var(--white);
}

.split-grid,
.lyrics-grid,
.contact-grid,
.full-service-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
}

.full-service-section {
    background: rgba(5, 7, 13, 0.94);
}

.full-service-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
}

.full-service-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    position: relative;
    min-height: 190px;
    display: grid;
    align-content: end;
    gap: 10px;
    padding: 24px;
    border: 1px solid rgba(174, 182, 200, 0.18);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 23, 68, 0.16), rgba(0, 174, 239, 0.08)),
        rgba(8, 15, 28, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.stat-card::before,
.proof-grid div::before,
.quote-form::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.14), transparent 34%);
    opacity: 0;
    transition: opacity 180ms ease;
    pointer-events: none;
}

.stat-card:hover::before,
.proof-grid div:hover::before,
.quote-form:hover::after {
    opacity: 1;
}

.stat-card > *,
.proof-grid div > * {
    position: relative;
    z-index: 1;
}

.stat-card-wide {
    grid-column: 1 / -1;
    min-height: 160px;
}

.stat-card strong {
    font-family: "Barlow Condensed", Impact, sans-serif;
    color: var(--lyrics-yellow);
    font-size: clamp(4rem, 8vw, 6.8rem);
    line-height: 0.82;
}

.stat-card span {
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
}

.reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.section-copy > p:not(.eyebrow):not(.pullquote):not(.lyrics-line) {
    max-width: 620px;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading p {
    max-width: 640px;
    color: var(--text-soft);
}

.with-action {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.check-grid,
.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 28px 0 0;
}

.check-list {
    margin: 24px 0 0;
}

.check-grid li,
.check-list li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.88);
}

.check-grid li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--neon-red);
}

.image-card,
.screen-card,
.video-shell,
.step-card,
.date-card,
.testimonial-card,
.quote-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 15, 28, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.step-card,
.date-card,
.testimonial-card,
.quote-form,
.klb-tools-card,
.klb-date-subscribe {
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.step-card:hover,
.date-card:hover,
.testimonial-card:hover,
.klb-tools-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 174, 239, 0.34);
    background: rgba(10, 18, 34, 0.9);
}

.image-card,
.screen-card,
.gallery-item {
    overflow: hidden;
}

.motion-ready .image-card img,
.motion-ready .screen-card img,
.motion-ready .gallery-feature img,
.motion-ready .video-preview img {
    transform: translate3d(0, var(--scroll-shift, 0), 0) scale(1.035);
    transition: transform 120ms linear;
    will-change: transform;
}

.image-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-card-tall img {
    aspect-ratio: 3 / 4;
}

.screen-card {
    padding: 10px;
}

.screen-card img {
    width: 100%;
    border-radius: 5px;
}

.video-section {
    background: rgba(5, 7, 13, 0.92);
}

.video-section .narrow > p:not(.eyebrow) {
    max-width: 650px;
    margin-inline: auto;
}

.video-shell {
    position: relative;
    margin-top: 32px;
    overflow: hidden;
    transform: perspective(1200px) rotateX(0deg);
}

.video-shell::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(0, 174, 239, 0.16),
        0 0 72px rgba(0, 174, 239, 0.16),
        0 0 110px rgba(255, 23, 68, 0.12);
    pointer-events: none;
}

.video-shell::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -24px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.28);
    filter: blur(28px);
    pointer-events: none;
}

.video-preview {
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    background: var(--black);
}

.video-preview picture,
.video-preview img,
.video-shell iframe,
.video-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.video-preview img,
.video-shell iframe,
.video-shell video {
    object-fit: cover;
}

.video-shell video {
    display: block;
    height: auto;
    background: var(--black);
}

.video-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 13, 0.28);
}

.play-button {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 1;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--neon-red);
    box-shadow: 0 0 0 10px rgba(255, 23, 68, 0.16);
    animation: pulsePlay 1.8s ease-in-out infinite;
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-42%, -50%);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid var(--white);
}

.teaser-proof {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.teaser-proof span {
    padding: 8px 12px;
    border: 1px solid rgba(0, 174, 239, 0.28);
    border-radius: 999px;
    background: rgba(5, 7, 13, 0.58);
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mid-cta-section {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 7vw, 82px) 0;
    border-block: 1px solid rgba(174, 182, 200, 0.14);
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.9), rgba(255, 23, 68, 0.16), rgba(0, 174, 239, 0.12)),
        url("../img/photos/514589096_1232051902266183_5899058541186376431_n.webp") center 58% / cover fixed;
}

.mid-cta-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 7, 13, 0.88), rgba(5, 7, 13, 0.54));
}

.mid-cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.mid-cta-grid h2 {
    max-width: 820px;
    font-size: clamp(2.7rem, 5.5vw, 5rem);
}

.mid-cta-grid .eyebrow {
    margin-bottom: 10px;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.steps-grid::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 58px;
    height: 2px;
    background: linear-gradient(90deg, rgba(180, 15, 46, 0.2), var(--neon-red), rgba(255, 59, 48, 0.2));
    opacity: 0.46;
}

.step-card {
    position: relative;
    min-height: 260px;
    padding: 24px;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 44%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--neon-red);
    font-weight: 900;
}

.step-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 22px 0;
    border: 1px solid rgba(0, 174, 239, 0.5);
    border-radius: 50%;
    color: var(--neon-blue);
    font-weight: 900;
}

.step-video {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 18px 0 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 174, 239, 0.28);
    border-radius: calc(var(--radius) - 2px);
    background: rgba(5, 7, 13, 0.82);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.step-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 58%, rgba(5, 7, 13, 0.44)),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.step-video video,
.step-video img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card h3,
.step-card p {
    position: relative;
    z-index: 1;
}

.step-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.app-section {
    background:
        linear-gradient(110deg, rgba(38, 18, 47, 0.42), rgba(7, 17, 31, 0.9)),
        var(--black);
}

.pullquote {
    margin: 26px 0 0;
    padding: 18px 20px;
    border-left: 3px solid var(--neon-red);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-weight: 700;
}

.lyrics-section {
    background:
        linear-gradient(180deg, rgba(5, 7, 13, 0.88), rgba(7, 17, 31, 0.82));
}

.lyrics-line {
    color: var(--lyrics-yellow);
    font-weight: 900;
    font-size: 1.2rem;
}

.lyrics-card {
    border-color: rgba(255, 242, 0, 0.24);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 14px;
}

.gallery-item {
    margin: 0;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel);
}

.gallery-feature {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(3) {
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item picture,
.gallery-item img {
    width: 100%;
    height: 100%;
}

.gallery-item img {
    object-fit: cover;
    transition: transform 280ms ease, filter 280ms ease;
}

.gallery-item:hover img {
    transform: translate3d(0, var(--scroll-shift, 0), 0) scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

@keyframes stageGlow {
    0% {
        transform: translate3d(-1.5%, -1%, 0) scale(1);
        opacity: 0.34;
    }

    100% {
        transform: translate3d(1.5%, 1%, 0) scale(1.05);
        opacity: 0.68;
    }
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translate3d(0, 34px, 0);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes pulsePlay {
    0%,
    100% {
        box-shadow: 0 0 0 10px rgba(255, 23, 68, 0.16), 0 0 40px rgba(255, 23, 68, 0.24);
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(255, 23, 68, 0.08), 0 0 64px rgba(255, 23, 68, 0.34);
        transform: translate(-50%, -50%) scale(1.04);
    }
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.45);
    }
}

@keyframes heroCardFloat {
    from {
        translate: 0 0;
    }

    to {
        translate: 0 -12px;
    }
}

@keyframes cueDrop {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 22px);
    }
}

@keyframes marqueeSlow {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes photoFlow {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.events-section {
    text-align: center;
}

.events-section .section-heading {
    margin-inline: auto;
}

.event-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0 auto 28px;
    max-width: 1040px;
}

.event-showcase-grid article {
    position: relative;
    min-height: 260px;
    display: grid;
    align-content: end;
    gap: 12px;
    overflow: hidden;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(174, 182, 200, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(5, 7, 13, 0.12), rgba(5, 7, 13, 0.82)),
        var(--event-photo, url("../img/photos/514589096_1232051902266183_5899058541186376431_n.webp")) center / cover;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 240ms ease, border-color 240ms ease, filter 240ms ease;
}

.event-showcase-grid article:nth-child(2) {
    --event-photo: url("../img/photos/600976020_1376755414462497_7851830475204260532_n.webp");
}

.event-showcase-grid article:nth-child(3) {
    --event-photo: url("../img/photos/536282464_1272172594920780_5891197150864253220_n.webp");
}

.event-showcase-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(0, 174, 239, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(5, 7, 13, 0.08), rgba(5, 7, 13, 0.92));
}

.event-showcase-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.24);
    filter: saturate(1.06);
}

.event-showcase-grid span,
.event-showcase-grid h3,
.event-showcase-grid p {
    position: relative;
    z-index: 1;
}

.event-showcase-grid span {
    color: var(--lyrics-yellow);
    font-weight: 900;
}

.event-showcase-grid p {
    margin: 0;
    color: var(--text-soft);
}

.event-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.events-section .center-action,
.testimonials-section .center-action {
    justify-content: center;
}

.partners-section {
    background: rgba(5, 7, 13, 0.95);
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.partner-logo-card {
    min-height: 148px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(174, 182, 200, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(8, 15, 28, 0.76);
    box-shadow: var(--shadow);
    text-align: center;
    backdrop-filter: blur(10px);
}

.partner-logo-card span {
    color: var(--neon-blue);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.partner-logo-card strong {
    color: var(--white);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.dates-section {
    background: rgba(7, 17, 31, 0.72);
}

.dates-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dates-alert {
    margin-top: 24px;
}

.klb-date-subscribe {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 14px;
    align-items: end;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(10, 18, 34, 0.86);
    box-shadow: var(--shadow);
}

.klb-date-subscribe h3,
.klb-date-subscribe p {
    grid-column: 1 / -1;
}

.klb-date-subscribe h3 {
    font-size: 1.8rem;
}

.klb-date-subscribe p {
    margin: 0;
}

.klb-date-subscribe label {
    margin: 0;
}

.klb-consent {
    grid-column: 1 / 3;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.klb-consent input {
    width: auto;
    margin-top: 4px;
}

.form-message-error {
    border-color: rgba(255, 23, 68, 0.42);
    background: rgba(255, 23, 68, 0.12);
}

.date-card {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px 20px;
    align-items: start;
    padding: 22px;
    overflow: hidden;
}

.date-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 23, 68, 0.12), transparent 38%, rgba(0, 174, 239, 0.08));
    opacity: 0;
    transition: opacity 220ms ease;
}

.date-card:hover::before {
    opacity: 1;
}

.date-card time,
.date-card div,
.date-card a {
    position: relative;
    z-index: 1;
}

.date-card-actions {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12px;
}

.date-card time {
    display: grid;
    place-items: center;
    width: 70px;
    min-height: 76px;
    border: 1px solid rgba(255, 23, 68, 0.42);
    border-radius: var(--radius);
    background: rgba(255, 23, 68, 0.08);
}

.date-card strong {
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}

.date-card span {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 900;
}

.date-card h3 {
    font-size: 1.45rem;
    max-width: 18ch;
    overflow-wrap: normal;
    word-break: normal;
}

.date-card p {
    margin: 5px 0 0;
    color: var(--text-soft);
}

.date-time {
    color: var(--white);
    font-weight: 800;
}

.date-card a {
    color: var(--neon-blue);
    font-weight: 900;
}

.date-card a.date-signup-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--radius);
    background: var(--neon-red);
    color: var(--white);
    font-size: 0.82rem;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(255, 23, 68, 0.24);
}

.testimonial-card {
    position: relative;
    padding: 26px;
    overflow: hidden;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -26px;
    right: 20px;
    color: rgba(255, 23, 68, 0.18);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 9rem;
    line-height: 1;
}

.stars {
    color: var(--lyrics-yellow);
    margin-top: 0;
}

blockquote {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04rem;
}

.author {
    margin-bottom: 0;
    font-weight: 800;
    color: var(--white);
}

.contact-section {
    background:
        linear-gradient(140deg, rgba(255, 23, 68, 0.12), rgba(0, 174, 239, 0.08)),
        rgba(5, 7, 13, 0.96);
}

.contact-grid {
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 10px;
    margin-top: 30px;
    color: var(--white);
    font-weight: 800;
}

.contact-details span {
    color: var(--text-soft);
    font-weight: 600;
}

.contact-social-links {
    margin-top: 22px;
}

.contact-trust-grid {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contact-trust-grid div {
    padding: 16px 18px;
    border: 1px solid rgba(174, 182, 200, 0.15);
    border-radius: var(--radius);
    background: rgba(8, 15, 28, 0.66);
    backdrop-filter: blur(10px);
}

.contact-trust-grid strong,
.contact-trust-grid span {
    display: block;
}

.contact-trust-grid strong {
    color: var(--white);
    font-weight: 900;
}

.contact-trust-grid span {
    margin-top: 4px;
    color: var(--text-soft);
}

.quote-form {
    position: relative;
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
    background: var(--panel-strong);
    overflow: hidden;
}

.quote-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 0%, rgba(255, 23, 68, 0.12), transparent 30%),
        radial-gradient(circle at 90% 12%, rgba(0, 174, 239, 0.12), transparent 28%);
    pointer-events: none;
}

.quote-form > * {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(174, 182, 200, 0.22);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.04);
    color: var(--white);
    caret-color: var(--white);
    padding: 13px 14px;
    color-scheme: dark;
    -webkit-text-fill-color: var(--white);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

select option {
    color: var(--black);
    -webkit-text-fill-color: var(--black);
}

textarea {
    resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--neon-blue);
    outline-offset: 3px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(0, 174, 239, 0.62);
    background:
        linear-gradient(180deg, rgba(0, 174, 239, 0.12), rgba(0, 174, 239, 0.08)),
        rgba(5, 7, 13, 0.92);
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.08);
}

input:not(:placeholder-shown),
textarea:not(:placeholder-shown),
select:valid {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045)),
        rgba(5, 7, 13, 0.92);
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border-color: rgba(0, 174, 239, 0.62);
    -webkit-text-fill-color: var(--white);
    caret-color: var(--white);
    box-shadow: 0 0 0 1000px rgba(5, 7, 13, 0.96) inset, 0 0 0 4px rgba(0, 174, 239, 0.08);
    transition: background-color 9999s ease-in-out 0s;
}

.hp-field {
    display: none;
}

.form-message {
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(0, 174, 239, 0.14);
    border: 1px solid rgba(0, 174, 239, 0.36);
    color: var(--white);
    font-weight: 800;
}

.site-footer {
    padding: 48px 0 22px;
    background: #03050a;
    border-top: 1px solid var(--line);
}

.footer-inner {
    width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 28px;
}

.footer-logo {
    width: 150px;
    height: 116px;
    object-fit: contain;
    object-position: left center;
}

.site-footer nav {
    display: grid;
    align-content: start;
    gap: 10px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 13px;
    border: 1px solid rgba(174, 182, 200, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 auto;
}

.social-links a:hover,
.social-links a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 23, 68, 0.62);
    background: rgba(255, 23, 68, 0.12);
    color: var(--white);
}

.footer-social-links {
    display: flex;
    align-content: start;
}

.footer-badge-social {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 16px;
}

.linkaband-badge {
    display: inline-flex;
    width: 92px;
    height: 92px;
    padding: 6px;
    border: 1px solid rgba(174, 182, 200, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.linkaband-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.linkaband-badge:hover,
.linkaband-badge:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 23, 68, 0.54);
    background: rgba(255, 255, 255, 0.12);
}

.footer-nav-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav-list li {
    margin: 0;
}

.site-footer a {
    color: var(--text-soft);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--white);
}

.site-footer p {
    max-width: 430px;
    color: var(--text-muted);
}

.footer-pro-link {
    margin-top: 16px;
}

.footer-pro-link a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(174, 182, 200, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.footer-pro-link a:hover,
.footer-pro-link a:focus-visible {
    border-color: rgba(0, 174, 239, 0.52);
    background: rgba(0, 174, 239, 0.1);
    color: var(--white);
}

.footer-seo-links {
    max-width: var(--container);
    margin: 26px auto 0;
    padding: 20px max(18px, calc((100vw - 1120px) / 2)) 0;
    border-top: 1px solid rgba(174, 182, 200, 0.12);
}

.footer-seo-links strong {
    display: block;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.footer-seo-links div {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 14px;
}

.footer-seo-links a {
    font-size: 0.84rem;
}

.klb-page-main {
    min-height: 70vh;
    background:
        linear-gradient(180deg, rgba(5, 7, 13, 0.78), rgba(5, 7, 13, 0.98)),
        url("../img/logo/logo_neon_fond_brique.webp") center top / 1100px auto fixed;
}

.klb-page-hero {
    position: relative;
    isolation: isolate;
    padding: 154px 0 74px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(255, 23, 68, 0.14), rgba(0, 174, 239, 0.08)),
        linear-gradient(90deg, rgba(5, 7, 13, 0.92), rgba(5, 7, 13, 0.68)),
        url("../img/photos/481974507_1137147225089985_7230154511315540136_n.webp") center 36% / cover,
        rgba(5, 7, 13, 0.76);
}

.klb-page-hero h1 {
    max-width: 900px;
    font-size: clamp(3.4rem, 8vw, 6.4rem);
    text-transform: uppercase;
}

.klb-page-content {
    padding: clamp(58px, 8vw, 100px) 0;
}

.klb-page-content .container {
    max-width: 1040px;
}

.klb-page-content .container > *:not(.klb-tools-gallery):not(.klb-tools-list):not(.klb-tools-contact) {
    max-width: 820px;
}

.klb-page-content h2,
.klb-page-content h3 {
    margin-top: 1.2em;
    color: var(--white);
}

.klb-page-content p,
.klb-page-content li {
    color: var(--text-soft);
}

.klb-page-content ul,
.klb-page-content ol {
    padding-left: 1.2rem;
}

.klb-page-content a {
    color: var(--neon-blue);
    font-weight: 800;
}

.seo-hero {
    position: relative;
    isolation: isolate;
    min-height: 94svh;
    display: grid;
    align-items: center;
    padding: 130px 0 80px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.94), rgba(5, 7, 13, 0.68) 48%, rgba(5, 7, 13, 0.34)),
        linear-gradient(180deg, rgba(5, 7, 13, 0.2), rgba(5, 7, 13, 0.92)),
        url("../img/photos/514589096_1232051902266183_5899058541186376431_n.webp") center / cover fixed;
}

.seo-hero-grid,
.seo-cards {
    display: grid;
    gap: clamp(22px, 4vw, 42px);
}

.seo-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    align-items: end;
}

.seo-hero h1 {
    max-width: 920px;
    font-size: clamp(3.6rem, 8vw, 7rem);
}

.seo-hero p:not(.eyebrow) {
    max-width: 720px;
    color: var(--text-soft);
    font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.seo-hero-card {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(174, 182, 200, 0.2);
    border-radius: var(--radius);
    background: rgba(8, 15, 28, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.seo-hero-card strong {
    color: var(--lyrics-yellow);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(3.2rem, 7vw, 5.4rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.seo-hero-card span {
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
}

.seo-section {
    background: rgba(5, 7, 13, 0.94);
}

.seo-section::before {
    --section-photo: url("../img/photos/536279565_1272174071587299_8329913675780979424_n.webp");
    opacity: 0.24;
}

.seo-section::after {
    opacity: 1;
}

.seo-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.klb-page-content .wp-block-group,
.klb-page-content .wp-block-columns {
    margin-block: 24px;
}

.copyright {
    width: var(--container);
    margin: 28px auto 0;
    font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}
