/* ============================================================
   Muell Haus Inc. — Shared Stylesheet
   ============================================================
   1.  CSS Variables
   2.  Reset & Base
   3.  Background Effects (noise, orbs, spotlight)
   4.  Navigation
   5.  Buttons
   6.  Section Patterns
   7.  Card Patterns (glass cards shared across pages)
   8.  Footer
   9.  Reveal Animation
   10. Theme Toggle
   11. Kreativ Marquee
   12. Page-specific: index
   13. Page-specific: struktur
   14. Page-specific: kreativ
   15. Page-specific: about
   16. Page-specific: contact
   17. Dark Mode (shared + page-scoped)
   18. Responsive Breakpoints
   ============================================================ */


/* ----------------------------------------------------------
   1. CSS Variables
---------------------------------------------------------- */
:root {
    --ivory: #F5F3EE;
    --ivory-dark: #EBE8E0;
    --black: #0A0A0A;
    --purple-primary: #8B5CF6;
    --purple-glow: #A78BFA;
    --purple-deep: #6D28D9;
    --purple-light: #C4B5FD;
}


/* ----------------------------------------------------------
   2. Reset & Base
---------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ivory);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* index.html adds cursor: default to body */
.page-index body,
body.page-index {
    cursor: default;
}


/* ----------------------------------------------------------
   3. Background Effects
---------------------------------------------------------- */

/* Noise Texture Overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Orb Container */
.orb-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Cursor Spotlight */
.cursor-spotlight-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cursor-spotlight {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(167, 139, 250, 0.22) 0%,
        rgba(139, 92, 246, 0.14) 35%,
        rgba(139, 92, 246, 0.08) 55%,
        rgba(139, 92, 246, 0) 75%
    );
    filter: blur(35px);
    transform: translate3d(-9999px, -9999px, 0);
    will-change: transform;
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.spotlight-active .cursor-spotlight {
    opacity: 1;
}

/* ------ Base orb (shared defaults) ------ */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: float 25s ease-in-out infinite;
}

/* --- index.html orbs (more vivid, faster) --- */
.page-index .orb {
    filter: blur(100px);
    opacity: 0.4;
    animation-name: float;
    animation-duration: 20s;
}

.page-index .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.page-index .orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--purple-glow), var(--purple-light));
    bottom: 10%;
    left: -100px;
    animation-delay: -7s;
    animation-duration: 25s;
}

.page-index .orb-3 {
    width: 300px;
    height: 300px;
    background: var(--purple-primary);
    top: 50%;
    right: 20%;
    animation-delay: -14s;
    animation-duration: 18s;
    opacity: 0.25;
}

/* --- struktur.html orbs (subtle) --- */
.page-struktur .orb {
    filter: blur(120px);
    opacity: 0.25;
    animation-duration: 25s;
}

.page-struktur .orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
    top: -150px;
    left: -100px;
}

.page-struktur .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--purple-glow);
    bottom: 20%;
    right: -100px;
    animation-delay: -10s;
}

/* --- kreativ.html orbs (most dynamic) --- */
.page-kreativ .orb {
    filter: blur(100px);
    animation-name: floatDynamic;
    animation-duration: 15s;
}

.page-kreativ .orb-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
    top: -250px;
    right: -200px;
    opacity: 0.45;
}

.page-kreativ .orb-2 {
    width: 500px;
    height: 500px;
    background: var(--purple-glow);
    bottom: -100px;
    left: -150px;
    opacity: 0.35;
    animation-delay: -5s;
}

.page-kreativ .orb-3 {
    width: 300px;
    height: 300px;
    background: var(--purple-light);
    top: 40%;
    left: 30%;
    opacity: 0.2;
    animation-delay: -10s;
    animation-duration: 20s;
}

/* --- about.html orbs --- */
.page-about .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
    top: -200px;
    right: -150px;
}

.page-about .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--purple-glow);
    bottom: 30%;
    left: -100px;
    animation-delay: -8s;
}

/* --- contact.html orbs --- */
.page-contact .orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
    top: -150px;
    right: -100px;
}

.page-contact .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--purple-glow);
    bottom: 20%;
    left: -100px;
    animation-delay: -10s;
}

/* ------ Keyframes ------ */
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(-40px, -20px) scale(1.02); }
}

/* Kreativ-only float animation */
.page-kreativ .orb {
    animation-name: floatDynamic;
}

@keyframes floatDynamic {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(50px, -30px) scale(1.08) rotate(5deg); }
    50% { transform: translate(-30px, 50px) scale(0.95) rotate(-5deg); }
    75% { transform: translate(-50px, -20px) scale(1.03) rotate(3deg); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}


/* ----------------------------------------------------------
   4. Navigation
---------------------------------------------------------- */
.nav {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom-color 0.4s ease;
}

.nav-toggle {
    background: none;
    border: 1px solid rgba(10, 10, 10, 0.15);
    border-radius: 50px;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--black);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
    border-color: var(--purple-primary);
    color: var(--purple-primary);
}

