/* ========================================
   34-vertriebsunterstuetzung.css
   B2B Vertriebsunterstützung Hub Landing Page
   
   CI-konform: Nutzt Design-Tokens aus 01-tokens.css
   Prefix: vu- (VertriebsUnterstützung)
   
   Shared Klassen aus 08-proof.css:
   - verschaerfung-sektion (Kosten-der-Untätigkeit)
   - dringlichkeit-sektion (Kapazitätslimit)
   ======================================== */

/* ----------------------------------------
   Gemeinsame Styles
   ---------------------------------------- */
.vu-section-titel {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--farbe-schwarz, #000000);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.vu-section-intro {
    font-size: 1.125rem;
    color: var(--farbe-grau-dunkel, #666666);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
}

.vu-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Akzent-Farbe in Titeln */
.vu-section-titel .akzent {
    color: var(--farbe-kupfer, #C86F27);
}

/* Hell-Variante (auf dunklem Hintergrund) */
.vu-section-titel--hell {
    color: var(--farbe-weiss-warm, #F5F5F5);
}

.vu-section-intro--hell {
    color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */
.vu-hero {
    position: relative;
    min-height: 90vh;
    background: var(--farbe-schwarz, #000000);
    background-image: url('../../Bilder/Hg_Knoten.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.vu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 0;
}

.vu-hero__container {
    position: relative;
    z-index: 1;
    max-width: 75rem;
    margin: 0 auto;
    padding: 10rem clamp(2rem, 6vw, 6rem) 4rem;
}

@media (max-width: 64em) {
    .vu-hero__container {
        padding-top: 10rem;
    }
}

.vu-hero__headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--farbe-weiss, #FFFFFF);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    max-width: 50rem;
}

.vu-hero__headline-accent {
    display: block;
    color: var(--farbe-gold, #C86F27);
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-top: 0.25rem;
}

.vu-hero__subline {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 42rem;
}

.vu-hero__link {
    color: var(--farbe-gold, #C86F27);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vu-hero__link:hover {
    color: var(--farbe-gold-hell, #FFBA42);
}

.vu-hero__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
}

.vu-hero__benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.vu-hero__benefits li::before {
    content: "✓";
    color: var(--farbe-gold, #C86F27);
    font-weight: 700;
}

/* Beweis-Zeile: Sozialer Beweis direkt unter Bullets */
.vu-hero__beweis {
    margin: -1rem 0 2rem 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.vu-hero__beweis strong {
    color: var(--farbe-kupfer, #C86F27);
    font-weight: 700;
}

.vu-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Stats Bar */
.vu-hero__stats {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vu-hero__stats-inner {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2rem clamp(2rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 48em) {
    .vu-hero__stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vu-hero__stat {
    text-align: center;
}

.vu-hero__stat-zahl {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--farbe-kupfer, #C86F27);
    line-height: 1;
}

.vu-hero__stat-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ----------------------------------------
   PROBLEM SECTION (Weiß)
   ---------------------------------------- */
.vu-problem {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
    background: var(--farbe-weiss, #FFFFFF);
}

.vu-problem__container {
    max-width: 75rem;
    margin: 0 auto;
}

.vu-problem__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 48em) {
    .vu-problem__grid {
        grid-template-columns: 1fr;
    }
}

.vu-problem__card {
    background: var(--farbe-weiss-warm, #F5F5F5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.vu-problem__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vu-problem__card:hover {
    border-color: rgba(200, 111, 39, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.vu-problem__card.is-visible:hover {
    transform: translateY(-4px);
}

.vu-problem__icon {
    margin-bottom: 1rem;
}

.vu-problem__card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--farbe-schwarz, #000000);
    margin: 0 0 0.75rem 0;
}

.vu-problem__card p {
    font-size: 1rem;
    color: var(--farbe-grau-dunkel, #666666);
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------------
   VERSCHÄRFUNG (nutzt shared CSS aus 08-proof.css)
   Dark Section: Shared Styles setzen schwarz + weiß
   Kein Background-Override nötig
   ---------------------------------------- */

/* ----------------------------------------
   LEISTUNGEN HUB (Schwarz – Kern der Seite)
   ---------------------------------------- */
.vu-leistungen {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
    background: var(--farbe-schwarz, #000000);
    color: var(--farbe-weiss-warm, #F5F5F5);
}

.vu-leistungen__container {
    max-width: 80rem;
    margin: 0 auto;
}

.vu-leistungen__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 64em) {
    .vu-leistungen__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 40em) {
    .vu-leistungen__grid {
        grid-template-columns: 1fr;
    }
}

/* Leistung Card (klickbar als <a>) */
.vu-leistung-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 2rem;
    text-decoration: none;
    color: var(--farbe-weiss-warm, #F5F5F5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vu-leistung-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vu-leistung-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 111, 39, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vu-leistung-card.is-visible:hover {
    transform: translateY(-6px);
}

.vu-leistung-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 111, 39, 0.12);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.vu-leistung-card__nr {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--farbe-kupfer, #C86F27);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.vu-leistung-card__titel {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--farbe-weiss-warm, #F5F5F5);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.vu-leistung-card__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    flex-grow: 1;
}

.vu-leistung-card__text .glossar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vu-leistung-card__text .glossar-link:hover {
    color: var(--farbe-kupfer, #C86F27);
}

.vu-leistung-card__ergebnis {
    padding: 0.75rem 1rem;
    background: rgba(200, 111, 39, 0.08);
    border: 1px solid rgba(200, 111, 39, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.vu-leistung-card__ergebnis strong {
    color: var(--farbe-kupfer, #C86F27);
    font-weight: 700;
}

.vu-leistung-card__ergebnis span {
    color: rgba(255, 255, 255, 0.5);
}

.vu-leistung-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--farbe-kupfer, #C86F27);
    margin-top: auto;
    transition: color 0.3s ease;
}

.vu-leistung-card:hover .vu-leistung-card__link {
    color: var(--farbe-gold-hell, #FFBA42);
}

/* Hinweis unter dem Grid */
.vu-leistungen__hinweis {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
}

.vu-leistungen__hinweis p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.vu-leistungen__hinweis strong {
    color: var(--farbe-weiss-warm, #F5F5F5);
}

.vu-leistungen__link {
    color: var(--farbe-kupfer, #C86F27);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vu-leistungen__link:hover {
    color: var(--farbe-gold-hell, #FFBA42);
}

/* ----------------------------------------
   PROZESS SECTION (Weiß)
   ---------------------------------------- */
.vu-prozess {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
    background: var(--farbe-weiss, #FFFFFF);
}

.vu-prozess__container {
    max-width: 60rem;
    margin: 0 auto;
}

.vu-prozess__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Verbindungslinie */
.vu-prozess__steps::before {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(200, 111, 39, 0.4),
        rgba(200, 111, 39, 0.1)
    );
}

@media (max-width: 40em) {
    .vu-prozess__steps::before {
        left: 1.25rem;
    }
}

.vu-prozess__step {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.vu-prozess__step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vu-prozess__step-nr {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--farbe-kupfer, #C86F27);
    color: var(--farbe-weiss, #FFFFFF);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 40em) {
    .vu-prozess__step-nr {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .vu-prozess__step {
        gap: 1.25rem;
    }
}

.vu-prozess__step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--farbe-schwarz, #000000);
    margin: 0 0 0.5rem 0;
}

.vu-prozess__step-content p {
    font-size: 1rem;
    color: var(--farbe-grau-dunkel, #666666);
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.vu-prozess__step-dauer {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--farbe-kupfer, #C86F27);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

/* ----------------------------------------
   ERGEBNISSE / BEWEIS (Off-White)
   ---------------------------------------- */
.vu-ergebnisse {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
    background: var(--farbe-weiss-warm, #F5F5F5);
}

.vu-ergebnisse__container {
    max-width: 75rem;
    margin: 0 auto;
}

.vu-ergebnisse__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 64em) {
    .vu-ergebnisse__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

.vu-ergebnis-card {
    background: var(--farbe-weiss, #FFFFFF);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.vu-ergebnis-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vu-ergebnis-card:hover {
    border-color: rgba(200, 111, 39, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.vu-ergebnis-card.is-visible:hover {
    transform: translateY(-4px);
}

.vu-ergebnis-card__header {
    padding: 1rem 1.5rem;
    background: var(--farbe-schwarz, #000000);
}

.vu-ergebnis-card__branche {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--farbe-kupfer, #C86F27);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vu-ergebnis-card__content {
    padding: 1.5rem;
}

.vu-ergebnis-card__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--farbe-schwarz, #000000);
    margin: 0 0 1rem 0;
}

.vu-ergebnis-card__kpi {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.vu-ergebnis-card__zahl {
    font-size: 2rem;
    font-weight: 800;
    color: var(--farbe-kupfer, #C86F27);
    line-height: 1;
}

.vu-ergebnis-card__einheit {
    font-size: 0.875rem;
    color: var(--farbe-grau-dunkel, #666666);
    font-weight: 500;
}

.vu-ergebnis-card__content p {
    font-size: 0.9375rem;
    color: var(--farbe-grau-dunkel, #666666);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.vu-ergebnis-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--farbe-kupfer, #C86F27);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vu-ergebnis-card__link:hover {
    color: var(--farbe-gold-hell, #FFBA42);
}

/* Gründer-Zitat */
.vu-ergebnisse__gruender {
    margin-top: 3rem;
    text-align: center;
}

.vu-ergebnisse__gruender .proof-gruender-zitat {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    font-style: italic;
}

.vu-ergebnisse__gruender .proof-gruender-zitat p {
    font-size: 1.125rem;
    color: var(--farbe-schwarz, #000000);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.vu-ergebnisse__gruender .proof-gruender-zitat cite {
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--farbe-grau-dunkel, #666666);
}

/* ----------------------------------------
   ZIELGRUPPEN (Weiß)
   ---------------------------------------- */
.vu-zielgruppen {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
    background: var(--farbe-weiss, #FFFFFF);
}

.vu-zielgruppen__container {
    max-width: 75rem;
    margin: 0 auto;
}

.vu-zielgruppen__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 48em) {
    .vu-zielgruppen__grid {
        grid-template-columns: 1fr;
    }
}

.vu-zielgruppe-card {
    background: var(--farbe-weiss-warm, #F5F5F5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.vu-zielgruppe-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vu-zielgruppe-card:hover {
    border-color: rgba(200, 111, 39, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.vu-zielgruppe-card.is-visible:hover {
    transform: translateY(-4px);
}

.vu-zielgruppe-card__marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--farbe-schwarz, #000000);
    color: var(--farbe-kupfer, #C86F27);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.vu-zielgruppe-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--farbe-schwarz, #000000);
    margin: 0 0 0.75rem 0;
}

.vu-zielgruppe-card p {
    font-size: 1rem;
    color: var(--farbe-grau-dunkel, #666666);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.vu-zielgruppe-card__empfehlung {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--farbe-kupfer, #C86F27);
}

.vu-zielgruppe-card__empfehlung .glossar-link {
    color: var(--farbe-kupfer, #C86F27);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Branchen-Links */
.vu-zielgruppen__branchen {
    margin-top: 3rem;
    text-align: center;
}

.vu-zielgruppen__branchen > p {
    font-size: 0.9375rem;
    color: var(--farbe-grau-dunkel, #666666);
    margin: 0 0 1rem 0;
}

.vu-zielgruppen__branchen-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.vu-zielgruppen__branchen-links .glossar-link {
    font-size: 0.875rem;
    color: var(--farbe-schwarz, #000000);
    font-weight: 500;
    text-decoration: none;
    padding: 0.375rem 1rem;
    border: 1px solid var(--farbe-grau, #D9D9D9);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.vu-zielgruppen__branchen-links .glossar-link:hover {
    color: var(--farbe-kupfer, #C86F27);
    border-color: rgba(200, 111, 39, 0.3);
    background: rgba(200, 111, 39, 0.05);
}

/* ----------------------------------------
   FAQ SECTION (Off-White)
   ---------------------------------------- */
.vu-faq {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
    background: var(--farbe-weiss-warm, #F5F5F5);
}

.vu-faq__container {
    max-width: 50rem;
    margin: 0 auto;
}

.vu-faq__liste {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vu-faq__item {
    background: var(--farbe-weiss, #FFFFFF);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.vu-faq__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vu-faq__item:hover {
    border-color: rgba(200, 111, 39, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vu-faq__frage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.vu-faq__frage span {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--farbe-schwarz, #000000);
    line-height: 1.4;
}

.vu-faq__frage:hover span {
    color: var(--farbe-kupfer, #C86F27);
}

.vu-faq__icon {
    flex-shrink: 0;
    color: var(--farbe-grau-dunkel, #666666);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vu-faq__item.ist-offen .vu-faq__icon {
    transform: rotate(180deg);
}

.vu-faq__antwort {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.3s ease;
    padding: 0 2rem;
}

.vu-faq__item.ist-offen .vu-faq__antwort {
    max-height: 1000px;
    padding: 0 2rem 1.5rem 2rem;
}

.vu-faq__antwort p {
    font-size: 1rem;
    color: var(--farbe-grau-dunkel, #666666);
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.vu-faq__antwort p:last-child {
    margin-bottom: 0;
}

.vu-faq__antwort strong {
    color: var(--farbe-schwarz, #000000);
}

.vu-faq__antwort .glossar-link {
    color: var(--farbe-kupfer, #C86F27);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vu-faq__antwort .glossar-link:hover {
    color: var(--farbe-gold-hell, #FFBA42);
}

/* Noch-Fragen Box */
.vu-faq__noch-fragen {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(200, 111, 39, 0.08);
    border: 1px solid rgba(200, 111, 39, 0.25);
    border-radius: 1.5rem;
    text-align: center;
}

.vu-faq__noch-fragen p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--farbe-schwarz, #000000);
    margin: 0 0 1rem 0;
}

/* ----------------------------------------
   FINAL CTA (Schwarz)
   ---------------------------------------- */
.vu-cta {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
    background: var(--farbe-schwarz, #000000);
    text-align: center;
}

.vu-cta__container {
    max-width: 50rem;
    margin: 0 auto;
}

.vu-cta__headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--farbe-weiss-warm, #F5F5F5);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.vu-cta__headline .akzent {
    color: var(--farbe-kupfer, #C86F27);
}

.vu-cta__text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.vu-cta__features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.vu-cta__features span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.vu-cta__buttons {
    margin-bottom: 1.5rem;
}

.vu-cta__sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ----------------------------------------
   GEO-ONLY Sektionen (für KI-Crawler)
   ---------------------------------------- */
.geo-seo-only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ----------------------------------------
   Scroll Animation Delays (Staggered)
   ---------------------------------------- */
.vu-problem__card:nth-child(2),
.vu-leistung-card:nth-child(2),
.vu-ergebnis-card:nth-child(2),
.vu-zielgruppe-card:nth-child(2),
.vu-faq__item:nth-child(2) {
    transition-delay: 0.1s;
}

.vu-problem__card:nth-child(3),
.vu-leistung-card:nth-child(3),
.vu-ergebnis-card:nth-child(3),
.vu-zielgruppe-card:nth-child(3),
.vu-faq__item:nth-child(3) {
    transition-delay: 0.2s;
}

.vu-problem__card:nth-child(4),
.vu-leistung-card:nth-child(4),
.vu-faq__item:nth-child(4) {
    transition-delay: 0.3s;
}

.vu-leistung-card:nth-child(5),
.vu-faq__item:nth-child(5) {
    transition-delay: 0.4s;
}

.vu-leistung-card:nth-child(6),
.vu-faq__item:nth-child(6) {
    transition-delay: 0.5s;
}

.vu-prozess__step:nth-child(2) {
    transition-delay: 0.15s;
}

.vu-prozess__step:nth-child(3) {
    transition-delay: 0.3s;
}
