/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Pastel Colors on Dark Background */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --pastel-pink: #ffb3d9;
    --pastel-blue: #a8d8ea;
    --pastel-purple: #c7b3ff;
    --pastel-green: #b3ffc7;
    --pastel-yellow: #fff4b3;
    --pastel-orange: #ffd4b3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --accent-gradient: linear-gradient(135deg, var(--pastel-purple), var(--pastel-pink));
    --shadow-glow: 0 0 30px rgba(199, 179, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
}

/* ===================================
   Navigation
   =================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.news-ticker {
    position: fixed;
    bottom: 32px;
    left: 0;
    right: 0;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: linear-gradient(90deg, rgba(10,10,15,0.95), rgba(15,23,42,0.95));
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 998;
    pointer-events: none;
}

body.show-news-ticker .news-ticker {
    display: flex;
}

.news-ticker-inner {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    font-size: 12px;
    color: var(--text-secondary);
}

.news-ticker-label {
    flex-shrink: 0;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(199, 179, 255, 0.18);
    border: 1px solid rgba(199, 179, 255, 0.35);
    color: var(--pastel-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.news-ticker-track {
    flex: 1;
    overflow: hidden;
}

.news-ticker-item {
    display: inline-block;
    white-space: nowrap;
    opacity: 0.85;
    animation: newsTickerScroll 116s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

@keyframes newsTickerScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-ai {
    font-size: 12px;
    font-weight: 300;
    color: var(--pastel-blue);
    letter-spacing: 2px;
}

.nav-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: var(--glass-border);
    transform: scale(1.2);
}

.dot.active {
    background: var(--pastel-purple);
    border-color: var(--pastel-purple);
    box-shadow: 0 0 15px var(--pastel-purple);
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover:not(:disabled) {
    background: var(--glass-border);
    transform: scale(1.1);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* CTA Button in Navigation */
.nav-cta {
    padding: 10px 18px;
    margin-left: 8px;
    border-radius: 999px;
    background: var(--accent-gradient);
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(199, 179, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(199, 179, 255, 0.6);
}

.nav-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(199, 179, 255, 0.4);
}

.nav-power {
    margin-left: 8px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.4);
    color: #ff8a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-power:hover {
    background: rgba(239, 68, 68, 0.25);
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.5);
    transform: translateY(-1px);
}

.nav-power:active {
    transform: translateY(0);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.tv-off-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease-out;
    z-index: 1200;
}

.tv-off-overlay.active {
    pointer-events: auto;
    opacity: 1;
}

.tv-off-screen {
    width: 100%;
    height: 100%;
    background: #000;
    animation: tvOff 0.9s ease-out forwards;
}

.tv-off-screen--testcard {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right,
            #c0392b 0%, #c0392b 10%,
            #f1c40f 10%, #f1c40f 20%,
            #27ae60 20%, #27ae60 30%,
            #2980b9 30%, #2980b9 40%,
            #8e44ad 40%, #8e44ad 50%,
            #ecf0f1 50%, #ecf0f1 60%,
            #e67e22 60%, #e67e22 70%,
            #1abc9c 70%, #1abc9c 80%,
            #34495e 80%, #34495e 90%,
            #2c3e50 90%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.tv-off-screen--testcard::before {
    content: '';
    position: absolute;
    inset: 20% 5%;
    border-radius: 12px;
    border: 8px solid rgba(0, 0, 0, 0.7);
    background:
        repeating-linear-gradient(
            to right,
            #000 0, #000 8px,
            #fff 8px, #fff 16px
        );
    opacity: 0.9;
}

.tv-off-screen--testcard::after {
    content: 'SENDEPAUSE';
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.8);
    color: #f1f5f9;
    font-size: 14px;
    letter-spacing: 0.12em;
}
}