.nav-toggle-icon {
    width: 18px;
    height: 12px;
    position: relative;
    display: block;
}

.nav-toggle-icon span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease, opacity 0.2s ease;
}

.nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle-icon span:nth-child(3) { bottom: 0; }

body.nav-open .nav-toggle-icon span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.nav-open .nav-toggle-icon span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-icon span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(6px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100svh;
    width: min(380px, 88vw);
    background: rgba(245, 243, 238, 0.85);
    backdrop-filter: blur(22px);
    border-left: 1px solid rgba(10, 10, 10, 0.08);
    z-index: 1001;
    transform: translateX(102%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nav-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-drawer-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.55);
}

.nav-drawer-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-drawer-close {
    background: none;
    border: 1px solid rgba(10, 10, 10, 0.15);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--black);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    font-size: 18px;
    line-height: 1;
}

.nav-drawer-close:hover {
    border-color: rgba(10, 10, 10, 0.28);
}

.nav-drawer-hint {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.55);
    padding: 0 2px;
}

.nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.nav-drawer .nav-link {
    font-size: 16px;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(10, 10, 10, 0.06);
    background: rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: translateY(8px);
    transition:
        transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 0.35s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.nav-drawer .nav-link::after {
    display: none;
    content: none;
}

.nav-drawer .nav-link:hover {
    border-color: rgba(10, 10, 10, 0.14);
    background: rgba(255, 255, 255, 0.55);
}

.nav-drawer .nav-link.active {
    color: var(--black);
    border-color: rgba(139, 92, 246, 0.28);
    background: rgba(139, 92, 246, 0.12);
}

.nav-drawer-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(10, 10, 10, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.nav-open .nav-drawer {
    transform: translateX(0);
}

body.nav-open .nav-drawer .nav-link {
    opacity: 1;
    transform: translateY(0);
}

body.nav-open .nav-drawer .nav-link:nth-child(1) { transition-delay: 40ms; }
body.nav-open .nav-drawer .nav-link:nth-child(2) { transition-delay: 80ms; }
body.nav-open .nav-drawer .nav-link:nth-child(3) { transition-delay: 120ms; }
body.nav-open .nav-drawer .nav-link:nth-child(4) { transition-delay: 160ms; }
body.nav-open .nav-drawer .nav-link:nth-child(5) { transition-delay: 200ms; }

.nav-toggle:focus-visible,
.nav-drawer-close:focus-visible,
.nav-drawer .nav-link:focus-visible {
    outline: 2px solid rgba(139, 92, 246, 0.7);
    outline-offset: 2px;
}

.nav.scrolled {
    background: rgba(245, 243, 238, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 10, 10, 0.05);
}

.nav-logo {
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 36px;
    width: auto;
    mix-blend-mode: multiply;
    transition: opacity 0.3s;
}

/* index uses slightly larger logo */
.page-index .nav-logo img {
    height: 40px;
}

.nav-logo:hover {
    opacity: 0.6;
}

/* index has a subtle opacity transition on the logo itself */
.page-index .nav-logo:hover img {
    opacity: 0.7;
}
.page-index .nav-logo:hover {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-primary);
    transition: width 0.3s ease;
}

/* index uses a 1px black underline, not purple */
.page-index .nav-link::after {
    height: 1px;
    background: var(--black);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--purple-primary);
}

/* Logo-only sticky state — struktur + kreativ only */
.page-struktur .nav.logo-only,
.page-kreativ .nav.logo-only {
    padding: 18px 50px;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
}

.page-struktur .nav.logo-only .nav-links,
.page-kreativ .nav.logo-only .nav-links {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
}

.page-struktur .nav.logo-only .nav-logo img,
.page-kreativ .nav.logo-only .nav-logo img {
    mix-blend-mode: normal;
}

/* Division logo swap (kreativ and struktur) */
.logo-division { display: none; }
.page-struktur .nav.logo-only .logo-default,
.page-kreativ .nav.logo-only .logo-default { display: none; }
.page-struktur .nav.logo-only .logo-division,
.page-kreativ .nav.logo-only .logo-division { display: block; height: 32px; width: auto; mix-blend-mode: multiply; }


/* ----------------------------------------------------------
   5. Buttons
---------------------------------------------------------- */
.btn {
    padding: 18px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--purple-primary);
    color: var(--ivory);
    border: 2px solid var(--purple-primary);
}

.btn-primary:hover {
    background: var(--purple-deep);
    border-color: var(--purple-deep);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid rgba(10, 10, 10, 0.2);
}

.btn-outline:hover {
    border-color: var(--black);
    transform: translateY(-3px);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}


/* Kreativ btn-outline hover is purple */
.page-kreativ .btn-outline:hover {
    border-color: var(--purple-primary);
    color: var(--purple-primary);
}

/* index btn-outline hover fills black */
.page-index .btn-outline {
    border: 2px solid var(--black);
}

.page-index .btn-outline:hover {
    background: var(--black);
    color: var(--ivory);
}

