:root {
    /* NEUES FARBSCHEMA: Schwarz / Weiß / Orange */
    --bg-color: #050505; 
    --text-color: #ffffff; 
    --accent-color: #ff4800; /* Kräftiges Orange statt Gelb */
    --border-color: #222222;
    
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Verhindert das seitliche Wackeln */
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    cursor: none; /* Custom Cursor aktiv */
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0;
}

p {
    margin-bottom: 1rem;
    color: #a0a0a0;
}

.highlight {
    color: var(--accent-color);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
}

.menu a:hover {
    color: var(--accent-color);
}

.cta-button {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--accent-color);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 11vw, 10rem); /* Passt sich Größe an */
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    max-width: 600px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    opacity: 0.6;
}

.line {
    width: 1px;
    height: 40px;
    background: white;
}

/* Marquee */
.marquee-container {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 1rem 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    margin-right: 4rem;
}

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

/* Sections General */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.intro h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

/* Services */
.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.service-row {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s;
}

.service-row:hover {
    background: #0f0f0f;
}

.service-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #444;
}

.service-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-tags span {
    display: inline-block;
    border: 1px solid #333;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    margin: 0 0.2rem 0.2rem 0;
    color: #777;
}

/* Clients Grid */
.clients .section-header {
    margin-bottom: 3rem;
}

.clients h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
}

.client-box {
    background-color: var(--bg-color);
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    transition: background 0.3s;
}

.client-box img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s;
}

.client-box:hover {
    background-color: #0f0f0f;
}

.client-box:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Footer */
footer {
    padding: 4rem 5%;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.big-link {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    color: white;
    text-decoration: none;
    line-height: 1;
    margin-top: 1rem;
}

.big-link:hover {
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links h4 {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #555;
}

/* Animations */
.reveal-text, .reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-text.active, .reveal-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .menu { display: none; }
    .intro-grid { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 1fr; gap: 1rem; }
    .service-num, .service-tags { display: none; }
    .footer-top { flex-direction: column; }
    
    /* Cursor auf Touch-Geräten ausschalten */
    .cursor, .cursor-follower { display: none; }
    * { cursor: auto !important; }
}