/* =============================================================================
   VIVELEAD ONBOARDING PAGE STYLESHEET
   Brand: #4051B5 (purple), slate neutrals, rounded 12-16px, soft shadows
   ============================================================================= */

.vl-onb-page {
    background: #ffffff;
    color: #1e293b;
}

.vl-onb-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.vl-onb-section-head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.vl-onb-eyebrow {
    display: inline-block;
    background: #f4f1ff;
    color: #4051B5;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.vl-onb-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b2b44;
    line-height: 1.25;
    margin: 0 0 16px;
}

.vl-onb-section-sub {
    font-size: 17px;
    color: #5e6b80;
    line-height: 1.65;
    margin: 0;
}

/* =============================================================================
   BUTTONS (shared)
   ============================================================================= */

.vl-onb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-family: inherit;
}

.vl-onb-btn--lg {
    padding: 16px 28px;
    font-size: 16px;
}

.vl-onb-btn--primary {
    background: #4051B5;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(64, 81, 181, 0.28);
}

.vl-onb-btn--primary:hover {
    background: #354395;
    box-shadow: 0 6px 20px rgba(64, 81, 181, 0.4);
    transform: translateY(-1px);
    color: #ffffff;
}

.vl-onb-btn--secondary {
    background: #ffffff;
    color: #1e293b;
    border-color: #d8deea;
}

.vl-onb-btn--secondary:hover {
    border-color: #4051B5;
    color: #4051B5;
    transform: translateY(-1px);
}

.vl-onb-btn--secondary svg {
    color: #25D366;
}

.vl-onb-btn--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.vl-onb-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    color: #ffffff;
}

/* =============================================================================
   HERO
   ============================================================================= */

.vl-onb-hero {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    padding: 80px 24px 70px;
    border-bottom: 1px solid #eef0f7;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vl-onb-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 81, 181, 0.08) 0%, rgba(64, 81, 181, 0) 70%);
    pointer-events: none;
}

.vl-onb-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 81, 181, 0.06) 0%, rgba(64, 81, 181, 0) 70%);
    pointer-events: none;
}

.vl-onb-hero__inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vl-onb-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    color: #047857;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid #d1fae5;
}

.vl-onb-hero__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    position: relative;
    display: inline-block;
}

.vl-onb-hero__pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #10b981;
    opacity: 0.4;
    animation: vl-onb-pulse 1.6s ease-out infinite;
}

@keyframes vl-onb-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.vl-onb-hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #0b2b44;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.vl-onb-hero__subtitle {
    font-size: 19px;
    line-height: 1.65;
    color: #5e6b80;
    margin: 0 0 32px;
}

.vl-onb-hero__ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.vl-onb-hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 32px;
    padding-top: 24px;
    border-top: 1px solid #eef0f7;
    margin-top: 8px;
}

.vl-onb-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5e6b80;
    font-size: 14px;
    font-weight: 500;
}

.vl-onb-hero__trust-item svg {
    color: #10b981;
    flex-shrink: 0;
}

/* =============================================================================
   JOURNEY (5-step timeline)
   ============================================================================= */

.vl-onb-journey {
    padding: 90px 0;
    background: #ffffff;
}

.vl-onb-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: vl-onb-step;
    position: relative;
}

.vl-onb-steps::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, #4051B5 0%, #c3cae5 100%);
    border-radius: 2px;
    z-index: 0;
}

.vl-onb-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 0 0 32px;
    position: relative;
}

.vl-onb-step:last-child {
    padding-bottom: 0;
}

.vl-onb-step__num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #4051B5;
    color: #4051B5;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px #ffffff, 0 4px 14px rgba(64, 81, 181, 0.18);
}

