.vpn-landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(40px, 8vw, 72px) clamp(16px, 5vw, 32px);
    background: #4c4f58;
}

.vpn-card {
    width: 100%;
    max-width: 960px;
    border-radius: 36px;
    padding: clamp(32px, 4vw, 48px);
    background: linear-gradient(160deg, #4c4f58 0%, #1c1e23 55%, #111217 100%);
    box-shadow: 0 45px 80px rgba(0, 0, 0, 0.75);
    color: #f8f8f8;
}

.vpn-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 32px;
}

.vpn-nav-bar {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vpn-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.vpn-brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
    background: transparent;
    filter: brightness(0) invert(1);
}

.vpn-brand-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.vpn-menu {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.vpn-menu a {
    color: #d4d4d8;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    transition: color 0.2s ease;
}

.vpn-menu a:hover {
    color: #ffffff;
}

.vpn-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vpn-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.3);
}

.vpn-menu-toggle:active {
    transform: scale(0.95);
}

.vpn-menu-toggle-dot {
    display: block;
    width: 6px;
    height: 6px;
    background: #f4f4f5;
    border-radius: 50%;
}

.vpn-menu-toggle-dot + .vpn-menu-toggle-dot {
    margin-top: 0;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(15, 15, 15, 0.07));
    border: 1px solid rgba(250, 250, 250, 0.05);
    border-radius: 32px;
    padding: clamp(28px, 4vw, 52px);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 60%);
    top: -80px;
    right: -40px;
    filter: blur(30px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 140px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 18px;
}

.bonus {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.4px;
    color: #e5e7eb;
}

.lead {
    color: #d4d4d8;
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    background: #0f0f13;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
}

.hero-cta.light {
    background: #f5f5f5;
    color: #111217;
    box-shadow: none;
}

.hero-cta.light:hover {
    background: #ffffff;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-wrapper {
    width: 100%;
    max-width: 340px;
    border-radius: 32px;
    padding: 32px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-logo-image {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.feature-split {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    align-items: center;
}

.feature-split h2 {
    margin: 0 0 18px;
    font-size: 1.4rem;
    letter-spacing: 0.4px;
    color: #f3f4f6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: 0;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}

.feature-list p {
    margin: 0;
    color: #d4d4d8;
}

.feature-highlight {
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.25));
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-highlight h3 {
    margin: 0;
    font-size: 1.5rem;
}

.feature-highlight p {
    margin: 0;
    color: #d9d9df;
}

.cta-strip {
    margin-top: 56px;
    text-align: center;
}

.cta-strip p {
    margin: 0 0 18px;
    color: #d4d4d8;
}

.balance-section {
    margin-top: 64px;
    padding: 32px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.balance-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.balance-head h2 {
    margin: 0;
    font-size: 1.5rem;
}

.balance-controls {
    display: inline-flex;
    gap: 12px;
}

.balance-control {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: #f8f8f8;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.balance-control:hover {
    background: rgba(0, 0, 0, 0.35);
}

.balance-control:active {
    transform: scale(0.96);
}

.balance-slider {
    position: relative;
    display: flex;
    gap: clamp(12px, 3vw, 20px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1px;
    padding-bottom: 8px;
    padding-inline: 2px;
}

.balance-slider::-webkit-scrollbar {
    height: 0;
}

.balance-card {
    flex: 0 0 clamp(240px, calc((100% - 40px) / 3), 360px);
    max-width: clamp(240px, calc((100% - 40px) / 3), 360px);
    min-width: 0;
    border-radius: 28px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.balance-card.highlighted {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.balance-badge {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #a4a7f5;
    letter-spacing: 0.3px;
}

.balance-card h3 {
    margin: 0;
    font-size: 1.3rem;
}

.balance-card p {
    margin: 0;
    color: #d4d4d8;
}

.balance-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 2rem;
    font-weight: 600;
    margin-top: auto;
}

.balance-price small {
    font-size: 0.95rem;
    color: #a1a1aa;
}

.balance-card ul {
    margin: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #d8d8dd;
    font-size: 0.95rem;
}

.balance-card-cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border 0.2s ease;
}

.balance-card-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.balance-card:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.partner-section {
    margin-top: 72px;
    border-radius: 36px;
    padding: clamp(28px, 4vw, 48px);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 60px);
    flex-wrap: wrap;
}

.partner-label {
    margin: 0 0 12px;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    color: #c7c9ff;
    text-transform: uppercase;
}

.partner-section h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.partner-text {
    margin: 0;
    color: #e1e1e8;
    font-size: 1rem;
    max-width: 640px;
}

.partner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 16px 34px;
    background: #f5f5f5;
    color: #0f0f13;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.partner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.55);
}

.instruction-section {
    margin-top: 56px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35));
    padding: clamp(28px, 4vw, 44px);
}

.instruction-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.instruction-label {
    margin: 0 0 10px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #c7c9ff;
}