/* CTA section button overrides (struktur + kreativ) */
.cta .btn-primary {
    background: var(--ivory);
    color: var(--purple-primary);
    border-color: var(--ivory);
    position: relative;
    z-index: 1;
}

.cta .btn-primary:hover {
    background: var(--black);
    color: var(--ivory);
    border-color: var(--black);
}

/* Kreativ CTA btn gets extra padding */
.page-kreativ .cta .btn-primary {
    padding: 22px 50px;
    font-size: 14px;
}


/* ----------------------------------------------------------
   6. Section Patterns
---------------------------------------------------------- */

/* Hero pill badge (used on index, about, contact as .hero-tag; on struktur, kreativ as .hero-badge) */
.hero-tag,
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-primary);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
}

.hero-tag svg,
.hero-badge svg {
    width: 16px;
    height: 16px;
}

/* Hero inner container — division + utility pages */
.page-struktur .hero-inner,
.page-kreativ .hero-inner,
.page-about .hero-inner,
.page-contact .hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Division hero title image (struktur + kreativ) */
.page-struktur .hero-title,
.page-kreativ .hero-title {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.page-struktur .hero-title img,
.page-kreativ .hero-title img {
    height: 68px;
    width: auto;
    max-width: 100%;
    mix-blend-mode: multiply;
}

/* Division hero CTA row (struktur + kreativ) */
.page-struktur .hero-cta,
.page-kreativ .hero-cta {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Division hero visual placeholder (struktur + kreativ) */
.page-struktur .visual-image,
.page-kreativ .visual-image {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(109, 40, 217, 0.1));
    border: 2px dashed rgba(139, 92, 246, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
}

.page-struktur .visual-image:hover,
.page-kreativ .visual-image:hover {
    transform: perspective(800px) rotateY(-5deg) rotateX(3deg);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

.page-struktur .visual-image img,
.page-kreativ .visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.page-struktur .visual-image-placeholder,
.page-kreativ .visual-image-placeholder {
    text-align: center;
}

.page-struktur .visual-image-placeholder svg,
.page-kreativ .visual-image-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--purple-primary);
    opacity: 0.5;
    margin-bottom: 16px;
}

.page-struktur .visual-image-placeholder span,
.page-kreativ .visual-image-placeholder span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-primary);
    opacity: 0.5;
}

/* Services section shell (struktur + kreativ) */
.page-struktur .services,
.page-kreativ .services {
    padding: 150px 50px;
    position: relative;
    z-index: 1;
}

.page-struktur .services-inner,
.page-kreativ .services-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Philosophy section — shared across index, kreativ, about */
.page-index .philosophy,
.page-kreativ .philosophy,
.page-about .philosophy {
    padding: 150px 50px;
    background: var(--black);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-index .philosophy-inner,
.page-kreativ .philosophy-inner,
.page-about .philosophy-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-index .philosophy-label,
.page-kreativ .philosophy-label,
.page-about .philosophy-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 40px;
}

.page-index .philosophy-text,
.page-kreativ .philosophy-text,
.page-about .philosophy-text {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.1;
    color: var(--ivory);
}

.page-index .philosophy-text .highlight,
.page-kreativ .philosophy-text .highlight,
.page-about .philosophy-text .highlight {
    color: var(--purple-primary);
}

/* CTA section shell (struktur + kreativ) */
.page-struktur .cta,
.page-kreativ .cta {
    padding: 100px 50px;
    position: relative;
    z-index: 1;
}

.page-struktur .cta-inner,
.page-kreativ .cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
    position: relative;
    overflow: hidden;
}

.page-struktur .cta-inner::before,
.page-kreativ .cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.page-struktur .cta-title,
.page-kreativ .cta-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-primary);
    margin-bottom: 20px;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: end;
}

/* Kreativ uses a single-column section header */
.page-kreativ .section-header {
    display: block;
    margin-bottom: 80px;
}

.section-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
}

.section-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.65);
}


/* ----------------------------------------------------------
   7. Card Patterns
---------------------------------------------------------- */

/* Service card — shared glass base */
.service-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

/* Shared FAQ layout (used on Struktur + Kreativ) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px;
}

.faq-card {
    height: 100%;
}

/* Force the same FAQ card styling across pages */
.faq-section .section-header {
    display: block !important;
    margin-bottom: 56px;
}

.faq-section .section-title {
    font-size: 64px;
    line-height: 1;
    max-width: 760px;
}

.faq-section .faq-card {
    padding: 42px 34px !important;
    position: static !important;
    overflow: visible !important;
    transition: all 0.4s ease !important;
}

.faq-section .faq-card::before {
    display: none !important;
    content: none !important;
}

/* Division card — shared across index + about */
.division-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 24px;
    padding: 60px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--black);
    display: block;
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

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

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(139, 92, 246, 0.25);
}

.division-card:hover * {
    color: var(--ivory);
}

.division-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.division-logo {
    width: auto;
    margin-bottom: 40px;
    mix-blend-mode: multiply;
    transition: all 0.4s;
    display: block;
}

.division-card:hover .division-logo {
    filter: invert(1);
    mix-blend-mode: normal;
}

