/* ============================================
   ATELIER FLOWRIDER - MAIN STYLESHEET
   Consolidated from static site: styles.css + index.html inline + contact.html inline
   ============================================ */

/* ============================================
   SELF-HOSTED FONTS
   ============================================ */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-regular.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-700.woff2') format('woff2'); }
@font-face { font-family: 'Righteous'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/righteous-v17-latin_latin-ext-regular.woff2') format('woff2'); }

/* ============================================
   CSS RESET & VARIABLES
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary: #000000;
    --bg-secondary: #000000;
    --bg-card: #000000;
    --bg-card-hover: #000000;
    --text-primary: #F0F0F0;
    --text-secondary: #B0B0C8;
    --text-muted: #70708A;
    --gradient-start: #C8F135;
    --gradient-mid: #9ACA1E;
    --gradient-end: #7C3AED;
    --border-color: rgba(200, 241, 53, 0.15);
    --border-hover: rgba(200, 241, 53, 0.35);
    --font-heading: 'Righteous', cursive;
    --font-body: 'Poppins', sans-serif;
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1400px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(90deg, #7C3AED, #C8F135);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-secondary { background: #000000; }
.text-center { text-align: center; }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 999;
    padding: 12px 24px;
    background: var(--gradient-start);
    color: #fff;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: var(--bg-card);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: var(--text-primary);
    display: block;
    font-size: 0.875rem;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-outline {
    text-decoration: none;
    line-height: 1.2;
    box-sizing: border-box;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-start);
    color: #1A1A2E;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); background: #d4f94a; box-shadow: 0 8px 30px rgba(200, 241, 53, 0.4); }
.btn-primary:focus-visible { outline: 2px solid var(--gradient-end); outline-offset: 3px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 0;
    box-shadow:
        -4px 0 12px rgba(124, 58, 237, 0.4),
         4px 0 12px rgba(200, 241, 53, 0.4),
         0 0 8px rgba(124, 58, 237, 0.2),
         0 0 8px rgba(200, 241, 53, 0.2);
}
.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 5px;
    background: linear-gradient(90deg, #7C3AED, #C8F135);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow:
        -6px 0 20px rgba(124, 58, 237, 0.6),
         6px 0 20px rgba(200, 241, 53, 0.6),
         0 0 14px rgba(124, 58, 237, 0.3),
         0 0 14px rgba(200, 241, 53, 0.3);
}
.btn-outline:focus-visible { outline: 2px solid var(--gradient-end); outline-offset: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #000000;
    border: none;
    border-radius: 0;
    padding: 12px 24px;
    transition: var(--transition);
}
.navbar::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, #000000, transparent);
    pointer-events: none;
}
.navbar.scrolled {
    background: #000000;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-logo svg { width: 36px; height: 36px; }
.navbar-logo-img { height: 44px; width: auto; }
.navbar-logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 1px;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.navbar-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    cursor: pointer;
}
.navbar-links a:hover { color: var(--text-primary); }
.navbar-links a.active { color: var(--text-primary); }
.navbar-cta {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border: none !important;
    border-radius: 5px !important;
    position: relative;
    z-index: 0;
    box-shadow:
        -4px 0 12px rgba(124, 58, 237, 0.4),
         4px 0 12px rgba(200, 241, 53, 0.4),
         0 0 8px rgba(124, 58, 237, 0.2),
         0 0 8px rgba(200, 241, 53, 0.2) !important;
}
.navbar-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 5px;
    background: linear-gradient(90deg, #7C3AED, #C8F135);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        -6px 0 20px rgba(124, 58, 237, 0.6),
         6px 0 20px rgba(200, 241, 53, 0.6),
         0 0 14px rgba(124, 58, 237, 0.3),
         0 0 14px rgba(200, 241, 53, 0.3) !important;
}

/* Dropdown navigation */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    padding: 0;
}
.nav-dropdown-toggle svg { transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active { color: var(--text-primary); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: rgba(20, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover {
    background: rgba(200, 241, 53, 0.15);
    color: var(--text-primary);
}
.nav-dropdown-menu a.active {
    color: var(--text-primary);
    background: rgba(200, 241, 53, 0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Language switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}
.language-switcher-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 6px;
    transition: var(--transition);
}
.language-switcher-link:hover { color: var(--text-primary); }
.language-switcher-active {
    color: var(--text-primary);
    background: transparent;
    border: none;
    position: relative;
    z-index: 0;
}
.language-switcher-active::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 6px;
    background: linear-gradient(90deg, #7C3AED, #C8F135);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   HOMEPAGE HERO (Video)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.lightning-separator {
    width: 100%;
    height: 40px;
    display: block;
    margin: 0;
    position: relative;
    z-index: 4;
    margin-top: -20px;
    margin-bottom: -20px;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.38) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
}
.hero-video-overlay::after {
    display: none;
}
.speed-lines {
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 200px;
    transform: translateY(-50%);
    overflow: hidden;
    opacity: 0.18;
    z-index: 2;
}
.speed-lines span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), var(--gradient-end), transparent);
    animation: speedLine 3s linear infinite;
}
.speed-lines span:nth-child(1) { top: 20%; width: 60%; animation-delay: 0s; }
.speed-lines span:nth-child(2) { top: 40%; width: 80%; animation-delay: 0.5s; }
.speed-lines span:nth-child(3) { top: 55%; width: 50%; animation-delay: 1s; }
.speed-lines span:nth-child(4) { top: 70%; width: 70%; animation-delay: 1.5s; }
.speed-lines span:nth-child(5) { top: 85%; width: 40%; animation-delay: 2s; }
@keyframes speedLine {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(200%); opacity: 0; }
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}
.hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: -8px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--gradient-end);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero-brands {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero-brands-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}
.hero-brands-list {
    display: flex;
    align-items: flex-end;
    gap: 28px;
}
.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: var(--transition);
}
.brand-item:hover { opacity: 1; }
.brand-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
.brand-item:hover .brand-name { color: var(--text-secondary); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SPLIT HERO (text left, image right) - Inner pages
   ============================================ */
.split-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: #000000;
}
.split-hero--video {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
}
.split-hero .container { position: relative; z-index: 1; }
.split-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.split-hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.split-hero-brand-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.split-hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.split-hero-text h1 .gradient-text {
    text-shadow: 0 0 40px rgba(200, 241, 53, 0.2);
}
.split-hero-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 500px;
}
.split-hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.split-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.split-hero-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-width: 540px;
    margin: 0 auto;
}
.split-hero-img::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 4px;
}
.split-hero-img::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08));
    border-radius: 4px;
    filter: blur(40px);
    z-index: -1;
}
.split-hero-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    z-index: 1;
}
.split-hero-dots {
    display: block;
    position: absolute;
    inset: -6px;
    z-index: 2;
    pointer-events: none;
}
.split-hero-dots::before,
.split-hero-dots::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--gradient-start);
    border-style: solid;
    border-width: 0;
}
.split-hero-dots::before {
    top: 0; left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
}
.split-hero-dots::after {
    bottom: 0; right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
}
.split-hero-bg-accent {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 0, 0, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(0, 0, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}
/* Video variant — hide static image & bg-accent, keep left-aligned like home */
.split-hero--video .split-hero-bg-accent { display: none; }
.split-hero--video .split-hero-visual { display: none; }
.split-hero--video .split-hero-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
}
.split-hero--video .hero-video-overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.5) 90%, rgba(0,0,0,0.5) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.split-hero--image .hero-video-overlay {
    background: linear-gradient(90deg, #000000 0%, #000000 30%, transparent 100%);
}
.split-hero--image .hero-video-wrap {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width);
}
.split-hero--image .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
    min-width: unset;
    min-height: unset;
}

