/* ============================================================
   GetProxy4G — Professional Proxy Store
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --white: #ffffff;
    --bg: #f5f6f8;
    --bg-alt: #f0f1f4;
    --surface: #ffffff;
    --border: #e0e3e8;
    --border-h: #cdd1d8;

    --brand: #0b7a3e;
    --brand-h: #096832;
    --brand-soft: #e8f5ee;
    --brand-rgb: 11,122,62;

    --blue: #2563eb;
    --blue-soft: #eff4ff;

    --text: #1a1a2e;
    --text-s: #3d3d56;
    --text-m: #6b6b80;
    --text-l: #9d9dae;

    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --mono: 'Courier New', monospace;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.03);
    --shadow-md: 0 4px 16px rgba(0,0,0,.07);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.09);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.55; -webkit-font-smoothing: antialiased; font-size: 15px; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    height: 58px; display: flex; align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; display: block; }
.footer .logo-img { height: 32px; filter: brightness(0) invert(1); }
.nav-center { display: flex; align-items: center; gap: 2rem; }
.nav-center a { font-size: .8125rem; font-weight: 500; color: var(--text-m); transition: color .15s; }
.nav-center a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: .75rem; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-current {
    display: flex; align-items: center; gap: .35rem;
    background: none; border: 1px solid var(--border); border-radius: 5px;
    padding: .35rem .55rem; cursor: pointer; font-size: .75rem; font-weight: 600;
    color: var(--text-m); transition: all .12s;
}
.lang-current:hover { border-color: var(--border-h); color: var(--text); }
.lang-current .fi { font-size: .85rem; }
.lang-code { text-transform: uppercase; }
.lang-chev { transition: transform .2s; }
.lang-switcher.open .lang-chev { transform: rotate(180deg); }
.lang-menu {
    display: none; position: absolute; top: calc(100% + 4px); right: 0;
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    box-shadow: var(--shadow-lg); z-index: 60; min-width: 150px; padding: .25rem;
    max-height: 300px; overflow-y: auto;
}
.lang-switcher.open .lang-menu { display: block; }
.lang-option {
    display: flex; align-items: center; gap: .5rem;
    padding: .45rem .6rem; border-radius: 5px; font-size: .8rem; font-weight: 500;
    color: var(--text-s); transition: background .1s; white-space: nowrap;
}
.lang-option:hover { background: var(--bg); }
.lang-option.active { background: var(--brand-soft); color: var(--brand); font-weight: 600; }
.lang-option .fi { font-size: .95rem; }

/* Hamburger — hidden on desktop */
.nav-burger {
    display: none; background: none; border: none; cursor: pointer; padding: 6px;
    color: var(--text); line-height: 0;
}

/* Mobile Menu — slide from right */
.mm-overlay {
    display: none; position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,.4); opacity: 0; transition: opacity .25s;
}
.mm-overlay.open { display: block; opacity: 1; }

.mm-panel {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 310;
    width: 300px; max-width: 85vw;
    background: var(--white); box-shadow: -4px 0 24px rgba(0,0,0,.1);
    transform: translateX(100%); transition: transform .3s ease;
    display: flex; flex-direction: column;
    overflow-y: auto;
}
.mm-panel.open { transform: translateX(0); }

.mm-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: .875rem 1.25rem; border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mm-header .logo-img { height: 26px; }
.mm-close {
    background: none; border: none; cursor: pointer; padding: 4px;
    color: var(--text-m); line-height: 0; border-radius: 6px; transition: background .12s;
}
.mm-close:hover { background: var(--bg); }

.mm-nav {
    display: flex; flex-direction: column;
    padding: .5rem 0; flex-shrink: 0;
}
.mm-link {
    display: block; padding: .875rem 1.25rem;
    font-size: .9375rem; font-weight: 600; color: var(--text);
    border-bottom: 1px solid var(--border); transition: background .12s;
}
.mm-link:active, .mm-link:hover { background: var(--bg); color: var(--brand); }
.mm-sub { font-size: .8125rem; font-weight: 500; color: var(--text-m); }

.mm-lang-section {
    padding: 1rem 1.25rem; border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.mm-label {
    font-size: .65rem; font-weight: 650; text-transform: uppercase; letter-spacing: .08em;
    color: var(--text-l); margin-bottom: .5rem;
}
.mm-lang-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: .35rem;
}
.mm-lang {
    display: flex; flex-direction: column; align-items: center; gap: .15rem;
    padding: .45rem .2rem; border-radius: 5px; font-size: .6rem; font-weight: 600;
    color: var(--text-m); background: var(--bg); border: 1px solid transparent;
    transition: all .12s; text-align: center;
}
.mm-lang .fi { font-size: 1rem; }
.mm-lang:hover { border-color: var(--border); }
.mm-lang.active { background: var(--brand-soft); color: var(--brand); border-color: rgba(var(--brand-rgb),.2); }

