:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --black-card: #1a1a1a;
    --black-border: #2a2a2a;
    --orange: #FF6B00;
    --orange-light: #FF8A33;
    --orange-glow: rgba(255, 107, 0, 0.15);
    --orange-glow-strong: rgba(255, 107, 0, 0.3);
    --white: #f5f5f5;
    --gray: #888;
    --gray-light: #bbb;
    --green: #00c853;
    --red: #ff3d00;
}

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

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============ NOISE OVERLAY ============ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ============ NAVIGATION ============ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
    transition: all 0.3s ease;
}

nav.scrolled {
    height: 60px;
    background: rgba(10, 10, 10, 0.95);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-logo span { color: var(--orange); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--orange) !important;
    color: var(--black) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--orange-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--orange-glow-strong);
}

.nav-cta::after { display: none !important; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 48px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, var(--orange-glow) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
    opacity: 0.4;
}

.hero-sub {
    font-size: 20px;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 44px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.25s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--black);
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--orange-glow-strong);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: 1px solid var(--black-border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.05);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 72px;
    animation: fadeInUp 0.8s ease 0.55s both;
}

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

.hero-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--orange);
    letter-spacing: 2px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ============ SECTION STYLES ============ */
section {
    padding: 100px 48px;
    position: relative;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-light);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 300;
}

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

/* ============ HOW IT WORKS ============ */
#so-funktionierts {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.step-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 48px 36px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.step-card:hover { border-color: rgba(255, 107, 0, 0.3); transform: translateY(-4px); }
.step-card:hover::before { opacity: 1; }

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(255, 107, 0, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.step-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

/* ============ VORTEILE ============ */
.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.vorteil-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.vorteil-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
}

.vorteil-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.vorteil-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vorteil-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 15px;
}

/* ============ LIVE VERFÜGBARKEIT ============ */
#verfuegbarkeit {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.avail-box {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 48px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.avail-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.avail-info p {
    color: var(--gray);
    font-size: 15px;
}

.avail-status {
    display: flex;
    align-items: center;
    gap: 40px;
}

.avail-count {
    text-align: center;
}

.avail-count-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--orange);
    line-height: 1;
}

.avail-count-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.avail-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.25);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

.avail-indicator .dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ============ ÜBER UNS ============ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
}

.about-text p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 24px;
}

.about-text p strong {
    color: var(--white);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-value {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 28px 32px;
    transition: all 0.3s;
}

.about-value:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.about-value h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-value p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ LEAD KATEGORIEN ============ */
#kategorien {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.kat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.kat-card {
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.kat-card.active {
    background: var(--black-card);
    border-color: rgba(255, 107, 0, 0.4);
}

.kat-card.coming-soon {
    background: rgba(20, 20, 20, 0.5);
}

.kat-card.active:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(255, 107, 0, 0.1);
}

.kat-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.kat-badge.live {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: var(--green);
}

.kat-badge.soon {
    background: rgba(136, 136, 136, 0.1);
    border: 1px solid rgba(136, 136, 136, 0.3);
    color: var(--gray);
}

.kat-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.kat-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 24px;
}

.kat-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kat-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-light);
}

.kat-feature .check {
    color: var(--orange);
    font-weight: bold;
}

/* ============ PREISE ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.price-card.featured {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, var(--black-card) 100%);
}

.price-card.featured::before {
    content: 'BELIEBT';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--black);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-card .price-desc {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 32px;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.price-amount span {
    font-size: 20px;
    color: var(--gray);
}

.price-per {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 36px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    text-align: left;
}

.price-features li {
    font-size: 15px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: bold;
    min-width: 16px;
}

.price-savings {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 24px;
    display: inline-block;
}

.price-guarantee {
    margin-top: 48px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

/* ============ CTA BANNER ============ */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.02) 100%);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    text-align: center;
}

.cta-section .section-title {
    font-size: clamp(36px, 5vw, 56px);
}

.cta-section .section-desc {
    margin: 0 auto 40px;
    max-width: 550px;
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 800px;
    margin: 64px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: rgba(255, 107, 0, 0.3);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s;
    user-select: none;
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
    font-size: 24px;
    color: var(--orange);
    transition: transform 0.3s;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 32px 24px;
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 15px;
}

/* ============ BLOG TEASER ============ */
#blog {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.blog-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-4px);
}

.blog-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--black-card), rgba(255, 107, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-bottom: 1px solid var(--black-border);
}

.blog-card-body {
    padding: 28px;
}

.blog-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.blog-card .read-more {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============ LOGIN TEASER ============ */
.login-section {
    text-align: center;
}

.login-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.login-feat {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.login-feat:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.login-feat-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.login-feat h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.login-feat p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.5;
}

/* ============ KONTAKT ============ */
#kontakt {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 64px;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

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

.kontakt-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.kontakt-info p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 32px;
}

.kontakt-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--gray-light);
    font-size: 15px;
}

.kontakt-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ============ FOOTER ============ */
footer {
    background: var(--black);
    border-top: 1px solid var(--black-border);
    padding: 64px 48px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .nav-logo {
    font-size: 32px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.25s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--black-border);
    color: var(--gray);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-legal a:hover { color: var(--orange); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 24px 32px;
    max-width: 560px;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

.cookie-banner p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
    flex: 1;
}

.cookie-banner p a {
    color: var(--orange);
    text-decoration: underline;
}

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

.cookie-accept {
    background: var(--orange);
    color: var(--black);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.cookie-decline {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--black-border);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.cookie-banner.hidden { display: none; }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    section { padding: 80px 32px; }
    nav { padding: 0 24px; }
    .steps-grid { grid-template-columns: 1fr; }
    .vorteile-grid { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .kat-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .blog-grid { grid-template-columns: 1fr; }
    .login-features { grid-template-columns: repeat(2, 1fr); }
    .kontakt-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 32px; }
}

@media (max-width: 768px) {
    section { padding: 64px 20px; }
    nav { padding: 0 20px; }
    footer { padding: 48px 20px 24px; }

    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--black);
        padding: 40px 32px;
        gap: 24px;
        z-index: 999;
    }
    .mobile-toggle { display: flex; }

    .hero { padding: 100px 20px 60px; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .avail-box { flex-direction: column; text-align: center; }
    .avail-status { flex-direction: column; gap: 20px; }
    .login-features { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-btns { width: 100%; }
    .cookie-accept, .cookie-decline { flex: 1; }
}

/* ============ STRUCTURED DATA HIDDEN ============ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
