/* Fonts einbinden */
@import url('../fonts/fonts.css');

:root {
    --color-primary: #ff6d00;
    --color-primary-light: #ff7900;
    --color-primary-medium: #ff8500;
    --color-primary-bright: #ff9100;
    --color-primary-brightest: #ff9e00;
    --color-secondary-dark: #240046;
    --color-secondary: #3c096c;
    --color-secondary-medium: #5a189a;
    --color-secondary-light: #7b2cbf;
    --color-secondary-lightest: #9d4edd;
}

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

html, body {
    background: #000000;
    color: #ffffff;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.matrix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(123, 44, 191, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.matrix-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(123, 44, 191, 0.2);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    display: block !important;
    flex-direction: column !important;
}

.mobile-nav li {
    margin: 0;
    display: block !important;
    width: 100%;
}

.mobile-nav a {
    display: block !important;
    width: 100%;
    padding: 1rem 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid rgba(123, 44, 191, 0.1);
}

.mobile-nav a:hover {
    background: rgba(123, 44, 191, 0.1);
    color: var(--color-primary);
    padding-left: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Sicherstellen, dass desktop-nav flex bleibt */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav li {
    margin: 0;
}

nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

nav a:hover {
    color: var(--color-primary);
}

nav a:hover::after {
    width: 100%;
}

.header-cta-button {
    background: var(--color-primary);
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    margin-left: 2rem;
}

.header-cta-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 109, 0, 0.3);
}

.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    position: relative;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #76b900;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    background: #76b900;
    color: #333;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.matrix-section {
    padding: 80px 2rem;
    position: relative;
    z-index: 2;
}

.matrix-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary-light);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.matrix-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary-light));
    border-radius: 2px;
}

.hardware-section {
    background: transparent;
    position: relative;
    z-index: 2;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.matrix-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(123, 44, 191, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.matrix-card:hover {
    background: rgba(123, 44, 191, 0.05);
    border-color: rgba(123, 44, 191, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(123, 44, 191, 0.2);
}

.hardware-card h3 {
    margin-bottom: 1rem;
    color: var(--color-secondary-light);
    font-size: 1.25rem;
    font-weight: 600;
}

.hardware-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.specs-grid {
    background: #000000;
}

.specs-grid .matrix-section-title {
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-item h4 {
    margin-bottom: 1rem;
    color: var(--color-secondary-light);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(123, 44, 191, 0.3);
    padding-bottom: 0.5rem;
}

.spec-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.matrix-footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(123, 44, 191, 0.2);
    background: transparent;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links h3 {
    margin-bottom: 1.5rem;
    color: var(--color-secondary-light);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--color-secondary-light);
}

.footer-links a:hover {
    color: var(--color-secondary-light);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.matrix-footer > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(123, 44, 191, 0.1);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .matrix-header {
        padding: 1rem 0;
        position: relative;
    }
    
    .matrix-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta-button {
        display: none;
    }
    
    .matrix-section {
        padding: 60px 20px;
        margin-top: 0;
    }
    
    /* Erste Section nach Hero hat mehr Abstand oben */
    .matrix-hero + .matrix-section,
    .matrix-hero + section {
        margin-top: 20px;
        padding-top: 80px;
    }
    
    .matrix-section-title {
        font-size: 24px;
    }
    
    .matrix-section-subtitle {
        font-size: 16px;
        padding: 0;
    }
    
    .hardware-grid,
    .services-grid,
    .portfolio-grid,
    .technologie-section .hardware-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-card,
    .portfolio-card,
    .hardware-card {
        width: 100%;
        margin: 0;
        padding: 1.5rem;
    }
    
    .services-section,
    .portfolio-section,
    .about-section,
    .technologie-section,
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        max-width: 100%;
    }
    
    .contact-form {
        width: 100%;
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0;
    }
    
    .matrix-hero {
        padding: 100px 20px 60px;
        margin-top: 0;
    }
    
    .matrix-hero h1 {
        font-size: 28px;
    }
    
    .matrix-hero-description {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        max-width: 100%;
    }
    
    .contact-content {
        max-width: 100%;
    }
    
    .about-content,
    .contact-content,
    .services-grid,
    .portfolio-grid,
    .hardware-grid {
        padding-left: 0;
        padding-right: 0;
    }
    
    .technologie-section .hardware-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
}



 
.matrix-hero {
    text-align: center;
    padding: 80px 24px;
    background: transparent;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

.matrix-chars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.matrix-char {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    color: rgba(123, 44, 191, 0.25);
    opacity: 0.25;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
    user-select: none;
    pointer-events: none;
}

.matrix-code-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: rgba(123, 44, 191, 0.25);
    opacity: 0.25;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
    user-select: none;
    pointer-events: none;
    white-space: pre;
    line-height: 1.3;
    max-width: calc(100% - 60px);
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}

.matrix-code-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(123, 44, 191, 0.25);
    opacity: 0.25;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
    user-select: none;
    pointer-events: none;
    white-space: pre;
    line-height: 1.4;
    max-width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.matrix-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(123, 44, 191, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse at 30% 40%, rgba(255, 109, 0, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(123, 44, 191, 0.03) 0%, transparent 50%);
    background-size: 100% 100%, 80% 80%, 80% 80%;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.matrix-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.matrix-hero-label {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.matrix-hero-input {
    width: 100%;
    max-width: 600px;
    margin: 24px auto 32px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
}

.matrix-hero-input:focus {
    border-color: var(--color-secondary-light);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.1);
}

.matrix-hero-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.matrix-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 35.2px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.matrix-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 35.2px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.matrix-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.matrix-cta-button {
    background: var(--color-primary);
    color: #ffffff;
    padding: 12px 24px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.matrix-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 109, 0, 0.5), transparent);
    transition: left 0.5s ease;
}

.matrix-cta-button:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    box-shadow: 0 4px 12px rgba(255, 109, 0, 0.3);
}