.mm-actions {
    padding: 1rem 1.25rem; margin-top: auto;
    display: flex; flex-direction: column; gap: .5rem;
    border-top: 1px solid var(--border); flex-shrink: 0;
}
.mm-actions .btn { min-height: 46px; font-size: .875rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    font-size: .8125rem; font-weight: 600; padding: .5rem 1.125rem;
    border-radius: 6px; border: 1px solid transparent; cursor: pointer; transition: all .15s;
}
.btn-brand { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-brand:hover { background: var(--brand-h); border-color: var(--brand-h); }
.btn-white { background: var(--white); color: var(--text-s); border-color: var(--border); }
.btn-white:hover { border-color: var(--border-h); background: var(--bg); }
.btn-lg { padding: .65rem 1.5rem; font-size: .9rem; }
.btn-full { width: 100%; }

/* ── HERO ── */
.hero {
    background: linear-gradient(170deg, #f0faf4 0%, var(--white) 55%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0 4rem;
}
.hero-layout { display: grid; grid-template-columns: 1fr 440px; gap: 3.5rem; align-items: start; }

.hero-text h1 {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -.02em;
    color: var(--text); margin-bottom: .875rem;
}
.hero-text h1 em { font-style: normal; color: var(--brand); }
.hero-text > p {
    font-size: .9375rem; color: var(--text-m); line-height: 1.65;
    margin-bottom: 1.75rem; max-width: 460px;
}

.hero-features { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.hero-feat {
    display: flex; align-items: center; gap: .55rem;
    font-size: .8125rem; font-weight: 500; color: var(--text-s);
}
.hero-feat svg { width: 17px; height: 17px; stroke: var(--brand); stroke-width: 2.5; fill: none; flex-shrink: 0; }

.hero-pills {
    display: flex; flex-wrap: wrap; gap: .4rem;
    padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.hero-pill {
    display: inline-flex; align-items: center;
    padding: .35rem .75rem; border-radius: 100px;
    font-size: .78rem; font-weight: 600; color: var(--text-s);
    background: var(--bg); border: 1px solid var(--border);
}
.hero-pill-accent {
    background: var(--brand-soft); color: var(--brand); border-color: rgba(var(--brand-rgb),.15);
}

/* ── CONFIGURATOR ── */
.config {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.config-head {
    padding: 1.125rem 1.5rem;
    background: var(--text); color: #fff;
    font-size: .875rem; font-weight: 650;
    display: flex; align-items: center; justify-content: space-between;
}
.config-head .live { display: flex; align-items: center; gap: .4rem; font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.5); }
.config-head .live-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: livepulse 2s infinite; }
@keyframes livepulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
    50% { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

.config-body { padding: 1.5rem; }

.cfg-field { margin-bottom: 1.125rem; }
.cfg-label { display: block; font-size: .7rem; font-weight: 600; color: var(--text-m); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }

.cfg-select {
    width: 100%; height: 42px; padding: 0 2.25rem 0 .875rem;
    background: var(--white); border: 1px solid var(--border); border-radius: 6px;
    font-size: .875rem; font-weight: 500; color: var(--text); cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b6b80' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .875rem center;
    transition: border-color .15s;
}
.cfg-select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),.1); }

/* Plan toggle */
.plan-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.plan-btn {
    padding: .75rem .5rem; text-align: center; cursor: pointer;
    background: var(--white); border: none; transition: all .15s;
    position: relative;
}
.plan-btn + .plan-btn { border-left: 1px solid var(--border); }
.plan-btn.active { background: var(--brand-soft); }
.plan-btn.active .plan-name { color: var(--brand); }
.plan-name { display: block; font-size: .8125rem; font-weight: 650; color: var(--text); margin-bottom: .15rem; }
.plan-sub { font-size: .675rem; color: var(--text-l); }
.plan-btn.active .plan-sub { color: var(--brand); opacity: .7; }

/* Duration pills */
.dur-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem; }
.dur-pill {
    text-align: center; padding: .5rem .25rem; border-radius: 6px;
    background: var(--white); border: 1px solid var(--border); cursor: pointer;
    transition: all .12s; font-size: .75rem; font-weight: 550; color: var(--text-s);
}
.dur-pill:hover { border-color: var(--border-h); }
.dur-pill.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.dur-pill .save { display: block; font-size: .6rem; font-weight: 450; margin-top: .1rem; opacity: .65; }

/* Price display */
.config-price {
    margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: .15rem; }