/* ============================================
   PAGE HERO (simple, centered)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.12) 0%, transparent 70%);
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.page-hero-breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
    cursor: pointer;
}
.page-hero-breadcrumb a:hover { color: var(--text-secondary); }
.page-hero-breadcrumb svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
}
.page-hero-breadcrumb .current { color: var(--gradient-start); font-weight: 500; }
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 20px;
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}
.page-hero-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end), transparent);
    margin-top: 48px;
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}
.section-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gradient-start);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.7;
}
.section-header { margin-bottom: 48px; }

/* ============================================
   WHY CARDS (shared across pages)
   ============================================ */
.why-section { background: #000000; }
.why-header { text-align: center; margin-bottom: 64px; }
.why-header .section-desc { margin: 0 auto; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: #000000;
    border: 1px solid #7C3AED;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.why-card::before {
    display: none;
    transition: opacity var(--transition);
}
.why-card-img {
    width: 100%;
}
.why-card-img img {
    width: 100%;
    height: auto;
    display: block;
}
.why-card-content {
    flex: 1;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .why-card-img { }
}

/* ============================================
   HOMEPAGE SERVICES GRID
   ============================================ */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.services-section { background: #000000; }
.service-card {
    background: #000000;
    border: 1px solid #7C3AED;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card-img {
    width: 100%;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: auto;
    display: block;
}
.service-card-content {
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card-content p + .service-card-cta {
    margin-top: 20px;
    align-self: flex-start;
}
.service-card-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: #7C3AED;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 16px;
}
.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #7C3AED, #C8F135);
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    flex: 1;
}
.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
}
.service-tag {
    padding: 15px 20px;
    background: var(--bg-primary);
    border: none;
    border-radius: 5px;
    font-size: 0.72rem;
    color: var(--text-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 0;
    box-shadow:
        -4px 0 10px rgba(124, 58, 237, 0.35),
         4px 0 10px rgba(200, 241, 53, 0.35),
         0 0 6px rgba(124, 58, 237, 0.15),
         0 0 6px rgba(200, 241, 53, 0.15);
    transition: var(--transition);
}
.service-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 5px;
    background: linear-gradient(90deg, #7C3AED, #C8F135);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
.service-tag:hover {
    box-shadow:
        -6px 0 16px rgba(124, 58, 237, 0.5),
         6px 0 16px rgba(200, 241, 53, 0.5),
         0 0 10px rgba(124, 58, 237, 0.25),
         0 0 10px rgba(200, 241, 53, 0.25);
}

/* ============================================
   HOMEPAGE STATS
   ============================================ */
.stats-section {
    background: #000000;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gradient-start), var(--gradient-end), transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item {
    padding: 32px 16px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-color);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 8px;
}
.stat-number.gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #C8F135;
    background-clip: unset;
    color: #C8F135;
}
.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}
.stat-sub {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 4px;
}

