/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: #0a1628;
    color: #ffffff;
    line-height: 1.6;
}

/* Container Basis & Responsive Breiten (Grid-Prinzip) */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

/* Responsive Stufen / Breakpoints für den Container */
@media (min-width: 640px) {
    .container {
        max-width: 600px;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1440px; /* Maximaler Deckel bei 1440px */
    }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#header > .container {
    display: flex;
    justify-content: space-between;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 48px;
}

.divider {
    display: none;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.company-name {
    display: none;
    font-weight: 600;
    font-size: 1.125rem;
    color: #ffffff;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: #E97451;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s;
    box-shadow: 0 0 25px rgba(233, 116, 81, 0.6);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ff8762;
    box-shadow: 0 0 35px rgba(233, 116, 81, 0.8);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    transform: scaleX(-1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.6), rgba(10, 22, 40, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 1.5rem 3rem;
    max-width: 48rem;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 56rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item span {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #0a1628;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 42rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: rgba(233, 116, 81, 0.5);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(233, 116, 81, 0.1);
    border: 1px solid rgba(233, 116, 81, 0.2);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: rgba(233, 116, 81, 0.2);
    box-shadow: 0 0 30px rgba(233, 116, 81, 0.4);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: #0f1d31;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: rgba(233, 116, 81, 0.3);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #E97451;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item span {
    font-weight: 500;
}

.about-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.375rem;
}

.about-box p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #d1d5db;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #0a1628;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.375rem;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(233, 116, 81, 0.1);
    border: 1px solid rgba(233, 116, 81, 0.2);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-header p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #E97451;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info:last-child {
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.info-value {
    color: #ffffff;
    text-decoration: none;
}

.info-value:hover {
    color: #E97451;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(233, 116, 81, 0.3);
    padding: 2.5rem;
    border-radius: 0.375rem;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #0a1628;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.footer-text p:last-child {
    color: #6b7280;
}

.justify-content-left {
    display: flex;
    justify-content: left;
}

/* Responsive Design */
@media (min-width: 640px) {
    .divider {
        display: block;
    }

    .company-name {
        display: block;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

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

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-text {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}