.instruction-section h2 {
    margin: 0 0 16px;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.instruction-lead {
    margin: 0 0 16px;
    font-size: 1rem;
    color: #d8d8df;
}

.instruction-section ul {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #e7e7ec;
}

.instruction-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.instruction-link:hover {
    background: #ffffff;
    color: #111217;
    border-color: rgba(255, 255, 255, 0.6);
}

.instruction-section .hero-cta {
    align-self: flex-start;
    margin-top: 8px;
}

.info-hero {
    margin-bottom: 40px;
}

.info-lead {
    max-width: 620px;
}

.info-docs {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-doc-card {
    border-radius: 28px;
    padding: 28px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 240px;
}

.info-doc-label {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #c7c9ff;
}

.info-doc-card h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #f5f5f5;
}

.info-doc-card p {
    margin: 0;
    color: #d4d4d8;
}

.info-doc-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border 0.2s ease;
    width: fit-content;
}

.info-doc-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.info-cta {
    margin-top: 48px;
}

.info-cta .hero-cta {
    margin-top: 0;
}

.body--modal-open {
    overflow: hidden;
}

.document-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999;
}

.document-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.document-modal__overlay {
    position: absolute;
    inset: 0;
}

.document-modal__content {
    position: relative;
    width: min(960px, 100%);
    max-height: 90vh;
    border-radius: 32px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.document-modal__header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.document-modal__title {
    margin: 0;
    font-size: 1.4rem;
}

.document-modal__close {
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1.1rem;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.document-modal__close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.document-modal__close:active {
    transform: scale(0.96);
}

.document-modal__body {
    padding: 0 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.document-modal__frame {
    width: 100%;
    border: none;
    border-radius: 22px;
    background: #0f0f13;
    min-height: 60vh;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.document-modal__text {
    max-height: 60vh;
    overflow-y: auto;
    padding: 24px;
    border-radius: 22px;
    background: rgba(8, 10, 14, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    color: #e4e4eb;
    line-height: 1.6;
}

.document-modal__text h3,
.document-modal__text h4 {
    margin: 0 0 12px;
}

.document-modal__text h4 {
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    color: #f3f4f6;
}

.document-modal__text section + section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.document-modal__text ul {
    padding-left: 20px;
    margin: 12px 0 0;
    color: #d8d8dd;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.document-modal__text a {
    color: #a4a7f5;
}

.document-text-content .text-muted {
    color: #c4c5d5;
    margin: 0 0 16px;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 640px) {
    .document-modal {
        padding: 16px;
    }

    .document-modal__content {
        border-radius: 26px;
    }

    .document-modal__header {
        padding: 20px;
    }

    .document-modal__body {
        padding: 0 20px 20px;
        gap: 16px;
    }
}


@media (max-width: 1200px) {
    .vpn-card {
        max-width: 100%;
        border-radius: 30px;
    }
}

@media (max-width: 1024px) {
    .vpn-landing {
        padding: 36px 16px;
    }

    .hero {
        padding: clamp(24px, 4vw, 40px);
        gap: 24px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }

    .feature-split {
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .vpn-card {
        border-radius: 26px;
    }

    .partner-section,
    .instruction-section,
    .balance-section {
        border-radius: 26px;
    }
}

@media (max-width: 860px) {
    .balance-card {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }

    .feature-split {
        grid-template-columns: 1fr;
    }

    .feature-highlight {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .vpn-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .vpn-nav-bar {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .vpn-menu {
        order: 3;
        width: 100%;
        margin-left: 0;
        display: none;
        flex-direction: column;
        gap: 12px;
        padding: 16px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .vpn-menu.is-open {
        display: flex;
    }

    .vpn-menu a {
        width: 100%;
        padding: 12px 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        text-align: center;
    }

    .vpn-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo-wrapper {
        max-width: 260px;
        margin: 0 auto;
    }

    .balance-head {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .balance-slider {
        scroll-snap-type: x proximity;
        padding-inline: 0;
    }

    .balance-card {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: center;
    }

    .partner-content,
    .instruction-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .vpn-card {
        padding: 28px;
    }

    .vpn-brand-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.4rem);
    }

    .lead {
        font-size: 1rem;
    }

    .balance-section {
        padding: 24px;
    }

    .balance-slider {
        scroll-padding: 0 16px;
    }

    .balance-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .partner-section,
    .instruction-section {
        padding: 28px;
    }

    .info-docs {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .info-doc-card {
        padding: 24px;
    }
}

@media (max-width: 520px) {
    .vpn-card {
        padding: 24px;
        border-radius: 22px;
    }

    .hero {
        padding: 24px;
    }

    .hero-cta,
    .partner-cta {
        width: 100%;
        justify-content: center;
    }

    .partner-cta {
        white-space: normal;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .balance-section,
    .partner-section,
    .instruction-section {
        padding: 24px;
    }

    .balance-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .vpn-nav {
        gap: 8px;
    }

    .hero {
        padding: 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .balance-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

