:root {
    --primary-orange: #f97316;
    --primary-orange-light: #fb923c;
    --primary-orange-dark: #c2410c;
    --bg-color: #07080a;
    --bg-color-alt: #0a0c0f;
    --text-light: #f5f5f7;
    --text-muted: #a1a1aa;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Soundwellen-Cursor */
.soundwave-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 2px rgba(255, 122, 0, 0.5));
}

.wave-line {
    width: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
    animation: wave 0.6s ease-in-out infinite;
    opacity: 0.8;
    height: 6px;
}

.wave-line:nth-child(1) { animation-delay: 0s; height: 6px; }
.wave-line:nth-child(2) { animation-delay: 0.1s; height: 14px; }
.wave-line:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.wave-line:nth-child(4) { animation-delay: 0.1s; height: 14px; }
.wave-line:nth-child(5) { animation-delay: 0s; height: 6px; }

@keyframes wave {
    0%, 100% {
        height: 6px;
        opacity: 0.6;
    }
    50% {
        height: 20px;
        opacity: 1;
    }
}

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

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(7, 8, 10, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 38px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

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

/* Hero */
.hero {
    padding: 200px 0 120px;
    background: linear-gradient(to bottom, var(--bg-color-alt), var(--bg-color));
    margin-top: 60px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.badge {
    display: inline-block;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-orange);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-orange);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: rgba(255, 122, 0, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Features */
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 122, 0, 0.05);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--bg-color-alt), var(--bg-color));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-section {
    padding: 120px 0;
}

.pricing-single-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card-single {
    background: var(--card-bg);
    border: 2px solid var(--primary-orange);
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.15);
}

.pricing-card-single:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(255, 122, 0, 0.25);
}

.pricing-card-single h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.price-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 8px;
    text-align: center;
}

.price-note-single {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--card-border);
}

.price-features-single {
    list-style: none;
    margin-bottom: 30px;
}

.price-features-single li {
    padding: 14px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features-single li i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--bg-color-alt), var(--bg-color));
}

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

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

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 122, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Action Section */
.action-section {
    padding: 100px 0;
    text-align: center;
}

.action-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.action-container p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--bg-color-alt);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo {
    height: 32px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-group .logo-text {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

.logo-text-group .logo-by {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.link-group {
    display: flex;
    gap: 20px;
}

.link-group a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
}

.link-group a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}