.matrix-cta-button:hover::before {
    left: 100%;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.matrix-cta-button.primary {
    background: var(--color-primary);
    color: #ffffff;
}

.matrix-cta-button.primary::before {
    display: none;
}

.matrix-cta-button.primary:hover {
    background: #e55d00;
    border-color: #e55d00;
    box-shadow: 0 4px 12px rgba(255, 109, 0, 0.3);
}

.matrix-cta-button.secondary {
    background: var(--color-secondary);
    color: #ffffff;
    border: 1px solid var(--color-secondary);
}

.matrix-cta-button.secondary::before {
    display: none;
}

.matrix-cta-button.secondary:hover {
    background: var(--color-secondary-dark) !important;
    border-color: var(--color-secondary-dark) !important;
    box-shadow: 0 4px 12px rgba(36, 0, 70, 0.4);
}


.matrix-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 0;
    flex-wrap: wrap;
}

.matrix-feature {
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 1 auto;
    min-width: 160px;
    position: relative;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid rgba(123, 44, 191, 0.2);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.matrix-feature:hover {
    background: rgba(123, 44, 191, 0.1);
    border-color: rgba(123, 44, 191, 0.4);
}

.matrix-feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.matrix-feature-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.matrix-feature:hover .matrix-feature-icon svg {
    transform: scale(1.2);
}

.matrix-feature-text {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .matrix-hero {
        padding: 60px 20px;
        min-height: 70vh;
    }

    .matrix-hero h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .matrix-hero-description {
        font-size: 16px;
    }

    .matrix-features {
        gap: 24px;
    }

    .matrix-feature {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .matrix-hero h1 {
        font-size: 24px;
        line-height: 28px;
    }

    .matrix-features {
        flex-direction: column;
        gap: 20px;
    }
}

/* Search Container & Results */
.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 24px auto 32px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 8px;
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #ffffff;
    border-bottom: 1px solid rgba(123, 44, 191, 0.1);
    transition: all 0.3s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(123, 44, 191, 0.1);
    color: var(--color-secondary-light);
}

.search-result-item.no-results {
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
}

.search-result-item.no-results:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
}

.search-result-category {
    font-size: 12px;
    color: var(--color-secondary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}

.search-result-title {
    font-size: 16px;
    font-weight: 500;
}

/* Fullscreen Sections (für demo.php) */
.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 2rem;
    margin-bottom: 2rem;
    overflow: visible;
}

