/* ===== HERO ===== */
.ankauf-hero {
    background: linear-gradient(135deg, var(--tm-blue) 0%, #1a18a0 50%, #0f0e6e 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.ankauf-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--tm-gray);
    border-radius: 50% 50% 0 0;
    z-index: -1;
    pointer-events: none;
}

.ankauf-hero h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
    line-height: 1.15;
}

.ankauf-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #a5b4fc, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    opacity: 0.75;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.hero-trust-item i {
    font-size: 22px;
    color: #4ade80; /* Modernes Trust-Grün */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    background: #fff;
    color: #1a1040;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    font-family: 'Figtree', sans-serif;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
    color: #1a1040;
    text-decoration: none;
}

