/* =============================================
   TM24 ANKAUF – PREMIUM HERO
   Hochwertig, modern, conversion-optimiert
   ============================================= */

/* ===== HERO SECTION ===== */
.ankauf-hero {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(99,102,241,0.25), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(79,70,229,0.15), transparent 45%),
        linear-gradient(160deg, #1e1b4b 0%, #312e81 35%, #3730a3 60%, #1e1b4b 100%);
    color: #fff;
    padding: 72px 0 56px;
    text-align: center;
    position: relative;
    overflow: visible;
}

/* Dezentes Dot-Pattern für Tiefe */
.ankauf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.6) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Weiche Welle unten */
.ankauf-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--tm-gray);
    border-radius: 50% 50% 0 0;
    pointer-events: none;
}

/* Wizard-Container: kein negativer Margin noetig da Kurve jetzt innerhalb Hero */

/* ===== HEADLINE ===== */
.ankauf-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    line-height: 1.1;
    position: relative;
}

.ankauf-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #a5b4fc 0%, #67e8f9 50%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SUBLINE ===== */
.hero-sub {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

/* ===== TRUST ROW ===== */
.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.01em;
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 220ms ease;
}

.hero-trust-item:hover {
    background: rgba(255,255,255,0.1);
}

.hero-trust-item i {
    font-size: 18px;
    color: #4ade80;
    filter: drop-shadow(0 1px 3px rgba(74,222,128,0.3));
}

/* ===== CTA BUTTON ===== */
.ankauf-hero .hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 18px 48px;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 800;
    text-decoration: none;
    box-shadow:
        0 8px 32px rgba(34,197,94,0.35),
        0 2px 8px rgba(0,0,0,0.15);
    transition: transform 220ms ease, box-shadow 220ms ease;
    font-family: 'Figtree', sans-serif;
    letter-spacing: -0.01em;
    border: none;
}

.ankauf-hero .hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 16px 48px rgba(34,197,94,0.4),
        0 4px 12px rgba(0,0,0,0.2);
    color: #fff;
    text-decoration: none;
}

.ankauf-hero .hero-cta-btn i {
    font-size: 15px;
    transition: transform 220ms ease;
}

.ankauf-hero .hero-cta-btn:hover i {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .ankauf-hero {
        padding: 48px 0 40px;
    }

    .hero-trust-row {
        gap: 8px;
    }

    .hero-trust-item {
        font-size: 12px;
        padding: 6px 12px;
        gap: 6px;
    }

    .hero-trust-item i {
        font-size: 15px;
    }

    .hero-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .ankauf-hero {
        padding: 36px 0 32px;
    }

    .hero-trust-item {
        font-size: 11px;
        padding: 5px 10px;
    }
}
