/* ═══════════════════════════ VARIABLES ═══════════════════════════ */
:root {
    --bg: #080e1d;
    --bg2: #0b1323;
    --bg3: #101828;
    --c: rgba(255, 255, 255, .042);
    --ch: rgba(255, 255, 255, .07);
    --b: rgba(255, 255, 255, .09);
    --bh: rgba(56, 189, 248, .5);
    --t1: #eef4fb;
    --t2: #8ba4bc;
    --t3: #3d5468;
    --ac: #38bdf8;
    --ac2: #0ea5e9;
    --r: 14px;
    --nh: 60px;
}

/* ═══════════════════════════ RESET ═══════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--t1);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.65;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--ac);
    border-radius: 3px;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ═══════════════════════════ PAGE LOADER ═══════════════════════════ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity .5s ease, visibility .5s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-plane {
    font-size: 2.8rem;
    animation: loaderFloat 1.2s ease-in-out infinite;
}



@keyframes loaderFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-12px) rotate(-5deg);
    }
}

.loader-bar {
    width: 160px;
    height: 3px;
    background: var(--b);
    border-radius: 99px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: var(--ac);
    border-radius: 99px;
    animation: loaderFill 1.8s ease forwards;
}

@keyframes loaderFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.loader-txt {
    font-size: 13px;
    font-weight: 600;
    color: var(--t3);
    letter-spacing: .5px;
}

/* ═══════════════════════════ GLASS CARD ═══════════════════════════ */
.card {
    background: var(--c);
    border: 1px solid var(--b);
    border-radius: var(--r);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}

.card-hover:hover {
    background: var(--ch);
    border-color: var(--bh);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn-p {
    background: var(--ac);
    color: #04101f;
}

.btn-p:hover {
    background: var(--ac2);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(56, 189, 248, .35);
}

.btn-o {
    background: transparent;
    color: var(--t1);
    border: 1.5px solid var(--b);
}

.btn-o:hover {
    border-color: var(--ac);
    color: var(--ac);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

/* ═══════════════════════════ TYPE HELPERS ═══════════════════════════ */
.label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: var(--ac);
    margin-bottom: 10px;
}

.h2 {
    font-size: clamp(1.5rem, 3.8vw, 2.25rem);
    font-weight: 800;
    color: var(--t1);
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
}

.h2 span {
    color: var(--ac);
}

.sub {
    font-size: 14px;
    color: var(--t2);
    max-width: 100vw;
    margin-bottom: 36px;
    line-height: 1.7;
    text-align: center;
}

.divider {
    height: 1px;
    background: var(--b);
    max-width: 720px;
    margin: 0 auto;
}

/* ═══════════════════════════ HEADER ═══════════════════════════ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nh);
    z-index: 1000;
    background: transparent;
    transition: background .3s, border-color .3s;
}

#site-header.scrolled {
    background: rgba(8, 14, 29, .96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.nav-wrap {
    height: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--c);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-txt {
    font-size: 15px;
    font-weight: 800;
    color: var(--t1);
}

.logo-txt em {
    color: var(--ac);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--t2);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--ac);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hamburger / Close icon button */
.hbg-btn {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--c);
    border: 1px solid var(--b);
    align-items: center;
    justify-content: center;
    color: var(--t1);
    flex-shrink: 0;
    transition: border-color .2s;
}

.hbg-btn:hover {
    border-color: var(--ac);
}

/* icon swap */
.hbg-btn .ico-menu {
    display: flex;
}

.hbg-btn .ico-close {
    display: none;
}

.hbg-btn.open .ico-menu {
    display: none;
}

.hbg-btn.open .ico-close {
    display: flex;
}

/* ═══════════════════════════ MOBILE DRAWER ═══════════════════════════ */
#mobile-drawer {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: var(--nh);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--nh));
    z-index: 850;
    background: var(--bg);
    border-top: 1px solid var(--b);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    transition: opacity .28s ease, visibility .28s ease;
}

#mobile-drawer.open {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    border-bottom: 1px solid var(--b);
    flex-shrink: 0;
}

.drawer-brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--t1);
}