.division-name {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 56px;
    margin-bottom: 20px;
}

.division-tagline {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--purple-primary);
    transition: color 0.4s;
}

.division-card:hover .division-tagline {
    color: rgba(245, 243, 238, 0.8);
}

.division-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 40px;
}

.division-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.division-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.division-card:hover .division-link svg {
    transform: translateX(8px);
}

/* Stat card */
.stat {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.stat-number {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 72px;
    color: var(--purple-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(10, 10, 10, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ----------------------------------------------------------
   8. Footer
---------------------------------------------------------- */
.footer {
    padding: 80px 50px;
    background: var(--black);
    position: relative;
    z-index: 1;
}

/* about.html footer has a top border */
.page-about .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand img {
    height: auto;
    width: 80px;
    filter: invert(1);
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--purple-primary);
}

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

.footer-tagline {
    font-size: 13px;
    color: var(--purple-primary);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}


/* ----------------------------------------------------------
   10. Theme Toggle
---------------------------------------------------------- */
.theme-toggle {
    background: none;
    border: 1px solid rgba(10, 10, 10, 0.15);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--black);
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--purple-primary);
    color: var(--purple-primary);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--ivory);
}


/* ----------------------------------------------------------
   11. Kreativ Marquee
---------------------------------------------------------- */
.page-kreativ .marquee-section {
    padding: 30px 0;
    background: var(--black);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-kreativ .marquee {
    display: flex;
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.page-kreativ .marquee-content {
    display: flex;
    gap: 50px;
    padding-right: 50px;
}

.page-kreativ .marquee-item {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-size: 36px;
    color: var(--ivory);
    white-space: nowrap;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: 400;
    font-style: italic;
    transition: opacity 0.3s;
}

.page-kreativ .marquee-item.accent {
    color: var(--purple-primary);
    opacity: 1;
}


/* ----------------------------------------------------------
   12. Page-specific: index
---------------------------------------------------------- */

/* Hero */
.page-index .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 50px 80px;
    position: relative;
    z-index: 1;
}

.page-index .hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.page-index .hero-tag {
    animation-delay: 0.2s;
}

.page-index .hero-headline {
    font-family: "transducer-extended", "Bebas Neue", sans-serif;
    font-size: clamp(48px, 6.8vw, 85px);
    line-height: 0.95;
    color: var(--black);
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.4s;
}

.page-index .hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.page-index .hero-tagline {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 500px;
}

.page-index .hero-tagline strong {
    font-weight: 600;
    color: var(--purple-primary);
}

.page-index .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

/* Scroll indicator */
.page-index .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
}

.page-index .scroll-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-primary);
}

.page-index .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--purple-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* About section (index) */
.page-index .about {
    padding: 150px 50px;
    position: relative;
    z-index: 1;
}

.page-index .about-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
}

.page-index .about-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 30px;
}

.page-index .about-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.75);
}

.page-index .about-text p {
    margin-bottom: 30px;
}

.page-index .about-highlight {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black);
    border-left: 4px solid var(--purple-primary);
    padding-left: 30px;
    margin-top: 50px;
}

/* Divisions section (index) */
.page-index .divisions {
    padding: 100px 50px 150px;
    position: relative;
    z-index: 1;
}

.page-index .divisions-header {
    max-width: 1400px;
    margin: 0 auto 80px;
    text-align: center;
}

.page-index .divisions-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 80px;
    margin-bottom: 20px;
}

.page-index .divisions-subtitle {
    font-size: 20px;
    color: rgba(10, 10, 10, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.page-index .divisions-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* index division-logo is taller */
.page-index .division-logo {
    height: 40px;
}

/* Philosophy section (index — unique orb position) */
.page-index .philosophy::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--purple-primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
}


/* ----------------------------------------------------------
   13. Page-specific: struktur
---------------------------------------------------------- */

/* Hero */
.page-struktur .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 50px 100px;
    position: relative;
    z-index: 1;
}

.page-struktur .hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}



.page-struktur .hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.7);
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.4s;
}


/* Hero visual */
.page-struktur .hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.4s;
}

/* Struktur visual is square */
.page-struktur .visual-image {
    width: 100%;
    aspect-ratio: 1;
}

/* Services section (struktur — 3-col grid) */

.page-struktur .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page-struktur .service-card {
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
}

.page-struktur .service-number {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: var(--purple-light);
    margin-bottom: 20px;
}

.page-struktur .service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.page-struktur .service-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.45);
    margin-bottom: 20px;
}

.page-struktur .service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.6);
    margin-bottom: 20px;
}

.page-struktur .service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.page-struktur .service-list li {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    padding: 8px 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-struktur .service-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple-primary);
    flex-shrink: 0;
}

.page-struktur .service-list li:last-child {
    border-bottom: none;
}

.page-struktur .service-note {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.4);
    padding-top: 16px;
    border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.page-struktur .services-footer {
    text-align: center;
    padding-top: 80px;
}