.vl-onb-step__body {
    background: #ffffff;
    border: 1px solid #eef0f7;
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vl-onb-step:hover .vl-onb-step__body {
    border-color: #c8d0eb;
    box-shadow: 0 8px 28px rgba(64, 81, 181, 0.10);
    transform: translateY(-2px);
}

.vl-onb-step__meta {
    margin-bottom: 8px;
}

.vl-onb-step__time {
    display: inline-block;
    background: #f4f1ff;
    color: #4051B5;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.vl-onb-step__title {
    font-size: 22px;
    font-weight: 700;
    color: #0b2b44;
    margin: 0 0 10px;
    line-height: 1.3;
}

.vl-onb-step__desc {
    color: #5e6b80;
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0;
}

/* =============================================================================
   RELIEF (What you don't have to do)
   ============================================================================= */

.vl-onb-relief {
    background: #f8fafc;
    padding: 90px 0;
    border-top: 1px solid #eef0f7;
    border-bottom: 1px solid #eef0f7;
}

.vl-onb-relief-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vl-onb-relief-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vl-onb-relief-card:hover {
    border-color: #c8d0eb;
    box-shadow: 0 8px 24px rgba(64, 81, 181, 0.08);
    transform: translateY(-2px);
}

.vl-onb-relief-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ecfdf5;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.vl-onb-relief-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #0b2b44;
    margin: 0 0 8px;
    line-height: 1.35;
}

.vl-onb-relief-card__desc {
    color: #5e6b80;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* =============================================================================
   MIGRATION
   ============================================================================= */

.vl-onb-migrate {
    padding: 90px 0;
    background: #ffffff;
}

.vl-onb-migrate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.vl-onb-migrate-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vl-onb-migrate-card:hover {
    border-color: #c8d0eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.vl-onb-migrate-card--instant {
    border-color: #d1fae5;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.vl-onb-migrate-card--scripted {
    border-color: #ddd6fe;
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
}

.vl-onb-migrate-card__tag {
    display: inline-block;
    background: #d1fae5;
    color: #047857;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.vl-onb-migrate-card__tag--scripted {
    background: #ddd6fe;
    color: #5b21b6;
}

.vl-onb-migrate-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #0b2b44;
    margin: 0 0 12px;
    line-height: 1.3;
}

.vl-onb-migrate-card__desc {
    color: #5e6b80;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 20px;
}

.vl-onb-migrate-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vl-onb-migrate-card__list li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: #1e293b;
    font-size: 14.5px;
    line-height: 1.5;
    border-top: 1px solid #eef0f7;
}

.vl-onb-migrate-card__list li:first-child {
    border-top: none;
}

.vl-onb-migrate-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ecfdf5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/12px no-repeat;
}

.vl-onb-migrate-card--scripted .vl-onb-migrate-card__list li::before {
    background: #f3f0ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/12px no-repeat;
}

.vl-onb-migrate-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 18px 22px;
}

.vl-onb-migrate-note svg {
    color: #d97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.vl-onb-migrate-note p {
    margin: 0;
    color: #78350f;
    font-size: 14.5px;
    line-height: 1.6;
}

/* =============================================================================
   DAY-1 CONFIG
   ============================================================================= */

.vl-onb-config {
    background: #f8fafc;
    padding: 90px 0;
    border-top: 1px solid #eef0f7;
    border-bottom: 1px solid #eef0f7;
}

.vl-onb-config-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vl-onb-config-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vl-onb-config-item:hover {
    border-color: #c8d0eb;
    box-shadow: 0 8px 24px rgba(64, 81, 181, 0.08);
    transform: translateY(-2px);
}

.vl-onb-config-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f4f1ff;
    color: #4051B5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.vl-onb-config-item__title {
    font-size: 16.5px;
    font-weight: 700;
    color: #0b2b44;
    margin: 0 0 8px;
}

