/* =========================================
   LANDING HERO — Hero, Proof Bar, Problem/Solution
   Geladen auf: Homepage
   ========================================= */

/* ── Hero ── */
.landing-hero {
    padding: 140px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 420px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(99,91,255,0.12));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ── Claim Banner ── */
.claim-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 0;
    text-align: center;
}

.claim-text {
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.claim-text em {
    font-style: italic;
    opacity: 0.7;
}

.claim-text strong {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.claim-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

/* ── Social Proof Bar ── */
.proof-bar {
    background: var(--bg-app);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.proof-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* ── Problem → Lösung ── */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.problem-col h3, .solution-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.problem-item, .solution-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.problem-icon, .solution-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.problem-icon {
    background: #fef2f2;
}

.solution-icon {
    background: #ecfdf5;
}

.problem-item h4, .solution-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.problem-item p, .solution-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .landing-hero { padding: 100px 0 60px; min-height: auto; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-image { order: 1; }
    .hero-image img { max-width: 280px; }

    .hero-title { font-size: 38px; }
    .hero-subtitle { font-size: 18px; margin: 0 auto 28px; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }

    .claim-banner { padding: 48px 0; }
    .claim-text { font-size: 24px; }
    .claim-sub { font-size: 16px; }

    .problem-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 34px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .proof-items { flex-direction: column; gap: 12px; }
}