/* ============================================
   HOMEPAGE TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
}
.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { background: #000000; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-intro-content .section-desc { margin-bottom: 32px; }
.about-highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.about-highlight-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
.about-highlight-box blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--gradient-start);
}
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.about-stat { text-align: center; padding: 16px 8px; }
.about-stat-number { font-family: var(--font-heading); font-size: 2rem; }
.about-stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; }

/* Split layout (used in intro sections) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.highlight-box {
    background: #000000;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.highlight-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
.highlight-box blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 24px;
    border-left: 3px solid var(--gradient-start);
}

/* Vision/Mission cards */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}
.vm-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(200, 241, 53, 0.08);
}
.vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity var(--transition);
}
.vm-card:hover::before { opacity: 1; }
.vm-card-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.15), rgba(124, 58, 237, 0.1));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
}
.vm-card-icon svg { width: 28px; height: 28px; stroke: var(--gradient-end); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vm-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 16px; }
.vm-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* Values */
.values-section { background: var(--bg-secondary); }
.values-header { text-align: center; margin-bottom: 56px; }
.values-header .section-desc { margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}
.value-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); }
.value-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.12), rgba(124, 58, 237, 0.08));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.value-card-icon svg { width: 24px; height: 24px; stroke: var(--gradient-end); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 10px; }
.value-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }

/* ============================================
   PERFORMANCE PAGES (stages, brands)
   ============================================ */
.stage-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}
.stage-filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 2px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}
.stage-filter-btn:hover {
    border-color: rgba(124, 58, 237, 0.6);
    color: var(--text-primary);
}
.stage-filter-btn.active {
    background: var(--gradient-start);
    border-color: var(--gradient-start);
    color: #1A1A2E;
    font-weight: 600;
}
.stage-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 32px;
}
.stage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.4);
    background: #000000;
    position: relative;
    transition: border-color 0.3s ease;
}
.stage-row:hover {
    border-color: rgba(124, 58, 237, 0.7);
}
.stage-row--reversed {
    direction: rtl;
}
.stage-row--reversed > * {
    direction: ltr;
}
.stage-row-visual {
    position: relative;
    overflow: hidden;
}
.stage-row-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 6s ease;
}
.stage-row:hover .stage-row-visual img {
    transform: scale(1.03);
}
.stage-row-content {
    padding: 48px 40px;
}
.stage-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stage-badge.stage-1 { background: rgba(249, 115, 22, 0.15); color: #f97316; border: 1px solid rgba(249, 115, 22, 0.3); }
.stage-badge.stage-2 { background: rgba(34, 197, 94, 0.15); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.stage-badge.stage-3 { background: rgba(59, 130, 246, 0.15); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }
.stage-badge.stage-4 { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; border: 1px solid rgba(139, 92, 246, 0.3); }
.stage-badge.stage-4plus { background: rgba(168, 85, 47, 0.15); color: #c87533; border: 1px solid rgba(168, 85, 47, 0.3); }
.stage-badge.stage-5 { background: rgba(255, 255, 255, 0.1); color: #e2e8f0; border: 1px solid rgba(255, 255, 255, 0.2); }
.stage-row-content h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 16px; }
.stage-row-content p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }
.stage-mods { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-color); }
.stage-mods li {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.6;
    padding: 4px 0 4px 20px;
    position: relative;
    list-style: none;
}
.stage-mods li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 6px; height: 6px;
    border-radius: 2px;
    background: var(--gradient-end);
}
.stage-punch {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}
.stage-note {
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.brand-card {
    background: #000000;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition);
}
.brand-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.brand-card h4, .brand-card h3 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 10px; color: var(--text-primary); }
.brand-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-detail-header {
    text-align: center;
    margin-bottom: 48px;
}
.service-detail-header .section-desc {
    margin: 0 auto;
    max-width: 700px;
}
.service-detail-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-detail-card {
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 4px;
    padding: 32px 24px;
    position: relative;
}
.service-detail-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 12px;
}
.service-detail-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}
.rebuild-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.rebuild-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rebuild-content .section-desc { max-width: none; }
.rebuild-visual {
    position: relative;
    min-height: 400px;
}
.rebuild-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rebuild-benefits { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.rebuild-benefit { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 0.95rem; }
.rebuild-benefit svg { flex-shrink: 0; }
.service-features { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.service-feature-item { display: flex; gap: 14px; align-items: flex-start; }
.service-feature-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.12), rgba(124, 58, 237, 0.08));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.service-feature-icon svg { width: 16px; height: 16px; stroke: var(--gradient-end); fill: none; stroke-width: 2; }
.service-feature-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.service-feature-text p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content-inner {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content-inner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--text-primary);
}
.legal-content-inner h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--text-primary);
}
.legal-content-inner p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.legal-content-inner ul,
.legal-content-inner ol {
    color: var(--text-secondary);
    margin: 0 0 16px 24px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.legal-content-inner a {
    color: var(--gradient-end);
    text-decoration: underline;
}

/* ============================================
   SERVICE SHOWCASE
   ============================================ */
.service-showcase {
    padding: 100px 0 100px;
    position: relative;
    background: #000000;
}
.service-showcase::before {
    display: none;
}
.service-showcase-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}
.service-showcase-row {
    border-radius: 0;
    overflow: hidden;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 0;
    transition: border-color 0.3s ease;
    background: #000000;
}
.service-showcase-row:hover {
    border-color: transparent;
}
.service-showcase-row:last-child {
    margin-bottom: 0;
}
.service-showcase-row--reversed {
    direction: rtl;
}
.service-showcase-row--reversed > * {
    direction: ltr;
}
.service-showcase-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}
.service-showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    transition: transform 6s ease;
}
.service-showcase-row:hover .service-showcase-visual img {
    transform: scale(1.03);
}
.service-showcase-visual::after {
    display: none;
}
.service-showcase-row--reversed .service-showcase-visual::after {
    display: none;
}
.service-showcase-dots {
    display: none;
}
.service-showcase-content {
    position: relative;
    z-index: 1;
    padding: 56px 48px;
}
.service-showcase-brand-logo {
    height: 32px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}