.price-label { font-size: .8125rem; color: var(--text-m); }
.price-value { font-size: 1.75rem; font-weight: 800; letter-spacing: -.03em; color: var(--text); }
.price-value small { font-size: .8rem; font-weight: 450; color: var(--text-l); }
.price-total { font-size: .75rem; color: var(--text-l); text-align: right; margin-bottom: 1rem; }
/* ── Carrier dropdown (custom) ── */
.crselect { position: relative; }
.crselect-trigger {
    width: 100%; height: 42px; padding: 0 .875rem;
    background: var(--white); border: 1px solid var(--border); border-radius: 6px;
    display: flex; align-items: center; gap: .5rem;
    font-size: .8125rem; font-weight: 500; color: var(--text);
    cursor: pointer; transition: border-color .15s; text-align: left;
}
.crselect-trigger:hover { border-color: var(--border-h); }
.crselect.open .crselect-trigger { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),.1); }
.crselect-arrow { flex-shrink: 0; color: var(--text-l); transition: transform .2s; }
.crselect.open .crselect-arrow { transform: rotate(180deg); }
.cr-icon {
    width: 22px; height: 22px; border-radius: 4px; object-fit: contain; flex-shrink: 0;
}
.cr-icon-fb {
    width: 22px; height: 22px; border-radius: 4px; display: flex;
    align-items: center; justify-content: center;
    font-size: .55rem; font-weight: 700; color: #fff; background: #6b7280; flex-shrink: 0;
}
.crselect-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crselect-meta { font-size: .7rem; color: var(--text-l); white-space: nowrap; display: flex; align-items: center; gap: .4rem; }
.cr-tech {
    font-size: .575rem; font-weight: 700; padding: .1rem .3rem; border-radius: 3px;
    text-transform: uppercase; letter-spacing: .03em; line-height: 1;
}
.cr-tech.t4g { background: #dbeafe; color: #1d4ed8; }
.cr-tech.t5g { background: #ede9fe; color: #7c3aed; }

.crselect-dropdown {
    display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    box-shadow: var(--shadow-lg); z-index: 49; overflow: hidden;
}
.crselect.open .crselect-dropdown { display: block; }
.crselect-list { max-height: 240px; overflow-y: auto; padding: .25rem; }
.crselect-list::-webkit-scrollbar { width: 5px; }
.crselect-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.crselect-opt {
    display: flex; align-items: center; gap: .5rem;
    padding: .5rem .5rem; border-radius: 5px; cursor: pointer;
    font-size: .8125rem; color: var(--text-s); transition: background .1s;
}
.crselect-opt:hover { background: var(--bg); }
.crselect-opt.active { background: var(--brand-soft); color: var(--brand); font-weight: 600; }
.crselect-opt .crselect-name { font-weight: 500; }
.crselect-opt.active .crselect-name { font-weight: 600; color: var(--brand); }
.crselect-opt .cr-speed { font-size: .7rem; color: var(--text-l); }
.crselect-opt .cr-price { font-size: .7rem; font-weight: 600; color: var(--text-m); white-space: nowrap; margin-left: auto; }
.crselect-opt.active .cr-price { color: var(--brand); }

/* Carrier info bar */
.carrier-info {
    font-size: .75rem; color: var(--text-m); padding: .5rem .75rem;
    background: var(--bg); border-radius: 6px; margin-bottom: .25rem;
    display: none; line-height: 1.5;
}
.carrier-info.visible { display: block; }
.carrier-info strong { color: var(--text-s); font-weight: 600; }

/* ── Custom country select ── */
.cselect { position: relative; }
.cselect-trigger {
    width: 100%; height: 42px; padding: 0 .875rem;
    background: var(--white); border: 1px solid var(--border); border-radius: 6px;
    display: flex; align-items: center; gap: .5rem;
    font-size: .8125rem; font-weight: 500; color: var(--text);
    cursor: pointer; transition: border-color .15s; text-align: left;
}
.cselect-trigger:hover { border-color: var(--border-h); }
.cselect.open .cselect-trigger { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),.1); }
.cselect-flag { display: flex; align-items: center; flex-shrink: 0; }
.cselect-flag .fi { font-size: 1.2rem; border-radius: 2px; }
.cselect-text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cselect-price { font-size: .7rem; color: var(--text-l); white-space: nowrap; }
.cselect-arrow { flex-shrink: 0; color: var(--text-l); transition: transform .2s; }
.cselect.open .cselect-arrow { transform: rotate(180deg); }

.cselect-dropdown {
    display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    box-shadow: var(--shadow-lg); z-index: 50; overflow: hidden;
}
.cselect.open .cselect-dropdown { display: block; }

.cselect-search-wrap { padding: .5rem; border-bottom: 1px solid var(--border); }
.cselect-search {
    width: 100%; height: 34px; padding: 0 .625rem;
    border: 1px solid var(--border); border-radius: 5px;
    font-size: .8125rem; color: var(--text); background: var(--bg);
}
.cselect-search:focus { outline: none; border-color: var(--brand); }

.cselect-list { max-height: 260px; overflow-y: auto; padding: .25rem; }
.cselect-list::-webkit-scrollbar { width: 5px; }
.cselect-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.cselect-group { padding: .35rem .5rem .2rem; font-size: .65rem; font-weight: 650; color: var(--text-l); text-transform: uppercase; letter-spacing: .06em; }
.cselect-opt {
    display: flex; align-items: center; gap: .5rem;
    padding: .45rem .5rem; border-radius: 5px; cursor: pointer;
    font-size: .8125rem; color: var(--text-s); transition: background .1s;
}
.cselect-opt:hover { background: var(--bg); }
.cselect-opt.active { background: var(--brand-soft); color: var(--brand); font-weight: 600; }
.cselect-opt .fi { font-size: 1.15rem; border-radius: 2px; flex-shrink: 0; }
.cselect-opt-name { flex: 1; }
.cselect-opt-price { font-size: .7rem; color: var(--text-l); }
.cselect-opt.active .cselect-opt-price { color: var(--brand); opacity: .7; }

.config-cta { margin-top: .5rem; }
.config-cta .btn { height: 44px; font-size: .9rem; border-radius: 8px; }
.config-note { text-align: center; font-size: .675rem; color: var(--text-l); margin-top: .6rem; }

