/**
 * ============================================
 * SECTIONS.CSS - Konsolidierte Section-Styles
 * AI Experience Room - INNOPORT Reutlingen
 * ============================================
 *
 * Sections:
 * - section-hero.php
 * - section-video.php
 * - section-raum.php
 * - section-ablauf.php
 * - section-weiche.php
 * - section-preise.php (AI Experience)
 * - section-team.php (Team Experience)
 * - section-impressions.php
 * - section-faq.php
 * - section-footer.php
 */


/* ============================================
   SECTION 1A: HERO STYLES
============================================ */
.hero-section {
    background: #000;
    position: relative;
    overflow: hidden;
}

.synapse-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    z-index: 10;
    pointer-events: none;
}

.key-container {
    position: relative;
    width: 150px;
    height: 300px;
    animation: float 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .key-container { width: 180px; height: 360px; }
}

.key-svg {
    width: 100%;
    height: 100%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-text {
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.hero-headline {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.hero-headline .line-1 {
    display: block;
    font-size: clamp(2.5rem, 12vw, 7rem);
    animation: fade-in-up 0.8s ease-out 0.3s both;
}

.hero-headline .line-2 {
    display: block;
    font-size: clamp(2rem, 10vw, 5.5rem);
    color: rgba(255, 255, 255, 0.8);
    animation: fade-in-up 0.8s ease-out 0.5s both;
}

.hero-headline .line-3 {
    display: block;
    font-size: clamp(3rem, 15vw, 9rem);
    animation: fade-in-up 0.8s ease-out 0.7s both;
}

.hero-headline .highlight {
    color: var(--accent);
    animation: fade-in-up 0.8s ease-out 0.7s both;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
    .hero-headline .highlight {
        background: linear-gradient(90deg, var(--accent), var(--accent-secondary), var(--accent));
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shimmer 4s linear infinite, fade-in-up 0.8s ease-out 0.7s both;
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .key-container { width: 120px; height: 240px; }
    .hero-content { gap: 1.5rem; }
}


/* ============================================
   SECTION 2: VIDEO STYLES
============================================ */
.video-section {
    background: #000;
    position: relative;
}

/* Video Container */
.video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Content */
.video-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

/* Badge */
.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.video-badge.visible {
    opacity: 1;
    transform: translateY(0);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Logo */
.video-logo {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
}

.video-logo.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-img {
    width: clamp(280px, 80vw, 600px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

/* Intro Text */
.video-intro {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-align: center;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.4s;
}

.video-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-intro strong {
    color: var(--accent);
}

/* Tagline */
.video-tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.6s;
}

.video-tagline.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-tagline strong {
    color: #fff;
    font-weight: 700;
}

/* Corner Frames */
.corner-frame {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 240, 255, 0.3);
    pointer-events: none;
}

.corner-frame.top-left {
    top: 2rem;
    left: 2rem;
    border-right: none;
    border-bottom: none;
}

.corner-frame.top-right {
    top: 2rem;
    right: 2rem;
    border-left: none;
    border-bottom: none;
}

.corner-frame.bottom-left {
    bottom: 5rem;
    left: 2rem;
    border-right: none;
    border-top: none;
}

.corner-frame.bottom-right {
    bottom: 5rem;
    right: 2rem;
    border-left: none;
    border-top: none;
}

@media (max-width: 768px) {
    .corner-frame {
        width: 30px;
        height: 30px;
    }

    .corner-frame.top-left,
    .corner-frame.top-right {
        top: 1rem;
    }

    .corner-frame.top-left,
    .corner-frame.bottom-left {
        left: 1rem;
    }

    .corner-frame.top-right,
    .corner-frame.bottom-right {
        right: 1rem;
    }

    .corner-frame.bottom-left,
    .corner-frame.bottom-right {
        bottom: 4rem;
    }
}

@media (max-width: 480px) {
    .video-content {
        gap: 1.5rem;
        padding: 1rem;
    }
}


/* ============================================
   SECTION 3: ABLAUF STYLES - INTENSE
============================================ */
.ablauf-section {
    background: linear-gradient(180deg, #000 0%, #050510 50%, #0a0a15 100%);
    position: relative;
}

.ablauf-section .section-content {
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
    z-index: 10;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0;
    animation: icon-pulse-anim 2s ease-out infinite;
}

.timeline-item:nth-child(1) .icon-pulse { animation-delay: 0s; }
.timeline-item:nth-child(2) .icon-pulse { animation-delay: 0.5s; }
.timeline-item:nth-child(3) .icon-pulse { animation-delay: 1s; }

@keyframes icon-pulse-anim {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.timeline-icon.active,
.timeline-item:hover .timeline-icon {
    border-color: var(--accent);
    background: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(0,240,255,0.2);
    transform: scale(1.1);
}

.timeline-icon.active svg,
.timeline-item:hover .timeline-icon svg {
    color: var(--accent);
    filter: drop-shadow(0 0 5px var(--accent));
}

.timeline-connector {
    position: absolute;
    left: 27px;
    top: 56px;
    width: 2px;
    height: calc(100% - 56px);
    background: linear-gradient(to bottom, var(--accent), var(--accent-secondary), transparent);
    opacity: 0.5;
}

.connector-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    left: -2px;
    top: 0;
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
    animation: spark-travel 3s ease-in-out infinite;
}

.timeline-item:nth-child(1) .connector-spark { animation-delay: 0s; }
.timeline-item:nth-child(2) .connector-spark { animation-delay: 1s; }

@keyframes spark-travel {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-duration {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: rgba(0, 240, 255, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 240, 255, 0.3);
    animation: duration-glow 2s ease-in-out infinite;
}

@keyframes duration-glow {
    0%, 100% { box-shadow: 0 0 5px var(--accent-glow); }
    50% { box-shadow: 0 0 15px var(--accent-glow), 0 0 25px rgba(0,240,255,0.3); }
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content h3 {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Note */
.ablauf-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
}

.ablauf-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    margin: 0;
}

.ablauf-note a {
    color: var(--accent);
    text-decoration: none;
}

.ablauf-note a:hover {
    text-decoration: underline;
}

/* Background Elements - INTENSE */
.ablauf-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.glow-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 5%;
    left: -15%;
    opacity: 0.25;
    animation: orb-float-1 8s ease-in-out infinite;
}

.glow-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--accent-secondary);
    bottom: 5%;
    right: -15%;
    opacity: 0.2;
    animation: orb-float-2 10s ease-in-out infinite;
}

.glow-orb.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: orb-pulse 5s ease-in-out infinite;
}

@keyframes orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 15px) scale(1.15); }
}

