@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;800&display=swap');

.svs-section {
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 80px 40px 100px;
    background: #ffffff;
    direction: ltr;
    box-sizing: border-box;
}

.svs-section *,
.svs-section *::before,
.svs-section *::after {
    box-sizing: border-box;
}

/* Decoration */
.svs-deco {
    font-size: 18px;
    letter-spacing: 8px;
    color: #01aae1;
    opacity: 0.3;
    margin-bottom: 18px;
    display: block;
}

/* Header */
.svs-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1e2530;
    margin: 0 0 12px;
    padding: 0;
}

.svs-subtitle {
    font-family: 'Inter', sans-serif;
    color: #767f88;
    font-size: 0.95rem;
    max-width: 440px;
    margin: 0 auto 64px;
    line-height: 2;
    padding: 0;
}

/* Steps Row */
.svs-steps-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

/* Single Step */
.svs-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 24px;
    opacity: 0;
}

/* Animations */
.svs-anim-none   { opacity: 1 !important; animation: none !important; }
.svs-anim-fadeUp { animation: svsFadeUp  0.6s ease forwards; }
.svs-anim-fadeIn { animation: svsFadeIn  0.6s ease forwards; }
.svs-anim-zoomIn { animation: svsZoomIn  0.6s ease forwards; }
.svs-anim-slideIn{ animation: svsSlideIn 0.6s ease forwards; }

@keyframes svsFadeUp  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes svsFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes svsZoomIn  { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes svsSlideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* Number Badge */
.svs-number {
    position: absolute;
    top: -6px;
    right: 22px;
    width: 24px;
    height: 24px;
    background-color: #01aae1;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(1, 170, 225, 0.35);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

/* Icon Circle */
.svs-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e6f7fd;
    border: 2px dashed #b3e5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: default;
    overflow: hidden;
    flex-shrink: 0;
}

.svs-circle.svs-hover-scale:hover {
    background-color: #01aae1;
    border-color: #01aae1;
    transform: scale(1.07);
    box-shadow: 0 10px 30px rgba(1, 170, 225, 0.30);
}

.svs-circle img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
    display: block;
}

.svs-circle.svs-hover-scale:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* Step Title */
.svs-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #01aae1;
    margin: 0 0 10px;
    padding: 0;
}

/* Step Description */
.svs-step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.83rem;
    color: #767f88;
    line-height: 2;
    max-width: 185px;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Connector / Arrow */
.svs-connector {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    padding-top: 46px;
}

.svs-connector svg {
    width: 60px;
    height: 20px;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .svs-steps-row {
        max-width: 100%;
    }
    .svs-step {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .svs-section {
        padding: 60px 24px 80px;
    }
    .svs-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 44px;
    }
    .svs-connector { display: none; }
    .svs-step-desc { max-width: 280px; }
    .svs-title { font-size: 1.5rem; }
    .svs-subtitle { max-width: 100%; margin-bottom: 44px; }
}

@media (max-width: 480px) {
    .svs-section {
        padding: 48px 16px 64px;
    }
    .svs-title { font-size: 1.3rem; }
    .svs-subtitle { font-size: 0.88rem; line-height: 1.8; }
    .svs-circle {
        width: 88px;
        height: 88px;
    }
    .svs-circle img {
        width: 40px;
        height: 40px;
    }
    .svs-step-desc { max-width: 260px; font-size: 0.80rem; }
    .svs-step-title { font-size: 0.95rem; }
}

@media (max-width: 360px) {
    .svs-section {
        padding: 40px 12px 56px;
    }
    .svs-title { font-size: 1.15rem; }
    .svs-subtitle { font-size: 0.82rem; }
    .svs-circle {
        width: 78px;
        height: 78px;
    }
    .svs-circle img {
        width: 36px;
        height: 36px;
    }
    .svs-step-desc { max-width: 240px; }
}
