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

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #DDE6ED;
    background-color: #1a1f2e;
    background-image:
        linear-gradient(rgba(39, 55, 77, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 55, 77, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(0, 217, 255, 0.03), transparent 50%),
        radial-gradient(ellipse at bottom, rgba(82, 109, 130, 0.05), transparent 50%);
    pointer-events: none;
    z-index: -1;
}


body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
}


.logo-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0e1a;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(82, 109, 130, 0.1) 0%, transparent 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.logo-intro.fade-out {
    opacity: 0;
    pointer-events: none;
}

#animated-logo {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.3));
}

.logo-path {
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    animation: draw 1.5s ease-in-out forwards;
    filter: drop-shadow(0 0 4px rgba(221, 230, 237, 0.5));
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}


.main-content {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.main-content.show {
    display: block;
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.header {
    background: rgba(15, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 217, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(0, 217, 255, 0.1));
}

.header h1 {
    color: #DDE6ED;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
}


.header-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: #9DB2BF;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 217, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #00d9ff;
    border-color: rgba(0, 217, 255, 0.3);
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.4);
}

.nav-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 217, 255, 0.3);
    margin: 0 0.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: #DDE6ED;
    padding: 0.5rem;
    cursor: pointer;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
}

.mobile-menu-toggle i {
    width: 24px;
    height: 24px;
    display: block;
}


.hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #27374D 100%);
    background-image:
        linear-gradient(135deg, #0a0e1a 0%, #27374D 100%),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px);
    color: #DDE6ED;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    animation: slide 8s linear infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    background: linear-gradient(90deg, #DDE6ED, #00d9ff, #DDE6ED);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    color: #00d9ff;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.85;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    color: #9DB2BF;
}


section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DDE6ED;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-title::before {
    content: '< ';
    color: #00d9ff;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.3);
}

.section-title::after {
    content: ' />';
    color: #00d9ff;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.3);
}


.experience-section {
    background: #1a1f2e;
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.experience-card {
    background: rgba(39, 55, 77, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 217, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00d9ff;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

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

.experience-card:hover::before {
    left: 100%;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 217, 255, 0.3),
        inset 0 0 20px rgba(0, 217, 255, 0.05);
    border-color: #00d9ff;
}

.experience-card h4 {
    color: #00d9ff;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.3);
}

.experience-card p {
    color: #9DB2BF;
    font-size: 1rem;
    line-height: 1.6;
}


.about-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #9DB2BF;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}


.why-section {
    background: #1a1f2e;
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    background: rgba(39, 55, 77, 0.3);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 217, 255, 0.2);
    position: relative;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
}

.why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #00d9ff;
}

.why-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.why-card h4 {
    color: #DDE6ED;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-card p {
    color: #9DB2BF;
    font-size: 0.95rem;
    line-height: 1.6;
}


.industries-section {
    background: linear-gradient(135deg, #0f1419 0%, #27374D 100%);
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, rgba(0, 217, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 217, 255, 0.02) 87.5%, rgba(0, 217, 255, 0.02)),
        linear-gradient(150deg, rgba(0, 217, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 217, 255, 0.02) 87.5%, rgba(0, 217, 255, 0.02));
    background-size: 80px 140px;
    opacity: 0.3;
}

.industries-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #9DB2BF;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.industry-card {
    background: rgba(15, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #DDE6ED;
    transition: all 0.4s ease;
    border: 1px solid rgba(157, 178, 191, 0.2);
    position: relative;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.industry-card i {
    width: 48px;
    height: 48px;
    color: #00d9ff;
    transition: all 0.4s ease;
}

.industry-card span {
    display: block;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #00d9ff;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
    transform: scale(1.05);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 217, 255, 0.3);
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.4);
}

.industry-card:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.8));
}

.industry-hover-icon {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 10;
}

.industry-hover-icon.show {
    transform: translateX(-50%) translateY(60%);
    opacity: 1;
}

.industry-hover-icon i {
    width: 120px;
    height: 120px;
    color: #00d9ff;
    opacity: 0.4;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
}


.contact-section {
    background: #1a1f2e;
    text-align: center;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #9DB2BF;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: rgba(82, 109, 130, 0.2);
    backdrop-filter: blur(10px);
    color: #DDE6ED;
    text-decoration: none;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    font-size: 1.25rem;
    font-weight: 500;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 217, 255, 0.3);
    position: relative;
    font-family: 'Courier New', monospace;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 217, 255, 0.2);
    transition: width 0.4s ease;
    z-index: -1;
}

.contact-link:hover::before {
    width: 100%;
}

.contact-link:hover {
    color: #00d9ff;
    transform: translateY(-5px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 217, 255, 0.3);
    border-color: #00d9ff;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.4);
}

.contact-icon {
    font-size: 1.5rem;
}


.footer {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    color: #DDE6ED;
    padding: 4rem 0 1.5rem;
    text-align: center;
    border-top: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-impressum {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(39, 55, 77, 0.2);
    border: 1px solid rgba(0, 217, 255, 0.2);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.footer-impressum h4 {
    color: #00d9ff;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-impressum h4:first-child {
    margin-top: 0;
}

.footer-impressum p {
    color: #9DB2BF;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-impressum a {
    color: #00d9ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-impressum a:hover {
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.6);
}

.impressum-source {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 2rem;
}

.footer-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
    margin: 2rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #9DB2BF;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d9ff;
    box-shadow: 0 0 10px #00d9ff;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: #00d9ff;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.4);
}

.footer-text {
    color: #9DB2BF;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 30, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(0, 217, 255, 0.3);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text h4 {
    color: #00d9ff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.cookie-text p {
    color: #9DB2BF;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
    background: rgba(82, 109, 130, 0.2);
    color: #DDE6ED;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.cookie-btn:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
    transform: translateY(-2px);
}

.cookie-accept {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
}

.cookie-accept:hover {
    background: rgba(0, 217, 255, 0.3);
}

.cookie-decline:hover {
    border-color: #9DB2BF;
}

.cookie-link {
    color: #9DB2BF;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #00d9ff;
}


.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    animation: slide 8s linear infinite;
    will-change: transform;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.network-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 217, 255, 0.4);
    border: 1px solid rgba(0, 217, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 217, 255, 0.6), inset 0 0 4px rgba(0, 217, 255, 0.4);
    z-index: 0;
    pointer-events: none;
}


@media (max-width: 968px) {
    .header-nav {
        display: none;
    }

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

    .header-nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 20, 30, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 2px solid rgba(0, 217, 255, 0.3);
        gap: 0.5rem;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
    }

    .nav-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .experience-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

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

    .header h1 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .header-brand {
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    #animated-logo {
        max-width: 250px;
    }
}
