/* ===================================================
   FINAL CTA - STORY QUOTE
   =================================================== */

.final-story {
    margin-bottom: 80px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    position: relative;
    max-width: 800px;
    backdrop-filter: blur(10px);
}

.final-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.05), transparent 70%);
    border-radius: 40px;
    pointer-events: none;
}

.final-quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: #ffffff;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, #fff, #a1a1a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-quote::before,
.final-quote::after {
    content: '"';
    color: #f59e0b;
    font-size: 80px;
    position: absolute;
    opacity: 0.2;
    font-family: serif;
    font-style: normal;
    line-height: 1;
}

.final-quote::before {
    left: -20px;
    top: -40px;
}

.final-quote::after {
    right: -10px;
    bottom: -60px;
}

.final-context {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}