@keyframes tvOff {
    0% {
        transform: scaleY(1);
        opacity: 1;
    }
    60% {
        transform: scaleY(0.03);
        opacity: 1;
        box-shadow: 0 0 24px rgba(255, 255, 255, 0.8);
        background: linear-gradient(to bottom, #fff, #888, #000);
    }
    100% {
        transform: scaleY(0);
        opacity: 0;
        box-shadow: none;
        background: #000;
    }
}

.tv-off-message {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    z-index: 1201;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #e5e7eb;
    text-align: center;
    padding: 0 24px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
    transform: scale(1.02);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tv-off-message.visible {
    opacity: 1;
    transform: scale(1);
}

.tv-off-message--dark {
    color: #020617;
    text-shadow: none;
    align-items: flex-end;
    padding-bottom: 80px;
}

/* Hamburger menu (hidden on desktop) */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-hamburger:hover {
    background: var(--glass-border);
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    margin-top: 8px;
    min-width: 160px;
    padding: 8px 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.nav-menu.open {
    display: flex;
    flex-direction: column;
}

.nav-menu-item {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-menu-item:hover {
    background: var(--glass-bg);
}

.nav-menu-item.active {
    color: var(--pastel-purple);
}

/* Intro Skip Button – im unteren Drittel */
.intro-skip {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: var(--pastel-blue);
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1002;
    pointer-events: auto;
}

.intro-skip:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-50%) translateY(-2px);
}

/* ===================================
   Main Container & Sections
   =================================== */
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 80px;
}

.section {
    min-width: 100vw;
    height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 60px;
}

/* ===================================
   Glass Cubes Background Animation
   =================================== */
.glass-cubes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.glass-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(199, 179, 255, 0.1) 0%, 
        rgba(168, 216, 234, 0.1) 50%, 
        rgba(255, 179, 217, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    animation: rotateCube 8s infinite ease-in-out;
    transform-style: preserve-3d;
}

@keyframes rotateCube {
    0%, 100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
        transform: perspective(1000px) rotateX(90deg) rotateY(45deg) rotateZ(0deg);
    }
    50% {
        transform: perspective(1000px) rotateX(180deg) rotateY(90deg) rotateZ(45deg);
    }
    75% {
        transform: perspective(1000px) rotateX(270deg) rotateY(135deg) rotateZ(90deg);
    }
}

/* ===================================
   Content Wrapper
   =================================== */
.content-wrapper {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1400px;
    padding: 24px 40px;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.glass:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* In der Sektion \"Über uns\" kein Hover-Shift,
   damit das Layout nicht \"wackelt\" */
.about-section .glass:hover {
    transform: none;
}

/* ===================================
   Section 0: Intro with Quote
   =================================== */
.intro-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 100%);
}

.quote-container {
    position: relative;
    z-index: 1001;
    text-align: center;
    max-width: 900px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 100%;
}

.quote-text {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--pastel-purple);
    background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-pink), var(--pastel-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-height: 1.2em;
    position: relative;
    white-space: pre-line;
}

.quote-text::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 4px;
    background-color: rgba(199, 179, 255, 0.8);
    animation: caret-blink 1s steps(2, start) infinite;
}

@keyframes caret-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* ===================================
   Section 1: Home
   =================================== */
.home-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #0f1a2e 100%);
}

.main-title {
    text-align: center;
    margin-bottom: 12px;
}

.title-line {
    display: block;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.title-highlight {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 54px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-glow);
}

.subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--pastel-blue);
    margin-bottom: 30px;
}

.home-tagline {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.home-rotator {
    margin: 10px auto 40px;
    max-width: 980px;
    padding: 26px 30px 30px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

.home-rotator-inner {
    position: relative;
    min-height: 150px;
}

.home-rotator-item {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
    padding: 8px 12px;
}

.home-rotator-item.active {
    opacity: 1;
    transform: translateY(0);
}

.home-rotator-icon {
    font-size: 40px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px rgba(199, 179, 255, 0.7));
}

.home-rotator h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--pastel-green);
}

.home-rotator p {
    max-width: 760px;
    font-size: 14px;
    color: var(--text-secondary);
}

.home-rotator-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.home-rotator-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    transition: all 0.25s ease;
}

.home-rotator-dot.active {
    width: 22px;
    background: var(--pastel-purple);
    box-shadow: 0 0 12px rgba(199, 179, 255, 0.8);
}

.services-rotator {
    margin: 26px auto 12px;
    max-width: 1200px;
    padding: 28px 32px 30px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

.services-rotator-inner {
    position: relative;
    min-height: 210px;
}

.services-rotator-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.services-rotator-item.active {
    opacity: 1;
    transform: translateY(0);
}

.services-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--pastel-blue);
    margin-bottom: 6px;
}

.services-rotator h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--pastel-purple);
}

.services-rotator p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.services-rotator .service-list {
    margin-top: 6px;
}