.service-showcase-content .section-label {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gradient-start);
    font-size: 0.75rem;
    letter-spacing: 4px;
}
.service-showcase-content h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}
.service-showcase-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    font-size: 0.92rem;
}
.service-showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.service-showcase-content .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-color: rgba(200, 241, 53, 0.5);
}
.service-showcase-content .btn-outline:hover {
    border-color: var(--gradient-start);
    background: rgba(200, 241, 53, 0.1);
}

/* Corner accent marks — premium technical detail */
.card-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    z-index: 2;
    pointer-events: none;
}
.card-corner::before,
.card-corner::after {
    content: '';
    position: absolute;
    background: var(--gradient-start);
}
.card-corner::before { /* horizontal line */
    height: 2px;
    width: 100%;
}
.card-corner::after { /* vertical line */
    width: 2px;
    height: 100%;
}
.card-corner--tl { top: -1px; left: -1px; }
.card-corner--tl::before { top: 0; left: 0; }
.card-corner--tl::after { top: 0; left: 0; }
.card-corner--tr { top: -1px; right: -1px; }
.card-corner--tr::before { top: 0; right: 0; }
.card-corner--tr::after { top: 0; right: 0; }
.card-corner--bl { bottom: -1px; left: -1px; }
.card-corner--bl::before { bottom: 0; left: 0; }
.card-corner--bl::after { bottom: 0; left: 0; }
.card-corner--br { bottom: -1px; right: -1px; }
.card-corner--br::before { bottom: 0; right: 0; }
.card-corner--br::after { bottom: 0; right: 0; }

/* ============================================
   PIECES PAGE
   ============================================ */
.pieces-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.piece-cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}
.piece-cat-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); }
.piece-cat-card-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.15), rgba(124, 58, 237, 0.1));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.piece-cat-card-icon svg { width: 26px; height: 26px; stroke: var(--gradient-end); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.piece-cat-card h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 12px; }
.piece-cat-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }
.piece-cat-card .btn-outline { margin-top: 20px; padding: 10px 24px; font-size: 0.82rem; }

/* ============================================
   VETEMENTS / PRODUCTS
   ============================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    transition: var(--transition);
    cursor: default;
}
.product-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); }
.product-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.12), rgba(124, 58, 237, 0.08));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.product-card-icon svg { width: 24px; height: 24px; stroke: var(--gradient-end); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.product-card h3 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 10px; }
.product-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }

/* ============================================
   EVENEMENTIEL
   ============================================ */
.event-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-content { max-width: 800px; margin: 0 auto; text-align: center; }
.community-content .section-desc { max-width: 100%; margin: 0 auto 20px; }
.community-content .section-desc:last-of-type { margin-bottom: 40px; }
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.community-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.community-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.community-card-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.12), rgba(124, 58, 237, 0.08));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.community-card-icon svg { width: 28px; height: 28px; color: var(--gradient-end); }
.community-card h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 12px; color: var(--text-primary); }
.community-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.community-cta { text-align: center; margin-top: 48px; }
.community-tagline { color: var(--text-secondary); font-size: 1.05rem; font-style: italic; margin-bottom: 24px; }

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    background: #000000;
}
.cta-section::before {
    display: none;
    pointer-events: none;
}
.cta-accent-line {
    width: 48px;
    height: 2px;
    background: var(--gradient-start);
    margin: 0 auto 28px;
}
.cta-section .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
}
.cta-section .section-desc { margin: 0 auto; max-width: 560px; }
.cta-section .cta-actions { margin-top: 32px; }
.cta-box {
    background: #000000;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    display: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box .section-title { margin-bottom: 16px; }
.cta-box .section-desc { margin: 0 auto 36px; max-width: 600px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.cta-actions .btn-primary,
.cta-actions .btn-outline { display: inline-flex; align-items: center; justify-content: center; text-decoration: none !important; }

/* ============================================
   CASE STUDY TEASER
   ============================================ */
.cs-teaser { padding: 80px 0; }
.cs-teaser-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.cs-teaser-card:hover { border-color: var(--accent); }
.cs-teaser-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cs-teaser-content .section-label { display: inline-block; }
.cs-teaser-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}
.cs-teaser-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
.cs-teaser-stats {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(200, 241, 53, 0.06);
    border: 1px solid rgba(200, 241, 53, 0.15);
    border-radius: 8px;
    padding: 10px 16px;
    letter-spacing: 0.02em;
}
.cs-teaser-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.cs-teaser-visual {
    height: 100%;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}
.cs-teaser-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .cs-teaser { padding: 48px 0; }
    .cs-teaser-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .cs-teaser-content { padding: 32px 24px; }
    .cs-teaser-visual { min-height: 240px; order: -1; }
    .cs-teaser-title { font-size: 1.35rem; }
}

/* ============================================
   GALLERY CAROUSEL
   ============================================ */