.drawer-x {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--c);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2);
    transition: all .2s;
}

.drawer-x:hover {
    border-color: var(--ac);
    color: var(--ac);
}

.drawer-scroll {
    flex: 1;
    padding: 14px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--t1);
    border: 1px solid transparent;
    transition: all .2s;
}

.drawer-link:hover {
    background: var(--c);
    border-color: var(--b);
}

.drawer-link .d-ico {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
}

.drawer-sep {
    height: 1px;
    background: var(--b);
    margin: 8px 0;
}

.drawer-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    border-radius: 12px;
    background: var(--ac);
    color: #04101f;
    font-weight: 700;
    font-size: 15px;
    margin-top: 6px;
}

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nh)+40px) 20px 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(56, 189, 248, .08) 0%, transparent 68%), var(--bg);
}

.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(1px 1px at 9% 18%, rgba(255, 255, 255, .55) 0%, transparent 100%), radial-gradient(1px 1px at 24% 65%, rgba(255, 255, 255, .33) 0%, transparent 100%), radial-gradient(1.5px 1.5px at 48% 32%, rgba(255, 255, 255, .5) 0%, transparent 100%), radial-gradient(1px 1px at 68% 12%, rgba(255, 255, 255, .65) 0%, transparent 100%), radial-gradient(1px 1px at 82% 73%, rgba(255, 255, 255, .28) 0%, transparent 100%), radial-gradient(1px 1px at 91% 42%, rgba(255, 255, 255, .44) 0%, transparent 100%), radial-gradient(1.5px 1.5px at 57% 84%, rgba(255, 255, 255, .38) 0%, transparent 100%), radial-gradient(1px 1px at 14% 88%, rgba(255, 255, 255, .3) 0%, transparent 100%), radial-gradient(1px 1px at 38% 5%, rgba(255, 255, 255, .5) 0%, transparent 100%), radial-gradient(1px 1px at 75% 36%, rgba(255, 255, 255, .33) 0%, transparent 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

.plane {
    font-size: 3rem;
    margin-bottom: 14px;
    /* display: inline-block; */
    animation: floatY 4s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    border-radius: 99px;
    background: var(--c);
    border: 1px solid var(--b);
    font-size: 12px;
    font-weight: 600;
    color: var(--ac);
    margin-bottom: 22px;
}

.hero-h1 {
    font-size: clamp(2rem, 6.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--t1);
    margin-bottom: 18px;
}

.hero-h1 em {
    color: var(--ac);
    font-style: normal;
}

.hero-p {
    font-size: clamp(.95rem, 2.2vw, 1.08rem);
    color: var(--t2);
    margin: 0 auto 32px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid var(--b);
    margin-top: 48px;
    padding-top: 32px;
    gap: 0;
}

.stat {
    padding: 0 22px;
    text-align: center;
    border-right: 1px solid var(--b);
}

.stat:last-child {
    border-right: none;
}

.stat-n {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--ac);
}

.stat-l {
    font-size: 10.5px;
    color: var(--t3);
    margin-top: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ═══════════════════════════ SECTIONS ═══════════════════════════ */
section {
    padding: 72px 20px;
}

.sec {
    max-width: 1140px;
    margin: 0 auto;
    width: 90vw;
}

.sec-alt {
    background: var(--bg2);
}

/* ═══════════════════════════ SERVICES ═══════════════════════════ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.svc-card {
    padding: 22px 20px;
    display: block;
}

.svc-ico {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--ch);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 14px;
}

.svc-t {
    font-size: 15px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 5px;
}

.svc-d {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.55;
}

.svc-a {
    font-size: 12.5px;
    color: var(--ac);
    margin-top: 13px;
    font-weight: 600;
}

/* ═══════════════════════════ PASSPORT — side by side ═══════════════════════════ */
.pp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* left: how-it-works steps */
.steps-col {}

.steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step {
    display: flex;
    gap: 13px;
}

.step-n {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--ac);
    color: #04101f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    margin-top: 2px;
}

.step-b h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 3px;
}

.step-b p {
    font-size: 13px;
    color: var(--t2);
}

