@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Variable.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-display: swap;
}

:root {
    --zsp-primary: #1aa7ff;
    --zsp-primary-light: #45b8ff;
    --zsp-soft: #f1f7ff;
    --zsp-dark: #07111f;
    --zsp-text: #333333;
    --zsp-muted: #5f6b76;
    --zsp-white: #ffffff;
    --zsp-yellow-start: #ffeb38;
    --zsp-yellow-end: #ffc738;
    --zsp-border: rgba(26, 167, 255, 0.16);
    --zsp-shadow-sm: 0 8px 24px rgba(7, 17, 31, 0.07);
    --zsp-shadow-md: 0 16px 40px rgba(7, 17, 31, 0.11);
    --zsp-radius-sm: 10px;
    --zsp-radius-md: 16px;
    --zsp-radius-lg: 24px;
}

.zsp-page,
.zsp-page * {
    box-sizing: border-box;
}

.zsp-page {
    width: 100%;
    overflow: hidden;
    color: var(--zsp-text);
    background: var(--zsp-white);
    font-family: "Inter", sans-serif;
}

.zsp-page a {
    color: var(--zsp-primary);
    font-weight: 650;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.zsp-page a:hover {
    color: #078bdc;
}

.zsp-section {
    position: relative;
    width: 100%;
    padding: 88px 20px;
}

.zsp-section-soft {
    background: var(--zsp-soft);
}

.zsp-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.zsp-container-narrow {
    max-width: 980px;
}

.zsp-heading-block {
    max-width: 880px;
    margin: 0 auto 48px;
    text-align: center;
}

.zsp-heading-block::before {
    content: "";
    display: block;
    width: 54px;
    height: 4px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--zsp-primary-light), var(--zsp-primary));
}

.zsp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--zsp-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.zsp-eyebrow::before,
.zsp-eyebrow::after {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.45;
}

.zsp-section-title {
    margin: 0;
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -0.7px;
}

.zsp-section-title-left {
    text-align: left;
}

.zsp-section-lead {
    max-width: 820px;
    margin: 20px auto 0;
    color: var(--zsp-muted);
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    line-height: 1.8;
}

.zsp-prose {
    color: var(--zsp-text);
    font-size: 16px;
    line-height: 1.85;
}

.zsp-prose-large {
    font-size: 17px;
}

.zsp-prose p {
    margin: 0 0 20px;
}

.zsp-prose p:last-child {
    margin-bottom: 0;
}

.zsp-intro-section {
    background:
        radial-gradient(circle at 8% 10%, rgba(69, 184, 255, 0.11), transparent 30%),
        radial-gradient(circle at 92% 85%, rgba(26, 167, 255, 0.08), transparent 28%),
        var(--zsp-white);
}

.zsp-intro-section .zsp-prose {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.zsp-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.zsp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 28px;
    border: 0;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.zsp-btn:hover {
    transform: translateY(-2px);
}

.zsp-btn-primary {
    color: var(--zsp-white);
    background: linear-gradient(90deg, var(--zsp-primary-light), var(--zsp-primary));
    box-shadow: 0 10px 24px rgba(26, 167, 255, 0.26);
}

.zsp-btn-primary:hover {
    color: var(--zsp-white);
    box-shadow: 0 14px 30px rgba(26, 167, 255, 0.34);
}

.zsp-btn-yellow {
    color: #111111;
    background: linear-gradient(180deg, var(--zsp-yellow-start), var(--zsp-yellow-end));
    box-shadow: 0 10px 24px rgba(255, 199, 56, 0.26);
}

.zsp-btn-yellow:hover {
    color: #111111;
    box-shadow: 0 14px 30px rgba(255, 199, 56, 0.34);
}

.zsp-btn-outline-light {
    color: var(--zsp-white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.zsp-btn-outline-light:hover {
    color: var(--zsp-dark);
    background: var(--zsp-white);
    border-color: var(--zsp-white);
}

.zsp-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 54px;
    align-items: center;
}

.zsp-two-column-top {
    align-items: start;
}

.zsp-copy-column .zsp-eyebrow::before,
.zsp-copy-column .zsp-eyebrow::after,
.zsp-region-copy .zsp-eyebrow::before,
.zsp-region-copy .zsp-eyebrow::after {
    display: none;
}

.zsp-copy-column .zsp-section-title {
    margin-bottom: 28px;
}

.zsp-check-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(26, 167, 255, 0.18);
    border-radius: var(--zsp-radius-lg);
    background: var(--zsp-white);
    box-shadow: var(--zsp-shadow-md);
}

.zsp-check-card::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(26, 167, 255, 0.08);
}

.zsp-check-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    color: #000000;
    font-size: 23px;
    line-height: 1.35;
}

.zsp-check-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zsp-check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--zsp-text);
    font-size: 15px;
    line-height: 1.65;
}

