/* =========================================================
   SIM Card Loan Page
========================================================= */

.vs-simcard-page {
    --vs-accent: #5b56e8;
    --vs-accent-dark: #403bbd;
    --vs-accent-soft: #f4f3ff;

    --vs-primary: var(--va-primary, #046bd2);
    --vs-primary-dark: var(--va-primary-dark, #045cb4);
    --vs-heading: var(--va-heading, #1e293b);
    --vs-text: var(--va-text, #475569);
    --vs-muted: var(--va-muted, #64748b);
    --vs-bg: var(--va-bg, #f7f9fc);
    --vs-border: var(--va-border, #e6eaf0);

    color: var(--vs-text);

    line-height: 1.95;

    overflow: hidden;
}

.vs-simcard-page *,
.vs-simcard-page *::before,
.vs-simcard-page *::after {
    box-sizing: border-box;
}

.vs-simcard-page h1,
.vs-simcard-page h2,
.vs-simcard-page h3,
.vs-simcard-page p {
    margin-top: 0;
}

.vs-simcard-page a {
    text-decoration: none;
}

.vs-simcard-page svg {
    display: block;
}


/* =========================================================
   Layout
========================================================= */

.vs-container {
    width: min(1180px, calc(100% - 40px));

    margin-inline: auto;
}

.vs-content-narrow {
    max-width: 850px;
}

.vs-section {
    padding: 90px 0;
}

.vs-section-label {
    display: inline-flex;

    margin-bottom: 12px;

    color: var(--vs-accent);

    font-size: 13px;
    font-weight: 800;
}

.vs-section-head {
    max-width: 750px;

    margin: 0 auto 45px;

    text-align: center;
}

.vs-section-head h2,
.vs-two-column h2,
.vs-feature-box h2,
.vs-documents-box h2,
.vs-content-narrow > h2 {
    margin-bottom: 17px;

    color: var(--vs-heading);

    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.55;
}

.vs-section-head p {
    margin-bottom: 0;

    color: var(--vs-muted);

    font-size: 15px;
}


/* =========================================================
   Breadcrumb
========================================================= */

.vs-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px;

    margin-bottom: 42px;

    color: var(--vs-muted);

    font-size: 12px;
}

.vs-breadcrumb a {
    color: var(--vs-muted);
}

.vs-breadcrumb a:hover {
    color: var(--vs-primary);
}


/* =========================================================
   Hero
========================================================= */

.vs-hero {
    padding: 40px 0 90px;

    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(91, 86, 232, .12),
            transparent 35%
        ),
        radial-gradient(
            circle at 8% 80%,
            rgba(4, 107, 210, .05),
            transparent 30%
        ),
        #f9fafc;
}

.vs-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;

    align-items: center;

    gap: 70px;
}

.vs-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 20px;
    padding: 7px 13px;

    border: 1px solid rgba(91, 86, 232, .17);
    border-radius: 100px;

    background: rgba(255, 255, 255, .8);

    color: var(--vs-accent-dark);

    font-size: 12px;
    font-weight: 800;
}

.vs-eyebrow > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--vs-accent);

    box-shadow:
        0 0 0 5px rgba(91, 86, 232, .09);
}

.vs-hero h1 {
    max-width: 790px;

    margin-bottom: 22px;

    color: var(--vs-heading);

    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.45;
}

.vs-hero h1 span {
    display: block;

    color: var(--vs-accent-dark);

    font-family: inherit;
    font-weight: inherit;
}

.vs-hero-lead {
    margin-bottom: 12px;

    font-size: 18px;
}

.vs-hero-description {
    margin-bottom: 28px;

    color: var(--vs-muted);

    font-size: 14px;
}


/* =========================================================
   Buttons
========================================================= */

.vs-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;

    margin-bottom: 28px;
}

.vs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding: 10px 22px;

    border: 1px solid transparent;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;

    transition: .2s ease;
}

.vs-btn:hover {
    transform: translateY(-2px);
}

.vs-btn-primary {
    background: var(--vs-primary);

    color: #fff;
}

.vs-btn-primary:hover {
    background: var(--vs-primary-dark);

    color: #fff;
}

.vs-btn-primary svg {
    width: 18px;
    height: 18px;

    fill: currentColor;
}