.page-struktur .services-footer p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(10, 10, 10, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.page-struktur .services-footer p strong {
    color: var(--black);
    font-weight: 600;
}

/* Approach section (struktur) */
.page-struktur .approach {
    padding: 150px 50px;
    background: var(--black);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-struktur .approach::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: var(--purple-deep);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
}

.page-struktur .approach-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-struktur .approach-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 40px;
}

.page-struktur .approach-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 60px;
}

.page-struktur .approach-title .highlight {
    color: var(--purple-primary);
}

.page-struktur .approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.page-struktur .step {
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.page-struktur .step-number {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--purple-primary);
    margin-bottom: 20px;
}

.page-struktur .step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 15px;
}

.page-struktur .step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

/* Results section (struktur) */
.page-struktur .results {
    padding: 150px 50px;
    position: relative;
    z-index: 1;
}

.page-struktur .results-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.page-struktur .results-header {
    text-align: center;
    margin-bottom: 80px;
}

.page-struktur .results-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 64px;
    margin-bottom: 20px;
}

.page-struktur .results-subtitle {
    font-size: 18px;
    color: rgba(10, 10, 10, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.page-struktur .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CTA section (struktur — unique padding/radius/noise-opacity) */
.page-struktur .cta-inner {
    padding: 80px;
    border-radius: 32px;
}

.page-struktur .cta-inner::before {
    opacity: 0.05;
}

.page-struktur .cta-title {
    font-size: 56px;
}

.page-struktur .cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}


/* ----------------------------------------------------------
   14. Page-specific: kreativ
---------------------------------------------------------- */

/* Hero */
.page-kreativ .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 50px 100px;
    position: relative;
    z-index: 1;
}

.page-kreativ .hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}



.page-kreativ .hero-text {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.page-kreativ .hero-text strong {
    color: var(--black);
    font-weight: 600;
}

/* Hero visual */
.page-kreativ .hero-visual {
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.5s;
}

/* Kreativ visual fills its container */
.page-kreativ .visual-image {
    width: 100%;
    height: 100%;
}

/* Services section (kreativ — 2-col grid) */

.page-kreativ .section-title {
    font-size: 72px;
    margin-bottom: 30px;
}

.page-kreativ .section-desc {
    max-width: 700px;
}

.page-kreativ .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.page-kreativ .service-card {
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-kreativ .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-glow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.page-kreativ .service-card:hover::before {
    transform: scaleX(1);
}

.page-kreativ .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15);
}

.page-kreativ .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.page-kreativ .service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--ivory);
}

.page-kreativ .service-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 15px;
}

.page-kreativ .service-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.6);
}

/* Portfolio section (kreativ) */
.page-kreativ .portfolio {
    padding: 100px 50px 150px;
    position: relative;
    z-index: 1;
}

.page-kreativ .portfolio-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.page-kreativ .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
}

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

.page-kreativ .portfolio-item {
    aspect-ratio: 1;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-color: rgba(139, 92, 246, 0.1);
}

.page-kreativ .portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
    transition: opacity 0.4s;
}

.page-kreativ .portfolio-item:hover {
    transform: scale(1.02);
}

.page-kreativ .portfolio-item:hover::before {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.5) 60%, rgba(10, 10, 10, 0.3) 100%);
}

.page-kreativ .portfolio-item > * {
    position: relative;
    z-index: 1;
}

.page-kreativ .portfolio-code {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-primary);
    margin-bottom: 8px;
}

.page-kreativ .portfolio-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 5px;
}

.page-kreativ .portfolio-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.page-kreativ .portfolio-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* Philosophy (kreativ — unique centered orb) */
.page-kreativ .philosophy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: var(--purple-primary);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.25;
}

/* Clients (kreativ) */
.page-kreativ .clients {
    padding: 100px 50px;
    position: relative;
    z-index: 1;
}

.page-kreativ .clients-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.page-kreativ .clients-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-primary);
    margin-bottom: 50px;
}

.page-kreativ .clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    align-items: center;
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-kreativ .client-logo {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.3;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.page-kreativ .client-logo:hover {
    opacity: 0.7;
    filter: grayscale(0%);
}

.page-kreativ .client-placeholder {
    width: 140px;
    height: 60px;
    background: rgba(10, 10, 10, 0.04);
    border: 1px dashed rgba(10, 10, 10, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.2);
}

/* CTA (kreativ — unique padding/radius/noise-opacity) */
.page-kreativ .cta-inner {
    padding: 100px 80px;
    border-radius: 40px;
}

.page-kreativ .cta-inner::before {
    opacity: 0.08;
}

.page-kreativ .cta-title {
    font-size: 72px;
}

.page-kreativ .cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ----------------------------------------------------------
   15. Page-specific: about
---------------------------------------------------------- */

/* Hero */
.page-about .hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 160px 50px 100px;
    position: relative;
    z-index: 1;
}



.page-about .hero-headline {
    font-family: "transducer-extended", "Bebas Neue", sans-serif;
    font-size: clamp(68px, 10.2vw, 136px);
    line-height: 0.9;
    color: var(--black);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.page-about .hero-sub {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.55vw, 34px);
    color: rgba(10, 10, 10, 0.45);
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

/* Story section (about) */
.page-about .story {
    padding: 100px 50px 120px;
    position: relative;
    z-index: 1;
}

.page-about .story-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
}