.services-rotator-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.services-rotator-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    transition: all 0.25s ease;
}

.services-rotator-dot.active {
    width: 22px;
    background: var(--pastel-purple);
    box-shadow: 0 0 12px rgba(199, 179, 255, 0.8);
}

.home-hook {
    margin: 16px auto 26px;
    max-width: 980px;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.075);
    text-align: center;
}

.home-hook:hover {
    transform: none;
}

.home-hook h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--pastel-green);
    letter-spacing: 0.01em;
}

.home-hook p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.65;
}

.home-hook strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.home-hook .hook-question {
    display: block;
    margin-bottom: 6px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 24px 16px;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 20px rgba(199, 179, 255, 0.5));
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--pastel-purple);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 13px;
}

.home-security {
    margin: 48px auto 0;
    max-width: 900px;
    text-align: center;
}

.home-security h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--pastel-green);
}

.home-security p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.home-security .service-list {
    display: inline-block;
    text-align: left;
    margin: 10px auto 0;
}

.home-security .service-list li {
    color: var(--pastel-blue);
}

/* ===================================
   Contact Layout (zwei Spalten)
   =================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-box h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--pastel-purple);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8b8c8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option {
    background: #1a0a2e;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(199, 179, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(184, 184, 200, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-recaptcha {
    margin: 4px 0;
}

.form-submit {
    align-self: flex-start;
    margin-top: 4px;
    font-size: 14px;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    /* Dezente Leit-Animation für Navigationselemente auf Mobile */
    .nav-hamburger {
        animation: navGlow 2.4s ease-in-out infinite;
    }

    .nav-arrows .nav-arrow.next {
        animation: navGlow 2.4s ease-in-out infinite;
    }
}

@keyframes navGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(199, 179, 255, 0);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 16px rgba(199, 179, 255, 0.7);
        transform: translateY(-1px);
    }
}

footer .footer-link {
    opacity: 0;
}

footer:hover .footer-link {
    opacity: 0.7;
}

.footer-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    transition: color 0.2s ease, text-shadow 0.2s ease, opacity 0.2s ease;
}

.footer-link:hover {
    color: var(--pastel-purple) !important;
    text-shadow: 0 0 10px rgba(199, 179, 255, 0.9);
    opacity: 1 !important;
}

.about-faq-link {
    margin-top: 24px;
    max-width: 900px;
}

.about-faq-link h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--pastel-green);
}

.about-faq-link p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.about-faq-link-button {
    display: inline-block;
    margin-top: 4px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Cookie-Hinweis (informativ, keine Consent-Mechanik) */
.cookie-banner {
    position: fixed;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 380px;
    width: calc(100% - 32px);
    padding: 12px 16px;
    background: rgba(10, 10, 20, 0.95);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.6;
    display: none;
    z-index: 1100;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-banner-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--pastel-green);
}

.cookie-banner button {
    align-self: flex-end;
    margin-top: 4px;
    padding: 6px 14px;
    border-radius: 999px;
    border: none;
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

/* ===================================
   Section 2: Services
   =================================== */
.services-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0f2e 100%);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.service-item {
    padding: 18px 24px;
}

.service-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--pastel-purple);
    opacity: 0.3;
    margin-bottom: 6px;
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--pastel-pink);
}

.service-item p {
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 13px;
}

.service-list {
    list-style: none;
    margin-top: 6px;
}

.service-list li {
    padding: 3px 0;
    padding-left: 22px;
    position: relative;
    color: var(--pastel-blue);
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pastel-purple);
}

/* ===================================
   Section 3: Portfolio
   =================================== */
.portfolio-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #0f2e1a 100%);
}

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

.portfolio-item {
    padding: 0;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image .portfolio-video {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-image:hover .portfolio-video,
.portfolio-image.video-active .portfolio-video {
    transform: scale(1.08);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .image-placeholder {
    transform: scale(1.1);
}

.placeholder-icon {
    font-size: 64px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

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

.portfolio-content {
    padding: 18px 20px;
}

.portfolio-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--pastel-green);
}

.portfolio-client {
    font-size: 14px;
    color: var(--pastel-yellow);
    margin-bottom: 15px;
}

.portfolio-content > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 15px;
    background: rgba(199, 179, 255, 0.2);
    border: 1px solid var(--pastel-purple);
    border-radius: 20px;
    font-size: 12px;
    color: var(--pastel-purple);
}

/* ===================================
   Section 4: About
   =================================== */
.about-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #2e1a0f 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--pastel-orange);
    text-align: center;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--pastel-yellow);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-values-rotator {
    margin-top: 24px;
    max-width: 520px;
    width: 100%;
    padding: 18px 22px 20px;
    border-radius: 18px;
}

