#emotional-story {
    text-align: center;
    padding: 100px 0;
    background: #f7faf9;
}

#storyStartBtn {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: none;
    background: #FFCC00;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform .2s ease;
    position: relative;
    z-index: 2;
     animation: breathe 1.5s ease-in-out infinite;
}
#storyStartBtn::before {
    content: "";
    position: absolute;
    inset: -160px;
    background: radial-gradient(
        circle,
        rgba(255, 204, 0, 0.35),
        rgba(255, 204, 0, 0) 70%
    );
    border-radius: 50%;
    z-index: -1;
    transition:
        inset 0.6s ease,
        background 0.6s ease,
        opacity 0.6s ease;
}
#storyStartBtn:hover {transform:scale(1.05);}
#storyStartBtn:hover::before {
    inset: -200px;
    background: radial-gradient(
        circle,
        rgba(17, 195, 117, 0.45),
        rgba(17, 195, 117, 0) 70%
    );
    opacity: 1;
}
@keyframes breathe {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.04); }
    100% { transform: scale(1); }
}
#storyStartBtn::after {
    content: "\27A4";
    position: absolute;
    right: -5px;
    bottom: -5px;
    font-size: 40px;
    opacity: 0.9;
    pointer-events: none;
    animation: cursorHint 2.2s ease-in-out infinite;
}

/* Rotation HIER definieren */
@keyframes cursorHint {
    0% {
        transform: translate(0, 0) rotate(225deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-6px, -6px) rotate(225deg);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) rotate(225deg);
        opacity: 0.8;
    }
}

#storyOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
}

#storyContent {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}
.story-layer-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-layer-top {
    position: relative;
    max-width: 820px;
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    animation: fadeSlideIn .6s ease forwards;
}
.story-layer-top h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.story-layer-top p {
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.6;
    color: #444;
    margin-bottom: 24px;
}

.story-layer-top strong {
    color: #000;
}
.story-actions {
    margin-top: 40px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.story-layer-bottom {
    position: absolute;
    inset: 0;
    background: #f7f7f7;
    padding: 80px;
    z-index: 1;
    opacity: 0;
    transition: opacity .3s ease;
}

.story-actions button,
.story-actions .cta-btn {
    appearance: none;
    margin:0 auto;
    border: none;
    cursor: pointer;
    padding: 16px 28px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 999px;
    background: linear-gradient(135deg, #f5c400, #ffd84d);
    color: #000;
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.35);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}
.story-actions button:hover,
.story-actions .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(245, 196, 0, 0.45);
}

.story-actions button:active {
    transform: translateY(0);
}



.info-icon:hover ~ .story-layer-bottom {
    opacity: 1;
}
.story-animate-in {
    animation: fadeSlideIn .6s ease forwards;
}
.sun-glow {
    position: absolute;
    top: -220px;
    right: -220px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(255,204,0,0.35), rgba(255,204,0,0) 70%);
    animation: sunPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes sunPulse {
    0%   { transform: scale(1); opacity: .5; }
    50%  { transform: scale(1.08); opacity: .85; }
    100% { transform: scale(1); opacity: .5; }
}



@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}* Offer-Grid nebeneinander */
.pv-offer-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
}

/* Einzelne Boxen */
.pv-offer-box {
    flex: 1 1 0;
    max-width: 520px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Mobile: untereinander */
@media (max-width: 900px) {
    .pv-offer-grid {
        flex-direction: column;
        align-items: center;
    }

    .pv-offer-box {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .story-layer-top {
        padding: 40px 20px;
    }

    .story-actions {
        flex-direction: column;
    }

    .story-actions button,
    .story-actions .cta-btn {
        width: 100%;
        max-width: 320px;
    }
}



.story-hint {
    text-align: center;
    font-size: 30px;
    color: #777;
    margin-bottom: 14px;
}
.story-arrow {
    text-align: center;
    font-size: 20px;
    color: #bbb;
    margin-bottom: 6px;
    animation: arrowFloat 2.5s ease-in-out infinite;
}

@keyframes arrowFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(6px); }
    100% { transform: translateY(0); }
}