.vs-btn-outline {
    border-color: var(--vs-border);

    background: #fff;

    color: var(--vs-heading);
}

.vs-btn-outline:hover {
    border-color: var(--vs-accent);

    color: var(--vs-accent);
}


/* =========================================================
   Hero Features
========================================================= */

.vs-hero-features {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 22px;

    color: var(--vs-muted);

    font-size: 13px;
    font-weight: 600;
}

.vs-hero-features > div {
    display: flex;
    align-items: center;

    gap: 6px;
}

.vs-hero-features span {
    display: grid;

    width: 20px;
    height: 20px;

    place-items: center;

    border-radius: 50%;

    background: rgba(91, 86, 232, .1);

    color: var(--vs-accent-dark);

    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   Summary
========================================================= */

.vs-summary-card {
    padding: 25px;

    border: 1px solid var(--vs-border);
    border-radius: 28px;

    background: #fff;

    box-shadow:
        0 20px 60px rgba(15, 23, 42, .07);
}

.vs-summary-head {
    display: flex;

    gap: 13px;

    margin-bottom: 20px;
    padding-bottom: 20px;

    border-bottom: 1px solid var(--vs-border);
}

.vs-summary-icon {
    display: grid;

    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    place-items: center;

    border-radius: 14px;

    background: var(--vs-accent-soft);

    color: var(--vs-accent);
}

.vs-summary-icon svg {
    width: 24px;
    height: 24px;

    fill: currentColor;
}

.vs-summary-head strong {
    display: block;

    margin-bottom: 3px;

    color: var(--vs-heading);

    font-size: 15px;
}

.vs-summary-head small {
    color: var(--vs-muted);

    font-size: 11px;
}

.vs-summary-list {
    margin-bottom: 18px;
}

.vs-summary-list > div {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px solid var(--vs-border);

    font-size: 12px;
}

.vs-summary-list span {
    color: var(--vs-muted);
}

.vs-summary-list strong {
    color: var(--vs-heading);

    font-weight: 800;
}

.vs-summary-note {
    margin-bottom: 17px;

    padding: 13px;

    border-radius: 11px;

    background: var(--vs-accent-soft);

    color: var(--vs-muted);

    font-size: 11px;
}

.vs-summary-phone {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 15px;

    border-radius: 12px;

    background: var(--vs-primary);

    color: #fff;
}

.vs-summary-phone:hover {
    background: var(--vs-primary-dark);

    color: #fff;
}

.vs-summary-phone > span {
    display: flex;
    flex-direction: column;
}

.vs-summary-phone small {
    color: rgba(255, 255, 255, .75);

    font-size: 10px;
}

.vs-summary-phone strong {
    direction: ltr;

    font-size: 15px;
}

.vs-summary-phone svg {
    width: 19px;
    height: 19px;

    fill: currentColor;
}


/* =========================================================
   Intro
========================================================= */

.vs-intro {
    background: #fff;
}

.vs-intro p {
    font-size: 16px;
}

.vs-important-note {
    margin-top: 30px;

    padding: 22px 24px;

    border-right: 4px solid var(--vs-accent);
    border-radius: 13px;

    background: var(--vs-accent-soft);
}

.vs-important-note strong {
    display: block;

    margin-bottom: 6px;

    color: var(--vs-heading);
}

.vs-important-note p {
    margin: 0;

    color: var(--vs-muted);

    font-size: 13px;
}


/* =========================================================
   Two Column
========================================================= */

.vs-two-column {
    display: grid;
    grid-template-columns: 1fr .9fr;

    align-items: center;

    gap: 70px;
}

.vs-two-column > div:first-child > p {
    color: var(--vs-muted);

    font-size: 15px;
}


/* =========================================================
   Types
========================================================= */

.vs-types {
    background: var(--vs-bg);
}

.vs-type-list {
    display: grid;

    gap: 12px;
}

.vs-type-list > div {
    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 14px;

    padding: 19px;

    border: 1px solid var(--vs-border);
    border-radius: 15px;

    background: #fff;
}

.vs-type-list > div > span {
    display: grid;

    width: 42px;
    height: 42px;

    place-items: center;

    border-radius: 11px;

    background: var(--vs-accent-soft);

    color: var(--vs-accent);

    font-size: 12px;
    font-weight: 800;
}

.vs-type-list strong {
    display: block;

    margin-bottom: 4px;

    color: var(--vs-heading);

    font-size: 14px;
}

.vs-type-list p {
    margin: 0;

    color: var(--vs-muted);

    font-size: 12px;
}


/* =========================================================
   0912
========================================================= */

.vs-0912 {
    background: #fff;
}

.vs-feature-box {
    display: grid;
    grid-template-columns: 1.15fr .85fr;

    align-items: center;

    gap: 60px;

    padding: 48px;

    border: 1px solid var(--vs-border);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #fff,
            var(--vs-accent-soft)
        );
}

