/* ============================================
   ALTERNATIVES PAGE ENHANCEMENTS
   Diese Datei ergänzt /landing/css/styles.css
   ============================================ */

/* Hero Section für Alternatives */
.hero-alternatives {
    background: var(--vb-primary-gradient);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px; /* Fixed navbar offset */
}

.hero-alternatives h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-alternatives p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.comparison-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 158, 153, 0.15);
}

.comparison-card h3 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-weight: 700;
}

.comparison-card .vs-badge {
    background: var(--coral-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.comparison-card p {
    color: var(--text-color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.comparison-card ul li {
    padding: 0.6rem 0;
    color: var(--text-color);
    display: flex;
    align-items: start;
    gap: 0.75rem;
    line-height: 1.5;
}

.comparison-card ul li:before {
    content: "?";
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-compare {
    display: inline-block;
    background: var(--vb-primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-compare:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(15, 158, 153, 0.3);
}

/* Why Switch Section */
.why-switch-section {
    background: var(--soft-ivory);
    padding: 4rem 0;
    margin: 4rem 0;
}

.feature-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-highlight {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--vb-primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.feature-highlight h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-highlight p {
    color: var(--text-color-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-alternatives {
        padding: 6rem 0 3rem;
    }

    .hero-alternatives h1 {
        font-size: 2rem;
    }

    .hero-alternatives p {
        font-size: 1.1rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-highlight-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-alternatives h1 {
        font-size: 1.75rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }
}
