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

:root {
    /* Primärfarben */
    --color-gold: #d4a574;
    --color-gold-light: #e4b584;
    --color-gold-lighter: #f4c594;
    --color-gold-dark: #c49564;

    /* Grautöne */
    --color-dark: #000000;
    --color-darker: #0a0a0a;
    --color-gray-dark: #333333;
    --color-gray: #666666;
    --color-gray-light: #888888;
    --color-gray-lighter: #999999;
    --color-gray-lightest: #aaaaaa;
    --color-white: #ffffff;

    /* Schatten */
    --shadow-button: 0 3px 0 0 #5a4a3a, 0 3px 0 2px #000, 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-button-pressed: 0 1.5px 0 0 #5a4a3a, 0 1.5px 0 2px #000, 0 3px 5px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

#ledScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: background-color 0.4s ease 0.6s, backdrop-filter 0.4s ease 0.6s;
    pointer-events: none;
}

.main-header.visible {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #666666;
    letter-spacing: -1px;
    line-height: 0.85;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-header.visible .logo {
    opacity: 1;
}

.main-nav {
    display: flex;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.main-header.visible .main-nav {
    opacity: 1;
}

.main-nav a {
    color: #888888;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #888888;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: #d4a574;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: #d4a574;
}

.main-header.visible .hamburger-line {
    background-color: #ffffff;
}

.mobile-menu-toggle.active .hamburger-line {
    background-color: #d4a574;
}

/* Mobile Menu Overlay */
.main-header::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    pointer-events: none;
}

.main-header.menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Landing Section */
.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100vh;
    display: flex;
    pointer-events: none;
}

.left-section {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 60px 60px 60px;
    /* Kein transition - wird via JS gesteuert */
    will-change: transform;
}

.brand-name {
    font-size: 72px;
    font-weight: 600;
    letter-spacing: -2px;
    color: #666666;
    margin-bottom: 20px;
    text-align: left;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    line-height: 0.85;
    opacity: 1;
    /* Kein transition für Größe/Position - wird via JS gesteuert */
    transition: opacity 0.4s ease;
}

.content-overlay.header-visible .brand-name {
    opacity: 0;
}

.tagline {
    font-size: 20px;
    font-weight: 300;
    color: #888888;
    text-align: left;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    opacity: 1;
    /* Kein transition - wird via JS gesteuert */
}

.subheadline {
    font-size: 15px;
    font-weight: 400;
    color: #777777;
    text-align: left;
    line-height: 1.6;
    margin-top: 30px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 35px;
    flex-wrap: nowrap;
    pointer-events: auto;
}

.cta-button-primary,
.cta-button-secondary {
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: auto;
    position: relative;
}