@keyframes orb-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.2; }
}

.floating-ring {
    position: absolute;
    border: 1px solid var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.floating-ring.ring-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation: ring-rotate 20s linear infinite;
}

.floating-ring.ring-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    border-color: var(--accent-secondary);
    animation: ring-rotate 15s linear infinite reverse;
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile */
@media (max-width: 480px) {
    .timeline-item {
        gap: 1rem;
    }

    .timeline-icon {
        width: 48px;
        height: 48px;
    }

    .timeline-icon svg {
        width: 20px;
        height: 20px;
    }

    .timeline-connector {
        left: 23px;
        top: 48px;
        height: calc(100% - 48px);
    }
}


/* ============================================
   SECTION 4: RAUM STYLES
============================================ */
.raum-section {
    background: url('../assets/images/bg.png') center center / cover no-repeat fixed;
    position: relative;
}

.raum-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.raum-section .section-content {
    width: 100%;
    max-width: 1100px;
    padding: 0 1rem;
    z-index: 10;
    position: relative;
}

/* Room Cards Grid */
.room-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .room-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Room Card */
.room-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2), 0 0 60px rgba(0, 240, 255, 0.1);
}

.room-card:hover::before {
    opacity: 1;
}

.room-card.featured {
    border-color: rgba(0, 240, 255, 0.3);
}

.room-card.featured::before {
    opacity: 1;
}

/* Room Image */
.room-image {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

/* Room Number */
.room-number {
    font-size: clamp(2rem, 8vw, 2.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    line-height: 1;
}

/* Room Content */
.room-card h3 {
    font-size: clamp(1rem, 3vw, 1.15rem);
    margin-bottom: 0.5rem;
}

.room-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* Room Tags */
.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.room-tags span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.5);
}


/* ============================================
   SECTION: FAQ STYLES
============================================ */
.faq-section {
    background: linear-gradient(180deg, #0a0a15 0%, #0d0d18 50%, #0a0a15 100%);
    position: relative;
}

.faq-section .section-content {
    width: 100%;
    max-width: 700px;
    padding: 0 1rem;
    z-index: 10;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* FAQ Item */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.open {
    border-color: var(--accent);
}

/* FAQ Question */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Campton', sans-serif;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question span {
    flex: 1;
}

/* FAQ Icon */
.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--accent);
}