.vs-feature-box p {
    color: var(--vs-muted);

    font-size: 14px;
}

.vs-text-link {
    display: inline-flex;

    gap: 8px;

    margin-top: 5px;

    color: var(--vs-primary);

    font-size: 14px;
    font-weight: 800;
}


/* phone visual */

.vs-phone-visual {
    position: relative;

    max-width: 310px;

    margin-inline: auto;

    padding: 38px 30px;

    border: 1px solid rgba(91, 86, 232, .15);
    border-radius: 30px;

    background: #fff;

    box-shadow:
        0 22px 60px rgba(15, 23, 42, .08);
}

.vs-sim-label {
    display: grid;

    width: 60px;
    height: 48px;

    place-items: center;

    margin-bottom: 35px;

    border-radius: 9px 9px 9px 3px;

    background: var(--vs-accent);

    color: #fff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.vs-phone-number small {
    display: block;

    margin-bottom: 3px;

    color: var(--vs-muted);

    font-size: 10px;
}

.vs-phone-number strong {
    display: block;

    direction: ltr;

    color: var(--vs-heading);

    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

.vs-value-indicator {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 30px;
    padding-top: 18px;

    border-top: 1px solid var(--vs-border);
}

.vs-value-indicator > span {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: #21a873;
}

.vs-value-indicator p {
    margin: 0;

    font-size: 10px;
}


/* =========================================================
   Conditions
========================================================= */

.vs-conditions {
    background: var(--vs-bg);
}

.vs-condition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.vs-condition-card {
    padding: 26px;

    border: 1px solid var(--vs-border);
    border-radius: 20px;

    background: #fff;

    transition: .2s ease;
}

.vs-condition-card:hover {
    transform: translateY(-4px);

    border-color: rgba(91, 86, 232, .3);

    box-shadow:
        0 14px 40px rgba(15, 23, 42, .06);
}

.vs-card-number {
    display: block;

    margin-bottom: 20px;

    color: var(--vs-accent);

    font-size: 25px;
    font-weight: 800;

    opacity: .45;
}

.vs-condition-card h3 {
    margin-bottom: 10px;

    color: var(--vs-heading);

    font-size: 17px;
    font-weight: 800;
}

.vs-condition-card p {
    margin: 0;

    color: var(--vs-muted);

    font-size: 13px;
}


/* =========================================================
   Valuation
========================================================= */

.vs-valuation {
    background: #fff;
}

.vs-factors-box {
    padding: 30px;

    border: 1px solid var(--vs-border);
    border-radius: 21px;

    background: var(--vs-bg);
}

.vs-factors-box h3 {
    margin-bottom: 18px;

    color: var(--vs-heading);

    font-size: 18px;
    font-weight: 800;
}

.vs-factors-box ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.vs-factors-box li {
    position: relative;

    margin-bottom: 10px;
    padding-right: 22px;

    color: var(--vs-text);

    font-size: 13px;
}

.vs-factors-box li::before {
    content: "✓";

    position: absolute;
    right: 0;

    color: var(--vs-accent);

    font-weight: 900;
}


/* =========================================================
   Process
========================================================= */

.vs-process {
    background: var(--vs-bg);
}

.vs-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid var(--vs-border);
    border-radius: 20px;

    background: #fff;

    overflow: hidden;
}

.vs-process-grid article {
    min-height: 215px;

    padding: 27px;

    border-left: 1px solid var(--vs-border);
}

.vs-process-grid article:last-child {
    border-left: 0;
}