/* ── TRUST BAR ── */
.trust {
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
}
.trust-inner {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem;
}
.trust-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: .5rem; padding: 1rem .5rem;
    background: var(--bg); border-radius: 8px;
}
.trust-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--brand-soft); display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--brand); stroke-width: 2; }
.trust-item strong { font-size: .8125rem; font-weight: 700; color: var(--text); line-height: 1.3; }

/* ── PLAN COMPARISON ── */
.compare { padding: 4rem 0; }
.compare h2 { font-size: 1.375rem; font-weight: 750; text-align: center; margin-bottom: .5rem; }
.compare > .wrap > p { text-align: center; color: var(--text-m); font-size: .9rem; margin-bottom: 2.5rem; }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 820px; margin: 0 auto; }
.compare-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem; position: relative;
    transition: box-shadow .2s;
}
.compare-card:hover { box-shadow: var(--shadow-md); }
.compare-card.rec { border-color: var(--brand); }
.compare-card.rec::before {
    content: 'Recommended'; position: absolute; top: 0; right: 1.25rem;
    background: var(--brand); color: #fff; font-size: .625rem; font-weight: 700;
    padding: .3rem .7rem; border-radius: 0 0 6px 6px; text-transform: uppercase; letter-spacing: .04em;
}
.cc-type { font-size: .65rem; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; color: var(--text-l); margin-bottom: .35rem; }
.cc-name { font-size: 1.2rem; font-weight: 750; margin-bottom: .25rem; }
.cc-desc { font-size: .8rem; color: var(--text-m); margin-bottom: 1.25rem; line-height: 1.5; }

.cc-price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .15rem; }
.cc-price-val { font-size: 2.25rem; font-weight: 800; letter-spacing: -.03em; }
.cc-price-per { font-size: .8rem; color: var(--text-l); }
.cc-discount { font-size: .7rem; font-weight: 600; color: var(--brand); margin-bottom: 1.25rem; }

.cc-specs { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.cc-spec { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--text-s); }
.cc-spec svg { width: 15px; height: 15px; stroke: var(--brand); stroke-width: 2.5; fill: none; flex-shrink: 0; }
.cc-spec.highlight { font-weight: 600; color: var(--text); }

/* ── LOCATIONS ── */
.locations {
    padding: 4rem 0; background: var(--white);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.locations h2 { font-size: 1.375rem; font-weight: 750; margin-bottom: .5rem; }
.locations > .wrap > p { color: var(--text-m); font-size: .9rem; margin-bottom: 2rem; }

.loc-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .625rem;
}
.loc-card {
    display: flex; align-items: center; gap: .625rem;
    padding: .7rem .875rem; background: var(--bg); border: 1px solid transparent;
    border-radius: 6px; cursor: pointer; transition: all .12s;
}
.loc-card:hover { border-color: var(--border); background: var(--white); }
.loc-card.active { border-color: var(--brand); background: var(--brand-soft); }
.loc-flag { line-height: 1; flex-shrink: 0; }
.loc-flag .fi { font-size: 1.3rem; border-radius: 2px; }
.loc-info { flex: 1; min-width: 0; }
.loc-name { font-size: .8125rem; font-weight: 600; color: var(--text); }
.loc-price { font-size: .7rem; color: var(--text-l); margin-top: .05rem; }
.loc-carriers { font-size: .65rem; color: var(--text-l); margin-top: .1rem; }
.loc-card.active .loc-name { color: var(--brand); }
.loc-card.active .loc-price { color: var(--brand); opacity: .7; }

.loc-more {
    margin-top: 1rem; text-align: center;
}
.loc-more button {
    font-size: .8125rem; font-weight: 500; color: var(--brand); background: none;
    border: none; cursor: pointer; padding: .4rem .8rem;
}
.loc-more button:hover { text-decoration: underline; }