.vl-onb-config-item__desc {
    color: #5e6b80;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* =============================================================================
   SUPPORT
   ============================================================================= */

.vl-onb-support {
    padding: 90px 0;
    background: #ffffff;
}

.vl-onb-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.vl-onb-support-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vl-onb-support-card:hover {
    border-color: #4051B5;
    box-shadow: 0 10px 28px rgba(64, 81, 181, 0.12);
    transform: translateY(-3px);
    color: inherit;
}

.vl-onb-support-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.vl-onb-support-card__icon--whatsapp {
    background: #dcfce7;
    color: #16a34a;
}

.vl-onb-support-card__icon--phone {
    background: #dbeafe;
    color: #2563eb;
}

.vl-onb-support-card__icon--email {
    background: #f4f1ff;
    color: #4051B5;
}

.vl-onb-support-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #0b2b44;
    margin: 0 0 6px;
}

.vl-onb-support-card__value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px;
}

.vl-onb-support-card__hours {
    font-size: 13px;
    color: #5e6b80;
    margin: 0;
}

.vl-onb-support-promise {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f4f1ff;
    border: 1px solid #ddd6fe;
    border-radius: 12px;
    padding: 18px 22px;
}

.vl-onb-support-promise svg {
    color: #4051B5;
    flex-shrink: 0;
    margin-top: 2px;
}

.vl-onb-support-promise p {
    margin: 0;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.6;
}

.vl-onb-support-promise strong {
    color: #0b2b44;
}

/* =============================================================================
   TESTIMONIALS (2-card grid)
   ============================================================================= */

.vl-onb-quote {
    padding: 90px 0;
    background: #ffffff;
}

.vl-onb-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.vl-onb-review {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}

.vl-onb-review:hover {
    border-color: #c8d0eb;
    box-shadow: 0 10px 30px rgba(64, 81, 181, 0.10);
    transform: translateY(-3px);
}

.vl-onb-review__stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    margin-bottom: 14px;
}

.vl-onb-review__title {
    font-size: 17px;
    font-weight: 700;
    color: #0b2b44;
    margin: 0 0 12px;
    line-height: 1.35;
}

.vl-onb-review__body {
    font-size: 15px;
    line-height: 1.65;
    color: #1e293b;
    margin: 0 0 22px;
    flex: 1;
    quotes: none;
    border: 0;
    padding: 0;
    font-style: normal;
}

.vl-onb-review__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #eef0f7;
}

.vl-onb-review__logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    background: #f4f1ff;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.vl-onb-review__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.vl-onb-review__author-name {
    font-size: 15px;
    font-weight: 700;
    color: #0b2b44;
}

.vl-onb-review__author-meta {
    font-size: 13px;
    color: #5e6b80;
}

.vl-onb-review__source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 5px 12px;
    background: #ecfdf5;
    color: #047857;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    align-self: flex-start;
}

.vl-onb-review__source svg {
    flex-shrink: 0;
}

/* =============================================================================
   FAQ (native <details> accordion, no JS needed)
   ============================================================================= */

.vl-onb-faq {
    padding: 90px 0;
    background: #f8fafc;
    border-top: 1px solid #eef0f7;
    border-bottom: 1px solid #eef0f7;
}

.vl-onb-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vl-onb-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vl-onb-faq-item:hover {
    border-color: #c8d0eb;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.vl-onb-faq-item[open] {
    border-color: #4051B5;
    box-shadow: 0 8px 26px rgba(64, 81, 181, 0.1);
    background: #ffffff;
}

.vl-onb-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s ease;
}

.vl-onb-faq-question::-webkit-details-marker {
    display: none;
}

.vl-onb-faq-question::marker {
    display: none;
    content: '';
}

.vl-onb-faq-question:hover {
    background: #fbfbff;
}

.vl-onb-faq-question__text {
    font-size: 16px;
    font-weight: 600;
    color: #0b2b44;
    line-height: 1.45;
    flex: 1;
}

.vl-onb-faq-item[open] .vl-onb-faq-question__text {
    color: #4051B5;
}

.vl-onb-faq-question__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f1ff;
    color: #4051B5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.vl-onb-faq-item[open] .vl-onb-faq-question__icon {
    transform: rotate(180deg);
    background: #4051B5;
    color: #ffffff;
}