.about-values-inner {
    position: relative;
    min-height: 80px;
}

.about-value-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.about-value-item.active {
    opacity: 1;
    transform: translateY(0);
}

.value-icon {
    font-size: 22px;
    margin-bottom: 4px;
    text-align: center;
}

.about-value-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--pastel-orange);
    text-align: center;
}

.about-values-rotator p {
    font-size: 13px;
    color: var(--text-secondary);
}

.about-values-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.about-values-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
}

.about-values-dot.active {
    width: 16px;
    background: var(--pastel-purple);
    box-shadow: 0 0 8px rgba(199, 179, 255, 0.7);
}

.about-faq {
    margin-top: 24px;
    max-width: 900px;
}

.about-faq h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--pastel-green);
}

.about-faq details {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 8px;
    cursor: pointer;
}

.about-faq summary {
    font-weight: 500;
    color: var(--text-primary);
    list-style: none;
}

.about-faq summary::-webkit-details-marker {
    display: none;
}

.about-faq details[open] {
    background: rgba(0, 0, 0, 0.25);
}

.about-faq p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.value-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===================================
   Section 5: Contact
   =================================== */
.contact-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a2e2e 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-centered {
    display: flex;
    justify-content: center;
}

.contact-centered .contact-text {
    max-width: 600px;
    width: 100%;
}

.contact-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--pastel-blue);
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 216, 234, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.method-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.method-value {
    font-size: 15px;
    color: var(--pastel-blue);
    font-weight: 500;
}

/* Contact Form */
.contact-form-container {
    position: relative;
    padding: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: var(--pastel-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pastel-blue);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    margin-top: 10px;
    padding: 15px 30px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(199, 179, 255, 0.4);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--pastel-green), var(--pastel-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.form-success h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--pastel-green);
}

.form-success p {
    color: var(--text-secondary);
}

/* ===================================
   Responsive Design
   =================================== */
/* ===================================
   Tablet landscape (max 1400px)
   =================================== */
@media (max-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

/* ===================================
   Tablet portrait (max 1024px)
   =================================== */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 20px 24px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .portfolio-image {
        height: 160px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .about-values {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ===================================
   Tablet & large phones (max 900px)
   =================================== */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .section {
        height: auto;
        min-height: calc(100vh - 80px);
        overflow-y: auto;
        align-items: flex-start;
        padding-top: 24px;
        padding-bottom: 70px;
    }
}

/* ===================================
   Mobile (max 768px)
   =================================== */
@media (max-width: 768px) {
    .main-nav {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-ai {
        font-size: 10px;
    }

    .nav-dots {
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .nav-arrow {
        width: 34px;
        height: 34px;
    }

    .title-highlight {
        font-size: 40px;
    }

    .title-line {
        font-size: 22px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section {
        height: auto;
        min-height: calc(100vh - 80px);
        overflow-y: auto;
        align-items: flex-start;
        padding-top: 20px;
        padding-bottom: 70px;
    }

    .content-wrapper {
        padding: 16px;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card {
        padding: 16px 12px;
    }

    .feature-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .feature-card h3 {
        font-size: 14px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-image {
        height: 180px;
    }

    .portfolio-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-values {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 16px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-centered .contact-text {
        max-width: 100%;
    }

    .quote-text {
        font-size: 26px;
        padding: 20px;
    }

    footer {
        padding: 6px !important;
    }
}

/* ===================================
   Small phones (max 480px)
   =================================== */
@media (max-width: 480px) {
    .title-highlight {
        font-size: 30px;
    }

    .title-line {
        font-size: 18px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .quote-text {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .portfolio-image {
        height: 160px;
    }

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

    .nav-dots {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .stat-number {
        font-size: 22px;
    }

    .service-number {
        font-size: 22px;
    }
}

/* ===================================
   Animations & Effects
   =================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.glass-cube.float {
    animation: rotateCube 8s infinite ease-in-out, float 4s infinite ease-in-out;
}

/* Smooth scrollbar (for overflow scenarios) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pastel-purple);
}