:root {
    --primary-color: #5865F2;
    --secondary-color: #6C63FF;
    --accent-color: #9EA4FF;
    --dark-bg: #050812;
    --card-bg: rgba(15, 20, 40, 0.9);
    --text-color: #ffffff;
    --light-text: #b0b3c5;
    /* Navigation variables - konsistent mit base.css */
    --nav-bg: #0b1020;
    --nav-link: #d5d9e6;
    --nav-link-active: #6d7dff;
    --nav-accent: #5b63ff;
    --primary-gradient: linear-gradient(135deg, #6d7dff 0%, #5b63ff 100%);
}

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

body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #03040c;
    background-image: radial-gradient(circle at 20% 20%, rgba(93, 101, 255, 0.18), transparent 35%),
                    radial-gradient(circle at 80% 0%, rgba(87, 213, 255, 0.15), transparent 30%),
                    radial-gradient(circle at 50% 110%, rgba(50, 86, 180, 0.18), transparent 55%),
                    radial-gradient(ellipse at 50% 130%, rgba(30, 60, 140, 0.3), transparent 45%),
                    linear-gradient(160deg, #050713 0%, #0b1020 45%, #111a2e 85%, #0a1329 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Navigation - identisch mit main-nav aus base.css */
.landing-nav {
    background: linear-gradient(90deg, #0b1020 0%, #111a2e 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Verwende die gleichen Styles wie main-nav */
.landing-nav .nav-link {
    position: relative;
    color: var(--nav-link);
    font-weight: 500;
    padding: 1rem 0.75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: all .25s ease;
    border-radius: 8px;
    margin: 0 2px;
}

.landing-nav .nav-link:hover {
    color: var(--nav-link-active);
    background: rgba(109, 125, 255, 0.1);
}

.landing-nav .navbar-brand img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
    width: 40px;
    height: 40px;
}

.landing-nav .navbar-brand:hover img {
    transform: scale(1.05);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 8px rgba(92, 101, 242, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .subtitle {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(15, 20, 40, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-color);
}

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

.feature-card {
    background: radial-gradient(circle at center, rgba(30, 60, 140, 0.4) 0%, rgba(10, 14, 30, 0.95) 50%, rgba(6, 10, 26, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Why Section */
.why-section {
    padding: 80px 0;
}

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

.why-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 2;
    margin-bottom: 30px;
}

/* Pricing Section - genau wie in user_subscription.css */
.pricing-section {
    padding: 80px 0;
    background: transparent;
}

/* Pricing Cards - genau wie in user_subscription.css */
.apple-pricing-card {
    background: linear-gradient(145deg, rgba(10, 14, 30, 0.9), rgba(6, 10, 26, 0.92));
    border: 1px solid rgba(109, 125, 255, 0.18);
    border-radius: 26px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.apple-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 0%, rgba(93, 101, 255, 0.18), transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.18), transparent 45%);
    opacity: 0;
    transition: opacity 0.4s;
}

.apple-pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(93, 101, 255, 0.5);
    box-shadow: 0 25px 65px rgba(5, 6, 20, 0.75);
}

.apple-pricing-card:hover::before {
    opacity: 1;
}

.apple-pricing-card.featured {
    border-color: rgba(251, 146, 60, 0.6);
    background: linear-gradient(150deg, rgba(251, 146, 60, 0.13) 0%, rgba(11, 14, 32, 0.95) 45%, rgba(6, 10, 26, 0.92) 100%);
}

.apple-pricing-card.featured:hover {
    border-color: rgba(251, 146, 60, 0.9);
    box-shadow: 0 25px 70px rgba(251, 146, 60, 0.35);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
    color: #fff;
    padding: 8px 45px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-body {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

.duration {
    color: #a0aec0;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.decimal {
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.7;
}

.savings {
    text-align: center;
    color: #34d399;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    min-height: 1.5rem;
}

.savings.invisible {
    visibility: hidden;
}

.features {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #10b981;
    font-size: 1rem;
}

.apple-btn-select {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.apple-btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.apple-btn-select:active {
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(108, 99, 255, 0.2) 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

/* Footer */
.landing-footer {
    background: rgba(5, 8, 18, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    text-align: center;
    color: var(--light-text);
}

.landing-footer .social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.landing-footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(158, 164, 255, 0.3);
}

.landing-footer .social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.4);
}

.landing-footer h5,
.landing-footer h6 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.landing-footer a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Mobile Menu Toggle Button - identisch mit mobile-menu-btn aus base.css */
.landing-nav .mobile-menu-toggle {
    background: rgba(109, 125, 255, 0.1);
    border: 1px solid rgba(109, 125, 255, 0.3);
    color: var(--nav-link);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s;
}

.landing-nav .mobile-menu-toggle:hover {
    background: rgba(109, 125, 255, 0.2);
    color: var(--nav-link-active);
}

/* Responsive Design */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section .subtitle {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-card {
        padding: 30px;
    }

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

    .pricing-body {
        padding: 2rem 1.5rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding: 0 1rem;
    }

    .why-section {
        padding: 60px 0;
    }

    .why-content {
        padding: 0 1rem;
    }

    .why-content p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .apple-pricing-card {
        margin-bottom: 20px;
    }

    .apple-pricing-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .pricing-body {
        padding: 2rem 1.5rem;
    }

    .amount {
        font-size: 3.5rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* Navigation für Tablets */
    .landing-nav .nav-link {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 767.98px) {
    .landing-nav .nav-link {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .landing-nav .container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
        padding: 0 1rem;
        line-height: 1.3;
    }

    .hero-section .subtitle {
        font-size: 1rem;
        padding: 0 1.5rem;
        line-height: 1.6;
    }

    .hero-buttons {
        padding: 0 1rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .features-section {
        padding: 40px 0;
    }

    .features-grid {
        gap: 20px;
        margin-top: 30px;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

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

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 1rem;
    }

    .why-section {
        padding: 40px 0;
    }

    .why-content {
        padding: 0 1.5rem;
    }

    .why-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .pricing-section {
        padding: 40px 0;
    }

    .pricing-section .row {
        padding: 0 1rem;
    }

    .apple-pricing-card {
        margin-bottom: 20px;
    }

    .pricing-body {
        padding: 1.5rem 1.25rem;
    }

    .duration {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 3rem;
    }

    .savings {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .features {
        padding: 1.25rem 0;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .apple-btn-select {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1rem;
        padding: 0 1.5rem;
        margin-bottom: 30px;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section .subtitle {
        font-size: 0.95rem;
    }

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

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.25rem;
    }
}

/* Landscape Orientation für Tablets und Handys */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .features-section,
    .why-section,
    .pricing-section,
    .cta-section {
        padding: 50px 0;
    }
}