.cta-button-primary {
    background: linear-gradient(180deg, #e4b584 0%, #d4a574 100%);
    color: #000;
    border: 2px solid #c49564;
    box-shadow:
        0 3px 0 0 #5a4a3a,
        0 3px 0 2px #000,
        0 4px 6px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button-primary:hover {
    background: linear-gradient(180deg, #f4c594 0%, #e4b584 100%);
    transform: translateY(1.5px);
    box-shadow:
        0 1.5px 0 0 #5a4a3a,
        0 1.5px 0 2px #000,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

.cta-button-primary:active {
    transform: translateY(3px);
    box-shadow:
        0 0 0 0 #5a4a3a,
        0 0 0 2px #000;
}

.cta-button-secondary {
    background: linear-gradient(180deg, #555555 0%, #444444 100%);
    color: #ffffff;
    border: 2px solid #3a3a3a;
    box-shadow:
        0 3px 0 0 #2a2a2a,
        0 3px 0 2px #000,
        0 4px 6px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.cta-button-secondary:hover {
    background: linear-gradient(180deg, #666666 0%, #555555 100%);
    transform: translateY(1.5px);
    box-shadow:
        0 1.5px 0 0 #2a2a2a,
        0 1.5px 0 2px #000,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary:active {
    transform: translateY(3px);
    box-shadow:
        0 0 0 0 #2a2a2a,
        0 0 0 2px #000;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    opacity: 1;
}

.trust-indicators span {
    font-size: 12px;
    color: #777777;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 3;
    margin-top: 100vh;
    background-color: #000000;
    min-height: 100vh;
    padding: 80px 60px;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Layout mit Animation */
.section-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px !important;
}

.section-layout.left {
    flex-direction: row;
}

.section-layout.right {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.section-layout.right .section-animation {
    margin-left: 0;
}

.section-layout.right .section-content {
    flex: 0 1 auto;
    max-width: 800px;
    margin-left: auto;
    margin-right: 0;
}

.section-content {
    flex: 1;
    min-width: 0;
}

.section-animation {
    flex: 0 0 450px;
    height: 400px;
}

.section-animation canvas {
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    border: 4px solid #4a4a4a;
    box-shadow:
        0 0 0 2px #2a2a2a,
        8px 8px 0 0 rgba(0, 0, 0, 0.4);
}

.content-section h2 {
    font-size: 48px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #999999;
    max-width: 800px;
    margin-bottom: 20px;
}

.content-section p:last-of-type {
    margin-bottom: 0;
}

.content-section p strong {
    color: #aaa;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

/* Pricing Section - 8-Bit Style */
.pricing-section {
    max-width: 1400px !important;
    position: relative;
}

.pricing-content {
    position: relative;
    z-index: 1;
}

.pricing-content h2 {
    text-align: center;
    color: #d4a574;
}

.pricing-intro {
    text-align: center;
    max-width: 900px !important;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #aaa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* New Pricing Cards - Milia Style */
.pricing-card-new {
    position: relative;
    background: #0a0a0a;
    border: 3px solid #333333;
    border-radius: 20px;
    box-shadow: 0px 16px 40px -8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

.pricing-card-new:hover {
    transform: translateY(-4px);
    border-color: #d4a574;
    box-shadow: 0px 16px 50px -8px rgba(212, 165, 116, 0.3);
}

/* Featured card styling */
.pricing-card-new.featured-card {
    border-color: #444444;
    box-shadow: 0px 16px 50px -8px rgba(212, 165, 116, 0.2);
}

.pricing-card-new.featured-card:hover {
    border-color: #d4a574;
    box-shadow: 0px 16px 60px -8px rgba(212, 165, 116, 0.4);
}

/* Content overlay */
.card-content-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: auto;
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

/* Featured badge */
.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #d4a574;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 0 20px 0 12px;
    box-shadow: 0px 4px 12px rgba(212, 165, 116, 0.3);
}

/* Icon container */
.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    color: #d4a574;
    transition: all 0.3s ease;
}

.pricing-card-new:hover .card-icon {
    background: rgba(212, 165, 116, 0.15);
    transform: scale(1.05);
}

.pricing-card-new:hover .card-icon svg {
    color: #e4b584;
}

/* Card title */
.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #aaaaaa;
    margin: 0 0 25px 0;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.featured-card .card-title {
    color: #d4a574;
}

/* Price display */
.card-price-new {
    text-align: center;
    margin-bottom: 28px;
    padding: 20px 18px;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.15);
    width: 100%;
}

.price-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -2px;
}

.price-unit {
    display: block;
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Features list */
.features-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    flex: 1;
    text-align: left;
}

.features-list-new li {
    padding: 10px 0;
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list-new li:last-child {
    border-bottom: none;
}

.features-list-new li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #d4a574;
    font-size: 16px;
    font-weight: bold;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(180deg, #e4b584 0%, #d4a574 100%);
    color: #000;
    border: 2px solid #c49564;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow:
        0 3px 0 0 #5a4a3a,
        0 3px 0 2px #000,
        0 4px 6px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    margin-top: 30px;
    flex-shrink: 0;
}

.cta-button:hover {
    background: linear-gradient(180deg, #f4c594 0%, #e4b584 100%);
    transform: translateY(1.5px);
    box-shadow:
        0 1.5px 0 0 #5a4a3a,
        0 1.5px 0 2px #000,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(3px);
    box-shadow:
        0 0 0 0 #5a4a3a,
        0 0 0 2px #000;
}

/* IoT Add-on Section */
.iot-addon-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.iot-addon-card {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, #0a0a0a 100%);
    border: 2px solid #d4a574;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0px 16px 40px -8px rgba(212, 165, 116, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
}

.iot-addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4a574 20%, #e4b584 50%, #d4a574 80%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.iot-addon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 20px 50px -8px rgba(212, 165, 116, 0.4);
    border-color: #e4b584;
}

/* Badge wie BELIEBT */
.iot-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #d4a574;
    color: #000;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 0 16px 0 10px;
    box-shadow: 0px 4px 12px rgba(212, 165, 116, 0.3);
}

.iot-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.iot-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 12px;
    padding: 14px;
}

.iot-icon svg {
    width: 100%;
    height: 100%;
    color: #d4a574;
}

.iot-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.iot-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #e4b584;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.iot-tagline {
    font-size: 15px;
    line-height: 1.5;
    color: #cccccc;
    margin: 0;
}

.iot-features {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.iot-feature {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 500;
}

.iot-divider {
    color: #d4a574;
    font-size: 14px;
}

.iot-pricing {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iot-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.iot-price .price-value {
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
    letter-spacing: -1.5px;
    line-height: 1;
}

.iot-price .price-unit {
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.iot-button {
    margin-top: 0 !important;
    padding: 12px 24px;
    font-size: 12px;
    white-space: nowrap;
}

/* Responsive für IoT Add-on */
@media (max-width: 1200px) {
    .iot-content {
        gap: 24px;
    }

    .iot-header h3 {
        font-size: 20px;
    }

    .iot-tagline {
        font-size: 14px;
    }

    .iot-feature {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .iot-addon-card {
        padding: 1.75rem 2rem;
    }

    .iot-content {
        gap: 20px;
    }

    .iot-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    .iot-header h3 {
        font-size: 18px;
    }

    .iot-tagline {
        font-size: 13px;
    }

    .iot-price .price-value {
        font-size: 28px;
    }

    .iot-feature {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .iot-addon-section {
        margin-top: 30px;
    }

    .iot-addon-card {
        padding: 1.5rem;
    }

    .iot-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .iot-icon {
        align-self: center;
    }

    .iot-main {
        gap: 16px;
    }

    .iot-header h3 {
        font-size: 20px;
        text-align: center;
    }

    .iot-tagline {
        font-size: 14px;
        text-align: center;
    }

    .iot-features {
        justify-content: center;
    }

    .iot-feature {
        font-size: 13px;
    }

    .iot-pricing {
        align-items: center;
        gap: 20px;
    }

    .iot-price {
        align-items: center;
    }

    .iot-price .price-value {
        font-size: 32px;
    }

    .iot-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .iot-addon-card {
        padding: 1.25rem;
    }

    .iot-badge {
        font-size: 8px;
        padding: 5px 12px;
    }

    .iot-icon {
        width: 45px;
        height: 45px;
        padding: 10px;
    }

    .iot-header h3 {
        font-size: 18px;
    }

    .iot-tagline {
        font-size: 13px;
    }

    .iot-features {
        flex-direction: column;
        gap: 8px;
    }

    .iot-divider {
        display: none;
    }

    .iot-feature {
        font-size: 12px;
    }

    .iot-price .price-value {
        font-size: 28px;
    }

    .iot-price .price-unit {
        font-size: 10px;
    }

    .iot-button {
        font-size: 11px;
        padding: 11px 20px;
    }
}

@media (max-width: 1024px) {
    .brand-name {
        font-size: 48px;
    }

    .tagline {
        font-size: 16px;
    }

    .subheadline {
        font-size: 13px;
        margin-top: 20px;
    }

    .cta-buttons {
        margin-top: 25px;
        gap: 10px;
    }

    .cta-button-primary,
    .cta-button-secondary {
        padding: 9px 18px;
        font-size: 10px;
    }

    .trust-indicators {
        gap: 15px;
        margin-top: 25px;
    }

    .trust-indicators span {
        font-size: 11px;
    }

    .left-section {
        padding: 40px;
    }

    .main-header {
        padding: 15px 30px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 80px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 100;
    }

    .main-nav.mobile-open {
        right: 0;
    }

    .main-nav a {
        font-size: 18px;
        color: #ffffff;
        padding: 18px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a:hover {
        color: #d4a574;
        background: rgba(212, 165, 116, 0.1);
    }

    .main-header.visible .main-nav {
        opacity: 1;
    }

    .main-content {
        padding: 40px 30px;
    }

    .content-section h2 {
        font-size: 36px;
    }

    .content-section p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card-new {
        padding: 2rem;
    }

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

    .price-value {
        font-size: 42px;
    }

    .features-list-new li {
        font-size: 14px;
        padding: 9px 0;
    }

    .section-layout {
        flex-direction: column !important;
    }

    .section-layout.right .section-animation {
        margin-right: 0;
    }

    .section-layout.right .section-content {
        margin-left: 0;
    }

    .section-animation {
        flex: 0 0 300px;
        width: 100%;
        height: 300px;
    }
}

/* Mobile Optimierungen für Tablets */
@media (max-width: 768px) {
    /* Weiße Schrift für bessere Lesbarkeit auf Mobile */
    .brand-name {
        font-size: 40px;
        line-height: 1.1;
        color: #ffffff;
    }

    .tagline {
        font-size: 14px;
        color: #cccccc;
    }

    .subheadline {
        font-size: 12px;
        color: #aaaaaa;
        margin-top: 18px;
        margin-bottom: 5px;
    }

    .cta-buttons {
        margin-top: 22px;
        gap: 8px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cta-button-primary,
    .cta-button-secondary {
        padding: 10px 16px;
        font-size: 10px;
        flex: 0 0 auto;
    }

    .trust-indicators {
        gap: 10px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .trust-indicators span {
        font-size: 10px;
        color: #aaaaaa;
    }

    .content-overlay {
        align-items: flex-start;
        justify-content: center;
        padding-top: 100px;
    }

    .left-section {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        padding: 20px 25px;
        background: transparent;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .brand-name {
        text-align: center;
    }

    .tagline {
        text-align: center;
    }

    .subheadline {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .main-header {
        padding: 12px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .main-header.menu-open {
        background-color: rgba(0, 0, 0, 0.98);
    }

    .logo {
        font-size: 20px;
        color: #ffffff;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 80px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 100;
    }

    .main-nav.mobile-open {
        right: 0;
    }

    .main-nav a {
        font-size: 18px;
        color: #ffffff;
        padding: 16px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a:hover {
        color: #d4a574;
        background: rgba(212, 165, 116, 0.1);
    }

    .main-header.visible .main-nav {
        opacity: 1;
    }

    .main-content {
        padding: 30px 20px;
    }

    .content-section {
        padding: 40px 0;
    }

    .content-section h2 {
        font-size: 32px;
        color: #ffffff;
    }

    .content-section p {
        font-size: 15px;
        color: #e0e0e0;
    }

    .section-animation canvas {
        width: 100%;
        height: 100%;
    }

    .pricing-section {
        padding: 50px 15px !important;
    }

    .pricing-content h2 {
        font-size: 28px;
        color: #ffffff;
    }

    .pricing-intro {
        font-size: 13px;
        color: #e0e0e0;
        margin-bottom: 40px;
    }

    .pricing-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .pricing-card-new {
        padding: 1.5rem;
        min-height: auto;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }

    .card-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .card-price-new {
        padding: 16px 14px;
        margin-bottom: 20px;
    }

    .price-value {
        font-size: 30px;
    }

    .price-unit {
        font-size: 10px;
    }

    .features-list-new li {
        font-size: 13px;
        padding: 8px 0 8px 24px;
    }

    .cta-button {
        font-size: 12px;
        padding: 12px 18px;
        margin-top: 20px;
    }
}

/* Mobile Optimierungen für Smartphones */
@media (max-width: 480px) {
    body {
        font-size: 14px;
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }

    .brand-name {
        font-size: 32px;
        color: #ffffff;
    }

    .tagline {
        font-size: 12px;
        color: #cccccc;
    }

    .subheadline {
        font-size: 10px;
        color: #999999;
        margin-top: 15px;
        margin-bottom: 5px;
        line-height: 1.5;
    }

    .cta-buttons {
        margin-top: 20px;
        gap: 10px;
        flex-direction: column;
        width: 100%;
    }

    .cta-button-primary,
    .cta-button-secondary {
        padding: 12px 20px;
        font-size: 10px;
        width: 100%;
        text-align: center;
    }

    .trust-indicators {
        gap: 8px;
        margin-top: 18px;
        flex-wrap: wrap;
    }

    .trust-indicators span {
        font-size: 9px;
        color: #999999;
    }

    .left-section {
        padding: 15px 20px;
        max-width: 95%;
    }

    .main-header {
        padding: 10px 15px;
    }

    .logo {
        font-size: 18px;
        color: #ffffff;
    }

    .main-nav {
        width: 100%;
        padding: 80px 30px;
    }

    .main-nav a {
        font-size: 16px;
        padding: 14px 0;
    }

    .main-content {
        padding: 20px 15px;
    }

    .content-section {
        padding: 30px 0;
    }

    .content-section h2 {
        font-size: 26px;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .content-section p {
        font-size: 14px;
        line-height: 1.6;
        color: #e0e0e0;
    }

    .content-section p strong {
        color: #ffffff;
    }

    .section-animation {
        flex: 0 0 250px;
        height: 250px;
    }

    .pricing-section {
        padding: 40px 10px !important;
    }

    .pricing-content h2 {
        font-size: 24px;
        color: #ffffff;
    }

    .pricing-intro {
        font-size: 12px;
        line-height: 1.6;
        color: #e0e0e0;
        padding: 0 10px;
    }

    .pricing-grid {
        gap: 16px;
        margin-top: 25px;
    }

    .pricing-card-new {
        min-height: auto;
        padding: 1.25rem;
    }

    .card-content-overlay {
        padding: 0;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
        margin-bottom: 15px;
    }

    .card-title {
        font-size: 15px;
        margin: 0 0 15px 0;
    }

    .card-price-new {
        padding: 14px 12px;
        margin-bottom: 18px;
    }

    .price-value {
        font-size: 28px;
    }

    .price-unit {
        font-size: 9px;
    }

    .features-list-new {
        font-size: 12px;
    }

    .features-list-new li {
        padding: 7px 0 7px 22px;
        font-size: 12px;
    }

    .features-list-new li::before {
        font-size: 14px;
    }

    .cta-button {
        font-size: 11px;
        padding: 11px 16px;
        margin-top: 18px;
    }

    /* LED Screen Animation optimiert für Mobile */
    #ledScreen {
        transform: scale(0.8);
        transform-origin: center;
        z-index: 3; /* Über .content-overlay (z-index: 2) damit Animation sichtbar ist */
    }

    /* Text muss über Canvas bleiben */
    .content-overlay {
        z-index: 4;
        padding-top: 80px;
    }
}

/* Services Section - Milia-inspired Design */
.services-section {
    max-width: 1400px !important;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #999999;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 2rem;
    background: #0a0a0a;
    border: 3px solid #333333;
    border-radius: 20px;
    box-shadow: 0px 16px 40px -8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: #d4a574;
    box-shadow: 0px 16px 50px -8px rgba(212, 165, 116, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    flex: 0 0 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    color: #d4a574;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(212, 165, 116, 0.15);
    transform: scale(1.05);
}

.service-card:hover .service-icon svg {
    color: #e4b584;
}

.service-content {
    flex: 1;
    min-width: 0;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #aaaaaa;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #888888;
    margin: 0;
}

.feature-headline {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 16px;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 13px;
    color: #777777;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Responsive Anpassungen für Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0 !important;
    }

    .services-header {
        margin-bottom: 40px;
    }

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

    .service-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 1.25rem;
        gap: 16px;
    }

    .service-icon {
        flex: 0 0 auto;
        width: 50px;
        height: 50px;
        min-width: 50px;
        padding: 10px;
    }

    .services-header h2 {
        font-size: 28px;
        color: #ffffff;
    }

    .services-intro {
        font-size: 14px;
        color: #e0e0e0;
    }

    .service-content h3 {
        color: #ffffff;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .service-content p {
        color: #cccccc;
        font-size: 13px;
    }

    .feature-headline {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .feature-list li {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 0 !important;
    }

    .services-header h2 {
        font-size: 24px;
        color: #ffffff;
    }

    .services-intro {
        font-size: 13px;
        color: #e0e0e0;
        padding: 0 10px;
    }

    .service-card {
        padding: 1rem;
        gap: 14px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 8px;
    }

    .service-content h3 {
        font-size: 15px;
        color: #ffffff;
    }

    .service-content p {
        font-size: 12px;
        color: #cccccc;
    }

    .feature-headline {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .feature-list li {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* How It Works Section - Timeline Design */
.how-it-works-section {
    max-width: 1400px !important;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 48px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 80px;
    letter-spacing: -1px;
    text-align: center;
}

.timeline-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.timeline-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -40px;
    top: 35px;
    font-size: 32px;
    color: #d4a574;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e4b584 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.5);
}

.step-content {
    flex: 1;
    width: 100%;
    text-align: center;
    background: #0a0a0a;
    border: 3px solid #333333;
    border-radius: 20px;
    padding: 2rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-step:hover .step-content {
    border-color: #d4a574;
    box-shadow: 0px 16px 50px -8px rgba(212, 165, 116, 0.3);
    transform: translateY(-5px);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.step-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4a574 50%, transparent 100%);
    margin-bottom: 20px;
    width: 80%;
}

.step-description {
    font-size: 17px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 15px;
}

.step-note {
    font-size: 14px;
    color: #888888;
    font-style: italic;
    margin: 0;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 60px;
}

/* Responsive Anpassungen für How It Works */
@media (max-width: 1200px) {
    .timeline-container {
        gap: 30px;
    }

    .timeline-step:not(:last-child)::after {
        right: -30px;
        font-size: 28px;
    }

    .step-content {
        padding: 1.75rem 1.5rem;
    }
}

@media (max-width: 1024px) {
    .how-it-works-section h2 {
        font-size: 42px;
        margin-bottom: 60px;
    }

    .timeline-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 600px;
    }

    .timeline-step:not(:last-child)::after {
        content: '↓';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: -50px;
        right: auto;
        font-size: 32px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 25px;
    }

    .step-content {
        padding: 1.75rem 2rem;
    }

    .step-content h3 {
        font-size: 22px;
    }

    .step-description {
        font-size: 16px;
    }

    .step-note {
        font-size: 13px;
    }

    .how-it-works-cta {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .timeline-container {
        gap: 40px;
    }

    .timeline-step:not(:last-child)::after {
        bottom: -40px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .step-content {
        padding: 1.5rem 1.75rem;
    }

    .step-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .step-description {
        font-size: 15px;
    }

    .step-note {
        font-size: 13px;
    }

    .how-it-works-cta {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .how-it-works-section h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .timeline-container {
        gap: 35px;
    }

    .timeline-step:not(:last-child)::after {
        bottom: -35px;
        font-size: 28px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-content {
        width: 100%;
        text-align: center;
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-note {
        font-size: 12px;
    }
}

/* Calendly Section */
.calendly-section {
    max-width: 1200px !important;
    text-align: center;
    padding: 100px 0 !important;
}

.calendly-section h2 {
    font-size: 48px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.calendly-intro {
    font-size: 18px;
    color: #999999;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.zeeg-widget-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 16px 50px -8px rgba(212, 165, 116, 0.3);
    background: #0a0a0a;
}

.zeeg-widget-container iframe {
    display: block;
}

@media (max-width: 768px) {
    .calendly-section {
        padding: 60px 0 !important;
    }

    .calendly-section h2 {
        font-size: 28px;
        color: #ffffff;
    }

    .calendly-intro {
        font-size: 14px;
        color: #e0e0e0;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .zeeg-widget-container {
        margin: 0 15px;
        border-radius: 14px;
    }

    .zeeg-widget-container iframe {
        height: 600px !important;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .calendly-section {
        padding: 50px 0 !important;
    }

    .calendly-section h2 {
        font-size: 24px;
    }

    .calendly-intro {
        font-size: 13px;
        padding: 0 10px;
    }

    .zeeg-widget-container {
        margin: 0 10px;
        border-radius: 12px;
    }

    .zeeg-widget-container iframe {
        height: 550px !important;
        border-radius: 12px;
    }
}

/* Objects Section - Layout mit Animation links, Box rechts */
.objects-section {
    position: relative;
    max-width: 100% !important;
    padding: 120px 0 !important;
    width: 100%;
    overflow: hidden;
}

.objects-section .section-animation {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 420px;
}

.objects-section .section-animation canvas {
    width: 100%;
    height: 100%;
    border: 4px solid #4a4a4a;
    box-shadow: 0 0 0 2px #2a2a2a, 8px 8px 0 0 rgba(0, 0, 0, 0.4);
}

.objects-content-box {
    position: relative;
    width: 50%;
    min-width: 600px;
    max-width: 750px;
    margin-left: auto;
    margin-right: 0;
    background: #0a0a0a;
    border: 3px solid #333333;
    border-right: none;
    border-radius: 20px 0 0 20px;
    padding: 4rem 80px 4rem 4rem;
    box-shadow: 0px 16px 40px -8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.objects-content-box:hover {
    border-color: #d4a574;
    border-right: none;
    box-shadow: 0px 16px 50px -8px rgba(212, 165, 116, 0.3);
}

.objects-content-box h2 {
    font-size: 56px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.objects-text-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #d4a574;
    margin-top: 32px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.objects-text-content h3:first-child {
    margin-top: 0;
}

.objects-text-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 24px;
}

.objects-text-content p:last-child {
    margin-bottom: 0;
}

/* Why Us Section - Modern Centered Design with Animation */
.why-us-section {
    max-width: 1400px !important;
    padding: 120px 60px !important;
    margin: 0 auto;
}

.why-us-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-us-header h2 {
    font-size: 56px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.why-us-subtitle {
    font-size: 20px;
    color: #999999;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.why-us-content-wrapper {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-animation {
    width: 500px;
    height: 420px;
    position: relative;
}

.why-us-animation canvas,
.why-us-animation video {
    width: 100%;
    height: 100%;
    border: 4px solid #4a4a4a;
    box-shadow: 0 0 0 2px #2a2a2a, 8px 8px 0 0 rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    object-fit: cover;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 2px solid #2a2a2a;
    border-left: 4px solid #d4a574;
    border-radius: 12px;
    padding: 32px 32px 32px 80px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature-card:hover {
    border-color: #d4a574;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(10, 10, 10, 0.9) 100%);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.15);
}

.feature-number {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    font-weight: 700;
    color: rgba(212, 165, 116, 0.2);
    line-height: 1;
    transition: all 0.3s ease;
}

.why-feature-card:hover .feature-number {
    color: rgba(212, 165, 116, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.why-feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.why-feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin: 0;
}

/* About Section - Layout mit Box links, Animation rechts */
.about-section {
    position: relative;
    max-width: 100% !important;
    padding: 120px 0 100px !important;
    min-height: 800px;
    width: 100%;
    overflow: hidden;
}

.about-section .section-animation {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 420px;
}

.about-section .section-animation canvas {
    width: 100%;
    height: 100%;
    border: 4px solid #4a4a4a;
    box-shadow: 0 0 0 2px #2a2a2a, 8px 8px 0 0 rgba(0, 0, 0, 0.4);
}

.about-content-box {
    position: relative;
    width: 50%;
    min-width: 600px;
    max-width: 750px;
    margin-left: 0;
    margin-right: auto;
    background: #0a0a0a;
    border: 3px solid #333333;
    border-left: none;
    border-radius: 0 20px 20px 0;
    padding: 4rem 4rem 4rem 80px;
    box-shadow: 0px 16px 40px -8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.about-content-box:hover {
    border-color: #d4a574;
    border-left: none;
    box-shadow: 0px 16px 50px -8px rgba(212, 165, 116, 0.3);
}

.about-content-box h2 {
    font-size: 56px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.about-text-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #d4a574;
    margin-top: 32px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.about-text-content h3:first-child {
    margin-top: 0;
}

.about-text-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 24px;
}

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

.about-intro {
    font-size: 19px !important;
    font-weight: 500;
    color: #e0e0e0 !important;
    margin-bottom: 28px !important;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.about-features li {
    font-size: 17px;
    color: #d4a574;
    line-height: 2;
    padding-left: 8px;
}

/* Footer mit Animation wie Landing Page */
.main-footer {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 80px 60px;
    margin-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.footer-left-section {
    max-width: 600px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.footer-brand-name {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -2px;
    color: #666666;
    margin-bottom: 40px;
    text-align: left;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    line-height: 0.85;
}

.footer-info-group {
    margin-bottom: 30px;
}

.footer-info-group h3 {
    font-size: 16px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info-group p {
    font-size: 14px;
    line-height: 1.8;
    color: #999999;
    margin: 0;
}

.footer-info-group a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-group a:hover {
    color: #d4a574;
}

.footer-certification {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.certification-label {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-ihk-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-ihk-logo {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0.7);
    opacity: 0.8;
}

.footer-ihk-logo:hover {
    filter: brightness(1);
    opacity: 1;
}

/* Responsive für Objects, Why Us & About */
@media (max-width: 1400px) {
    .objects-section .section-animation {
        left: 40px;
        width: 400px;
        height: 340px;
    }

    .about-section .section-animation {
        right: 40px;
        width: 400px;
        height: 340px;
    }

    .objects-content-box,
    .about-content-box {
        min-width: 500px;
        max-width: 650px;
        padding: 3.5rem 60px;
    }

    .objects-content-box h2,
    .about-content-box h2 {
        font-size: 48px;
    }

    .why-us-section {
        padding: 100px 40px !important;
    }

    .why-us-content-wrapper {
        grid-template-columns: 420px 1fr;
        gap: 50px;
    }

    .why-us-animation {
        width: 420px;
        height: 360px;
    }
}

@media (max-width: 1024px) {
    .objects-section,
    .about-section {
        padding: 80px 30px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }

    .objects-section .section-animation,
    .about-section .section-animation {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 450px;
        height: 380px;
        margin: 40px auto 0;
        order: 2;
    }

    .objects-content-box,
    .about-content-box {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0 auto;
        border: 3px solid #333333;
        border-radius: 20px;
        padding: 3rem 2.5rem;
        order: 1;
    }

    .objects-content-box:hover,
    .about-content-box:hover {
        border: 3px solid #d4a574;
    }

    .objects-content-box h2,
    .about-content-box h2 {
        font-size: 42px;
    }

    /* Why Us responsive for tablets */
    .why-us-section {
        padding: 80px 30px !important;
    }

    .why-us-header {
        margin-bottom: 60px;
    }

    .why-us-header h2 {
        font-size: 42px;
    }

    .why-us-subtitle {
        font-size: 18px;
    }

    .why-us-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-animation {
        width: 100%;
        max-width: 500px;
        height: 400px;
        margin: 0 auto;
    }

    .why-feature-card {
        padding: 28px 28px 28px 70px;
    }

    .feature-number {
        font-size: 42px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .objects-section,
    .about-section {
        padding: 60px 20px !important;
    }

    .objects-section .section-animation,
    .about-section .section-animation {
        max-width: 380px;
        height: 320px;
        margin-bottom: 30px;
    }

    .objects-content-box,
    .about-content-box {
        padding: 2.5rem 2rem;
    }

    .objects-content-box h2,
    .about-content-box h2 {
        font-size: 36px;
        color: #e4b584;
    }

    .objects-text-content h3,
    .about-text-content h3 {
        font-size: 22px;
        color: #e4b584;
        margin-top: 28px;
    }

    .objects-text-content p,
    .about-text-content p {
        font-size: 16px;
    }

    /* Why Us responsive for mobile */
    .why-us-section {
        padding: 60px 20px !important;
    }

    .why-us-header {
        margin-bottom: 50px;
    }

    .why-us-header h2 {
        font-size: 36px;
        color: #e4b584;
    }

    .why-us-subtitle {
        font-size: 16px;
    }

    .why-us-content-wrapper {
        gap: 40px;
    }

    .why-us-animation {
        max-width: 380px;
        height: 320px;
    }

    .why-us-features {
        gap: 20px;
    }

    .why-feature-card {
        padding: 24px 24px 24px 60px;
    }

    .feature-number {
        font-size: 36px;
        left: 16px;
    }

    .why-feature-card h3 {
        font-size: 20px;
        color: #e4b584;
    }

    .why-feature-card p {
        font-size: 15px;
    }

    .main-footer {
        padding: 50px 20px;
        min-height: auto;
        margin-top: 60px;
        z-index: 10;
        background: #000000;
    }

    .footer-left-section {
        max-width: 100%;
        padding: 25px 20px;
        background: transparent;
    }

    .footer-brand-name {
        font-size: 32px;
        margin-bottom: 30px;
        color: #ffffff;
    }

    .footer-info-group {
        margin-bottom: 24px;
    }

    .footer-info-group h3 {
        font-size: 14px;
        color: #d4a574;
    }

    .footer-info-group p {
        font-size: 13px;
    }

    .footer-certification {
        margin-top: 30px;
        padding-top: 24px;
    }

    .footer-ihk-logo {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .objects-section,
    .about-section {
        padding: 50px 15px !important;
    }

    .objects-section .section-animation,
    .about-section .section-animation {
        max-width: 100%;
        height: 280px;
        margin-bottom: 25px;
    }

    .objects-content-box,
    .about-content-box {
        padding: 2rem 1.5rem;
    }

    .objects-content-box h2,
    .about-content-box h2 {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .objects-text-content h3,
    .about-text-content h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .objects-text-content p,
    .about-text-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-intro {
        font-size: 15px !important;
    }

    .about-features {
        margin: 24px 0;
    }

    .about-features li {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Why Us responsive for small mobile */
    .why-us-section {
        padding: 50px 15px !important;
    }

    .why-us-header {
        margin-bottom: 40px;
    }

    .why-us-header h2 {
        font-size: 28px;
    }

    .why-us-subtitle {
        font-size: 14px;
    }

    .why-us-content-wrapper {
        gap: 30px;
    }

    .why-us-animation {
        max-width: 100%;
        height: 280px;
    }

    .why-us-features {
        gap: 16px;
    }

    .why-feature-card {
        padding: 20px 20px 20px 54px;
    }

    .feature-number {
        font-size: 32px;
        left: 14px;
    }

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

    .why-feature-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .main-footer {
        padding: 40px 15px;
        min-height: auto;
        margin-top: 50px;
        z-index: 10;
        background: #000000;
    }

    .footer-left-section {
        padding: 20px 15px;
        background: transparent;
    }

    .footer-brand-name {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .footer-info-group {
        margin-bottom: 20px;
    }

    .footer-info-group h3 {
        font-size: 13px;
    }

    .footer-info-group p {
        font-size: 12px;
    }

    .footer-certification {
        margin-top: 25px;
        padding-top: 20px;
    }

    .certification-label {
        font-size: 11px;
    }

    .footer-ihk-logo {
        height: 22px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    z-index: 100;
    border-top: 3px solid #d4a574;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 14px;
    color: #999999;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 6px;
    white-space: nowrap;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(180deg, #e4b584 0%, #d4a574 100%);
    color: #000;
    border: 2px solid #c49564;
    box-shadow:
        0 3px 0 0 #5a4a3a,
        0 3px 0 2px #000,
        0 4px 6px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(180deg, #f4c594 0%, #e4b584 100%);
    transform: translateY(1.5px);
    box-shadow:
        0 1.5px 0 0 #5a4a3a,
        0 1.5px 0 2px #000,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

.cookie-btn-decline {
    background: linear-gradient(180deg, #555555 0%, #444444 100%);
    color: #ffffff;
    border: 2px solid #3a3a3a;
    box-shadow:
        0 3px 0 0 #2a2a2a,
        0 3px 0 2px #000,
        0 4px 6px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.cookie-btn-decline:hover {
    background: linear-gradient(180deg, #666666 0%, #555555 100%);
    transform: translateY(1.5px);
    box-shadow:
        0 1.5px 0 0 #2a2a2a,
        0 1.5px 0 2px #000,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-text h3 {
        font-size: 18px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 20px 15px;
    }

    .cookie-text h3 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 12px;
    }

    .cookie-btn {
        font-size: 11px;
        padding: 12px 16px;
    }
}

/* Partner Network Section */
.partner-network-section {
    position: relative;
    max-width: 100% !important;
    padding: 80px 0 120px !important;
    width: 100%;
    background: #000000;
    text-align: center;
}

/* Partner Header */
.partner-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.partner-header h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 0.75rem;
}

.partner-header p {
    font-size: 1.125rem;
    color: #888;
    margin: 0 auto;
    text-align: center;
}

/* Partner Showcase - Apple Style */
.partner-showcase {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
    min-height: 550px;
}

.partner-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 340px;
    height: 550px;
}

.partner-services .service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: none;
    transform: none;
}

.partner-services .service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: none;
    box-shadow: none;
    border-color: rgba(212, 165, 116, 0.3);
}

.partner-services .service-card.active {
    background: rgba(40, 40, 40, 0.9);
    border-color: rgba(212, 165, 116, 0.5);
    flex-wrap: wrap;
    padding: 0.875rem 1rem;
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #888;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-services .service-card.active .service-icon-wrapper {
    background: rgba(212, 165, 116, 0.2);
    color: #d4a574;
}

.partner-services .service-card .service-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
}

.partner-services .service-card .service-description {
    font-size: 0.875rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-services .service-card.active .service-description {
    max-height: 150px;
    opacity: 1;
    margin-top: 0.625rem;
    padding-left: 0;
}

/* Hide description text for overview card */
.partner-services .service-card[data-service="overview"] .service-description {
    display: none;
}

.partner-model-container {
    flex: 1 1 auto;
    width: 60%;
    min-width: 400px;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.partner-model-container model-viewer {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile responsive - Partner Section */
@media (max-width: 1024px) {
    .partner-header h2 {
        font-size: 2rem;
    }

    .partner-header p {
        font-size: 1rem;
    }

    .partner-showcase {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        min-height: auto;
    }

    .partner-services {
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        order: 2;
    }

    .partner-services .service-card {
        flex: 0 0 auto;
        padding: 0.625rem 0.875rem;
    }

    .partner-services .service-card.active {
        flex-direction: row;
        padding: 0.625rem 0.875rem;
    }

    .partner-services .service-card .service-description {
        display: none;
    }

    .partner-services .service-card.active .service-description {
        display: none;
    }

    .partner-model-container {
        width: 100%;
        min-width: unset;
        height: 400px;
        order: 1;
    }
}

@media (max-width: 768px) {
    .partner-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .partner-header h2 {
        font-size: 1.75rem;
        color: #ffffff;
    }

    .partner-header p {
        font-size: 0.9rem;
        color: #cccccc;
    }

    .partner-showcase {
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .partner-services {
        gap: 0.375rem;
    }

    .partner-services .service-card {
        padding: 0.5rem 0.75rem;
    }

    .partner-services .service-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .partner-services .service-card .service-name {
        font-size: 0.8125rem;
    }

    .partner-model-container {
        height: 320px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .partner-header h2 {
        font-size: 1.5rem;
    }

    .partner-header p {
        font-size: 0.8rem;
    }

    .partner-services {
        gap: 0.25rem;
    }

    .partner-services .service-card {
        padding: 0.4rem 0.6rem;
    }

    .partner-services .service-icon-wrapper {
        width: 28px;
        height: 28px;
    }

    .partner-services .service-card .service-name {
        font-size: 0.75rem;
    }

    .partner-model-container {
        height: 280px;
    }
}

.partner-network-section h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d4a574;
}

.partner-intro {
    font-size: 18px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Partner 3D Container */
.partner-3d-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    margin: 0 auto;
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    overflow: hidden;
}

#partner3dCanvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
}

#partner3dCanvas:active {
    cursor: grabbing;
}

/* Loading State */
.partner-3d-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #f8fafc;
    transition: opacity 0.5s ease;
}

.partner-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(148, 163, 184, 0.2);
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: partner-spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes partner-spin {
    to { transform: rotate(360deg); }
}

/* Service Cards Overlay */
.partner-service-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.partner-service-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    pointer-events: auto;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.partner-service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.partner-service-card:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.partner-service-icon {
    font-size: 1.5em;
    margin-bottom: 8px;
}

.partner-service-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 4px 0;
}

.partner-service-card p {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}

/* Position service cards around the 3D model */
.partner-service-card[data-service="0"] {
    top: 15%;
    left: 5%;
}

.partner-service-card[data-service="1"] {
    top: 45%;
    left: 3%;
}

.partner-service-card[data-service="2"] {
    top: 75%;
    left: 8%;
}

.partner-service-card[data-service="3"] {
    top: 15%;
    right: 5%;
}

.partner-service-card[data-service="4"] {
    top: 45%;
    right: 3%;
}

.partner-service-card[data-service="5"] {
    top: 75%;
    right: 8%;
}

/* Controls Hint */
.partner-3d-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    z-index: 5;
}

.partner-3d-hint span {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Legacy styles - keep for backwards compatibility */
.partner-globe-container {
    display: none;
}

.partner-categories-overlay {
    display: none;
}

.partner-category-label {
    display: none;
}

/* Keyframes for each label - only visible during their time slot */
@keyframes label0 {
    0% { opacity: 0; transform: scale(0.8); }
    2% { opacity: 1; transform: scale(1); }
    12% { opacity: 1; transform: scale(1); }
    14.29% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(0.8); }
}

@keyframes label1 {
    0%, 14.29% { opacity: 0; transform: scale(0.8); }
    16% { opacity: 1; transform: scale(1); }
    26% { opacity: 1; transform: scale(1); }
    28.57% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(0.8); }
}

@keyframes label2 {
    0%, 28.57% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
    40% { opacity: 1; transform: scale(1); }
    42.86% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(0.8); }
}

@keyframes label3 {
    0%, 42.86% { opacity: 0; transform: scale(0.8); }
    44% { opacity: 1; transform: scale(1); }
    54% { opacity: 1; transform: scale(1); }
    57.14% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(0.8); }
}

@keyframes label4 {
    0%, 57.14% { opacity: 0; transform: scale(0.8); }
    58% { opacity: 1; transform: scale(1); }
    68% { opacity: 1; transform: scale(1); }
    71.43% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(0.8); }
}

@keyframes label5 {
    0%, 71.43% { opacity: 0; transform: scale(0.8); }
    72% { opacity: 1; transform: scale(1); }
    82% { opacity: 1; transform: scale(1); }
    85.71% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(0.8); }
}

@keyframes label6 {
    0%, 85.71% { opacity: 0; transform: scale(0.8); }
    86% { opacity: 1; transform: scale(1); }
    96% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.8); }
}

/* Individual label positioning - distributed around globe */
.partner-category-label[data-index="0"] {
    top: 20%;
    left: 45%;
    animation-name: label0;
}

.partner-category-label[data-index="1"] {
    top: 35%;
    left: 15%;
    animation-name: label1;
}

.partner-category-label[data-index="2"] {
    top: 65%;
    right: 20%;
    animation-name: label2;
}

.partner-category-label[data-index="3"] {
    top: 15%;
    left: 25%;
    animation-name: label3;
}

.partner-category-label[data-index="4"] {
    top: 40%;
    right: 15%;
    animation-name: label4;
}

.partner-category-label[data-index="5"] {
    top: 10%;
    left: 35%;
    animation-name: label5;
}

.partner-category-label[data-index="6"] {
    top: 50%;
    left: 60%;
    animation-name: label6;
}

.partner-category-label h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.partner-category-label p {
    font-size: 11px;
    color: #666666;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-section {
        padding: 100px 0 80px !important;
        min-height: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-section .section-animation {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        height: 340px;
        margin: 40px auto 0;
        order: 2;
    }

    .about-content-box {
        order: 1;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    .partner-network-section h2 {
        font-size: 40px;
    }

    .partner-intro {
        font-size: 16px;
        padding: 0 20px;
    }

    .partner-globe-container {
        max-width: 1000px;
        height: 500px;
    }

    .partner-3d-container {
        height: 550px;
    }

    .partner-service-card {
        padding: 14px 16px;
    }

    .partner-service-card h4 {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 30px 60px !important;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-section .section-animation {
        order: 2;
    }

    .about-content-box {
        order: 1;
    }

    .partner-network-section {
        padding: 60px 20px 80px !important;
    }

    .partner-network-section h2 {
        font-size: 32px;
    }

    .partner-intro {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .partner-globe-container {
        height: 400px;
    }

    .partner-3d-container {
        height: 500px;
    }

    .partner-service-cards {
        display: none;
    }

    .partner-3d-hint {
        flex-direction: column;
        gap: 8px;
    }

    .partner-category-label h4 {
        font-size: 12px;
    }

    .partner-category-label p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .partner-network-section h2 {
        font-size: 28px;
    }

    .partner-globe-container {
        height: 350px;
    }

    .partner-3d-container {
        height: 400px;
        border-radius: 12px;
    }

    .partner-3d-hint {
        bottom: 12px;
    }

    .partner-3d-hint span {
        font-size: 10px;
    }

    .partner-category-label {
        padding: 10px 14px;
    }

    .partner-category-label h4 {
        font-size: 11px;
    }

    .partner-category-label p {
        font-size: 9px;
    }
}