/* Mobile */
@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem;
    }
}


/* ============================================
   SECTION 9: CTA STYLES
============================================ */
.cta-section {
    background: #000;
    position: relative;
    min-height: 80vh;
    min-height: 80dvh;
}

.cta-content {
    width: 100%;
    max-width: 700px;
    padding: 0 1rem;
    z-index: 10;
    text-align: center;
}

.cta-block h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* CTA Contact */
.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 600px) {
    .cta-contact {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--accent);
}

.contact-item svg {
    width: 18px;
    height: 18px;
}

/* CTA Background */
.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
    filter: blur(60px);
}


/* ============================================
   FOOTER STYLES
============================================ */
.site-footer {
    background: #050507;
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 1rem 2rem;
    scroll-snap-align: end;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Footer Logo */
.footer-logo {
    width: clamp(180px, 40vw, 250px);
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-address {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-tagline {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links .divider {
    color: rgba(255, 255, 255, 0.2);
}

.partners-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.partners-label a {
    color: var(--accent);
    text-decoration: none;
}

.partners-label a:hover {
    text-decoration: underline;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.partners-logos a,
.partners-logos span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    height: 70px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.partners-logos a:hover {
    opacity: 1;
}

.partners-logos img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-gender-notice {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

/* Powered By */
.footer-powered-by {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-powered-by span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
}

.footer-powered-by a {
    display: inline-block;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-powered-by a:hover {
    opacity: 1;
}

.footer-powered-by img {
    height: 72px;
    width: auto;
}


/* ============================================
   SECTION 2: WEICHE STYLES - "Wer bist du?"
============================================ */
.weiche-section {
    background: linear-gradient(180deg, #050510 0%, #0a0a15 50%, #050510 100%);
    position: relative;
}

.weiche-section .section-content {
    width: 100%;
    max-width: 1000px;
    padding: 0 1.5rem;
    z-index: 10;
    text-align: center;
}

/* Weiche Cards Container */
.weiche-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

@media (min-width: 768px) {
    .weiche-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .weiche-cards.three-cols {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .weiche-cards.three-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .weiche-cards.three-cols {
        grid-template-columns: 1fr;
    }
}

/* Weiche Card */
.weiche-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.weiche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.weiche-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15);
}

.weiche-card:hover::before {
    opacity: 1;
}

.weiche-card.featured {
    border-color: rgba(0, 240, 255, 0.3);
}

.weiche-card.featured::before {
    opacity: 1;
}

.weiche-card.featured:hover {
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.25), 0 0 80px rgba(0, 240, 255, 0.1);
}

/* Weiche Glow */
.weiche-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Weiche Icon */
.weiche-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.weiche-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.weiche-card:hover .weiche-icon {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transform: scale(1.1);
}

/* Weiche Content */
.weiche-card h3 {
    font-size: clamp(1.4rem, 4vw, 1.75rem);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.weiche-card:hover h3 {
    color: var(--accent);
}

/* Weiche Target Tags */
.weiche-targets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.weiche-targets span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.weiche-card:hover .weiche-targets span {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.3);
}

.weiche-card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Weiche Features */
.weiche-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    width: 100%;
}

.weiche-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.weiche-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Weiche CTA */
.weiche-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.weiche-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.weiche-card:hover .weiche-cta svg {
    transform: translateX(5px);
}

/* Weiche Badge */
.weiche-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
}

/* Weiche Note */
.weiche-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.weiche-note strong {
    color: rgba(255, 255, 255, 0.8);
}

/* Weiche Background */
.weiche-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.weiche-bg .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.weiche-bg .orb-left {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 20%;
    left: -10%;
    opacity: 0.08;
    animation: weiche-orb-1 10s ease-in-out infinite;
}

.weiche-bg .orb-right {
    width: 350px;
    height: 350px;
    background: var(--accent-secondary);
    bottom: 20%;
    right: -10%;
    opacity: 0.06;
    animation: weiche-orb-2 12s ease-in-out infinite;
}

@keyframes weiche-orb-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

@keyframes weiche-orb-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 30px); }
}

/* Mobile */
@media (max-width: 480px) {
    .weiche-card {
        padding: 1.5rem;
    }

    .weiche-icon {
        width: 48px;
        height: 48px;
    }

    .weiche-icon svg {
        width: 24px;
        height: 24px;
    }
}


/* ============================================
   SECTION: AI EXPERIENCE STYLES
============================================ */
.ai-experience-section {
    background: linear-gradient(180deg, #000 0%, #0a0a12 50%, #000 100%);
    position: relative;
}

.ai-experience-section .section-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    z-index: 10;
}

.ai-experience-cta {
    text-align: center;
    margin-top: 1.5rem;
}


/* ============================================
   SECTION: TEAM EXPERIENCE STYLES
============================================ */
.team-section {
    background: linear-gradient(180deg, #000 0%, #0a0a12 50%, #000 100%);
    position: relative;
}

.team-section .section-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    z-index: 10;
}

/* Team Cards Grid */
.team-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

@media (min-width: 768px) {
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

/* Team Card */
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card.featured {
    border-color: var(--accent);
}

.team-card.featured::before {
    opacity: 1;
}

.team-card.featured:hover {
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15);
}

.team-card.special {
    border-style: dashed;
}

/* Team Card Glow */
.team-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Team Badge */
.team-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--accent);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
}