.zsp-check-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    color: var(--zsp-white);
    background: linear-gradient(135deg, var(--zsp-primary-light), var(--zsp-primary));
    font-size: 13px;
    font-weight: 800;
}

.zsp-table-card {
    overflow: hidden;
    border: 1px solid var(--zsp-border);
    border-radius: var(--zsp-radius-md);
    background: var(--zsp-white);
    box-shadow: var(--zsp-shadow-md);
}

.zsp-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.zsp-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: var(--zsp-white);
}

.zsp-table th,
.zsp-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e8eef5;
    color: var(--zsp-text);
    font-size: 15px;
    line-height: 1.55;
    text-align: left;
    vertical-align: top;
}

.zsp-table thead th {
    color: var(--zsp-white);
    background: linear-gradient(90deg, #168fd8, var(--zsp-primary));
    font-size: 15px;
    font-weight: 750;
}

.zsp-table tbody th {
    width: 25%;
    color: #111111;
    font-weight: 700;
    background: #fbfdff;
}

.zsp-table tbody tr:nth-child(even) td,
.zsp-table tbody tr:nth-child(even) th {
    background: #f7fbff;
}

.zsp-table tbody tr:last-child th,
.zsp-table tbody tr:last-child td {
    border-bottom: 0;
}

.zsp-comparison-table td:last-child {
    color: #0f6f42;
    font-weight: 650;
}

.zsp-price-card {
    max-width: 980px;
    margin: 0 auto;
}

.zsp-price-table td:last-child,
.zsp-price-table th:last-child {
    color: #086fae;
    font-weight: 800;
}

.zsp-price-table thead th:last-child {
    color: var(--zsp-white);
}

.zsp-note {
    max-width: 980px;
    margin: 24px auto 0;
    padding: 18px 20px;
    border-left: 4px solid var(--zsp-primary);
    border-radius: 0 var(--zsp-radius-sm) var(--zsp-radius-sm) 0;
    color: #4b5966;
    background: var(--zsp-white);
    box-shadow: var(--zsp-shadow-sm);
    font-size: 14px;
    line-height: 1.7;
}

.zsp-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.zsp-process-card {
    position: relative;
    display: flex;
    min-height: 245px;
    padding: 28px;
    border: 1px solid var(--zsp-border);
    border-radius: var(--zsp-radius-md);
    background: var(--zsp-white);
    box-shadow: var(--zsp-shadow-sm);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.zsp-process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(26, 167, 255, 0.38);
    box-shadow: var(--zsp-shadow-md);
}

.zsp-process-card-wide {
    grid-column: 2 / span 1;
}

.zsp-process-number {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-right: 18px;
    border-radius: 14px;
    color: var(--zsp-white);
    background: linear-gradient(135deg, var(--zsp-primary-light), var(--zsp-primary));
    box-shadow: 0 8px 18px rgba(26, 167, 255, 0.25);
    font-size: 18px;
    font-weight: 800;
}

.zsp-process-content h3 {
    margin: 2px 0 12px;
    color: #000000;
    font-size: 19px;
    line-height: 1.4;
}

.zsp-process-content p {
    margin: 0;
    color: var(--zsp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.zsp-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.zsp-benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 275px;
    padding: 32px;
    border: 1px solid rgba(26, 167, 255, 0.14);
    border-radius: var(--zsp-radius-md);
    background: var(--zsp-white);
    box-shadow: var(--zsp-shadow-sm);
}


.zsp-benefit-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    color: #000000;
    font-size: 22px;
    line-height: 1.35;
}

.zsp-benefit-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--zsp-muted);
    font-size: 15px;
    line-height: 1.75;
}

.zsp-related-services {
    margin-top: 28px;
    padding: 30px;
    border: 1px solid rgba(26, 167, 255, 0.16);
    border-radius: var(--zsp-radius-md);
    background: linear-gradient(135deg, var(--zsp-white), #f9fcff);
    box-shadow: var(--zsp-shadow-sm);
}

.zsp-related-services h3 {
    margin: 0 0 14px;
    color: #000000;
    font-size: 23px;
}

.zsp-related-services p {
    margin: 0;
    color: var(--zsp-muted);
    font-size: 15px;
    line-height: 1.8;
}

.zsp-region-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    padding: 48px;
    border: 1px solid var(--zsp-border);
    border-radius: var(--zsp-radius-lg);
    background:
        radial-gradient(circle at 90% 10%, rgba(69, 184, 255, 0.16), transparent 26%),
        var(--zsp-white);
    box-shadow: var(--zsp-shadow-md);
}

.zsp-region-copy p {
    margin: 24px 0 0;
    color: var(--zsp-muted);
    font-size: 16px;
    line-height: 1.8;
}



.zsp-final-cta-section {
    padding-top: 20px;
    padding-bottom: 20px;
    background: var(--zsp-white);
}

