.sav-wrapper-cfc07cf8 {
    background-color: #0A0A0A;
    color: #FFFFFF;
    font-family: inherit;
    padding: 80px 20px;
    overflow: hidden;
}

.sav-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sav-accent { color: #F5B82E; }
.sav-text-secondary { color: rgba(255,255,255,0.7); }

.sav-top-area {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sav-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sav-headline {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sav-intro {
    font-size: 1.1rem;
    line-height: 1.6;
}

.sav-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.sav-col-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

/* COLLAGE */
.sav-collage {
    position: relative;
    height: 400px;
}

.sav-collage-item {
    position: absolute;
    transition: transform 0.3s ease;
}

.sav-collage-item img {
    max-width: 140px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sav-collage-pos-0 { top: 10%; left: 0; transform: rotate(-5deg); z-index: 2; }
.sav-collage-pos-1 { top: 30%; right: 10%; transform: rotate(8deg); z-index: 3; }
.sav-collage-pos-2 { bottom: 20%; left: 20%; transform: rotate(-2deg); z-index: 4; }
.sav-collage-pos-3 { top: 60%; right: 0; transform: rotate(5deg); z-index: 1; }
.sav-collage-pos-4 { top: 0; right: 20%; transform: rotate(2deg); z-index: 1; }

.sav-collage-label {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #1A1A1A;
    padding: 4px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}

.sav-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F5B82E;
    color: #F5B82E;
}

/* PROCESS SPINE */
.sav-spine {
    position: relative;
    padding-left: 30px;
}

.sav-spine-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.sav-spine-line-fill {
    width: 100%;
    height: 0%;
    background-color: #F5B82E;
    transition: height 1s ease-out;
}

.sav-wrapper-cfc07cf8.is-animated .sav-spine-line-fill { height: 100%; }

.sav-step {
    position: relative;
    margin-bottom: 50px;
}

.sav-step-number {
    position: absolute;
    left: -44px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #0A0A0A;
    border: 2px solid #F5B82E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: #F5B82E;
}

.sav-step-title {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
}

.sav-step-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* VIDEO CONTAINER */
.sav-video-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    background: #111;
}

.sav-video-container iframe,
.sav-video-container video {
    display: block;
    width: 100%;
}


/* ANIMATIONS */
.sav-wrapper-cfc07cf8:not(.sav-no-anim) .sav-anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sav-wrapper-cfc07cf8.is-animated .sav-anim-fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sav-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .sav-collage { height: auto; display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
    .sav-collage-item { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; }
}
