:root {
    --ink: #07111f;
    --panel: rgba(12, 25, 43, .76);
    --panel-solid: #0d1a2b;
    --line: rgba(162, 191, 222, .14);
    --muted: #91a7c0;
    --white: #f7fbff;
    --cyan: #29e6c3;
    --blue: #39a8ff;
    --violet: #8a7dff;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { color-scheme: dark; scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 50% -20%, rgba(34, 112, 182, .22), transparent 40%),
        linear-gradient(180deg, #07111f 0%, #081522 58%, #06101c 100%);
    font-family: "Manrope", system-ui, sans-serif;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    opacity: .38;
    background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

button, input { font: inherit; }

button { color: inherit; }

.ambient {
    position: fixed;
    z-index: -1;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .1;
    pointer-events: none;
}

.ambient-one { top: 8%; left: -220px; background: var(--cyan); }
.ambient-two { top: 30%; right: -250px; background: var(--blue); }

.site-header, main, footer {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--white);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(69, 233, 214, .4);
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(44, 231, 197, .22), rgba(57, 168, 255, .09));
    box-shadow: inset 0 0 20px rgba(41, 230, 195, .08), 0 8px 30px rgba(0, 0, 0, .28);
    transform: rotate(-5deg);
}

.brand-mark span {
    font: 700 20px/1 "Sora", sans-serif;
    color: var(--cyan);
    transform: rotate(5deg);
}

.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font: 600 16px/1.2 "Sora", sans-serif; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }

.secure-pill {
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 10px 15px;
    color: #bad0e5;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(9, 22, 38, .62);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(14px);
}

.secure-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(41, 230, 195, .09), 0 0 14px rgba(41, 230, 195, .8); }

.hero { padding: 76px 0 64px; text-align: center; }

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px;
    color: #a9bdd2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow span { padding: 5px 9px; color: #06151a; border-radius: 999px; background: var(--cyan); font-size: 9px; letter-spacing: .14em; }

.hero h1 {
    max-width: 850px;
    margin: 0 auto;
    font: 600 clamp(44px, 7vw, 86px)/.98 "Sora", sans-serif;
    letter-spacing: -.055em;
}

