/**
 * JARVIS LANDING PAGE STYLES
 * Ausgelagert aus index.php (Fix #9)
 */

/* Aurora Glow Background */
.aurora-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
    opacity: 0.4;
}
.aurora-shape {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    animation: move 20s infinite alternate;
}
.s1 { background: var(--aurora-1, #06319A); top: -200px; left: -200px; }
.s2 { background: var(--aurora-2, #34c759); bottom: -200px; right: -200px; animation-delay: -5s; }
.s3 { background: var(--aurora-3, #5856d6); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: move 25s infinite alternate-reverse; }

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(100px, 100px) scale(1.2); }
}

/* Navigation */
.fe-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}
.fe-logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    text-decoration: none;
    color: #fff;
}
.fe-nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.fe-nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.fe-nav-links a:hover { color: #fff; }

.btn-fe-nav {
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Sections & Layout */
.fe-container   { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.fe-section     { padding: 100px 0; }
.fe-text-center { text-align: center; }

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #06319A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero */
.fe-hero h1 {
    font-size: clamp(45px, 8vw, 90px);
    line-height: 0.95;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -4px;
}
.fe-hero p {
    font-size: clamp(17px, 2vw, 24px);
    color: rgba(255,255,255,0.6);
    margin-bottom: 50px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px;
    border-radius: 40px;
    transition: 0.4s;
}
.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
}
.feature-icon {
    width: 64px; height: 64px;
    background: rgba(6,49,154,0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 30px;
}

/* Pricing Grid — immer 3-spaltig (responsive: 2-spaltig ab < 1100px, 1-spaltig ab < 700px) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .pricing-grid { grid-template-columns: 1fr; }
}
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.pricing-card.popular {
    border-color: var(--primary);
    background: rgba(6,49,154,0.08);
    box-shadow: 0 0 60px rgba(6,49,154,0.2);
}

/* Preis-Anzeige */
.price {
    font-size: 54px;
    font-weight: 600;
    margin: 25px 0;
    color: #fff;
    letter-spacing: -2px;
}
.price small { font-size: 16px; opacity: 0.5; font-weight: 400; }
.fe-price       { font-size: 60px; font-weight: 600; margin: 25px 0; }
.fe-price small { font-size: 18px; opacity: 0.5; }

/* Buttons auf dunklem Hintergrund — "Ghost" Stil statt btn-soft */
.landing-btn-ghost {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
}
.landing-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.check-list    { list-style: none; padding: 0; margin: 40px 0; display: grid; gap: 15px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.8); }
.check-list i  { color: var(--primary); width: 20px; }

/* Footer */
.fe-footer {
    margin-top: 100px;
    padding: 50px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}
.fe-footer a { color: inherit; text-decoration: none; }
.fe-footer a:hover { color: rgba(255,255,255,0.7); }

/* Responsive */
@media (max-width: 768px) {
    .fe-nav { padding: 20px; }
    .fe-nav-links { display: none; }
}