.page-about .story-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 30px;
}

.page-about .story-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.72);
}

.page-about .story-text p {
    margin-bottom: 28px;
}

.page-about .story-text p:last-child {
    margin-bottom: 0;
}

/* People section (about) */
.page-about .people {
    padding: 100px 50px 150px;
    position: relative;
    z-index: 1;
}

.page-about .people-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-about .people-header {
    margin-bottom: 60px;
}

.page-about .people-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
}

.page-about .person-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
    align-items: start;
    padding: 60px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 24px;
    margin-bottom: 30px;
}

.page-about .person-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(109, 40, 217, 0.06));
    border: 2px dashed rgba(139, 92, 246, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--purple-primary);
    opacity: 0.6;
}

.page-about .person-photo-placeholder span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.page-about .person-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
}

.page-about .person-name {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 1;
    margin-bottom: 10px;
}

.page-about .person-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple-primary);
    margin-bottom: 36px;
}

.page-about .person-bio {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.72);
}

.page-about .person-bio p {
    margin-bottom: 20px;
}

.page-about .person-bio p:last-child {
    margin-bottom: 0;
}

/* People grid — side-by-side layout */
.page-about .people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.page-about .people-grid .person-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px;
    margin-bottom: 0;
    align-content: start;
}

.page-about .people-grid .person-photo-placeholder {
    aspect-ratio: 4/3;
}

/* Divisions section (about) */
.page-about .divisions {
    padding: 60px 50px 120px;
    position: relative;
    z-index: 1;
}

.page-about .divisions-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.page-about .divisions-header {
    margin-bottom: 60px;
}

.page-about .divisions-title {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
}

.page-about .divisions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* about division-logo is taller */
.page-about .division-logo {
    height: 80px;
    max-width: 100%;
}

/* Philosophy (about — unique centered orb, slightly smaller/softer) */
.page-about .philosophy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: var(--purple-primary);
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.2;
}


/* ----------------------------------------------------------
   16. Page-specific: contact
---------------------------------------------------------- */

/* Hero */
.page-contact .hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 160px 50px 100px;
    position: relative;
    z-index: 1;
}

.page-contact .hero-headline {
    font-family: "transducer-extended", "Bebas Neue", sans-serif;
    font-size: clamp(61px, 8.5vw, 119px);
    line-height: 0.95;
    color: var(--black);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.page-contact .hero-sub {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(10, 10, 10, 0.65);
    max-width: 600px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

/* Contact section */
.page-contact .contact-section {
    padding: 80px 50px 150px;
    position: relative;
    z-index: 1;
}

.page-contact .contact-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.page-contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.page-contact .contact-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 24px;
    padding: 60px;
    transition: all 0.4s ease;
}

.page-contact .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.page-contact .contact-division-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-primary);
    margin-bottom: 20px;
}

.page-contact .contact-division-name {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 56px;
    margin-bottom: 20px;
}

.page-contact .contact-division-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.65);
    margin-bottom: 40px;
}

.page-contact .contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 2px solid rgba(10, 10, 10, 0.15);
    padding-bottom: 6px;
    transition: all 0.3s;
}

.page-contact .contact-email-link:hover {
    color: var(--purple-primary);
    border-color: var(--purple-primary);
}

.page-contact .contact-email-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.page-contact .contact-email-link:hover svg {
    transform: translateX(4px);
}

/* Location block */
.page-contact .location-block {
    text-align: center;
    padding: 60px;
    border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.page-contact .location-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-primary);
    margin-bottom: 16px;
}

.page-contact .location-text {
    font-family: "transducer", "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: rgba(10, 10, 10, 0.4);
    letter-spacing: 0.02em;
}


/* ----------------------------------------------------------
   17. Dark Mode
---------------------------------------------------------- */

/* ---- Shared (all pages) ---- */
[data-theme="dark"] body {
    background: #0F0F0F;
    color: var(--ivory);
}

[data-theme="dark"] .nav-link {
    color: var(--ivory);
}

[data-theme="dark"] .nav-logo img {
    mix-blend-mode: normal;
    filter: invert(1);
}

[data-theme="dark"] .nav-toggle {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--ivory);
}

[data-theme="dark"] .nav-toggle:hover {
    border-color: var(--purple-primary);
    color: var(--purple-primary);
}

[data-theme="dark"] .nav-backdrop {
    background: rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .nav-drawer {
    background: rgba(15, 15, 15, 0.72);
    border-left-color: rgba(255, 255, 255, 0.10);
}

[data-theme="dark"] .nav-drawer-title {
    color: rgba(245, 243, 238, 0.55);
}

[data-theme="dark"] .nav-drawer-close {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--ivory);
}

[data-theme="dark"] .nav-drawer-close:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

[data-theme="dark"] .nav-drawer-hint {
    color: rgba(245, 243, 238, 0.55);
}