.vl-onb-faq-question:focus-visible {
    outline: 2px solid #4051B5;
    outline-offset: -2px;
    border-radius: 14px;
}

.vl-onb-faq-answer {
    padding: 0 26px 22px;
    animation: vl-onb-faq-slide 0.25s ease-out;
}

.vl-onb-faq-answer p {
    margin: 0;
    color: #5e6b80;
    font-size: 15px;
    line-height: 1.7;
    padding-top: 18px;
    border-top: 1px solid #eef0f7;
}

@keyframes vl-onb-faq-slide {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .vl-onb-faq-question {
        padding: 18px 20px;
        gap: 14px;
    }

    .vl-onb-faq-question__text {
        font-size: 15px;
    }

    .vl-onb-faq-question__icon {
        width: 28px;
        height: 28px;
    }

    .vl-onb-faq-answer {
        padding: 0 20px 18px;
    }

    .vl-onb-faq-answer p {
        font-size: 14.5px;
    }
}

/* =============================================================================
   FINAL CTA
   ============================================================================= */

.vl-onb-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4051B5 0%, #5a6cd1 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.vl-onb-final-cta::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.vl-onb-final-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vl-onb-final-cta__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #ffffff;
}

.vl-onb-final-cta__sub {
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.92);
}

.vl-onb-final-cta__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.vl-onb-final-cta .vl-onb-btn--primary {
    background: #ffffff;
    color: #4051B5;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.18);
}

.vl-onb-final-cta .vl-onb-btn--primary:hover {
    background: #f8fafc;
    color: #4051B5;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.24);
}

.vl-onb-final-cta__note {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    margin: 0;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 991px) {
    .vl-onb-relief-grid,
    .vl-onb-config-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vl-onb-migrate-grid,
    .vl-onb-support-grid,
    .vl-onb-reviews-grid {
        grid-template-columns: 1fr;
    }

    .vl-onb-hero__title {
        font-size: 38px;
    }

    .vl-onb-section-title {
        font-size: 30px;
    }

    .vl-onb-final-cta__title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .vl-onb-hero {
        padding: 60px 20px 50px;
    }

    .vl-onb-hero__title {
        font-size: 30px;
        letter-spacing: -0.3px;
    }

    .vl-onb-hero__subtitle {
        font-size: 16px;
    }

    .vl-onb-hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .vl-onb-hero__ctas .vl-onb-btn {
        width: 100%;
    }

    .vl-onb-journey,
    .vl-onb-relief,
    .vl-onb-migrate,
    .vl-onb-config,
    .vl-onb-support,
    .vl-onb-faq {
        padding: 60px 0;
    }

    .vl-onb-section-title {
        font-size: 26px;
    }

    .vl-onb-section-sub {
        font-size: 15.5px;
    }

    .vl-onb-relief-grid,
    .vl-onb-config-grid {
        grid-template-columns: 1fr;
    }

    .vl-onb-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .vl-onb-step__num {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .vl-onb-steps::before {
        left: 23px;
    }

    .vl-onb-step__body {
        padding: 18px 20px;
    }

    .vl-onb-step__title {
        font-size: 18px;
    }

    .vl-onb-migrate-card {
        padding: 24px;
    }

    .vl-onb-review {
        padding: 24px 22px 20px;
    }

    .vl-onb-review__title {
        font-size: 16px;
    }

    .vl-onb-review__body {
        font-size: 14.5px;
    }

    .vl-onb-final-cta {
        padding: 60px 0;
    }

    .vl-onb-final-cta__title {
        font-size: 26px;
    }

    .vl-onb-final-cta__sub {
        font-size: 16px;
    }

    .vl-onb-final-cta__buttons {
        flex-direction: column;
    }

    .vl-onb-final-cta__buttons .vl-onb-btn {
        width: 100%;
    }
}