.gallery-carousel {
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
}
.gallery-carousel::before,
.gallery-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.gallery-carousel::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.gallery-carousel::after { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }
.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.gallery-track.is-dragging {
    cursor: grabbing;
    transition: none;
}
.gallery-slide {
    flex-shrink: 0;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
}
.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    pointer-events: none;
}
.gallery-slide:hover img { transform: scale(1.05); }
/* Arrow buttons */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(10, 10, 15, 0.85);
    color: var(--gradient-start);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gallery-arrow:hover {
    background: rgba(200, 241, 53, 0.12);
    border-color: var(--gradient-start);
    transform: translateY(-50%) scale(1.1);
}
.gallery-arrow--prev { left: 16px; }
.gallery-arrow--next { right: 16px; }
.gallery-arrow:disabled {
    opacity: 0.3;
    pointer-events: none;
}
/* Lightbox arrows */
.gallery-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}
.gallery-lightbox-arrow:hover {
    background: rgba(200, 241, 53, 0.15);
    border-color: var(--gradient-start);
    color: var(--gradient-start);
}
.gallery-lightbox-arrow--prev { left: 20px; }
.gallery-lightbox-arrow--next { right: 20px; }
/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: pointer;
}
.gallery-lightbox.active {
    display: flex;
}
.gallery-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    cursor: default;
}
.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}
@media (max-width: 768px) {
    .gallery-slide { width: 260px; }
    .gallery-carousel { padding: 40px 0; }
    .gallery-arrow { width: 40px; height: 40px; }
    .gallery-arrow--prev { left: 8px; }
    .gallery-arrow--next { right: 8px; }
    .gallery-lightbox-arrow { width: 40px; height: 40px; }
    .gallery-lightbox-arrow--prev { left: 8px; }
    .gallery-lightbox-arrow--next { right: 8px; }
}

/* ============================================
   CONTACT PAGE - BENTO GRID
   ============================================ */
/* ── Contact info + map layout ─────────── */
.contact-section { padding: 100px 0 0; }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.contact-info-col {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
}
.contact-info-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }
a.contact-info-item:hover { color: var(--gradient-end); }
a.contact-info-item:hover svg { stroke: var(--gradient-end); }
.contact-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--text-muted);
    transition: stroke var(--transition);
}
.contact-info-item div { display: flex; flex-direction: column; gap: 4px; }
.contact-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}
.contact-info-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}
.contact-info-social {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
}
.contact-social-link {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    transition: var(--transition);
}
.contact-social-link:hover {
    border-color: var(--gradient-end);
    color: var(--gradient-end);
}
.contact-map-col {
    position: relative;
    min-height: 480px;
}
.contact-map-col iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0.85) contrast(1.1) saturate(0.3) hue-rotate(180deg) invert(1);
}

/* Contact form */
.contact-form-section { padding-top: 60px; }
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.contact-form-intro { padding-top: 8px; }
.contact-form-intro .section-label { margin-bottom: 12px; display: block; }
.contact-form-intro .section-title { margin-bottom: 16px; }
.contact-form-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.contact-form-response-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 4px;
    padding: 40px;
}
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form-grid .form-group.full-width { grid-column: 1 / -1; }

/* Contact / Map compact section */
.contact-map-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; margin-top: 48px; }
.contact-map-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-map-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.contact-map-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateX(4px); }
.contact-map-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.15), rgba(124, 58, 237, 0.1));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-map-card-icon svg { width: 20px; height: 20px; stroke: var(--gradient-end); }
.contact-map-card-body h4 { font-family: var(--font-heading); font-size: 0.9rem; margin-bottom: 2px; color: var(--text-primary); }
.contact-map-card-body p { color: var(--text-secondary); font-size: 0.85rem; }
.contact-map-embed {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-height: 340px;
    background: var(--bg-card);
}
.contact-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: block;
    filter: brightness(0.85) contrast(1.1) saturate(0.3) hue-rotate(180deg) invert(1);
}

/* Forms (shared) */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(200, 241, 53, 0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='2,4 6,8 10,4' fill='none' stroke='%239a9ab8' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-submit { margin-top: 24px; width: 100%; justify-content: center; }

/* Step 2 confirmation */
.contact-step2 {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 48px 24px;
}
.contact-step2 h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-primary); }
.contact-step2 p { color: var(--text-secondary); max-width: 500px; line-height: 1.7; }
.contact-step2-note {
    background: rgba(200, 241, 53, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 16px 24px;
}
.contact-step2-icon { margin-bottom: 8px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000000;
    border-top: 1px solid var(--border-color);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 300px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.footer-social-link:hover { background: rgba(200, 241, 53, 0.15); border-color: var(--gradient-start); transform: translateY(-2px); }
.footer-social-link svg { width: 18px; height: 18px; fill: var(--text-secondary); }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 20px; }
.footer-col ul,
.footer-col .menu { display: flex; flex-direction: column; gap: 12px; }
.footer-col a,
.footer-col .menu-item a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: color var(--transition);
    cursor: pointer;
}
.footer-col a:hover,
.footer-col .menu-item a:hover { color: var(--text-primary); }
/* Remove default WP menu list styles */
.footer-col .menu { list-style: none; padding: 0; margin: 0; }
.footer-col .menu-item { list-style: none; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}
.footer-contact-item svg {
    width: 16px; height: 16px;
    stroke: var(--gradient-end);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.8rem; transition: color var(--transition); cursor: pointer; }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ============================================
   HERO PROOF BADGES
   ============================================ */
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    animation: fadeInUp 0.6s ease-out 0.35s both;
}
.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}
.hero-proof-item svg {
    stroke: var(--gradient-start);
    flex-shrink: 0;
}

/* ============================================
   SERVICE CARD MICRO-ANIMATIONS
   ============================================ */