[data-theme="dark"] .nav-drawer .nav-link {
    color: rgba(245, 243, 238, 0.88);
    border-color: rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .nav-drawer .nav-link:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
}

[data-theme="dark"] .nav-drawer .nav-link.active {
    color: var(--ivory);
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(139, 92, 246, 0.18);
}

[data-theme="dark"] .nav-drawer-footer {
    border-top-color: rgba(255, 255, 255, 0.10);
}

[data-theme="dark"] .btn-outline {
    color: var(--ivory);
    border-color: rgba(245, 243, 238, 0.25);
}

[data-theme="dark"] .btn-outline:hover {
    border-color: var(--ivory);
}

[data-theme="dark"] .section-desc {
    color: rgba(245, 243, 238, 0.65);
}

[data-theme="dark"] .service-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .service-subtitle {
    color: rgba(245, 243, 238, 0.45);
}

[data-theme="dark"] .service-desc {
    color: rgba(245, 243, 238, 0.6);
}

[data-theme="dark"] .stat {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .stat-label {
    color: rgba(245, 243, 238, 0.6);
}

[data-theme="dark"] .division-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .division-logo {
    mix-blend-mode: normal;
    filter: invert(1);
}

[data-theme="dark"] .division-link {
    color: var(--purple-primary);
}

[data-theme="dark"] .division-card:hover .division-link {
    color: var(--ivory);
}

[data-theme="dark"] .division-card:hover * {
    color: var(--ivory);
}

[data-theme="dark"] .division-desc {
    color: rgba(245, 243, 238, 0.6);
}

/* ---- Fixed-nav dark mode (index, struktur, kreativ) ---- */
[data-theme="dark"] .nav.scrolled {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---- Logo-only state dark mode ---- */
[data-theme="dark"] .page-struktur .nav.logo-only .nav-logo img,
[data-theme="dark"] .page-kreativ .nav.logo-only .nav-logo img {
    filter: invert(1);
}

[data-theme="dark"] .page-struktur .nav.logo-only .logo-division,
[data-theme="dark"] .page-kreativ .nav.logo-only .logo-division {
    mix-blend-mode: normal;
    filter: invert(1);
}

/* ---- index dark mode ---- */
[data-theme="dark"] .page-index .hero-headline {
    color: var(--ivory);
}

[data-theme="dark"] .page-index .hero-tagline {
    color: rgba(245, 243, 238, 0.7);
}

[data-theme="dark"] .page-index .division-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .page-index .division-name {
    color: var(--ivory);
}

[data-theme="dark"] .page-index .division-desc {
    color: rgba(245, 243, 238, 0.6);
}

[data-theme="dark"] .page-index .about-text {
    color: rgba(245, 243, 238, 0.7);
}

[data-theme="dark"] .page-index .about-highlight {
    color: var(--ivory);
}

[data-theme="dark"] .page-struktur .services-footer p {
    color: rgba(245, 243, 238, 0.6);
}

[data-theme="dark"] .page-struktur .services-footer p strong {
    color: var(--ivory);
}

[data-theme="dark"] .page-index .divisions-subtitle {
    color: rgba(245, 243, 238, 0.6);
}

/* ---- struktur dark mode ---- */
[data-theme="dark"] .page-struktur .hero-subtitle {
    color: rgba(245, 243, 238, 0.7);
}

[data-theme="dark"] .page-struktur .hero-title img,
[data-theme="dark"] .page-kreativ .hero-title img {
    mix-blend-mode: normal;
    filter: invert(1);
}

[data-theme="dark"] .page-struktur .service-note {
    color: rgba(245, 243, 238, 0.45);
    border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .page-struktur .service-list li {
    color: var(--ivory);
}

[data-theme="dark"] .page-struktur .results-subtitle {
    color: rgba(245, 243, 238, 0.6);
}

/* ---- kreativ dark mode ---- */
[data-theme="dark"] .page-kreativ .hero-text {
    color: rgba(245, 243, 238, 0.7);
}

[data-theme="dark"] .page-kreativ .client-logo {
    filter: grayscale(1) brightness(0.6) invert(0.8);
}

/* ---- about + contact hero dark mode ---- */
[data-theme="dark"] .page-about .hero-headline,
[data-theme="dark"] .page-contact .hero-headline {
    color: var(--ivory);
}

[data-theme="dark"] .page-about .hero-sub,
[data-theme="dark"] .page-contact .hero-sub {
    color: rgba(245, 243, 238, 0.45);
}

/* ---- about dark mode ---- */

[data-theme="dark"] .page-about .story-text {
    color: rgba(245, 243, 238, 0.72);
}

[data-theme="dark"] .page-about .people-title {
    color: var(--ivory);
}

[data-theme="dark"] .page-about .person-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .page-about .person-name {
    color: var(--ivory);
}

[data-theme="dark"] .page-about .person-bio {
    color: rgba(245, 243, 238, 0.72);
}

[data-theme="dark"] .page-about .division-name {
    color: var(--ivory);
}

[data-theme="dark"] .page-about .division-desc {
    color: rgba(245, 243, 238, 0.6);
}

[data-theme="dark"] .page-about .divisions-subtitle {
    color: rgba(245, 243, 238, 0.6);
}

/* ---- contact dark mode ---- */
[data-theme="dark"] .page-contact .contact-email-link {
    color: var(--ivory);
    border-bottom-color: rgba(245, 243, 238, 0.2);
}

[data-theme="dark"] .page-contact .contact-email-link:hover {
    color: var(--purple-primary);
}

[data-theme="dark"] .page-contact .location-block {
    border-top-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .page-contact .location-text {
    color: rgba(245, 243, 238, 0.4);
}

[data-theme="dark"] .page-contact .contact-division-desc {
    color: rgba(245, 243, 238, 0.65);
}

[data-theme="dark"] .page-contact .contact-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}


/* ----------------------------------------------------------
   18. Responsive Breakpoints
---------------------------------------------------------- */

/* ---- Shared ---- */
@media (max-width: 768px) {
    .nav {
        padding: 20px 25px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .division-card {
        padding: 40px;
    }

    .division-name {
        font-size: 42px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cursor-spotlight-container {
        display: none;
    }
}

/* ---- index ---- */
@media (max-width: 1024px) {
    .page-index .hero-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-index .hero-cta {
        justify-content: flex-start;
    }

    .page-index .about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .page-index .divisions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index .hero {
        padding: 100px 25px 60px;
    }

    .page-index .hero-tagline {
        font-size: 22px;
    }

    .page-index .hero-cta {
        flex-direction: column;
    }

    .page-index .about,
    .page-index .divisions,
    .page-index .philosophy,
    .page-index .footer {
        padding-left: 25px;
        padding-right: 25px;
    }

    .page-index .scroll-indicator {
        display: none;
    }

    .page-index .footer-motto {
        padding: 0 25px;
    }
}

/* ---- struktur + kreativ shared responsive ---- */
@media (max-width: 1024px) {
    .page-struktur .hero-inner,
    .page-kreativ .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .page-struktur .section-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-struktur .services-grid {
        grid-template-columns: 1fr;
    }

    .page-struktur .approach-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-struktur .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-kreativ .services-grid {
        grid-template-columns: 1fr;
    }

    .page-kreativ .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .page-kreativ .portfolio-item.featured {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1;
    }
}

@media (max-width: 768px) {
    .page-struktur .hero-visual,
    .page-kreativ .hero-visual {
        display: none;
    }

    .page-struktur .nav-links,
    .page-kreativ .nav-links {
        gap: 25px;
    }

    .page-struktur .hero-cta,
    .page-kreativ .hero-cta {
        flex-direction: column;
    }

    .page-struktur .hero,
    .page-struktur .services,
    .page-struktur .approach,
    .page-struktur .results,
    .page-struktur .cta,
    .page-struktur .footer {
        padding-left: 25px;
        padding-right: 25px;
    }

    .page-struktur .approach-steps {
        grid-template-columns: 1fr;
    }

    .page-struktur .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-struktur .cta-inner {
        padding: 50px 30px;
    }

    .page-struktur .cta-title {
        font-size: 40px;
    }
}

/* ---- kreativ ---- */
@media (max-width: 768px) {
    .page-kreativ .hero,
    .page-kreativ .services,
    .page-kreativ .portfolio,
    .page-kreativ .philosophy,
    .page-kreativ .clients,
    .page-kreativ .cta,
    .page-kreativ .footer {
        padding-left: 25px;
        padding-right: 25px;
    }

    .page-kreativ .marquee-item {
        font-size: 24px;
    }

    .page-kreativ .section-title {
        font-size: 48px;
    }

    .page-kreativ .cta-inner {
        padding: 60px 30px;
    }

    .page-kreativ .cta-title {
        font-size: 48px;
    }

    .page-kreativ .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .page-kreativ .client-logo {
        max-width: 100px;
        max-height: 40px;
    }

    .page-kreativ .client-placeholder {
        width: 100%;
        height: 50px;
    }
}

/* ---- about ---- */
@media (max-width: 1024px) {
    .page-about .story-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .page-about .person-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-about .person-photo-placeholder {
        aspect-ratio: 1;
    }
}

@media (max-width: 768px) {
    .page-about .hero,
    .page-about .story,
    .page-about .divisions,
    .page-about .philosophy,
    .page-about .footer {
        padding-left: 25px;
        padding-right: 25px;
    }

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

/* ---- contact ---- */
@media (max-width: 1024px) {
    .page-contact .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-contact .hero,
    .page-contact .contact-section,
    .page-contact .footer {
        padding-left: 25px;
        padding-right: 25px;
    }

    .page-contact .contact-card {
        padding: 40px;
    }

    .page-contact .contact-division-name {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
    }

    .faq-section .section-title {
        font-size: 48px;
    }
}

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

    .orb,
    .cursor-spotlight,
    .marquee-content,
    .portfolio-item {
        transform: none !important;
        animation: none !important;
    }
}