/* ── FEATURES ── */
.features { padding: 4rem 0; }
.features h2 { font-size: 1.375rem; font-weight: 750; text-align: center; margin-bottom: 2.5rem; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feat-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.feat-card h3 { font-size: .875rem; font-weight: 650; margin-bottom: .35rem; display: flex; align-items: center; gap: .5rem; }
.feat-card p { font-size: .8rem; color: var(--text-m); line-height: 1.55; }
.feat-icon { width: 22px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.feat-icon svg { width: 18px; height: 18px; stroke: var(--brand); stroke-width: 2; fill: none; }

/* ── HOW IT WORKS ── */
.steps {
    padding: 4rem 0; background: var(--white);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.steps h2 { font-size: 1.375rem; font-weight: 750; text-align: center; margin-bottom: 2.5rem; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { text-align: center; }
.step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--brand); color: #fff; font-weight: 750; font-size: .9rem;
    display: grid; place-items: center; margin: 0 auto .875rem;
}
.step h4 { font-size: .875rem; font-weight: 650; margin-bottom: .25rem; }
.step p { font-size: .78rem; color: var(--text-m); line-height: 1.5; }

/* ── FAQ ── */
.faq { padding: 4rem 0; }
.faq h2 { font-size: 1.375rem; font-weight: 750; margin-bottom: 2rem; }
.faq-wrap { max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem 0; cursor: pointer;
    font-size: .875rem; font-weight: 600; color: var(--text); user-select: none;
}
.faq-q:hover { color: var(--brand); }
.faq-chev { width: 16px; height: 16px; stroke: var(--text-l); stroke-width: 2; fill: none; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-chev { transform: rotate(180deg); stroke: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 250px; }
.faq-a-body { padding-bottom: 1rem; font-size: .8125rem; color: var(--text-m); line-height: 1.65; }

/* ── FOOTER ── */
.footer {
    background: var(--text); color: rgba(255,255,255,.5);
    padding: 3rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .logo { color: #fff; margin-bottom: .75rem; }
.footer-brand .logo-mark { background: rgba(255,255,255,.12); }
.footer-brand p { font-size: .78rem; line-height: 1.6; max-width: 240px; }
.footer-heading { font-size: .65rem; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); margin-bottom: .875rem; }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .8rem; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-network {
    padding-top: 1.5rem; margin-top: .5rem; border-top: 1px solid rgba(255,255,255,.06);
}
.footer-network-links {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.footer-network-links a {
    font-size: .75rem; color: rgba(255,255,255,.4); transition: color .15s;
}
.footer-network-links a:hover { color: rgba(255,255,255,.7); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
    font-size: .7rem; margin-top: 1rem;
}
.footer-payments { display: flex; gap: .5rem; }
.footer-payments span {
    padding: .2rem .5rem; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08); border-radius: 3px;
    font-size: .65rem; font-weight: 600;
}

/* ── RESPONSIVE ── */
/* ── Checkout Modal ── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-box {
    background: var(--white); border-radius: 12px; padding: 2rem;
    max-width: 440px; width: 100%; position: relative; box-shadow: var(--shadow-lg);
}
.modal-close {
    position: absolute; top: .75rem; right: 1rem; background: none; border: none;
    font-size: 1.5rem; color: var(--text-l); cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-box h2 { font-size: 1.15rem; font-weight: 750; margin-bottom: .35rem; }
.modal-summary { font-size: .8125rem; color: var(--text-m); margin-bottom: 1.5rem; line-height: 1.5; }

.cfg-input {
    width: 100%; height: 42px; padding: 0 .875rem;
    background: var(--white); border: 1px solid var(--border); border-radius: 6px;
    font-size: .875rem; color: var(--text); transition: border-color .15s;
}
.cfg-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),.1); }
.cfg-hint { display: block; font-size: .7rem; color: var(--text-l); margin-top: .35rem; }

.crypto-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem; }
.crypto-btn {
    padding: .6rem .4rem; text-align: center; border: 1px solid var(--border);
    border-radius: 6px; background: var(--white); cursor: pointer; transition: all .12s;
}
.crypto-btn:hover { border-color: var(--border-h); }
.crypto-btn.active { border-color: var(--brand); background: var(--brand-soft); }
.crypto-icon { width: 24px; height: 24px; margin: 0 auto .3rem; display: block; }
.crypto-btn strong { display: block; font-size: .85rem; font-weight: 700; color: var(--text); }
.crypto-btn span { font-size: .65rem; color: var(--text-l); }
.crypto-btn.active strong { color: var(--brand); }

.modal-error { margin-top: .75rem; font-size: .8rem; color: #dc2626; text-align: center; }

.login-divider {
    display: flex; align-items: center; gap: .75rem;
    margin: 1.5rem 0; color: var(--text-l); font-size: .75rem;
}
.login-divider::before, .login-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.login-signup-notice { text-align: center; }
.login-signup-notice p {
    font-size: .8rem; color: var(--text-m); line-height: 1.55; margin-bottom: 1rem;
}

/* ── Pay Page — 2-column layout ── */
.pay-page { padding: 3rem 0 4rem; }
.pay-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start;
}

/* Left: summary */
.pay-summary-col h1 { font-size: 1.25rem; font-weight: 750; margin-bottom: 1.25rem; }

.pay-product {
    background: var(--white); border: 1px solid var(--border); border-radius: 10px;
    overflow: hidden; margin-bottom: 1.25rem;
}
.pay-product-head {
    display: flex; align-items: center; gap: .75rem;
    padding: 1.125rem 1.25rem; border-bottom: 1px solid var(--border); background: var(--bg);
}
.pay-product-title { font-size: .9rem; font-weight: 700; }
.pay-product-sub { font-size: .75rem; color: var(--text-m); margin-top: .1rem; }

.pay-details { padding: .5rem 0; }
.pay-detail {
    display: flex; justify-content: space-between; align-items: center;
    padding: .5rem 1.25rem; font-size: .8125rem;
}
.pay-detail span { color: var(--text-m); }
.pay-detail strong { color: var(--text); font-weight: 600; }
.pay-detail:not(:last-child) { border-bottom: 1px solid var(--border); }

.pay-total-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 1.25rem; background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; margin-bottom: 1rem;
}
.pay-total-row span { font-size: .875rem; font-weight: 600; color: var(--text-m); }
.pay-total-row strong { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }

.pay-order-ref {
    font-size: .75rem; color: var(--text-l);
}
.pay-order-ref code {
    font-family: var(--mono, monospace); background: var(--bg);
    padding: .15rem .4rem; border-radius: 4px; font-size: .7rem;
}

/* Right: crypto payment */
.pay-crypto-col {}
.pay-crypto-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 10px;
    overflow: hidden;
}
.pay-crypto-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
    font-size: .875rem; font-weight: 650;
}
.pay-timer-inline {
    display: flex; align-items: center; gap: .3rem;
    font-size: .78rem; color: var(--text-m);
}
.pay-timer-inline strong { color: var(--text); font-variant-numeric: tabular-nums; }