.vs-process-grid article > span {
    display: block;

    margin-bottom: 22px;

    color: var(--vs-accent);

    font-size: 28px;
    font-weight: 800;

    opacity: .4;
}

.vs-process-grid h3 {
    margin-bottom: 8px;

    color: var(--vs-heading);

    font-size: 17px;
    font-weight: 800;
}

.vs-process-grid p {
    margin: 0;

    color: var(--vs-muted);

    font-size: 12px;
}


/* =========================================================
   Documents
========================================================= */

.vs-documents {
    background: #fff;
}

.vs-documents-box {
    display: grid;
    grid-template-columns: 1fr .9fr;

    align-items: center;

    gap: 65px;

    padding: 46px;

    border: 1px solid var(--vs-border);
    border-radius: 28px;

    background: var(--vs-bg);
}

.vs-documents-box p {
    margin-bottom: 0;

    color: var(--vs-muted);

    font-size: 14px;
}

.vs-document-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.vs-document-list > div {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 16px;

    border: 1px solid var(--vs-border);
    border-radius: 13px;

    background: #fff;

    color: var(--vs-heading);

    font-size: 12px;
    font-weight: 700;
}

.vs-document-list span {
    display: grid;

    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    place-items: center;

    border-radius: 50%;

    background: var(--vs-accent-soft);

    color: var(--vs-accent);

    font-size: 11px;
}


/* =========================================================
   Transparency
========================================================= */

.vs-transparency {
    background: var(--vs-bg);
}

.vs-check-list {
    display: grid;

    gap: 12px;

    margin-top: 32px;
}

.vs-check-list > div {
    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 16px;

    padding: 21px;

    border: 1px solid var(--vs-border);
    border-radius: 15px;

    background: #fff;
}

.vs-check-list > div > span {
    display: grid;

    width: 42px;
    height: 42px;

    place-items: center;

    border-radius: 12px;

    background: var(--vs-accent-soft);

    color: var(--vs-accent);

    font-size: 13px;
    font-weight: 800;
}

.vs-check-list strong {
    display: block;

    margin-bottom: 4px;

    color: var(--vs-heading);

    font-size: 14px;
}

.vs-check-list p {
    margin: 0;

    color: var(--vs-muted);

    font-size: 12px;
}


/* =========================================================
   Related Services
========================================================= */

.vs-other-services {
    background: #fff;
}

.vs-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    max-width: 880px;

    margin-inline: auto;
}

.vs-related-card {
    display: grid;
    grid-template-columns: 52px 1fr auto;

    align-items: center;

    gap: 14px;

    padding: 22px;

    border: 1px solid var(--vs-border);
    border-radius: 20px;

    color: inherit;

    transition: .2s ease;
}

.vs-related-card:hover {
    transform: translateY(-3px);

    border-color: var(--vs-primary);

    box-shadow:
        0 14px 35px rgba(15, 23, 42, .06);
}

.vs-related-icon {
    display: grid;

    width: 52px;
    height: 52px;

    place-items: center;

    border-radius: 14px;

    background: var(--vs-bg);

    color: var(--vs-primary);
}

.vs-related-icon svg {
    width: 24px;
    height: 24px;

    fill: currentColor;
}

.vs-related-card strong {
    display: block;

    margin-bottom: 3px;

    color: var(--vs-heading);

    font-size: 14px;
}

.vs-related-card p {
    margin: 0;

    color: var(--vs-muted);

    font-size: 11px;
}

.vs-related-arrow {
    color: var(--vs-primary);

    font-size: 20px;
}

.vs-hub-link {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 28px;

    color: var(--vs-muted);

    font-size: 12px;
}

.vs-hub-link a {
    display: inline-flex;

    gap: 7px;

    color: var(--vs-primary);

    font-weight: 800;
}


/* =========================================================
   FAQ
========================================================= */

.vs-faq {
    background: var(--vs-bg);
}

.vs-faq-list {
    display: grid;

    gap: 10px;
}

.vs-faq-list details {
    border: 1px solid var(--vs-border);
    border-radius: 14px;

    background: #fff;

    overflow: hidden;
}

.vs-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 19px 21px;

    cursor: pointer;

    list-style: none;

    color: var(--vs-heading);

    font-size: 14px;
    font-weight: 800;
}