.zsp-final-cta-card {
    position: relative;
    overflow: hidden;
    padding: 62px 54px;
    border-radius: var(--zsp-radius-lg);
    color: var(--zsp-white);
    background:
        radial-gradient(circle at 5% 0%, rgba(69, 184, 255, 0.30), transparent 34%),
        radial-gradient(circle at 95% 100%, rgba(26, 167, 255, 0.25), transparent 32%),
        linear-gradient(135deg, #07111f, #122746);
    box-shadow: 0 22px 48px rgba(7, 17, 31, 0.22);
    text-align: center;
}

.zsp-final-cta-card .zsp-eyebrow {
    color: #7ed1ff;
}

.zsp-final-cta-card h2 {
    max-width: 760px;
    margin: 0 auto 20px;
    color: var(--zsp-white);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
}

.zsp-final-cta-card p {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
}

.zsp-final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.zsp-faq-list {
    display: grid;
    gap: 14px;
}

.zsp-faq-item {
    overflow: hidden;
    border: 1px solid rgba(26, 167, 255, 0.16);
    border-radius: 12px;
    background: var(--zsp-white);
    box-shadow: 0 5px 16px rgba(7, 17, 31, 0.05);
}

.zsp-faq-item summary {
    position: relative;
    padding: 22px 58px 22px 22px;
    color: #111111;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.zsp-faq-item summary::-webkit-details-marker {
    display: none;
}

.zsp-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--zsp-white);
    background: linear-gradient(135deg, var(--zsp-primary-light), var(--zsp-primary));
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 500;
    transition: transform 0.25s ease;
}

.zsp-faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.zsp-faq-answer {
    padding: 0 22px 22px;
}

.zsp-faq-answer p {
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid #e8eef5;
    color: var(--zsp-muted);
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .zsp-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zsp-process-card-wide {
        grid-column: auto;
    }
}

@media (max-width: 992px) {
    .zsp-section {
        padding: 72px 16px;
    }

    .zsp-two-column,
    .zsp-region-card {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .zsp-check-card {
        max-width: 720px;
    }

    .zsp-region-card {
        padding: 38px;
    }

}

@media (max-width: 768px) {
    .zsp-section {
        padding: 58px 14px;
    }

    .zsp-heading-block {
        margin-bottom: 34px;
    }

    .zsp-section-title,
    .zsp-section-title-left {
        font-size: 28px;
        text-align: center;
        letter-spacing: -0.4px;
    }

    .zsp-section-lead,
    .zsp-prose,
    .zsp-prose-large {
        font-size: 15px;
        line-height: 1.75;
    }

    .zsp-copy-column,
    .zsp-copy-column .zsp-section-title {
        text-align: center;
    }

    .zsp-copy-column .zsp-eyebrow,
    .zsp-region-copy .zsp-eyebrow {
        justify-content: center;
        width: 100%;
    }

    .zsp-check-card {
        padding: 26px 22px;
    }

    .zsp-check-card h3 {
        font-size: 21px;
    }

    .zsp-benefit-grid,
    .zsp-process-grid {
        grid-template-columns: 1fr;
    }

    .zsp-process-card {
        min-height: auto;
    }

    .zsp-region-card {
        padding: 30px 24px;
        text-align: center;
    }

    .zsp-region-copy .zsp-section-title-left {
        text-align: center;
    }


    .zsp-final-cta-card {
        padding: 48px 24px;
    }

    .zsp-btn {
        width: 100%;
        max-width: 390px;
    }

    .zsp-table th,
    .zsp-table td {
        padding: 15px 16px;
        font-size: 14px;
    }
}

@media (max-width: 540px) {
    .zsp-section {
        padding: 48px 10px;
    }

    .zsp-section-title,
    .zsp-section-title-left {
        font-size: 24px;
        line-height: 1.3;
    }

    .zsp-eyebrow {
        font-size: 11px;
        letter-spacing: 0.9px;
    }

    .zsp-check-card,
    .zsp-benefit-card,
    .zsp-related-services {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .zsp-check-list li {
        padding-left: 31px;
        font-size: 14px;
    }

    .zsp-process-card {
        display: block;
        padding: 22px 18px;
        text-align: center;
    }

    .zsp-process-number {
        margin: 0 auto 16px;
    }

    .zsp-benefit-card {
        min-height: auto;
    }

    .zsp-benefit-card h3 {
        font-size: 20px;
    }

    .zsp-region-card {
        padding: 26px 18px;
        border-radius: 16px;
    }



    .zsp-final-cta-section {
        padding: 10px;
    }

    .zsp-final-cta-card {
        padding: 40px 18px;
        border-radius: 16px;
    }

    .zsp-final-cta-card h2 {
        font-size: 27px;
    }

    .zsp-final-cta-card p {
        font-size: 14px;
    }

    .zsp-faq-item summary {
        padding: 19px 54px 19px 17px;
        font-size: 15px;
    }

    .zsp-faq-answer {
        padding: 0 17px 19px;
    }

    .zsp-faq-answer p {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zsp-page *,
    .zsp-page *::before,
    .zsp-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}