.service-card-img img {
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.05);
}
.service-card {
    transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    border-color: rgba(200, 241, 53, 0.4);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15), 0 0 20px rgba(200, 241, 53, 0.1);
}
.service-card h3::after {
    transition: width 0.4s ease;
    width: 50px;
}
.service-card:hover h3::after {
    width: 100%;
}
.service-card-cta svg {
    transition: transform 0.3s ease;
}
.service-card:hover .service-card-cta svg {
    transform: translateX(4px);
}

/* Service showcase row animations */
.service-showcase-row .btn-outline svg {
    transition: transform 0.3s ease;
}
.service-showcase-row:hover .btn-outline svg {
    transform: translateX(4px);
}
.service-showcase-row {
    transition: border-color var(--transition), box-shadow var(--transition);
}
.service-showcase-row:hover {
    border-color: rgba(200, 241, 53, 0.3);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.12), 0 0 24px rgba(200, 241, 53, 0.08);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.entry-content { max-width: var(--max-width); }
.entry-content > * { max-width: 100%; }

/* WP alignment classes */
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.aligncenter { text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { max-width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .service-detail-cards { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-cards { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .pieces-categories { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .event-features { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-map-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .split-layout { grid-template-columns: 1fr; gap: 32px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-map-col { min-height: 300px; }
    .contact-form-row { grid-template-columns: 1fr; gap: 32px; }
    .service-showcase-row { grid-template-columns: 1fr; }
    .service-showcase-row--reversed { direction: ltr; }
    .service-showcase-visual { min-height: 250px; }
    .service-showcase-content { padding: 36px 28px; }
    .rebuild-row { grid-template-columns: 1fr; border: none; border-radius: 0; background: #000000; margin-left: -24px; margin-right: -24px; }
    .rebuild-visual { min-height: 0; height: auto; position: relative; }
    .rebuild-visual img { position: static; height: auto; object-fit: contain; }
    .rebuild-visual::before,
    .rebuild-visual::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 45px;
        z-index: 1;
        pointer-events: none;
    }
    .rebuild-visual::before {
        top: 0;
        background: linear-gradient(to bottom, #000000, transparent);
    }
    .rebuild-visual::after {
        bottom: 0;
        background: linear-gradient(to top, #000000, transparent);
    }
    .rebuild-content { padding: 24px; }
    .card-corner { display: none; }
}

@media (max-width: 768px) {
    .navbar-links { display: none; }
    .mobile-toggle { display: flex; }
    .navbar-links.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin-top: 12px;
        padding: 20px;
        gap: 12px;
    }
    .navbar-links.active .navbar-cta { align-self: stretch; text-align: center; }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(200, 241, 53, 0.06);
        backdrop-filter: none;
        border: none;
        padding: 4px 0 4px 12px;
        min-width: auto;
        border-radius: 8px;
        display: none;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: flex; }
    .nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
    .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: none; }

    .hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
    .lightning-separator { height: 40px; margin: 24px 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero-proof { flex-direction: column; gap: 12px; margin-top: 28px; }
    .hero-brands { flex-direction: column; align-items: flex-start; gap: 16px; }
    .split-hero { padding: 130px 0 60px; }
    .split-hero--video { min-height: auto; padding: 120px 0 60px; }
    .split-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .split-hero-text { align-items: center; }
    .split-hero-text p { max-width: 100%; }
    .split-hero-cta { justify-content: center; }
    .split-hero-img { max-width: 320px; }
    .split-hero-dots { display: none !important; }
    .page-hero { padding: 120px 0 60px; }
    .section { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 0; }
    .services-section .container { padding: 0; }
    .services-header { padding: 0 24px; }
    .services-grid .service-card { border: none; border-radius: 0; background: #000000; }
    .services-grid .service-card-content { padding: 24px; }
    .services-grid .service-card-img { position: relative; }
    .services-grid .service-card-img::before,
    .services-grid .service-card-img::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 45px;
        z-index: 1;
        pointer-events: none;
    }
    .services-grid .service-card-img::before {
        top: 0;
        background: linear-gradient(to bottom, #000000, transparent);
    }
    .services-grid .service-card-img::after {
        bottom: 0;
        background: linear-gradient(to top, #000000, transparent);
    }
    .why-grid { grid-template-columns: 1fr; gap: 0; }
    .why-card { border: none; border-radius: 0; background: #000000; }
    .why-card-content { padding: 24px 0; }
    .why-card-img { height: auto; }
    .why-card-img img { height: auto; object-fit: contain; }
    .why-section .container { padding: 0; }
    .why-header { padding: 0 24px; }
    .why-card-content { padding: 24px; }
    .why-card-img { position: relative; }
    .why-card-img::before,
    .why-card-img::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 45px;
        z-index: 1;
        pointer-events: none;
    }
    .why-card-img::before {
        top: 0;
        background: linear-gradient(to bottom, #000000, transparent);
    }
    .why-card-img::after {
        bottom: 0;
        background: linear-gradient(to top, #000000, transparent);
    }
    .service-showcase { padding: 0; }
    .service-showcase .container { padding: 0; }
    .service-showcase-row { background: #000000; border: none; border-radius: 0; }
    .service-showcase-visual { min-height: 0; height: auto; position: relative; }
    .service-showcase-visual img { position: static; height: auto; object-fit: contain; }
    .service-showcase-visual::before,
    .service-showcase-visual::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 45px;
        z-index: 1;
        pointer-events: none;
    }
    .service-showcase-visual::before {
        top: 0;
        background: linear-gradient(to bottom, #000000, transparent);
    }
    .service-showcase-visual::after {
        display: block;
        bottom: 0;
        background: linear-gradient(to top, #000000, transparent);
    }
    .service-showcase-row--reversed .service-showcase-visual::after {
        display: block;
    }
    .service-showcase-content { padding: 24px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item::after { display: none !important; }
    .values-grid { grid-template-columns: 1fr; }
    .about-stats-row { grid-template-columns: 1fr; gap: 16px; }
    .stage-grid { gap: 0; margin-left: -24px; margin-right: -24px; }
    .stage-row { grid-template-columns: 1fr; border: none; border-radius: 0; background: #000000; }
    .stage-row--reversed { direction: ltr; }
    .stage-row-visual { position: relative; }
    .stage-row-visual::before,
    .stage-row-visual::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 45px;
        z-index: 1;
        pointer-events: none;
    }
    .stage-row-visual::before {
        top: 0;
        background: linear-gradient(to bottom, #000000, transparent);
    }
    .stage-row-visual::after {
        bottom: 0;
        background: linear-gradient(to top, #000000, transparent);
    }
    .stage-row-content { padding: 24px; }
    .highlight-box blockquote { border-left: none; padding-left: 0; }
    .brands-grid { grid-template-columns: 1fr; }
    .pieces-categories { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .event-features { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .cta-box { padding: 48px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-info-col { padding: 32px 24px; }
    .contact-form-panel { padding: 28px 20px; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-info-items { flex-direction: column; gap: 20px; align-items: center; }
    .language-switcher { margin-left: 0; }
}

/* ============================================
   CASE STUDY HERO
   ============================================ */
.cs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}
.cs-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cs-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cs-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.80) 60%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 1;
}
.cs-hero .container {
    position: relative;
    z-index: 2;
}
.cs-hero-content {
    max-width: 900px;
    padding: 160px 0 100px;
}
.cs-hero-breadcrumb {
    margin-bottom: 24px;
}
.cs-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.cs-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 700px;
}

/* Stat strip */
.cs-stat-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}
.cs-stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid transparent;
    border-radius: 12px;
    position: relative;
    min-width: 110px;
}
.cs-stat-badge::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, #7C3AED, #C8F135);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.cs-stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1;
}
.cs-stat-unit {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}
.cs-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* Actions */
.cs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

/* Disclaimer */
.cs-hero-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .cs-hero-content { padding: 120px 0 60px; }
    .cs-stat-strip { gap: 10px; }
    .cs-stat-badge { padding: 12px 16px; min-width: 90px; }
    .cs-stat-value { font-size: 1.4rem; }
    .cs-hero-actions { flex-direction: column; }
    .cs-hero-actions .btn-primary,
    .cs-hero-actions .btn-outline { width: 100%; justify-content: center; }
}

/* ============================================
   CASE STUDY CONTENT
   ============================================ */

.cs-content {
    background: #000;
}

/* ── A · Intro ──────────────────────────── */
.cs-intro .section-title {
    text-align: center;
}
.cs-intro .section-label {
    text-align: center;
    display: block;
}
.cs-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 32px;
}
.cs-intro-text .section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}
.cs-intro-text .stage-punch {
    max-width: none;
    margin-top: 24px;
    text-align: left;
}
.cs-intro-media {
    position: sticky;
    top: 100px;
}
.cs-intro-media .cs-media-carousel {
    margin-top: 0;
}

/* ── B · Timeline ───────────────────────── */
.cs-timeline {
    text-align: center;
}
.cs-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    text-align: left;
}
.cs-timeline-connector {
    display: block;
    position: absolute;
    top: 4px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, #7C3AED, #C8F135);
    border-radius: 2px;
    z-index: 0;
}
.cs-timeline-card {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.cs-timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--stage-color, #7C3AED);
    border-radius: 4px 4px 0 0;
}
.cs-timeline-card:hover {
    border-color: rgba(200, 241, 53, 0.4);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15), 0 0 20px rgba(200, 241, 53, 0.1);
}
.cs-timeline-card-header .stage-badge {
    margin-bottom: 8px;
}
.cs-timeline-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
    line-height: 1.3;
}
.cs-timeline-objectif {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}
.cs-timeline-details {
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
}
.cs-timeline-details summary {
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gradient-start);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    transition: color var(--transition);
}
.cs-timeline-details summary::-webkit-details-marker {
    display: none;
}
.cs-timeline-details summary::before {
    content: '+';
    font-size: 1rem;
    font-weight: 700;
    color: var(--gradient-end);
    transition: transform var(--transition);
}
.cs-timeline-details[open] summary::before {
    content: '\2212';
}
.cs-timeline-details summary:hover {
    color: #fff;
}
.cs-timeline-pieces {
    padding: 8px 0 4px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.cs-timeline-result {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.cs-timeline-result .gradient-text {
    margin-right: 4px;
}

/* ── C · Anatomie ───────────────────────── */
.cs-anatomy {
    text-align: center;
}
.cs-anatomy .section-desc {
    margin: 0 auto;
}
.cs-anatomy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: left;
}
/* ── Anatomy media carousel: 2-up side by side ── */
.cs-media-carousel[data-carousel="anatomy"] .cs-media-track {
    display: flex;
    position: relative;
    aspect-ratio: auto;
    gap: 24px;
    overflow: visible;
}
.cs-media-carousel[data-carousel="anatomy"] .cs-media-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 16 / 9;
    transition: none;
}
.cs-media-carousel[data-carousel="anatomy"] .cs-media-slide img,
.cs-media-carousel[data-carousel="anatomy"] .cs-media-slide video {
    border-radius: 8px;
}
.cs-media-carousel[data-carousel="anatomy"] .cs-media-nav {
    display: none;
}
@media (max-width: 768px) {
    .cs-media-carousel[data-carousel="anatomy"] .cs-media-track {
        flex-direction: column;
    }
}
.cs-system-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.cs-system-card:hover {
    border-color: rgba(200, 241, 53, 0.4);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15), 0 0 20px rgba(200, 241, 53, 0.1);
}
.cs-system-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.cs-system-icon svg {
    width: 40px;
    height: 40px;
}
.cs-system-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.3;
}
.cs-system-pieces {
    font-size: 0.85rem;
    color: var(--gradient-start);
    line-height: 1.6;
}
.cs-system-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Media Carousel ────────────────────── */
.cs-media-carousel {
    margin-top: 40px;
    position: relative;
}
.cs-media-carousel {
    touch-action: pan-y;
}
.cs-media-track {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--bg-secondary);
}
.cs-media-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.cs-media-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.cs-media-slide img,
.cs-media-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.cs-media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(200, 241, 53, 0.4);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gradient-start);
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2;
}
.cs-media-play:hover {
    background: rgba(200, 241, 53, 0.15);
    border-color: var(--gradient-start);
    transform: translate(-50%, -50%) scale(1.1);
}
.cs-media-play svg {
    margin-left: 4px;
}
.cs-media-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.cs-media-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.cs-media-dot.active {
    background: var(--gradient-start);
    transform: scale(1.3);
}

