/* ===================================================================
   WARUM-ICH/HERO.CSS - Hero & CTA Sections
   =================================================================== */

/* Hero Section */
.why-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.why-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.why-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.why-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== CTA Section ===== */
.why-cta {
    padding: 100px 0;
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-card .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-card .btn-primary:hover {
    background: rgba(255,255,255,0.9);
}

.cta-card .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-card .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}
