/* =========================================================================
 * Vappax One-Stop Service
 *
 * .voss-grid wraps all rows and vertical arrows with gap.
 * .voss-row is a flex row of cards + horizontal arrows.
 * ====================================================================== */

.voss-section-title {
    text-align: center;
    margin: 0 0 6px;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #111827;
}

.voss-subtitle {
    text-align: center;
    margin: 0 0 28px;
    font-size: 15px;
    color: #6b7280;
}

/* ── Outer Grid ─────────────────────────────────────────────────────────── */

.voss-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Row ────────────────────────────────────────────────────────────────── */

.voss-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.voss-row--rev {
    flex-direction: row-reverse;
}

.voss-row > .voss-card {
    flex: 1;
    min-width: 0;
}

/* ── Card ───────────────────────────────────────────────────────────────── */

.voss-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.2s;
}

.voss-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.07);
    transform: translateY(-1px);
}

.voss-card-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.voss-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #6366f1;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.voss-step-icon {
    flex-shrink: 0;
    font-size: 26px;
    color: #6366f1;
    line-height: 1;
}

.voss-step-icon i,
.voss-step-icon svg {
    display: block;
    width: 1em;
    height: 1em;
}

.voss-step-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.voss-step-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}

.voss-step-desc {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
}

/* ── Horizontal Arrow ───────────────────────────────────────────────────── */

.voss-ah {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    color: #6366f1;
}

.voss-ah .voss-arrow {
    display: block;
    width: 100%;
    height: auto;
    max-width: 24px;
}

/* ── Vertical Arrow (between rows) ──────────────────────────────────────── */

.voss-av {
    display: flex;
    align-items: center;
    color: #6366f1;
    padding: 4px 0;
}

.voss-av--right {
    justify-content: flex-end;
    padding-right: 16px;
}

.voss-av--left {
    justify-content: flex-start;
    padding-left: 16px;
}

.voss-av .voss-arrow {
    display: block;
    width: 24px;
    height: auto;
}

/* =========================================================================
 * Tablet ≤1024px — 2 cols, no arrows
 * ====================================================================== */

@media (max-width: 1024px) {

    .voss-row {
        flex-wrap: wrap;
        gap: 14px;
    }

    .voss-row--rev {
        flex-direction: row;
    }

    .voss-row > .voss-card {
        flex: 1 1 calc(50% - 7px);
        min-width: 200px;
    }

    .voss-ah,
    .voss-av {
        display: none;
    }

    .voss-subtitle { margin-bottom: 20px; }
}

/* =========================================================================
 * Mobile <600px — stacked, no arrows
 * ====================================================================== */

@media (max-width: 599px) {

    .voss-row {
        flex-direction: column;
        gap: 10px;
    }

    .voss-row--rev {
        flex-direction: column;
    }

    .voss-row > .voss-card {
        flex: 1 1 auto;
    }

    .voss-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }

    .voss-card-top {
        margin-bottom: 0;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .voss-step-title { font-size: 14px; }
    .voss-step-desc { font-size: 12px; }
    .voss-subtitle { margin-bottom: 14px; }
}