/* right: service cards */

.pp-cards-col {
    display: flex;
    gap: 14px;
    margin: auto;
}

.passport-card {
    width: 250px;
}

.ppc {
    padding: 20px;
}

.ppc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ppc-ico {
    font-size: 22px;
}

.ppc-t {
    font-size: 15px;
    font-weight: 700;
    color: var(--t1);
}

.ppc ul {
    list-style: none;
}

.ppc ul li {
    font-size: 13px;
    color: var(--t2);
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.ppc ul li::before {
    content: "✓";
    color: var(--ac);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ppc-foot {
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid var(--b);
}

.ppc-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ac);
    margin-top: 3px;
}

/* ═══════════════════════════ FLIGHTS ═══════════════════════════ */
.fl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.fl-card {
    padding: 30px;
    position: relative;
}

.fl-pop {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 13px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    background: var(--ac);
    color: #04101f;
    white-space: nowrap;
}

.fl-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.fl-type {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    background: var(--bg3);
    color: var(--ac);
    border: 1px solid var(--b);
}

.fl-t {
    font-size: 15px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 6px;
}

.fl-d {
    font-size: 13px;
    color: var(--t2);
    margin-bottom: 12px;
}

.fl-routes {
    list-style: none;
    margin-bottom: 16px;
}

.fl-routes li {
    font-size: 13px;
    color: var(--t2);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fl-routes li::before {
    content: "›";
    color: var(--ac);
    font-weight: 700;
}

.airlines {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
    justify-content: center;
}

.al-tag {
    padding: 5px 13px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    color: var(--t2);
    background: var(--c);
    border: 1px solid var(--b);
}

/* ═══════════════════════════ VPN ═══════════════════════════ */

.vpn-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vpn-card {
    padding: 40px;
    text-align: center;
    position: relative;
    height: 400px;
    width: 300px;
}

.vpn-card.featured {
    border-color: var(--ac);
}

.vpn-pop {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 13px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    background: var(--ac);
    color: #04101f;
    white-space: nowrap;
}

.vpn-ico {
    font-size: 2rem;
    margin-bottom: 10px;
}

.vpn-plan {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--t1);
    margin-bottom: 3px;
}

.vpn-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ac);
    margin-bottom: 3px;
}

.vpn-per {
    font-size: 12px;
    color: var(--t3);
    margin-bottom: 16px;
}

.vpn-feats {
    list-style: none;
    text-align: left;
    margin-bottom: 18px;
}

.vpn-feats li {
    font-size: 11px;
    color: var(--t2);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid var(--b);
}

.vpn-feats li:last-child {
    border-bottom: none;
}



/* ═══════════════════════════ WHY US ═══════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.why-card {
    padding: 22px;
    text-align: center;
}

.why-ico {
    font-size: 1.9rem;
    margin-bottom: 9px;
}

.why-t {
    font-size: 14px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 5px;
}

.why-d {
    font-size: 13px;
    color: var(--t2);
}

.why-mb {
    margin-bottom: 80px;
}

/* ═══════════════════════════ FAQ — chevron arrows ═══════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 90vw;
    margin: auto;
}

.faq-item {
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 18px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--t1);
    cursor: pointer;
}

.faq-chevron {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--ch);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0 18px 16px;
    font-size: 13px;
    color: var(--t2);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

/* ═══════════════════════════ CONTACT ═══════════════════════════ */
.ct-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ct-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ct-ico {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: var(--ch);
    border: 1px solid var(--b);
}

.ct-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--t3);
    margin-bottom: 3px;
}

.ct-val {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--t1);
}

.ct-sub {
    font-size: 12px;
    color: var(--t2);
    margin-top: 2px;
}

.cta-nudge {
    margin-top: 26px;
    padding: 20px;
    border-radius: var(--r);
    background: var(--c);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══════════════════════════ FOOTER — redesigned ═══════════════════════════ */
footer {
    background: var(--bg3);
    border-top: 1px solid var(--b);
    padding: 0 20px;
}

.footer-main {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 48px 0 36px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--t2);
    margin-top: 10px;
    line-height: 1.6;
    max-width: 220px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--t3);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--t2);
    padding: 3px 0;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--ac);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--c);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all .2s;
}

