/* ==========================================================================
   Finale WKV Steps Section (v7 - Button-Effekt korrigiert)
   ========================================================================== */

/* Allgemeine Sektions-Stile */
.wkv-steps-section {
    background: #18141b;
    padding: 92px 0 112px 0;
    font-family: 'Josefin Sans', sans-serif;
}

.wkv-steps-section .wkv-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
    text-align: center;
}

/* Überschriften */
.wkv-section-subheadline {
    color: var(--wkv-pink, #b31347);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.wkv-section-headline {
    font-family: 'Yeseva One', serif;
    color: var(--color-headline, #e4c98b);
    font-size: clamp(2.3rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 3.3rem;
    text-shadow: 0 2px 18px rgba(0,0,0,0.44);
}

/* Steps Container & Mittellinie */
.wkv-steps-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 48px 0; 
}

.wkv-steps-centerline {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #e4c98b 0%, #bfa255 90%);
    opacity: 0.18;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 8px;
}

/* Layout-System für die Timeline */
.wkv-steps-row {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 0 2rem;
    position: relative;
    margin-bottom: 4rem; 
}

/* Basis-Stil der Step-Karte */
.wkv-step-card {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    background: #232026;
    border-radius: 8px; 
    box-shadow: 0 6px 36px -14px rgba(0,0,0,0.38), 0 0 2px rgba(191,162,85,0.1);
    border: 1.2px solid rgba(191,162,85,0.14);
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Positionierung im Grid */
.wkv-step-card.left {
    grid-column: 1;
}
.wkv-step-card.right {
    grid-column: 3;
}

/* Pfeile */
.wkv-step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    z-index: 3;
}
.wkv-step-card.left::after {
    left: 100%;
    border-left: 12px solid #e4c98b;
}
.wkv-step-card.right::after {
    right: 100%;
    border-right: 12px solid #e4c98b;
}


/* Icons & Text Stile */
.wkv-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wkv-step-icon svg {
    width: 52px;
    height: 52px;
    color: #e4c98b;
}
.wkv-step-content {
    flex: 1;
    text-align: left;
}
.wkv-step-title {
    font-family: 'Yeseva One', serif;
    font-size: 1.18rem;
    color: var(--color-headline, #e4c98b);
    margin-bottom: 0.18rem;
    line-height: 1.13;
}
.wkv-step-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.01rem;
    color: #f2e6c9;
    line-height: 1.62;
    opacity: 0.95;
    margin: 0;
}

/* STYLING FÜR DEN PROMO-BEREICH */
.wkv-final-promo {
    text-align: center;
    max-width: 650px;
    margin: 6rem auto 0 auto;
}
.wkv-final-promo-headline {
    font-family: 'Yeseva One', serif;
    font-size: 1.5rem;
    color: #e4c98b;
    margin-bottom: 1rem;
}
.wkv-final-promo-text {
    font-size: 1.1rem;
    color: #f2e6c9;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0 0 2.5rem 0;
}

/* === EXAKT ANGEPASSTES BUTTON-STYLING (GEMÄSS VORLAGE) === */
.wkv-btn {
    display: inline-block;
    background: var(--wkv-pink, #b31347);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.25rem; /* Haupt-Schriftgröße aus Vorlage */
    font-weight: 700;
    text-decoration: none;
    padding: 1.2rem 3.5rem; /* Padding aus Vorlage */
    border-radius: 8px;
    border: 2px solid var(--wkv-pink, #b31347); /* Border aus Vorlage */
    box-shadow: none; /* Kein Schatten im Normalzustand */
    transition: all 0.25s ease-out; /* Transition aus Vorlage */
}

.wkv-btn:hover,
.wkv-btn:focus {
    transform: scale(1.03); /* Korrekter Effekt: Skalieren */
    background: #d61b58; /* Hover-Farbe aus Vorlage (Variable aufgelöst) */
    border-color: #d61b58; /* Hover-Farbe aus Vorlage (Variable aufgelöst) */
    box-shadow: 0 4px 20px 2px rgba(179, 19, 71, 0.3); /* Korrekter Schatten */
    text-decoration: none; /* Verhindert Unterstrich */
    color: #fff;
}


/* Responsive Stile für Mobilgeräte */
@media (max-width: 1100px) {
    .wkv-steps-centerline,
    .wkv-step-card::after {
        display: none;
    }
    .wkv-steps-row {
        display: block;
        margin-bottom: 0;
    }
    .wkv-step-card {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}