/* ── A3 · Performance (2 colonnes) ─────── */
.cs-performance .section-label { text-align: center; display: block; }
.cs-performance .section-title { text-align: center; }
.cs-perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 32px;
}
.cs-perf-text .section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}
.cs-perf-cards {
    position: sticky;
    top: 100px;
}
.cs-perf-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cs-perf-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.cs-perf-stat-card:hover {
    border-color: rgba(200, 241, 53, 0.4);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.15);
}
.cs-perf-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 6px;
}
.cs-perf-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cs-perf-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.cs-perf-video-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--bg-secondary);
}
.cs-perf-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── C3 · Fiabilité ────────────────────── */
.cs-fiabilite {
    padding: 0;
}
.cs-fiabilite-inner {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 48px 40px;
    overflow: hidden;
}
.cs-fiabilite-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #7C3AED, #C8F135);
    border-radius: 4px 0 0 4px;
}
.cs-fiabilite-titre {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cs-fiabilite-texte {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 800px;
}

/* ── D · Experience ─────────────────────── */
.cs-experience .section-label { text-align: center; display: block; }
.cs-experience .section-title { text-align: center; }
.cs-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 32px;
}
.cs-experience-text .section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}
.cs-experience-media {
    position: sticky;
    top: 100px;
}
.cs-experience-video {
    position: relative;
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--bg-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.cs-experience-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cs-media-play--lg {
    width: auto;
    height: auto;
    padding: 20px 32px;
    border-radius: 16px;
    flex-direction: column;
    gap: 8px;
}
.cs-media-play--lg span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cs-experience-placeholder {
    margin-top: 32px;
    padding: 48px 24px;
    border: 1px dashed var(--border-color);
    border-radius: 4px;
    text-align: center;
}
.cs-experience-placeholder .gradient-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* ── E · Conversion / CTA ───────────────── */
.cs-conversion {
    text-align: center;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}
.cs-conversion .section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cs-conversion .section-desc {
    margin: 0 auto;
}
.cs-conversion-phone {
    margin-top: 16px;
}
.cs-conversion-phone a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    background: linear-gradient(90deg, #7C3AED, #C8F135);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity var(--transition);
}
.cs-conversion-phone a:hover {
    opacity: 0.8;
}

/* ── Case Study Content Responsive ──────── */
@media (max-width: 1024px) {
    .cs-timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cs-timeline-connector {
        display: none;
    }
    .cs-anatomy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cs-perf-videos {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .cs-anatomy-grid {
        grid-template-columns: 1fr;
    }
    .cs-intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cs-intro-media {
        position: static;
    }
    .cs-timeline-grid {
        grid-template-columns: 1fr;
    }
    .cs-conversion-phone a {
        font-size: 1.2rem;
    }
    .cs-perf-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cs-perf-cards {
        position: static;
    }
    .cs-perf-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .cs-perf-stat-card {
        padding: 16px 12px;
    }
    .cs-perf-stat-value {
        font-size: 1.5rem;
    }
    .cs-experience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cs-experience-media {
        position: static;
    }
    .cs-fiabilite-inner {
        padding: 32px 24px 32px 28px;
    }
    .cs-media-play {
        width: 56px;
        height: 56px;
    }
    .cs-media-play svg {
        width: 32px;
        height: 32px;
    }
    .cs-media-play--lg {
        padding: 16px 24px;
    }
    .cs-media-play--lg svg {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .split-hero-img::before { animation: none; }
}

/* Override WP 6.x theme.json layout constraints — blocks are full-width by design */
.is-layout-constrained > * {
    max-width: none;
}
.is-layout-constrained > .alignwide {
    max-width: 1400px;
}
main > .wp-block-group, main > .entry-content {
    max-width: none;
}