.fullscreen-section:nth-of-type(odd) {
    background: radial-gradient(circle at top left, rgba(123, 44, 191, 0.15), transparent 60%);
}

.fullscreen-section:nth-of-type(even) {
    background: radial-gradient(circle at bottom right, rgba(255, 109, 0, 0.12), transparent 60%);
}

.fullscreen-inner {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 3rem;
    align-items: center;
}

.fullscreen-badge {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.fullscreen-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.fullscreen-kicker {
    font-size: 18px;
    color: var(--color-secondary-lightest);
    margin-bottom: 16px;
}

.fullscreen-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.fullscreen-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.fullscreen-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.fullscreen-list li::before {
    content: '⟶';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary-light);
}

.fullscreen-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fullscreen-aside-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(123, 44, 191, 0.25);
    padding: 1.5rem;
}

.fullscreen-aside-card h4 {
    font-size: 16px;
    margin-bottom: 0.5rem;
    color: var(--color-secondary-light);
}

.fullscreen-aside-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.fullscreen-aside .matrix-cta-button {
    margin-bottom: 0;
}

.dots-container {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 90;
}

@media (max-width: 768px) {
    .dots-container {
        right: 12px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(123, 44, 191, 0.4);
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dot.active {
    background-color: var(--color-secondary-light);
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(123, 44, 191, 0.8);
}

/* Services Section */
.services-section {
    padding: 80px 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.matrix-section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem;
    background: rgba(123, 44, 191, 0.05);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary-light), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    background: rgba(123, 44, 191, 0.1);
    border-color: rgba(123, 44, 191, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(123, 44, 191, 0.3);
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary-light);
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 80px 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.about-text h3 {
    color: var(--color-secondary-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(123, 44, 191, 0.2);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-tech {
    background: rgba(123, 44, 191, 0.05);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.about-tech h4 {
    color: var(--color-secondary-light);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 6px;
    color: var(--color-secondary-light);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(123, 44, 191, 0.2);
    border-color: rgba(123, 44, 191, 0.5);
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-card {
    padding: 2rem;
    background: rgba(123, 44, 191, 0.05);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    background: rgba(123, 44, 191, 0.1);
    border-color: rgba(123, 44, 191, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2);
}

.portfolio-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(123, 44, 191, 0.2);
    border: 1px solid rgba(123, 44, 191, 0.4);
    border-radius: 4px;
    color: var(--color-secondary-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(123, 44, 191, 0.2);
}

.portfolio-tech span {
    padding: 0.25rem 0.75rem;
    background: rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 4px;
    color: var(--color-secondary-light);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 80px 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h4 {
    color: var(--color-secondary-light);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a:hover {
    color: var(--color-secondary-light);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-form {
    background: rgba(123, 44, 191, 0.05);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--color-secondary-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237b2cbf' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #000000;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-secondary-light);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.1);
}

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

.form-message {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.contact-form .matrix-cta-button {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
}

.contact-form .matrix-cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(123, 44, 191, 0.1);
    margin-top: 2rem;
}

/* Technologie/Hardware Section */
.technologie-section {
    padding: 80px 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.technologie-section .hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.technologie-section .hardware-card {
    padding: 2rem;
    background: rgba(123, 44, 191, 0.05);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.technologie-section .hardware-card:hover {
    background: rgba(123, 44, 191, 0.1);
    border-color: rgba(123, 44, 191, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2);
}

.technologie-section .hardware-card h3 {
    color: var(--color-secondary-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hardware-spec {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.technologie-section .hardware-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .matrix-section-subtitle {
        font-size: 16px;
    }

    .fullscreen-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        max-width: 100%;
    }

    .fullscreen-section {
        padding: 100px 20px 60px;
        min-height: auto;
        height: auto;
        margin-bottom: 3rem;
    }
    
    .fullscreen-section:first-of-type {
        padding-top: 120px;
    }
    
    .fullscreen-section:last-of-type {
        margin-bottom: 0;
    }

    .fullscreen-title {
        font-size: 26px;
    }
    
    .fullscreen-kicker {
        font-size: 16px;
    }
    
    .fullscreen-text {
        font-size: 15px;
    }
    
    .fullscreen-aside {
        margin-top: 2rem;
    }

    .dots-container {
        right: 12px;
    }
}