.hero h1 em {
    color: transparent;
    background: linear-gradient(90deg, var(--cyan), #67c8ff 55%, #a89dff);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.hero > p { max-width: 640px; margin: 26px auto 0; color: var(--muted); font-size: 17px; line-height: 1.7; }

.progress-line {
    display: flex;
    align-items: center;
    width: min(680px, 100%);
    margin: 52px auto 0;
}

.progress-item { display: grid; flex: 0 0 auto; gap: 7px; justify-items: center; color: #607992; }
.progress-item b { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(117, 148, 178, .26); border-radius: 50%; font-size: 10px; letter-spacing: .04em; }
.progress-item span { font-size: 11px; font-weight: 700; }
.progress-item.active { color: var(--white); }
.progress-item.active b { color: #06151a; border-color: var(--cyan); background: var(--cyan); box-shadow: 0 0 24px rgba(41, 230, 195, .28); }
.progress-rule { flex: 1 1 auto; height: 1px; margin: 0 12px 22px; background: linear-gradient(90deg, rgba(41, 230, 195, .32), rgba(117, 148, 178, .13)); }

.country-section {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(16, 32, 53, .88), rgba(9, 21, 36, .78));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .03);
    backdrop-filter: blur(18px);
}

.section-heading { display: flex; gap: 24px; align-items: end; justify-content: space-between; margin-bottom: 28px; }
.section-kicker { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-heading h2 { margin: 8px 0 0; font: 600 clamp(25px, 3vw, 35px)/1.15 "Sora", sans-serif; letter-spacing: -.035em; }

.country-search {
    display: flex;
    gap: 10px;
    align-items: center;
    width: min(250px, 100%);
    padding: 0 15px;
    color: #7890a9;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(5, 16, 29, .55);
}

.country-search input { width: 100%; padding: 13px 0; color: var(--white); border: 0; outline: 0; background: transparent; font-size: 13px; }
.country-search:focus-within { border-color: rgba(41, 230, 195, .48); box-shadow: 0 0 0 3px rgba(41, 230, 195, .07); }

.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.global-label { color: #718ca5; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.section-intro { max-width: 410px; margin: 0; color: #647e95; font-size: 10px; line-height: 1.55; text-align: right; }
.featured-payments-block { display: grid; gap: 11px; margin-bottom: 28px; padding: 17px; border: 1px solid rgba(138,125,255,.15); border-radius: 19px; background: radial-gradient(circle at 90% 0, rgba(138,125,255,.09), transparent 32%), rgba(5,17,30,.46); }
.featured-payments-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.featured-payment-card { position: relative; display: grid; grid-template-columns: 74px minmax(0, 1fr) auto; gap: 10px; align-items: center; min-width: 0; min-height: 74px; padding: 10px; overflow: hidden; color: inherit; text-align: left; border: 1px solid rgba(57,168,255,.18); border: 1px solid color-mix(in srgb, var(--method-accent) 25%, transparent); border-radius: 14px; outline: 0; background: rgba(5,15,27,.94); background: linear-gradient(140deg, color-mix(in srgb, var(--method-accent) 8%, rgba(6,18,31,.94)), rgba(5,15,27,.94)); cursor: pointer; text-decoration: none; transition: transform .22s, border-color .22s, box-shadow .22s; }
.featured-payment-card:hover, .featured-payment-card:focus-visible { border-color: color-mix(in srgb, var(--method-accent) 58%, transparent); box-shadow: 0 14px 28px rgba(0,0,0,.22); transform: translateY(-3px); }
.featured-method-logo { display: grid; width: 74px; height: 46px; overflow: hidden; place-items: center; color: var(--method-accent); border: 1px solid rgba(255,255,255,.09); border-radius: 10px; background: #fff; }
.featured-method-logo img { width: 100%; height: 100%; object-fit: contain; }
.featured-method-logo b { color: #07111f; font: 800 9px/1 "Sora", sans-serif; letter-spacing: .02em; }
.featured-method-copy { display: grid; min-width: 0; gap: 4px; }
.featured-method-copy strong { overflow: hidden; font: 700 11px/1.25 "Sora", sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.featured-method-copy small { display: -webkit-box; overflow: hidden; color: #688198; font-size: 7.5px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.featured-payment-card > i { color: var(--method-accent); font-size: 13px; font-style: normal; }
.featured-kind { position: absolute; top: 6px; right: 7px; color: #9abfff; color: color-mix(in srgb, var(--method-accent) 76%, white); font-size: 5.5px; font-weight: 900; letter-spacing: .08em; opacity: .74; }
.country-subheading { display: flex; gap: 18px; align-items: end; justify-content: space-between; margin: 0 0 15px; padding-top: 23px; border-top: 1px solid rgba(136,168,200,.1); }
.country-subheading h3 { margin: 4px 0 0; font: 600 18px/1.2 "Sora", sans-serif; }

.country-card {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
    min-width: 0;
    padding: 15px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(136, 168, 200, .12);
    border-radius: 17px;
    outline: 0;
    background: rgba(7, 18, 32, .72);
    cursor: pointer;
    animation: card-in .55s both;
    animation-delay: var(--delay);
    transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.country-card::after { position: absolute; inset: auto -30% -90% 20%; height: 100px; content: ""; background: rgba(41, 230, 195, .12); filter: blur(30px); opacity: 0; transition: opacity .24s ease; }
.country-card:hover, .country-card:focus-visible { z-index: 1; border-color: rgba(41, 230, 195, .46); background: rgba(12, 31, 50, .9); box-shadow: 0 16px 34px rgba(0, 0, 0, .24); transform: translateY(-3px); }
.country-card:hover::after, .country-card:focus-visible::after { opacity: 1; }

.flag-frame { flex: 0 0 auto; width: 54px; height: 42px; padding: 3px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.06); }
.flag-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }
.country-info { display: grid; min-width: 0; gap: 4px; }
.country-info strong { overflow: hidden; font: 600 14px/1.25 "Sora", sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.country-info small { overflow: hidden; color: #7891a9; font-size: 10px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.card-arrow { margin-left: auto; color: #5d7993; font-size: 17px; transition: color .2s, transform .2s; }
.country-card:hover .card-arrow { color: var(--cyan); transform: translate(2px, -2px); }

.country-empty { padding: 34px; color: var(--muted); text-align: center; }

.assurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 44px 12px 70px; }
.assurance > div { display: flex; gap: 13px; align-items: center; justify-content: center; }
.assurance > div > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; color: var(--cyan); border: 1px solid var(--line); border-radius: 12px; background: rgba(13, 28, 46, .7); font-size: 14px; }
.assurance p { display: grid; gap: 4px; margin: 0; }
.assurance strong { font-size: 12px; }
.assurance small { color: #6f879e; font-size: 10px; }

footer { display: flex; justify-content: space-between; padding: 24px 0 36px; color: #536d86; border-top: 1px solid rgba(136, 168, 200, .09); font-size: 11px; }

.payment-dialog { width: min(680px, calc(100% - 28px)); max-height: 92vh; padding: 0; color: var(--white); border: 0; border-radius: 25px; background: transparent; box-shadow: 0 38px 100px rgba(0, 0, 0, .58); }
.payment-dialog::backdrop { background: rgba(2, 8, 15, .78); backdrop-filter: blur(9px); }
.payment-dialog[open] { animation: dialog-in .28s ease both; }
.dialog-shell { max-height: 92vh; overflow-x: hidden; overflow-y: auto; border: 1px solid rgba(123, 166, 207, .2); border-radius: 25px; background: #0b1929; scrollbar-color: rgba(79, 113, 143, .5) transparent; scrollbar-width: thin; }
.dialog-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px 19px; }
.dialog-country { display: flex; gap: 14px; align-items: center; }
.dialog-country img { width: 48px; height: 36px; object-fit: cover; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; }
.dialog-country small { display: block; margin-bottom: 3px; color: #6f8ba5; font-size: 10px; font-weight: 700; }
.dialog-country h2 { margin: 0; font: 600 20px/1.2 "Sora", sans-serif; }
.close-dialog { display: grid; width: 36px; height: 36px; place-items: center; color: #8da4ba; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.03); cursor: pointer; font-size: 24px; line-height: 1; }
.close-dialog:hover { color: white; background: rgba(255,255,255,.08); }
.dialog-progress { height: 2px; background: rgba(255,255,255,.04); }
.dialog-progress span { display: block; width: 50%; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); box-shadow: 0 0 12px rgba(41,230,195,.5); }
.dialog-body { padding: 25px 26px 28px; }
.dialog-intro { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.method-list { display: grid; gap: 10px; }
.method-button { display: flex; gap: 13px; align-items: center; width: 100%; padding: 14px; text-align: left; border: 1px solid var(--line); border-radius: 14px; background: rgba(5, 15, 27, .66); cursor: pointer; transition: border-color .2s, transform .2s, background .2s; }
.method-button:hover, .method-button:focus-visible { border-color: rgba(41,230,195,.4); background: rgba(14, 37, 57, .9); transform: translateX(3px); }
.method-symbol { display: grid; width: 38px; height: 38px; place-items: center; color: #07131d; border-radius: 11px; background: linear-gradient(145deg, var(--cyan), #78bfff); font: 700 14px/1 "Sora", sans-serif; }
.method-button span:nth-child(2) { display: grid; gap: 3px; }
.method-button strong { font-size: 13px; }
.method-button small { color: #7189a0; font-size: 10px; }
.method-button i { margin-left: auto; color: var(--cyan); font-style: normal; }
.dialog-note { display: flex; gap: 8px; align-items: center; margin: 18px 0 0; color: #66829c; font-size: 10px; }
.dialog-note span { color: var(--cyan); }

.header-status { display: flex; gap: 9px; align-items: center; }
.catalog-message { display: flex; gap: 11px; align-items: center; justify-content: center; padding: 21px; color: #d7e5f2; border: 1px solid rgba(255, 191, 71, .18); border-radius: 15px; background: rgba(255, 191, 71, .06); font-size: 12px; }
.catalog-message > span { display: grid; width: 25px; height: 25px; flex: 0 0 auto; place-items: center; color: #07111f; border-radius: 50%; background: #ffbf47; font-weight: 900; }

.dialog-back { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; color: #9ab1c8; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.03); cursor: pointer; }
.dialog-back:hover { color: var(--cyan); border-color: rgba(41,230,195,.3); }
.payment-dialog[data-step="methods"] .dialog-progress span { width: 40%; }
.payment-dialog[data-step="payment"] .dialog-progress span { width: 72%; }
.payment-dialog[data-step="success"] .dialog-progress span { width: 100%; }
.dialog-progress span { transition: width .32s ease; }

.dialog-loading { display: grid; min-height: 260px; place-items: center; align-content: center; gap: 15px; color: #7790a8; }
.dialog-loading p { margin: 0; font-size: 12px; }
.loader { width: 33px; height: 33px; border: 2px solid rgba(143, 178, 208, .15); border-top-color: var(--cyan); border-radius: 50%; animation: spin .75s linear infinite; }

.method-logo { display: grid; width: 92px; height: 48px; flex: 0 0 auto; overflow: hidden; place-items: center; color: #07131d; border: 1px solid rgba(255,255,255,.11); border-radius: 10px; background: #fff; font: 700 16px/1 "Sora", sans-serif; }
.method-logo img { width: 100%; height: 100%; object-fit: contain; }

.payment-stage { padding-top: 22px; }
.selected-method { display: flex; gap: 14px; align-items: center; padding: 0 0 21px; border-bottom: 1px solid var(--line); }
.selected-method-logo { width: 110px; height: 58px; flex: 0 0 auto; overflow: hidden; border-radius: 11px; background: #fff; }
.selected-method-logo img { width: 100%; height: 100%; object-fit: contain; }
.selected-method > div:last-child { display: grid; gap: 3px; }
.selected-method small { color: #6c869f; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.selected-method h3 { margin: 0; font: 600 18px/1.25 "Sora", sans-serif; }
.selected-method span { color: #6f89a2; font-size: 10px; }
.pricing-calculator { position: relative; margin: 20px 0 0; padding: 20px; overflow: hidden; border: 1px solid rgba(41,230,195,.18); border-radius: 18px; background: radial-gradient(circle at 100% 0, rgba(57,168,255,.12), transparent 38%), linear-gradient(145deg, rgba(8,27,43,.96), rgba(5,17,30,.96)); box-shadow: inset 0 1px rgba(255,255,255,.025); }
.pricing-calculator::after { position: absolute; right: -70px; bottom: -90px; width: 190px; height: 190px; content: ""; pointer-events: none; border: 1px solid rgba(41,230,195,.08); border-radius: 50%; box-shadow: 0 0 0 25px rgba(41,230,195,.018), 0 0 0 50px rgba(57,168,255,.012); }
.pricing-head, .pricing-head > div { display: flex; gap: 11px; align-items: center; }.pricing-head { position: relative; z-index: 1; justify-content: space-between; }.pricing-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; color: #06151a; border-radius: 11px; background: linear-gradient(145deg, var(--cyan), #61c7ff); font-size: 16px; font-weight: 900; }.pricing-head p { display: grid; gap: 4px; margin: 0; }.pricing-head p small { color: var(--cyan); font-size: 7px; font-weight: 900; letter-spacing: .14em; }.pricing-head p strong { font: 600 13px/1.3 "Sora", sans-serif; }.rate-live { display: flex; gap: 7px; align-items: center; padding: 7px 9px; color: #8ca5ba; border: 1px solid rgba(74,227,164,.13); border-radius: 999px; background: rgba(74,227,164,.035); font-size: 7px; }.rate-live i { width: 6px; height: 6px; border-radius: 50%; background: #4ae3a4; box-shadow: 0 0 9px rgba(74,227,164,.55); }.rate-live b { font-weight: 800; }
.credit-control { position: relative; z-index: 1; display: grid; gap: 7px; margin-top: 18px; }.credit-control > span { color: #9eb2c4; font-size: 9px; font-weight: 800; }.credit-control > div { position: relative; }.credit-control input { width: 100%; min-height: 58px; padding: 12px 68px 12px 16px; color: #f7fbff; border: 1px solid rgba(132,170,203,.18); border-radius: 13px; outline: 0; background: rgba(3,13,23,.7); font: 600 22px/1 "Sora", sans-serif; transition: border-color .2s, box-shadow .2s; }.credit-control input:focus { border-color: rgba(41,230,195,.5); box-shadow: 0 0 0 4px rgba(41,230,195,.055); }.credit-control > div b { position: absolute; top: 50%; right: 15px; color: var(--cyan); font-size: 10px; letter-spacing: .08em; transform: translateY(-50%); }.credit-control > small { color: #5d7890; font-size: 8px; }.credit-control > em { min-height: 10px; color: #ff969b; font-size: 8.5px; font-style: normal; }.credit-control.has-error input { border-color: rgba(255,105,112,.55); }
.quick-credits { position: relative; z-index: 1; display: flex; gap: 7px; margin-top: 2px; }.quick-credits button { min-width: 47px; padding: 7px 10px; color: #7894aa; border: 1px solid rgba(133,170,201,.12); border-radius: 8px; background: rgba(255,255,255,.025); cursor: pointer; font-size: 8px; font-weight: 900; }.quick-credits button::before { content: "$"; color: #4d6a81; }.quick-credits button:hover { color: var(--cyan); border-color: rgba(41,230,195,.25); background: rgba(41,230,195,.045); }
.pricing-loading { position: relative; z-index: 1; display: flex; gap: 10px; align-items: center; justify-content: center; min-height: 100px; color: #658198; }.pricing-loading .loader { width: 22px; height: 22px; }.pricing-loading p { margin: 0; font-size: 9px; }.pricing-results { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 12px; margin-top: 16px; }.pricing-lines { display: grid; align-content: center; gap: 9px; padding: 13px; border: 1px solid rgba(134,169,199,.1); border-radius: 12px; background: rgba(3,13,23,.44); }.pricing-lines p { display: flex; gap: 8px; align-items: center; justify-content: space-between; margin: 0; }.pricing-lines span { color: #5f7b92; font-size: 7.5px; }.pricing-lines strong { color: #c8d8e5; font-size: 8px; }.local-total { display: grid; width: 100%; align-content: center; min-height: 105px; padding: 16px; color: inherit; text-align: left; border: 1px solid rgba(41,230,195,.15); border-radius: 13px; outline: 0; background: linear-gradient(135deg, rgba(41,230,195,.075), rgba(57,168,255,.045)); cursor: pointer; font: inherit; transition: border-color .2s, background .2s, box-shadow .2s, transform .2s; }.local-total:not(:disabled):hover { border-color: rgba(41,230,195,.42); background: linear-gradient(135deg, rgba(41,230,195,.12), rgba(57,168,255,.075)); transform: translateY(-1px); }.local-total:focus-visible { border-color: rgba(41,230,195,.62); box-shadow: 0 0 0 4px rgba(41,230,195,.08); }.local-total:disabled { cursor: default; }.local-total.is-copied { border-color: rgba(74,227,164,.62); box-shadow: 0 0 0 3px rgba(74,227,164,.07); }.local-total small { color: #6c8da4; font-size: 7px; font-weight: 900; letter-spacing: .12em; }.local-total strong { margin: 7px 0 5px; color: var(--cyan); font: 600 21px/1.15 "Sora", sans-serif; letter-spacing: -.03em; }.local-total span { color: #5a778e; font-size: 7.5px; line-height: 1.4; }.copy-total-hint { margin-top: 10px; color: #65d9c4; font-size: 7px; font-style: normal; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }.local-total.is-copied .copy-total-hint { color: #4ae3a4; }.pricing-error { position: relative; z-index: 1; margin-top: 15px; padding: 12px; color: #ffc1c4; border: 1px solid rgba(255,105,112,.2); border-radius: 10px; background: rgba(255,105,112,.06); font-size: 9px; line-height: 1.5; }
.pricing-error.is-note { color: #9eb9ce; border-color: rgba(57,168,255,.17); background: rgba(57,168,255,.05); }
.payment-instructions { padding: 24px 0 26px; }
.mini-kicker { display: block; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.payment-instructions > p { margin: 11px 0 16px; color: #91a7bb; font-size: 12px; line-height: 1.65; }
.checkout-options { display: grid; gap: 10px; margin: 0 0 14px; padding: 15px; border: 1px solid rgba(99,91,255,.22); border-radius: 15px; background: linear-gradient(135deg, rgba(99,91,255,.09), rgba(41,230,195,.035)); }
.checkout-options-head { display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.checkout-options-head > span { color: #aaa4ff; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.checkout-options-head > small { color: #627e96; font-size: 7.5px; }
.checkout-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.checkout-link { display: grid; gap: 4px; min-width: 0; padding: 12px 10px; color: inherit; border: 1px solid rgba(139,130,255,.18); border-radius: 11px; background: rgba(4,14,26,.65); text-decoration: none; transition: border-color .2s, background .2s, transform .2s; }
.checkout-link:hover, .checkout-link:focus-visible { border-color: rgba(139,130,255,.48); background: rgba(99,91,255,.1); transform: translateY(-2px); }
.checkout-link.is-selected { border-color: var(--cyan); background: rgba(41,230,195,.08); box-shadow: 0 0 0 3px rgba(41,230,195,.035); }
.checkout-link strong { color: #f2f6ff; font: 700 12px/1.2 "Sora", sans-serif; }
.checkout-link small { color: #718ba2; font-size: 8px; line-height: 1.35; }
.checkout-link b { margin-top: 3px; color: var(--cyan); font-size: 8px; }
.checkout-options > em { min-height: 10px; color: #ff969b; font-size: 8.5px; font-style: normal; }
.account-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.account-details > div { display: flex; gap: 10px; align-items: center; justify-content: space-between; min-width: 0; padding: 13px 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(4,14,26,.55); }
.account-details > div > span { display: grid; min-width: 0; gap: 4px; }
.account-details small { color: #607b94; font-size: 9px; font-weight: 700; }
.account-details strong { overflow-wrap: anywhere; font: 600 12px/1.45 "Sora", sans-serif; white-space: normal; }
.account-details button { padding: 7px 9px; color: var(--cyan); border: 1px solid rgba(41,230,195,.2); border-radius: 8px; background: rgba(41,230,195,.06); cursor: pointer; font-size: 9px; font-weight: 800; }
.account-details > div.is-important { grid-column: 1 / -1; align-items: flex-start; border-color: rgba(255,191,71,.2); background: linear-gradient(135deg, rgba(255,191,71,.07), rgba(255,105,112,.035)); }
.account-details > div.is-important small { color: #d5a94d; letter-spacing: .09em; }
.account-details > div.is-important strong { color: #f5e8c7; font-size: 11px; line-height: 1.65; }
.account-details > div.is-important button { flex: 0 0 auto; color: #ffd27a; border-color: rgba(255,191,71,.2); background: rgba(255,191,71,.06); }

.account-details > div:hover { border-color: rgba(41,230,195,.2); background: rgba(7,24,39,.72); }
#payment-form { position: relative; padding-top: 25px; border-top: 1px solid var(--line); }
.honeypot { position: fixed !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 14px; }
.dynamic-fields:empty { display: none; }
.form-field { display: grid; align-content: start; gap: 7px; min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
.form-field > span { color: #c8d7e5; font-size: 10px; font-weight: 800; }
.form-field > span b { color: var(--cyan); }
.form-field > span small { margin-left: 5px; color: #68829b; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 44px; padding: 11px 13px; color: var(--white); border: 1px solid var(--line); border-radius: 11px; outline: 0; background: rgba(4,14,26,.58); font-size: 12px; transition: border-color .2s, box-shadow .2s; }
.form-field textarea { min-height: 80px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(41,230,195,.5); box-shadow: 0 0 0 3px rgba(41,230,195,.06); }
.form-field > small { color: #58728b; font-size: 8.5px; line-height: 1.4; }
.external-help { color: var(--cyan); font-weight: 800; text-decoration: none; }
.external-help:hover { text-decoration: underline; }
.form-field em, .upload-zone em { min-height: 11px; color: #ff8d91; font-size: 9px; font-style: normal; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea, .upload-zone.has-error { border-color: rgba(255,105,112,.55); }
.amount-input { position: relative; }
.amount-input input { padding-right: 58px; }
.amount-input i { position: absolute; top: 50%; right: 12px; color: var(--cyan); font-size: 9px; font-style: normal; font-weight: 800; transform: translateY(-50%); }
.telegram-auto-note { display: flex; gap: 11px; align-items: center; margin-top: 14px; padding: 13px 14px; color: inherit; border: 1px solid rgba(57,168,255,.16); border-radius: 12px; background: rgba(57,168,255,.045); text-decoration: none; transition: border-color .2s, background .2s, transform .2s; }
.telegram-auto-note:hover, .telegram-auto-note:focus-visible { border-color: rgba(57,168,255,.38); background: rgba(57,168,255,.085); transform: translateY(-1px); }
.telegram-auto-note > span { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; color: #66c4ff; border-radius: 9px; background: rgba(57,168,255,.08); }
.telegram-auto-note p { display: grid; gap: 3px; margin: 0; }
.telegram-auto-note strong { font-size: 9.5px; }
.telegram-auto-note small { color: #637f98; font-size: 8.5px; line-height: 1.45; }
.telegram-auto-note > b { margin-left: auto; color: #7bcbff; font-size: 8px; white-space: nowrap; }
.upload-zone { display: grid; margin-top: 16px; padding: 21px; place-items: center; text-align: center; border: 1px dashed rgba(119,156,190,.29); border-radius: 15px; background: rgba(5,16,28,.45); cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.upload-zone:hover, .upload-zone.is-dragging { border-color: rgba(41,230,195,.55); background: rgba(41,230,195,.045); }
.upload-zone.is-dragging { transform: scale(.99); }
.upload-zone.has-file { border-style: solid; border-color: rgba(41,230,195,.32); background: rgba(41,230,195,.04); }
.upload-zone input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.upload-icon { display: grid; width: 36px; height: 36px; margin-bottom: 10px; place-items: center; color: var(--cyan); border: 1px solid rgba(41,230,195,.2); border-radius: 10px; background: rgba(41,230,195,.07); }
.upload-zone strong { max-width: 100%; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.upload-zone > small { max-width: 430px; margin-top: 5px; color: #607b94; font-size: 8.5px; line-height: 1.5; }
.form-alert { margin-top: 15px; padding: 12px 14px; color: #ffc2c5; border: 1px solid rgba(255,105,112,.22); border-radius: 11px; background: rgba(255,105,112,.07); font-size: 10px; line-height: 1.5; }
.submit-payment { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 16px; padding: 15px 17px; color: #06151a; border: 0; border-radius: 13px; background: linear-gradient(90deg, var(--cyan), #61c7ff); box-shadow: 0 13px 30px rgba(41,230,195,.12); cursor: pointer; font-size: 11px; font-weight: 900; transition: transform .2s, box-shadow .2s, opacity .2s; }
.submit-payment:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(41,230,195,.2); }
.submit-payment:disabled { cursor: not-allowed; opacity: .48; }
.submit-payment.is-loading i { animation: pulse .8s ease infinite alternate; }
.privacy-note { max-width: 500px; margin: 12px auto 0; color: #506a82; font-size: 8.5px; line-height: 1.55; text-align: center; }

.success-stage { padding-block: 42px 48px; text-align: center; }
.success-check { display: grid; width: 68px; height: 68px; margin: 0 auto 22px; place-items: center; color: #06151a; border-radius: 50%; background: linear-gradient(145deg, var(--cyan), #75d7ff); box-shadow: 0 0 0 12px rgba(41,230,195,.06), 0 0 40px rgba(41,230,195,.18); font-size: 28px; font-weight: 900; }
.success-stage h3 { margin: 12px 0 10px; font: 600 25px/1.25 "Sora", sans-serif; letter-spacing: -.025em; }
.success-stage > p { max-width: 490px; margin: 0 auto 22px; color: #7d94aa; font-size: 12px; line-height: 1.65; }
.folio-box { display: grid; width: min(390px, 100%); margin: 0 auto; padding: 17px; place-items: center; color: var(--white); border: 1px solid rgba(41,230,195,.23); border-radius: 14px; background: rgba(41,230,195,.055); cursor: pointer; }
.folio-box small { color: #607e96; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.folio-box strong { margin-top: 6px; color: var(--cyan); font: 600 18px/1.2 "Sora", sans-serif; letter-spacing: .06em; }
.folio-box span { margin-top: 8px; color: #7c96ad; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.status-chip { display: inline-flex; gap: 8px; align-items: center; margin: 17px 0 24px; padding: 8px 12px; color: #b2c3d2; border: 1px solid var(--line); border-radius: 999px; font-size: 9px; font-weight: 700; }
.status-chip i { width: 7px; height: 7px; border-radius: 50%; background: #ffbf47; box-shadow: 0 0 10px rgba(255,191,71,.45); }
.done-button { display: block; width: min(270px, 100%); margin: 0 auto; padding: 13px; color: #07111f; border: 0; border-radius: 12px; background: var(--white); cursor: pointer; font-size: 10px; font-weight: 900; }

@keyframes card-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { to { transform: translateX(4px); } }

@media (max-width: 820px) {
    .hero { padding-top: 48px; }
    .country-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-payments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .assurance { grid-template-columns: 1fr; gap: 22px; }
    .assurance > div { justify-content: flex-start; }
}

@media (max-width: 560px) {
    .site-header, main, footer { width: min(100% - 24px, 1180px); }
    .site-header { padding-top: 18px; }
    .secure-pill { width: 38px; height: 38px; justify-content: center; padding: 0; font-size: 0; }
    .hero { padding: 38px 0 48px; }
    .hero > p { font-size: 14px; }
    .progress-line { align-items: flex-start; }
    .progress-item { flex: 1; }
    .progress-item span { max-width: 76px; }
    .progress-rule { margin-inline: -10px; }
    .country-section { padding: 20px; border-radius: 22px; }
    .section-heading { align-items: stretch; flex-direction: column; }
    .section-intro { text-align: left; }
    .country-search { width: 100%; }
    .country-grid { grid-template-columns: 1fr; }
    .country-subheading { align-items: stretch; flex-direction: column; }
    .featured-payments-grid, .checkout-links { grid-template-columns: 1fr; }
    .assurance { padding: 34px 8px 50px; }
    footer { gap: 10px; align-items: center; flex-direction: column; text-align: center; }
    .dialog-head, .dialog-body { padding-inline: 19px; }
    .payment-dialog { inset: auto 0 0; width: 100%; max-width: none; max-height: 95dvh; margin: 0; border-radius: 24px 24px 0 0; }
    .dialog-shell { max-height: 95dvh; border-radius: 24px 24px 0 0; }
    .dialog-country img { width: 40px; height: 31px; }
    .method-logo { width: 78px; height: 45px; }
    .selected-method-logo { width: 88px; height: 50px; }
    .pricing-calculator { padding: 16px; }.pricing-head { align-items: flex-start; }.rate-live { padding: 6px 8px; }.pricing-results { grid-template-columns: 1fr; }.pricing-lines { padding: 12px; }.local-total strong { font-size: 19px; }.quick-credits { display: grid; grid-template-columns: repeat(4, 1fr); }.quick-credits button { min-width: 0; }
    .account-details, .form-grid { grid-template-columns: 1fr; }
    .success-stage { padding-block: 36px 42px; }
}

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