/* Team Card Header */
.team-card-header {
    margin-bottom: 0.75rem;
}

.team-card h3 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.team-duration {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--accent);
    background: rgba(0, 240, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
}

/* Team Description */
.team-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

/* Team Features */
.team-features {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.75rem;
}

.team-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.team-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Team Card Footer */
.team-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.team-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* Team Note */
.team-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-note strong {
    color: #fff;
}

.team-note a {
    color: var(--accent);
    text-decoration: none;
}

.team-note a:hover {
    text-decoration: underline;
}

/* Team Partner Note */
.team-partner-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.team-partner-note a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-partner-note a:hover {
    color: var(--accent);
}

/* Team Background */
.team-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.team-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,240,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,240,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Mobile */
@media (max-width: 480px) {
    .team-card {
        padding: 1.25rem;
    }

    .team-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .team-price {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}


/* ============================================
   FOOTER PARTNER BLOCKS (Melly's Structure)
============================================ */
.footer-partners-block {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-partners-block:last-of-type {
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 1.5rem;
}

.footer-partners-block .partners-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.footer-partners-block .partners-label strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-partners-block .partners-label a {
    color: var(--accent);
    text-decoration: none;
}

.footer-partners-block .partners-label a:hover {
    text-decoration: underline;
}

/* Top partner logos (2 logos side by side) */
.partners-logos-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.partners-logos-top a,
.partners-logos-top span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 0.25rem;
    height: 100px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partners-logos-top a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partners-logos-top img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Grid partner logos (6 logos in 2 columns mobile, 3 columns desktop) */
.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .partners-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.partners-logos-grid a,
.partners-logos-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 0.25rem;
    height: 90px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partners-logos-grid a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partners-logos-grid img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}


/* ============================================
   SECTION: IMPRESSIONS STYLES
============================================ */
.impressions-section {
    background: url('../assets/images/bg.png') center center / cover no-repeat fixed;
    position: relative;
}

.impressions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.impressions-section .section-content {
    width: 100%;
    max-width: 1000px;
    padding: 0 1rem;
    z-index: 10;
}

/* Impressions Grid */
.impressions-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
}

/* Impressions Row */
.impressions-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

@media (max-width: 1024px) {
    .impressions-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .impressions-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Impressions Item */
.impressions-item {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    border: none;
    background: var(--bg-card);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.impressions-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.impressions-item:focus {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.impressions-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.impressions-item:hover img {
    transform: scale(1.1);
}

/* Impressions Overlay */
.impressions-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        transparent 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.impressions-item:hover .impressions-overlay {
    opacity: 1;
}

/* Impressions Zoom Icon (appears on hover) */
.impressions-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    background: rgba(0, 240, 255, 0.9);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.impressions-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Impressions Gallery wrapper */
.impressions-gallery {
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Copyright */
.impressions-copyright {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.impressions-copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressions-copyright a:hover {
    color: var(--accent);
}

/* Tablet */
@media (max-width: 1024px) {
    .impressions-row {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .impressions-gallery {
        gap: 4px;
    }

    .impressions-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 4px;
        padding-bottom: 0.5rem;
    }

    .impressions-item {
        flex: 0 0 32%;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .impressions-item {
        flex: 0 0 45%;
    }

    .impressions-item::after {
        width: 32px;
        height: 32px;
        background-size: 16px;
    }
}