.social-icon:hover {
    border-color: var(--ac);
    background: rgba(56, 189, 248, .08);
}

.footer-bottom {
    max-width: 90vw;
    margin: 0 auto;
    padding: 18px 0;
    border-top: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--t3);
}

.footer-bottom a {
    font-size: 12px;
    color: var(--t3);
    transition: color .2s;
}

.footer-bottom a:hover {
    color: var(--ac);
}

/* ═══════════════════════════ SCROLL TOP ═══════════════════════════ */
.s2t {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 800;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c);
    border: 1.5px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2);
    cursor: pointer;
    transition: all .25s;
    opacity: 0;
    pointer-events: none;
}

.s2t.vis {
    opacity: 1;
    pointer-events: all;
}

.s2t:hover {
    border-color: var(--ac);
    color: var(--ac);
}

/* ═══════════════════════════ TOAST ═══════════════════════════ */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%) translateY(60px);
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--ac);
    color: #04101f;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transition: all .32s;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
    pointer-events: none;
}

.toast.on {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════ PAYMENT MODAL ═══════════════════════════ */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}

.overlay.on {
    display: flex;
}

.modal {
    background: var(--bg3);
    border: 1px solid var(--b);
    border-radius: 18px;
    width: 100%;
    max-width: 530px;
    margin: auto;
    flex-shrink: 0;
    animation: popIn .28s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-hd {
    padding: 18px 20px;
    border-bottom: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.modal-hd-l {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-back {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--c);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2);
    transition: all .2s;
    flex-shrink: 0;
}

.modal-back:hover {
    border-color: var(--ac);
    color: var(--ac);
}

.modal-back[hidden] {
    display: none;
}

.modal-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--t1);
}

.modal-x {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--c);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2);
    transition: all .2s;
    line-height: 1;
}

.modal-x:hover {
    border-color: rgba(248, 113, 113, .5);
    color: #f87171;
}

.modal-body {
    padding: 20px;
}

.modal-plan {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border-radius: 11px;
    background: rgba(56, 189, 248, .07);
    border: 1px solid rgba(56, 189, 248, .22);
    margin-bottom: 20px;
}

.modal-plan-ico {
    font-size: 1.6rem;
}

.modal-plan-nm {
    font-size: 14px;
    font-weight: 800;
    color: var(--t1);
}

.modal-plan-ds {
    font-size: 12px;
    color: var(--ac);
    font-weight: 600;
    margin-top: 1px;
}

.msteps {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.mstep {
    flex: 1;
    height: 3px;
    border-radius: 99px;
    background: var(--b);
    transition: background .3s;
}

.mstep.on {
    background: var(--ac);
}

.step-lbl {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--t3);
    margin-bottom: 14px;
}

.pay-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.pay-tab {
    flex: 1;
    padding: 10px 8px;
    border-radius: 9px;
    background: var(--c);
    border: 1.5px solid var(--b);
    font-size: 13px;
    font-weight: 700;
    color: var(--t2);
    cursor: pointer;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.pay-tab .tab-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--t3);
}

.pay-tab:hover {
    border-color: var(--bh);
    color: var(--t1);
}

.pay-tab.active {
    border-color: var(--ac);
    color: var(--ac);
    background: rgba(56, 189, 248, .07);
}

.qr-box {
    text-align: center;
    padding: 18px 14px;
    background: var(--c);
    border: 1px solid var(--b);
    border-radius: 12px;
    margin-bottom: 14px;
}

.qr-wrap {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    background: #fff;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qr-wrap svg {
    width: 100%;
    height: 100%;
}

.qr-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 2px;
}

.qr-acct {
    font-size: 12px;
    color: var(--t2);
}

.amt-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(56, 189, 248, .06);
    border: 1.5px solid rgba(56, 189, 248, .22);
    margin-bottom: 16px;
}

.amt-row .ico {
    font-size: 1.25rem;
}