.vs-faq-list summary::-webkit-details-marker {
    display: none;
}

.vs-faq-list summary > span {
    display: grid;

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    place-items: center;

    border-radius: 8px;

    background: var(--vs-accent-soft);

    color: var(--vs-accent);

    transition: transform .2s ease;
}

.vs-faq-list details[open] summary > span {
    transform: rotate(45deg);
}

.vs-faq-list details > div {
    padding: 0 21px 20px;

    color: var(--vs-muted);

    font-size: 13px;
}


/* =========================================================
   Final CTA
========================================================= */

.vs-final-cta {
    padding: 30px 0 95px;

    background: var(--vs-bg);
}

.vs-final-box {
    display: grid;
    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 45px;

    padding: 43px 47px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            var(--vs-primary),
            var(--vs-primary-dark)
        );

    color: #fff;
}

.vs-final-box .vs-section-label {
    color: rgba(255, 255, 255, .72);
}

.vs-final-box h2 {
    margin-bottom: 8px;

    color: #fff;

    font-size: clamp(25px, 3vw, 35px);
    font-weight: 800;
    line-height: 1.5;
}

.vs-final-box p {
    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 14px;
}

.vs-final-phone {
    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 210px;

    padding: 12px 16px;

    border-radius: 13px;

    background: #fff;

    color: var(--vs-primary);
}

.vs-final-phone:hover {
    color: var(--vs-primary-dark);
}

.vs-final-phone svg {
    width: 20px;
    height: 20px;

    fill: currentColor;
}

.vs-final-phone > span {
    display: flex;
    flex-direction: column;
}

.vs-final-phone small {
    color: var(--vs-muted);

    font-size: 9px;
}

.vs-final-phone strong {
    direction: ltr;

    font-size: 16px;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1000px) {

    .vs-hero-grid {
        gap: 40px;
    }

    .vs-condition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-process-grid article {
        border-bottom: 1px solid var(--vs-border);
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 780px) {

    .vs-container {
        width: calc(100% - 28px);
    }

    .vs-section {
        padding: 65px 0;
    }

    .vs-hero {
        padding: 30px 0 65px;
    }

    .vs-breadcrumb {
        margin-bottom: 28px;
    }

    .vs-hero-grid,
    .vs-two-column,
    .vs-feature-box,
    .vs-documents-box,
    .vs-final-box {
        grid-template-columns: 1fr;
    }

    .vs-hero-grid,
    .vs-two-column {
        gap: 38px;
    }

    .vs-feature-box {
        padding: 32px;
    }

    .vs-documents-box {
        gap: 30px;

        padding: 32px;
    }

    .vs-final-box {
        padding: 32px;
    }

    .vs-final-phone {
        width: fit-content;
    }

    .vs-hub-link {
        flex-direction: column;

        gap: 7px;

        text-align: center;
    }

}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 560px) {

    .vs-container {
        width: calc(100% - 22px);
    }

    .vs-section {
        padding: 55px 0;
    }

    .vs-hero h1 {
        font-size: 33px;
    }

    .vs-hero-lead {
        font-size: 16px;
    }

    .vs-hero-actions {
        display: grid;
    }

    .vs-btn {
        width: 100%;
    }

    .vs-hero-features {
        display: grid;

        gap: 8px;
    }

    .vs-condition-grid,
    .vs-process-grid,
    .vs-document-list,
    .vs-related-grid {
        grid-template-columns: 1fr;
    }

    .vs-process-grid article {
        min-height: auto;

        border-left: 0;
        border-bottom: 1px solid var(--vs-border);
    }

    .vs-process-grid article:last-child {
        border-bottom: 0;
    }

    .vs-summary-card,
    .vs-factors-box {
        padding: 22px;
    }

    .vs-feature-box,
    .vs-documents-box {
        padding: 24px;
    }

    .vs-phone-number strong {
        font-size: 38px;
    }

    .vs-check-list > div {
        grid-template-columns: 38px 1fr;

        padding: 17px;
    }

    .vs-check-list > div > span {
        width: 38px;
        height: 38px;
    }

    .vs-final-box {
        padding: 27px 22px;
    }

    .vs-final-phone {
        width: 100%;

        justify-content: center;
    }

}