@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Syne:wght@700;800&display=swap');

:root {
    --bg-dark: #090b11;
    --bg-card: #121624;
    --primary: #ff5a36;
    --secondary: #3b82f6;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Syne', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip-Link für Barrierefreiheit */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    z-index: 1000;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

header {
    background: rgba(9, 11, 17, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-link img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

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

.burger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 20px 80px;
    background: radial-gradient(circle at 80% 20%, rgba(255, 90, 54, 0.1), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1), transparent 40%);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #e04422;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 90, 54, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 15px;
}

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

/* Unikales grafisches Element - Dekorative Grid-Linie */
.glowing-grid {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    bottom: 0;
    left: 0;
    opacity: 0.5;
}

/* Statistics */
.stats {
    padding: 60px 20px;
    background: var(--bg-card);
    border-y: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 100px 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

/* Features (Asymmetrisch) */
.features-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.features-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-content ul {
    list-style: none;
    margin-top: 30px;
}

.features-content li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
    font-size: 16px;
}

.features-content li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 20px;
}

/* Services Page & Overview Grid */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-body {
    padding: 30px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Social Proof */
.social-proof {
    background: rgba(18, 22, 36, 0.5);
    padding: 80px 20px;
}

.partner-logos {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6;
}

.partner-logos i {
    font-size: 32px;
    color: var(--text-muted);
}

.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 15px;
}

.review-author {
    font-weight: 700;
    font-size: 14px;
}

.review-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 90, 54, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 40px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.price-amount span {
    font-size: 16px;
    color: var(--text-muted);
}

.price-card ul {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.price-card li {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-muted);
}

.price-card li i {
    color: var(--primary);
    margin-right: 10px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 200px;
}

/* Lead-Form Section */
.form-section {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08), transparent 70%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 15px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.consent-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
    margin-bottom: 25px;
}

.consent-checkbox input {
    margin-top: 3px;
}

.consent-checkbox a {
    color: var(--primary);
    text-decoration: none;
}

/* Trust Layer */
.trust-layer {
    background: rgba(18, 22, 36, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px;
}

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

.trust-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.trust-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
footer {
    background: #06070b;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links h4, .footer-contact h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: rgba(18, 22, 36, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary);
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-text {
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Contact Page Specifics */
.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    h1 { font-size: 42px; }
    .features-split, .services-grid, .reviews-grid, .pricing-grid, .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .burger { display: block; }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    nav ul.open {
        display: flex;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }
}