.pay-qr { padding: 1.25rem; text-align: center; border-bottom: 1px solid var(--border); }
.pay-qr img { margin: 0 auto; border-radius: 6px; }

.pay-field { padding: .875rem 1.25rem; border-bottom: 1px solid var(--border); }
.pay-field label {
    display: block; font-size: .65rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .06em; color: var(--text-l); margin-bottom: .4rem;
}
.pay-copybox {
    display: flex; align-items: center; gap: .5rem;
    background: var(--bg); border: 1px solid var(--border); border-radius: 6px;
    padding: .5rem .625rem;
}
.pay-copybox code {
    flex: 1; font-family: var(--mono, monospace); font-size: .78rem;
    color: var(--text); word-break: break-all; line-height: 1.4;
}
.pay-copy-btn {
    flex-shrink: 0; background: var(--white); border: 1px solid var(--border);
    border-radius: 5px; padding: .3rem .6rem; font-size: .7rem; font-weight: 600;
    color: var(--text-m); cursor: pointer; transition: all .12s;
}
.pay-copy-btn:hover { border-color: var(--brand); color: var(--brand); }

.pay-status {
    padding: 1rem 1.25rem; text-align: center;
    font-size: .8125rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.pay-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #f59e0b; animation: livepulse 2s infinite; }
.pay-status-dot.paid { background: #059669; }
.pay-status-dot.expired { background: #dc2626; animation: none; }
.pay-status a { color: var(--brand); text-decoration: underline; }

/* Order page */
.order-page { padding: 3rem 0 4rem; }
.order-card { max-width: 640px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }

.order-success, .order-pending, .order-expired { text-align: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.order-success svg, .order-pending svg, .order-expired svg { margin: 0 auto .75rem; }
.order-success h1, .order-pending h1, .order-expired h1 { font-size: 1.25rem; font-weight: 750; margin-bottom: .35rem; }
.order-success p, .order-pending p, .order-expired p { font-size: .875rem; color: var(--text-m); margin-bottom: 1rem; }

.order-section { margin-bottom: 2rem; }
.order-section h2 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }

.order-grid { display: flex; flex-direction: column; gap: .35rem; }
.order-row { display: flex; justify-content: space-between; align-items: center; padding: .4rem 0; font-size: .8125rem; }
.order-row span { color: var(--text-m); }
.order-row strong { color: var(--text); display: flex; align-items: center; gap: .35rem; }
.order-row .fi { font-size: 1rem; }

.cred-box { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin-bottom: 1rem; }
.cred-row { display: flex; justify-content: space-between; align-items: center; padding: .4rem 0; font-size: .8125rem; border-bottom: 1px solid var(--border); }
.cred-row:last-of-type { border-bottom: none; }
.cred-row span { color: var(--text-m); font-weight: 500; }
.cred-row code { font-family: var(--mono, monospace); font-size: .8rem; color: var(--text); background: var(--white); padding: .2rem .5rem; border-radius: 4px; }
.cred-note { font-size: .75rem; color: var(--text-l); margin-top: .5rem; line-height: 1.5; }

/* ── Legal Pages ── */
.legal { padding: 3rem 0 4rem; }
.legal .wrap { max-width: var(--none, 1180px); }
.legal h1 { font-size: 1.75rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .5rem; }
.legal-updated { font-size: .8rem; color: var(--text-l); margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.legal h2 { font-size: 1.1rem; font-weight: 700; margin: 2.25rem 0 .75rem; color: var(--text); }
.legal h3 { font-size: .95rem; font-weight: 650; margin: 1.5rem 0 .5rem; color: var(--text-s); }
.legal p { font-size: .875rem; color: var(--text-s); line-height: 1.7; margin-bottom: .75rem; }
.legal ul { margin: .5rem 0 1rem 1.25rem; list-style: disc; }
.legal ul li { font-size: .875rem; color: var(--text-s); line-height: 1.7; margin-bottom: .35rem; }
.legal a { color: var(--brand); text-decoration: underline; }
.legal a:hover { color: var(--brand-h); }
.legal strong { color: var(--text); }

.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .8125rem; }
.legal-table th {
    text-align: left; padding: .6rem .75rem; font-size: .7rem; font-weight: 650;
    text-transform: uppercase; letter-spacing: .05em; color: var(--text-l);
    border-bottom: 2px solid var(--border); background: var(--bg);
}
.legal-table td { padding: .6rem .75rem; border-bottom: 1px solid var(--border); color: var(--text-s); vertical-align: top; }

/* ── Country Pages ── */
.breadcrumb {
    padding: .65rem 0; background: var(--white); border-bottom: 1px solid var(--border);
    font-size: .75rem; color: var(--text-l);
}
.breadcrumb a { color: var(--text-m); transition: color .15s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { margin: 0 .35rem; }
.breadcrumb strong { color: var(--text-s); font-weight: 600; }

.country-hero {
    padding: 2.5rem 0 2rem; background: var(--white); border-bottom: 1px solid var(--border);
}
.country-hero-page { padding: 2.5rem 0 3.5rem; }
.country-hero-page .breadcrumb + & { padding-top: 2rem; }
.ch-top { display: flex; align-items: center; gap: .75rem; }
.ch-flag { font-size: 2rem; flex-shrink: 0; border-radius: 4px; }
.ch-top h1 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 800; letter-spacing: -.02em; margin: 0; }
.ch-top p { font-size: .9rem; color: var(--text-m); line-height: 1.6; max-width: 600px; }

.country-carriers { padding: 3rem 0; }
.country-carriers h2 { font-size: 1.25rem; font-weight: 750; margin-bottom: 1.5rem; }
.carriers-table-wrap { overflow-x: auto; margin-bottom: 1rem; }
.carriers-table { width: 100%; border-collapse: collapse; font-size: .8125rem; }
.carriers-table th {
    text-align: left; padding: .625rem .75rem; font-size: .7rem; font-weight: 650;
    text-transform: uppercase; letter-spacing: .06em; color: var(--text-l);
    border-bottom: 2px solid var(--border); white-space: nowrap;
}
.carriers-table td {
    padding: .75rem; border-bottom: 1px solid var(--border); color: var(--text-s); vertical-align: middle;
}
.carriers-table tbody tr:hover { background: var(--bg); }
.ct-carrier { display: flex; align-items: center; gap: .5rem; font-weight: 500; }
.ct-icon { width: 22px; height: 22px; border-radius: 4px; object-fit: contain; flex-shrink: 0; }
.ct-speed { font-size: .75rem; color: var(--text-l); white-space: nowrap; }
.ct-traffic { font-size: .75rem; color: var(--text-m); }
.ct-price { font-weight: 700; color: var(--text); white-space: nowrap; }
.ct-price small { font-weight: 450; color: var(--text-l); }
.ct-rotation { font-size: .75rem; color: var(--text-m); white-space: nowrap; }
.btn-sm { padding: .35rem .75rem; font-size: .75rem; }
.table-note { font-size: .75rem; color: var(--text-l); line-height: 1.5; }

.other-locations { padding: 3rem 0; background: var(--white); border-top: 1px solid var(--border); }
.other-locations h2 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; }
.other-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.other-card {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem .875rem; background: var(--bg); border-radius: 6px;
    font-size: .8125rem; font-weight: 500; color: var(--text-s); transition: all .15s;
}
.other-card:hover { background: var(--brand-soft); color: var(--brand); }
.other-card .fi { font-size: 1.1rem; }

.all-locations { padding: 2.5rem 0; border-top: 1px solid var(--border); }
.all-locations h2 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.all-loc-grid { display: flex; flex-wrap: wrap; gap: .4rem; }
.all-loc-link {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .35rem .65rem; font-size: .75rem; font-weight: 500; color: var(--text-m);
    border-radius: 4px; transition: all .12s;
}
.all-loc-link:hover { background: var(--bg); color: var(--brand); }
.all-loc-link.current { background: var(--brand-soft); color: var(--brand); font-weight: 600; }
.all-loc-link .fi { font-size: .9rem; }

/* ── Tablet ── */
@media (max-width: 960px) {
    .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
    .config { max-width: 100%; }
    .compare-grid { grid-template-columns: 1fr; max-width: 440px; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* ── Small tablet / large phone ── */
@media (max-width: 768px) {
    .hero { padding: 1.75rem 0 2rem; }
    .hero-text h1 { font-size: 1.6rem; }
    .hero-text > p { font-size: .875rem; }
    .hero-pills { gap: .35rem; }
    .hero-features { gap: .5rem; }
    .hero-feat { font-size: .8rem; }

    .trust-inner { grid-template-columns: repeat(3, 1fr); }
    .trust-item { padding: .75rem .4rem; }
    .trust-item strong { font-size: .75rem; }

    .feat-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .loc-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    /* Carriers table: force horizontal scroll with hint */
    .carriers-table-wrap { margin: 0 -1.25rem; padding: 0 1.25rem; }
    .carriers-table { min-width: 640px; }

    /* Dropdowns: reduce height */
    .cselect-list, .crselect-list { max-height: 200px; }

    /* Payment page */
    .pay-grid { grid-template-columns: 1fr; }
    .pay-qr img { width: 150px; height: 150px; }

    /* Order page */
    .order-card { max-width: 100%; padding: 1.5rem; }
    .cred-row { flex-direction: column; align-items: flex-start; gap: .25rem; }
    .cred-row code { word-break: break-all; }

    /* Modal */
    .modal-overlay { padding: .75rem; }
    .modal-box { padding: 1.5rem; max-width: 100%; }

    /* Other locations */
    .other-grid { gap: .4rem; }
    .other-card { padding: .4rem .65rem; font-size: .78rem; }
    .all-loc-grid { gap: .3rem; }
    .all-loc-link { padding: .3rem .5rem; font-size: .7rem; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .wrap { padding: 0 1rem; }

    /* Nav: hamburger menu on mobile */
    .nav-center, .nav-right { display: none; }
    .nav-burger { display: block; }
    .nav { height: 50px; }
    .logo-img { height: 26px; }

    .hero { padding: 1.5rem 0 1.75rem; }
    .hero-text h1 { font-size: 1.35rem; line-height: 1.2; }
    .hero-text > p { font-size: .8125rem; }
    .hero-features { gap: .4rem; }
    .hero-feat { font-size: .78rem; }
    .hero-feat svg { width: 14px; height: 14px; }
    .hero-pills { gap: .3rem; }
    .hero-pill { font-size: .72rem; padding: .3rem .6rem; }

    /* Config */
    .config-head { padding: .875rem 1.125rem; font-size: .8125rem; }
    .config-body { padding: 1.125rem; }
    .cfg-label { font-size: .7rem; }
    .cfg-field { margin-bottom: 1rem; }

    /* Bigger touch targets */
    .btn { min-height: 44px; padding: .6rem 1rem; }
    .btn-sm { min-height: 38px; }
    .dur-pill { padding: .6rem .4rem; font-size: .78rem; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .dur-row { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
    .plan-btn { padding: .65rem .5rem; }
    .cselect-opt, .crselect-opt { padding: .6rem .5rem; min-height: 44px; }

    /* Grids */
    .feat-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; gap: 1rem; }
    .loc-grid { grid-template-columns: 1fr; }
    .compare-grid { max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }

    /* Trust bar */
    .trust { padding: .75rem 0; }
    .trust-inner { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
    .trust-item { padding: .6rem .35rem; gap: .35rem; }
    .trust-icon { width: 30px; height: 30px; border-radius: 6px; }
    .trust-icon svg { width: 15px; height: 15px; }
    .trust-item strong { font-size: .7rem; }

    /* Features */
    .features h2, .steps h2, .faq h2, .locations h2, .country-carriers h2 { font-size: 1.15rem; }

    /* Table on mobile */
    .carriers-table-wrap { margin: 0 -1rem; padding: 0 1rem; }
    .carriers-table { min-width: 580px; }
    .carriers-table th { font-size: .6rem; padding: .5rem; }
    .carriers-table td { padding: .5rem; font-size: .75rem; }

    /* Section spacing */
    .features, .steps, .faq, .locations, .country-carriers, .other-locations, .all-locations { padding: 2.5rem 0; }

    /* Country hero */
    .ch-top { gap: .6rem; }
    .ch-flag { font-size: 1.6rem; }
    .ch-top h1 { font-size: 1.25rem; }

    /* Pay page */
    .pay-page { padding: 1.5rem 0 2.5rem; }
    .pay-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .pay-summary-col h1 { font-size: 1.1rem; }
    .pay-qr img { width: 140px; height: 140px; }
    .pay-copybox code { font-size: .7rem; }
    .pay-detail { padding: .4rem 1rem; font-size: .78rem; }

    /* Order page */
    .order-page { padding: 1.5rem 0 2.5rem; }
    .order-card { padding: 1.25rem; }
    .order-success h1, .order-pending h1, .order-expired h1 { font-size: 1.1rem; }
    .order-row { flex-direction: column; align-items: flex-start; gap: .15rem; }

    /* Crypto grid in modal */
    .crypto-grid { grid-template-columns: repeat(2, 1fr); }
    .crypto-icon { width: 20px; height: 20px; }

    /* Footer */
    .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
    .footer-payments { justify-content: center; }

    /* Legal pages */
    .legal h1 { font-size: 1.35rem; }
    .legal h2 { font-size: 1rem; }

    /* Breadcrumb */
    .breadcrumb { font-size: .7rem; }
}

/* ── Extra small phones ── */
@media (max-width: 380px) {
    .wrap { padding: 0 .75rem; }
    .hero-text h1 { font-size: 1.2rem; }
    .hero-pills { gap: .25rem; }
    .hero-pill { font-size: .68rem; padding: .25rem .5rem; }
    .plan-toggle { grid-template-columns: 1fr; }
    .plan-btn + .plan-btn { border-left: none; border-top: 1px solid var(--border); }
    .crypto-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-box { padding: 1.25rem; }
    .dur-row { grid-template-columns: 1fr 1fr; }
    .pay-copybox code { font-size: .65rem; }
    .config-head span:first-child { font-size: .78rem; }
}

/* ── RTL Support (Arabic) ── */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .nav-inner { direction: rtl; }
[dir="rtl"] .hero-layout { direction: rtl; }
[dir="rtl"] .hero-feat { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .trust-inner { direction: rtl; }
[dir="rtl"] .feat-card h3 { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .loc-card { flex-direction: row-reverse; }
[dir="rtl"] .loc-info { text-align: right; }
[dir="rtl"] .faq-q { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .cselect-dropdown { direction: rtl; }
[dir="rtl"] .crselect-dropdown { direction: rtl; }
[dir="rtl"] .pay-detail { flex-direction: row-reverse; }
[dir="rtl"] .order-row { flex-direction: row-reverse; }
[dir="rtl"] .cred-row { flex-direction: row-reverse; }
[dir="rtl"] .breadcrumb { direction: rtl; }
[dir="rtl"] .step { text-align: center; }
[dir="rtl"] .other-card { flex-direction: row-reverse; }