.amt-row .info small {
    font-size: 11px;
    color: var(--t3);
    display: block;
}

.amt-row .info strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--ac);
}

.inst-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.inst {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--t2);
}

.inst-n {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--ch);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--ac);
}

/* Upload area */
.upload-area {
    border: 2px dashed var(--b);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
    margin-bottom: 14px;
    position: relative;
}

.upload-area:hover,
.upload-area.drag {
    border-color: var(--ac);
    background: rgba(56, 189, 248, .04);
}

.upload-area input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.upload-ico {
    font-size: 2rem;
    margin-bottom: 8px;
}

.upload-txt {
    font-size: 13px;
    font-weight: 600;
    color: var(--t2);
}

.upload-sub {
    font-size: 11px;
    color: var(--t3);
    margin-top: 3px;
}

.upload-preview {
    display: none;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.upload-preview img {
    width: 100%;
    border-radius: 10px;
    max-height: 200px;
    object-fit: cover;
}

.upload-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .7);
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-opts {
    display: flex;
    gap: 10px;
}

.send-btn {
    flex: 1;
    padding: 12px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    border: none;
}

.s-fb {
    background: #1877f2;
    color: #fff;
}

.s-fb:hover {
    background: #1458c0;
}

.s-tg {
    background: #229ed9;
    color: #fff;
}

.s-tg:hover {
    background: #1882b4;
}

.pay-success {
    text-align: center;
    padding: 8px 0 4px;
}

.pay-success .tick {
    font-size: 3rem;
    margin-bottom: 12px;
}

.pay-success h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--t1);
    margin-bottom: 8px;
}

.pay-success p {
    font-size: 13px;
    color: var(--t2);
    margin-bottom: 22px;
    line-height: 1.65;
}

.pay-tab{
        gap: 10px;
    }

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media(max-width:960px) {
    .nav-links {
        display: none;
    }

    .btn.nav-cta {
        display: none !important;
    }

    .hbg-btn {
        display: flex;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .fl-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vpn-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 90vw;
        margin: auto;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pp-layout {
        grid-template-columns: 1fr;
    }

    .ct-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }


    .pp-cards-col {
        flex-direction: column;
        gap: 17px;
    }

    .passport-card {
        width: 90vw;
    }

    .vpn-card {
        width: 90vw;
        height: 430px;
    }

    .faq-list {
        gap: 17px;
    }

}

@media(max-width:580px) {
    :root {
        --nh: 56px;
    }

    .nav-wrap {
        padding: 0 14px;
    }

    .logo-txt {
        font-size: 14px;
    }

    .fl-grid {
        gap: 40px;
    }

    section {
        padding: 50px 16px;
    }

    .hero {
        padding: calc(var(--nh)+32px) 16px 48px;
    }

    .hero-h1 {
        font-size: 2.2rem;
    }

    .hero-p {
        font-size: 0.9rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        width: 300px;
        margin: auto;
        gap: 20px;
    }

    .hero-btns .btn {
        justify-content: center;
    }

    .stat {
        padding: 0 13px;
    }

    .stat-n {
        font-size: 1.25rem;
    }

    .svc-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .why-mb {
        margin-bottom: 50px;
    }


    .cta-nudge {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-nudge .btn {
        width: 100%;
    }


    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 0 24px;
    }

    .pay-tabs {
        gap: 10px;
    }

    .pay-tab {
        font-size: 11.5px;
        padding: 8px 6px;
        
    }

    .send-opts {
        flex-direction: column;
    }

    .send-btn {
        width: 100%;
    }

    .qr-wrap {
        width: 144px;
        height: 144px;
    }

    .overlay {
        padding: 12px;
    }

    .pp-cards-col {
        flex-direction: column;
        gap: 17px;
    }

    .vpn-grid {
        gap: 40px;
    }

    @media(max-width:360px) {
        .hero-h1 {
            font-size: 1.65rem;
        }

        .setup-grid {
            grid-template-columns: 1fr;
        }

        .stat {
            padding: 0 10px;
        }

        .pp-cards-col {
            flex-direction: column;
        }

    }
}