@font-face {
    font-family: "Inter Local";
    src: url("../fonts/inter-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "JetBrains Mono Local";
    src: url("../fonts/jetbrains-mono-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 800;
    font-display: swap;
}

:root {
    color-scheme: dark;
    --sidebar-width: 264px;
    --header-height: 80px;
    --mobile-header-height: 64px;
    --container: 1240px;
    --page-bg: #080b13;
    --page-bg-soft: #0d121d;
    --sidebar-bg: rgba(11, 15, 24, 0.96);
    --header-bg: rgba(11, 15, 24, 0.96);
    --footer-bg: #070a11;
    --surface: #1a2232;
    --surface-strong: #202a3c;
    --surface-muted: #1c2434;
    --card-bg: #151b29;
    --card-bg-alt: #18202f;
    --text: #f4f6ff;
    --text-soft: #cbd2e2;
    --muted: #9aa5ba;
    --muted-strong: #b4bdcd;
    --border: #2c3549;
    --divider: #354055;
    --control-border: #596984;
    --border-strong: rgba(129, 140, 248, 0.28);
    --brand: #7277f8;
    --brand-strong: #5b5fe8;
    --brand-soft: #a6adff;
    --action-start: #5c61e4;
    --action-end: #7148cf;
    --violet: #9b6ff2;
    --pink: #dc72cf;
    --green: #49d6a1;
    --amber: #f3b85d;
    --blue: #44a7ff;
    --body-brand-wash: rgba(91, 95, 232, 0.08);
    --body-violet-wash: rgba(155, 111, 242, 0.06);
    --featured-wash: rgba(91, 95, 232, 0.16);
    --cta-brand-wash: rgba(91, 95, 232, 0.17);
    --cta-violet-wash: rgba(155, 111, 242, 0.1);
    --focus-ring: #8f98ff;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 10px 36px rgba(0, 0, 0, 0.18);
    --focus: 0 0 0 3px var(--focus-ring);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;
}

html[data-theme="light"] {
    color-scheme: light;
    --page-bg: #dce3ec;
    --page-bg-soft: #d5dde7;
    --sidebar-bg: rgba(229, 234, 240, 0.97);
    --header-bg: rgba(229, 234, 240, 0.97);
    --footer-bg: #cfd8e3;
    --surface: #e1e7ee;
    --surface-strong: #d7dfe8;
    --surface-muted: #dde4ec;
    --card-bg: #edf1f5;
    --card-bg-alt: #e5eaf0;
    --text: #172033;
    --text-soft: #39445a;
    --muted: #59657a;
    --muted-strong: #485469;
    --border: #b4bfcd;
    --divider: #aab6c5;
    --control-border: #748296;
    --border-strong: rgba(91, 95, 232, 0.32);
    --brand: #595de0;
    --brand-strong: #4d50cf;
    --brand-soft: #4b4fbe;
    --green: #0e704f;
    --amber: #925306;
    --blue: #1767a2;
    --body-brand-wash: rgba(91, 95, 232, 0.045);
    --body-violet-wash: rgba(155, 111, 242, 0.035);
    --featured-wash: rgba(91, 95, 232, 0.08);
    --cta-brand-wash: rgba(91, 95, 232, 0.09);
    --cta-violet-wash: rgba(155, 111, 242, 0.05);
    --focus-ring: #565bdc;
    --shadow: 0 18px 55px rgba(35, 43, 61, 0.12);
    --shadow-soft: 0 8px 28px rgba(35, 43, 61, 0.095);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-height) + 18px); }
body {
    margin: 0;
    min-width: 280px;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 6%, var(--body-brand-wash), transparent 31rem),
        radial-gradient(circle at 85% 78%, var(--body-violet-wash), transparent 36rem),
        var(--page-bg);
    font-family: "Inter Local", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    transition: color .25s ease, background-color .25s ease;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .23;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
html[data-theme="light"] body::before { opacity: .12; background-image: linear-gradient(rgba(39,48,70,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(39,48,70,.08) 1px, transparent 1px); }
body.menu-open, body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
p { color: var(--muted); }
code { font-family: "JetBrains Mono Local", ui-monospace, monospace; font-size: .88em; }
[hidden] { display: none !important; }

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 200; padding: .7rem 1rem; border-radius: 10px; color: #fff; background: var(--brand-strong); }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 0; box-shadow: var(--focus); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 820px; }
.section { position: relative; padding: clamp(64px, 7vw, 96px) 0; }
.section--compact { padding-top: 32px; padding-bottom: clamp(64px, 7vw, 92px); }
.section--tinted {
    border-block: 1px solid var(--border);
    background: var(--page-bg-soft);
}
.section-heading { max-width: 720px; margin: 0 auto clamp(34px, 4.4vw, 54px); text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading h2, .split-section__intro h2, .cta-panel h2, .contact-options h2, .contact-form h2, .support-contact h2 { margin: 12px 0 14px; font-size: clamp(2rem, 4.2vw, 3.55rem); }
.section-heading p { max-width: 650px; margin: 0 auto; font-size: 1.0625rem; line-height: 1.72; }
.section-heading--left p { margin-left: 0; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 7px 12px;
    border: 1px solid rgba(129, 140, 248, .22);
    border-radius: 99px;
    color: var(--brand-soft);
    background: rgba(99, 102, 241, .09);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.gradient-text { color: transparent; background: linear-gradient(100deg, var(--brand-soft), #a579ee 50%, #e487d3); background-clip: text; -webkit-background-clip: text; }

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 11px;
    background: linear-gradient(145deg, #8589ff, #5659dd);
    box-shadow: 0 9px 24px rgba(91, 95, 232, .3);
}
.brand-mark i { color: #fff; font-size: .95rem; }
.brand-name { overflow: hidden; color: var(--text); font-size: 1.02rem; font-weight: 800; letter-spacing: -.03em; text-overflow: ellipsis; white-space: nowrap; }
.brand-name strong { color: var(--brand-soft); }

.mobile-header { display: none; }
.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    width: var(--sidebar-width);
    border-right: 1px solid var(--border);
    background: var(--sidebar-bg);
    box-shadow: 12px 0 50px rgba(0, 0, 0, .15);
    backdrop-filter: blur(22px);
}
.sidebar__brand { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-height); padding: 0 22px; border-bottom: 1px solid var(--border); }
.sidebar-close { display: none; border: 0; color: var(--muted); background: transparent; font-size: 1.8rem; cursor: pointer; }
.sidebar__nav { flex: 1; overflow-y: auto; padding: 22px 15px; }
.nav-section-label { display: block; margin: 0 13px 12px; color: var(--muted); font-size: .69rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-link { display: flex; align-items: center; gap: 13px; min-height: 52px; margin-bottom: 5px; padding: 9px 12px; border: 1px solid transparent; border-radius: 13px; color: var(--muted-strong); font-size: .96rem; font-weight: 700; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.nav-link:hover { color: var(--text); background: var(--surface); transform: translateX(2px); }
.nav-link.is-active { color: var(--text); border-color: var(--border); background: linear-gradient(100deg, rgba(99, 102, 241, .15), var(--surface)); box-shadow: inset 3px 0 0 var(--brand); }
.nav-link__icon { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 auto; border-radius: 10px; color: var(--brand-soft); background: rgba(99, 102, 241, .1); }
.nav-link__icon i { display: block; font-size: .9rem; line-height: 1; }
.nav-link__icon .fa-headset { transform: translateY(-1px); }
.sidebar__bottom { display: grid; gap: 9px; padding: 18px 16px; border-top: 2px solid var(--divider); box-shadow: 0 -10px 24px rgba(0, 0, 0, .08); }

.desktop-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(12px, 1.7vw, 28px);
    height: var(--header-height);
    padding: 0 clamp(18px, 2.4vw, 36px);
    border-bottom: 1px solid var(--border);
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(150%);
}
.desktop-primary-nav { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 5px; }
.desktop-nav-link { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 9px 12px; border: 1px solid transparent; border-radius: 11px; color: var(--muted-strong); font-size: .88rem; font-weight: 750; white-space: nowrap; }
.desktop-nav-link i { color: var(--brand-soft); font-size: .95rem; }
.desktop-nav-link:hover { color: var(--text); background: var(--surface); }
.desktop-nav-link.is-active { color: var(--text); border-color: var(--border); background: rgba(99, 102, 241, .1); }
.desktop-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 7px; white-space: nowrap; }
.toolbar-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; color: var(--muted-strong); font-size: .88rem; font-weight: 700; }
.toolbar-link i { color: var(--brand-soft); font-size: .95rem; }
.toolbar-link:hover { color: var(--text); }
.theme-button, .icon-button { border: 1px solid var(--control-border); color: var(--muted-strong); background: var(--surface); cursor: pointer; }
.theme-button { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 12px; border-radius: 11px; font-size: .86rem; font-weight: 750; }
.theme-button:hover, .icon-button:hover { color: var(--text); border-color: var(--border-strong); }
.sidebar-overlay { display: none; }

.site-main { min-height: 100vh; margin-left: 0; padding-top: var(--header-height); }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button > i { flex: 0 0 auto; font-size: .9em; }
.button--primary { color: #fff !important; background: linear-gradient(135deg, var(--action-start), var(--action-end)); box-shadow: 0 10px 28px rgba(91, 95, 232, .24); }
.button--primary:hover { box-shadow: 0 14px 34px rgba(91, 95, 232, .35); }
.button--secondary { color: var(--text); border-color: var(--control-border); background: var(--surface); }
.button--secondary:hover, .button--quiet:hover { border-color: var(--border-strong); background: rgba(99,102,241,.09); }
.button--quiet { color: var(--text-soft); border-color: var(--control-border); background: transparent; }
.button--small { min-height: 40px; padding: 8px 14px; border-radius: 10px; font-size: .875rem; }
.button--full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.button-row--center { justify-content: center; }

.page-hero { position: relative; display: flex; align-items: center; min-height: 480px; padding: clamp(36px, 4vw, 52px) 0; overflow: hidden; }
.page-hero--compact { min-height: 370px; padding: clamp(42px, 4.5vw, 58px) 0; }
.page-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); align-items: center; gap: clamp(28px, 3.5vw, 54px); }
.page-hero__grid--single { grid-template-columns: minmax(0, 860px); }
.page-hero__copy { max-width: 700px; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 12px; border: 1px solid rgba(129, 140, 248, .23); border-radius: 99px; color: var(--brand-soft); background: rgba(99,102,241,.09); font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.status-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(73,214,161,.1); }
.page-hero h1 { max-width: 700px; margin: 20px 0 17px; font-size: clamp(2.9rem, 4.05vw, 4.25rem); font-weight: 850; letter-spacing: -.02em; }
.page-hero--compact h1 { font-size: clamp(2.6rem, 3.65vw, 3.8rem); }
.page-hero__copy > p { max-width: 610px; margin: 0; color: var(--muted-strong); font-size: clamp(.98rem, 1.15vw, 1.08rem); line-height: 1.7; }
.hero-price { display: inline-flex; align-items: baseline; gap: 5px; margin-top: 24px; padding: 8px 13px; border: 1px solid var(--control-border); border-radius: 12px; color: var(--text-soft); background: var(--surface-muted); box-shadow: var(--shadow-soft); font-size: .88rem; }
.hero-price i { align-self: center; margin-right: 3px; color: var(--brand-strong); font-size: .86rem; }
.hero-price strong { color: var(--brand-strong); font-size: 1.05rem; letter-spacing: -.02em; }
.hero-price + .button-row { margin-top: 24px; }
.page-hero__visual { position: relative; display: grid; place-items: center; min-height: 310px; isolation: isolate; }
.page-hero__visual::before { content: ""; position: absolute; width: min(90%, 390px); aspect-ratio: 1; z-index: -2; border: 1px solid rgba(129,140,248,.15); border-radius: 38% 62% 58% 42% / 46% 40% 60% 54%; background: radial-gradient(circle at 45% 42%, rgba(99,102,241,.2), rgba(155,111,242,.08) 50%, transparent 72%); transform: rotate(-8deg); }
.page-hero__visual img { position: relative; z-index: 2; width: min(100%, 400px); max-height: 360px; object-fit: contain; filter: drop-shadow(0 24px 38px rgba(0,0,0,.24)); animation: float 7s ease-in-out infinite; }
body[data-page="home"] .page-hero__visual img { width: min(100%, 430px); max-height: 400px; object-position: center bottom; }
body[data-page="vps"] .page-hero__visual img { width: min(100%, 440px); max-height: 400px; object-position: center bottom; }
body[data-page="rdp"] .page-hero__visual img { width: min(100%, 390px); max-height: 350px; }
body[data-page="features"] .page-hero__visual img,
body[data-page="faq"] .page-hero__visual img { width: min(100%, 390px); max-height: 360px; }
body[data-page="about"] .page-hero__visual img { width: min(100%, 540px); max-height: 380px; }
body[data-page="contact"] .page-hero__visual img { width: min(100%, 430px); max-height: 370px; object-position: center bottom; }
body[data-page="support"] .page-hero__visual img { width: min(100%, 390px); max-height: 360px; }
body[data-page="terms"] .page-hero__visual img,
body[data-page="privacy"] .page-hero__visual img,
body[data-page="refund-policy"] .page-hero__visual img { width: min(100%, 520px); max-height: 390px; object-position: center bottom; }
.visual-ring { position: absolute; z-index: -1; border: 1px solid rgba(129,140,248,.13); border-radius: 50%; }
.visual-ring--outer { width: 94%; aspect-ratio: 1; }
.visual-ring--inner { width: 67%; aspect-ratio: 1; border-style: dashed; animation: spin 30s linear infinite; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .13; pointer-events: none; }
.hero-glow--left { top: 8%; left: -12%; width: 420px; height: 420px; background: var(--brand); }
.hero-glow--right { right: -12%; bottom: 0; width: 360px; height: 360px; background: var(--violet); }

.trust-strip { position: relative; z-index: 3; margin-top: -30px; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(6, 1fr); overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-bg); box-shadow: var(--shadow-soft); }
.trust-strip__grid div { display: flex; align-items: center; gap: 11px; min-height: 72px; padding: 14px 18px; border-right: 1px solid var(--border); }
.trust-strip__grid div:last-child { border-right: 0; }
.trust-strip__grid i { flex: 0 0 auto; color: var(--brand-soft); font-size: 1rem; }
.trust-strip__grid strong { font-size: .9rem; }

.billing-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 11px; margin: 0 auto 32px; }
.billing-label { color: var(--muted); font-size: .95rem; font-weight: 800; }
.billing-label.is-active { color: var(--text); }
.billing-switch { position: relative; width: 50px; height: 28px; padding: 0; border: 1px solid var(--control-border); border-radius: 99px; background: var(--surface-strong); cursor: pointer; }
.billing-knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.25); transition: transform .25s cubic-bezier(.2,.75,.25,1.2), background .2s ease; }
.billing-switch[aria-checked="true"] { border-color: transparent; background: linear-gradient(135deg, var(--brand), var(--violet)); }
.billing-switch[aria-checked="true"] .billing-knob { background: #fff; transform: translateX(22px); }
.saving-pill { padding: 4px 8px; border-radius: 99px; color: var(--green); background: rgba(73,214,161,.1); font-size: .68rem; font-weight: 850; }
.billing-row small { flex-basis: 100%; color: var(--muted); font-size: .875rem; text-align: center; }
.service-tabs { display: grid; grid-template-columns: repeat(2, 1fr); width: min(100%, 470px); margin: -10px auto 24px; padding: 5px; border: 1px solid var(--control-border); border-radius: 14px; background: var(--surface); }
.service-tabs button { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 9px 14px; border: 1px solid transparent; border-radius: 10px; color: var(--muted); background: transparent; font-size: .95rem; font-weight: 800; cursor: pointer; }
.service-tabs button i { font-size: .9rem; }
.service-tabs button[aria-selected="true"] { color: var(--text); border-color: var(--control-border); background: var(--card-bg); box-shadow: var(--shadow-soft); }

.plan-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: stretch; gap: 32px; width: 100%; max-width: 1240px; margin-inline: auto; padding-top: 13px; }
.plan-grid > .plan-card { grid-column: span 2; }
.plan-grid--rdp:not(.plan-grid--preview) > .plan-card:nth-child(4) { grid-column: 2 / span 2; }
.plan-grid--rdp:not(.plan-grid--preview) > .plan-card:nth-child(5) { grid-column: 4 / span 2; }
.plan-card { position: relative; display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(155deg, var(--card-bg-alt), var(--card-bg)); box-shadow: var(--shadow-soft); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.plan-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); transform: translateY(-5px); }
.plan-card--featured { border-color: rgba(124, 95, 242, .82); background: linear-gradient(155deg, var(--featured-wash), var(--card-bg) 46%); box-shadow: 0 18px 50px rgba(91,95,232,.18); }
.popular-pill { position: absolute; top: 0; left: 50%; z-index: 3; padding: 7px 17px; border-radius: 99px; color: #fff; background: linear-gradient(135deg, var(--action-start), var(--action-end)); box-shadow: 0 8px 20px rgba(91,95,232,.3); font-size: .72rem; font-weight: 850; line-height: 1; white-space: nowrap; transform: translate(-50%, -50%); }
.plan-card__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 92px; padding: 22px; border-bottom: 1px solid var(--border); }
.plan-card__identity { display: flex; min-width: 0; align-items: center; gap: 13px; }
.plan-card__icon { display: grid; place-items: center; width: 45px; height: 45px; flex: 0 0 auto; border: 1px solid rgba(129,140,248,.2); border-radius: 13px; color: #fff; background: linear-gradient(145deg, #8589ff, #5c5fe1); box-shadow: 0 9px 22px rgba(91,95,232,.22); }
.plan-card__icon i { font-size: 1.05rem; }
.plan-card h3 { margin: 0; font-size: 1.22rem; letter-spacing: -.035em; }
.plan-description { min-height: 77px; margin: 0; padding: 19px 22px 0; font-size: .96rem; line-height: 1.6; }
.plan-price { display: flex; flex: 0 0 auto; align-items: baseline; justify-content: flex-end; gap: 2px; white-space: nowrap; }
.plan-price .currency { align-self: flex-start; margin-top: 4px; color: var(--muted); font-size: .82rem; }
.plan-price strong { color: var(--text); font: 820 clamp(1.72rem, 2.2vw, 2.15rem)/1 "JetBrains Mono Local", monospace; letter-spacing: -.075em; }
.plan-price > span:last-child { color: var(--muted); font-size: .78rem; }
.price-caption { min-height: 19px; margin: 5px 0 15px; padding: 0 22px; font-size: .78rem; }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin: 0 22px 18px; }
.spec-item { display: flex; min-width: 0; min-height: 60px; align-items: center; gap: 11px; padding: 10px 11px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-muted); }
.spec-item__icon { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px; color: var(--brand-soft); background: rgba(99,102,241,.1); }
.spec-item__icon i { font-size: .95rem; }
.spec-item__copy { display: block; min-width: 0; }
.spec-item__copy strong { display: block; overflow: hidden; color: var(--text-soft); font-size: .86rem; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.plan-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0 22px; padding: 14px 0; border-block: 1px solid var(--border); }
.plan-benefits span { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 8px; color: var(--muted-strong); font-size: .8rem; font-weight: 700; text-align: center; }
.plan-benefits span + span { border-left: 1px solid var(--border); }
.plan-benefits i { flex: 0 0 auto; color: var(--brand-soft); }
.plan-card__action { width: calc(100% - 44px); margin: 18px 22px; }
.plan-card__locations { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; margin-top: auto; padding: 14px 16px; border-top: 1px solid var(--border); color: var(--muted-strong); font-size: .75rem; }
.plan-card__location { display: inline-flex; min-width: 0; align-items: center; justify-content: center; gap: 6px; white-space: nowrap; }
.plan-card__flag { display: grid; width: 24px; height: 16px; flex: 0 0 auto; place-items: center; }
.plan-card__flag img { width: auto; height: auto; max-width: 100%; max-height: 100%; border-radius: 2px; object-fit: contain; box-shadow: 0 2px 6px rgba(0,0,0,.14); }
.pricing-view-all { display: flex; justify-content: center; margin-top: 28px; }
.pricing-view-all .button { min-width: 210px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; gap: 16px; }
.feature-card { min-height: 190px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-bg); box-shadow: var(--shadow-soft); transition: transform .22s ease, border-color .22s ease; }
.feature-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.feature-card__heading { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; }
.feature-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border: 1px solid rgba(129,140,248,.19); border-radius: 12px; color: var(--brand-soft); background: rgba(99,102,241,.1); }
.feature-icon i { font-size: 1rem; }
.feature-card h3 { margin: 0; font-size: 1.12rem; }
.feature-card p { margin: 0; font-size: .96rem; line-height: 1.68; }
.center-link { margin-top: 30px; text-align: center; }
.center-link a { color: var(--brand-soft); font-size: .95rem; font-weight: 800; }
.center-link a:hover { color: var(--text); }

.split-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(36px, 7vw, 100px); }
.split-section--balanced { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split-section__intro p { max-width: 560px; font-size: 1.02rem; line-height: 1.75; }
.steps-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.steps-list li { display: flex; gap: 17px; padding: 21px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card-bg); }
.steps-list li > span { display: grid; place-items: center; width: 37px; height: 37px; flex: 0 0 auto; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--violet)); font: 800 .72rem/1 "JetBrains Mono Local", monospace; }
.steps-list strong { font-size: 1rem; }
.steps-list p { margin: 4px 0 0; font-size: .92rem; }
.section--locations { padding-block: 64px; }
.section--locations .section-heading { margin-bottom: 28px; }
.location-panel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 980px; margin-inline: auto; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-bg); box-shadow: var(--shadow-soft); }
.location-item { display: flex; min-width: 0; min-height: 92px; align-items: center; justify-content: center; gap: 16px; padding: 20px 24px; }
.location-item + .location-item { border-left: 1px solid var(--divider); }
.location-item__flag { display: grid; width: 58px; height: 38px; flex: 0 0 auto; place-items: center; }
.location-item__flag img { width: auto; height: auto; max-width: 100%; max-height: 100%; border-radius: 6px; object-fit: contain; box-shadow: 0 7px 16px rgba(0,0,0,.16); }
.location-item h3 { margin: 0; font-size: 1.05rem; }

.os-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.os-card { padding: 24px 21px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-bg); box-shadow: var(--shadow-soft); text-align: center; transition: transform .22s ease, border-color .22s ease; }
.os-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.os-card__icon { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 17px; overflow: hidden; border: 1px solid var(--border); border-radius: 21px; background: var(--surface); }
.os-card__icon img { width: 54px; height: 54px; object-fit: contain; }
.os-card--centos .os-card__icon img, .os-card--almalinux .os-card__icon img { width: 64px; height: 64px; }
.os-card h3 { margin: 0 0 9px; font-size: 1.08rem; }
.os-card p { margin: 0; font-size: .94rem; line-height: 1.62; }
.windows-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 930px; margin-inline: auto; }
.windows-card { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 20px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-bg); box-shadow: var(--shadow-soft); }
.windows-mark { display: grid; grid-template-columns: repeat(2, 19px); gap: 4px; padding: 15px; border-radius: 16px; background: linear-gradient(145deg, #31afff, #0874da); box-shadow: 0 12px 28px rgba(8,116,218,.25); transform: perspective(140px) rotateY(-8deg); }
.windows-mark i { width: 19px; height: 19px; border-radius: 2px; background: #e7f6ff; }
.windows-card h3 { margin: 0 0 6px; font-size: 1.08rem; }
.windows-card p { margin: 0; font-size: .94rem; line-height: 1.6; }
.licensing-note { max-width: 820px; margin: 24px auto 0; padding: 16px 19px; border: 1px solid rgba(243,184,93,.28); border-radius: 12px; color: var(--muted); background: linear-gradient(145deg, rgba(243,184,93,.08), var(--card-bg) 60%); font-size: .92rem; line-height: 1.65; text-align: center; }
.licensing-note strong { color: var(--amber); }

.faq-list { display: grid; gap: 9px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card-bg); transition: border-color .2s ease; }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; padding: 16px 20px; color: var(--text-soft); font-size: 1rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 16px; height: 16px; flex: 0 0 auto; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; top: 7px; left: 2px; width: 12px; height: 2px; border-radius: 2px; background: var(--brand-soft); transition: transform .2s ease; }
.faq-plus::after { transform: rotate(90deg); }
.faq-item[open] .faq-plus::after { transform: rotate(0); }
.faq-answer { padding: 0 19px 17px; }
.faq-answer p { margin: 0; font-size: .95rem; line-height: 1.72; }

.section--cta { border-top: 1px solid var(--border); background: var(--page-bg-soft); }
.cta-panel { position: relative; display: flex; min-height: 220px; align-items: center; overflow: hidden; padding: 30px clamp(28px, 4vw, 48px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card-bg-alt); box-shadow: var(--shadow-soft); isolation: isolate; }
.cta-panel__content { position: relative; z-index: 2; display: grid; width: 100%; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: clamp(28px, 5vw, 72px); }
.cta-panel__copy { max-width: 650px; }
.cta-panel h2 { margin: 0 0 9px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-panel p { max-width: 610px; margin: 0; font-size: 1rem; line-height: 1.65; }
.cta-panel .button-row { flex-wrap: nowrap; justify-content: flex-end; margin-top: 0; }
.cta-panel .button { min-width: 178px; }
.comparison-card { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; max-width: 970px; margin-inline: auto; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--border); box-shadow: var(--shadow-soft); }
.comparison-card__column { padding: clamp(27px, 4vw, 44px); background: var(--card-bg); }
.comparison-card__column h3 { margin: 13px 0 22px; font-size: 1.35rem; }
.comparison-card__column .button { margin-top: 14px; }
.comparison-label { color: var(--brand-soft); font-size: .66rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.comparison-label--blue { color: var(--blue); }
.comparison-card__divider { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%; color: var(--muted); background: var(--page-bg-soft); font-size: .65rem; font-weight: 800; transform: translate(-50%, -50%); }

.principles-panel { display: grid; gap: 12px; }
.principles-panel > div { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card-bg); }
.principles-panel span { color: var(--brand-soft); font-size: .58rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.principles-panel h3 { margin: 8px 0 6px; font-size: 1.08rem; }
.principles-panel p { margin: 0; font-size: .94rem; }

.contact-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(35px, 6vw, 80px); align-items: start; }
.contact-options > p, .contact-form > p { max-width: 520px; font-size: 1rem; }
.contact-card { display: block; margin-top: 10px; padding: 17px 19px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card-bg); }
a.contact-card:hover { border-color: var(--border-strong); }
.contact-card span, .contact-card strong, .contact-card small { display: block; }
.contact-card span { color: var(--brand-soft); font-size: .58rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-card strong { margin: 6px 0 3px; font-size: 1rem; overflow-wrap: anywhere; }
.contact-card small { color: var(--muted); font-size: .88rem; }
.contact-form { display: grid; gap: 13px; padding: clamp(24px, 4vw, 38px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card-bg); box-shadow: var(--shadow); }
.contact-form label, .modal label { display: grid; gap: 7px; color: var(--text-soft); font-size: .9rem; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea, .modal input, .modal select { width: 100%; border: 1px solid var(--control-border); border-radius: 10px; color: var(--text); background: var(--surface-muted); outline: none; }
.contact-form input, .contact-form select, .modal input, .modal select { min-height: 44px; padding: 9px 11px; }
.contact-form textarea { min-height: 130px; padding: 10px 11px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus, .modal input:focus, .modal select:focus { border-color: var(--border-strong); box-shadow: var(--focus); }
.contact-form > small, .form-note { margin: 0; color: var(--muted); font-size: .82rem; text-align: center; }

.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.guide-card { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-bg); box-shadow: var(--shadow-soft); }
.guide-card > span { color: var(--brand-soft); font-size: .6rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.guide-card h3 { margin: 8px 0 16px; font-size: 1.1rem; }
.guide-card ol { display: grid; gap: 10px; margin: 0; padding-left: 22px; color: var(--muted); font-size: .94rem; line-height: 1.62; }
.guide-card a { color: var(--brand-soft); text-decoration: underline; text-underline-offset: 3px; }
.guide-card code { padding: 2px 5px; border: 1px solid var(--border); border-radius: 5px; color: var(--text-soft); background: var(--surface); }
.support-contact { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card-bg-alt); box-shadow: var(--shadow-soft); }
.support-contact h2 { margin-bottom: 7px; font-size: clamp(1.8rem, 4vw, 3rem); }
.support-contact p { margin: 0; }

.legal-layout { display: grid; grid-template-columns: 290px minmax(0, 1fr); align-items: start; gap: clamp(32px, 6vw, 80px); }
.legal-note { position: sticky; top: calc(var(--header-height) + 24px); padding: 22px; border: 1px solid rgba(243,184,93,.28); border-radius: var(--radius); background: linear-gradient(145deg, rgba(243,184,93,.08), var(--card-bg) 60%); }
.legal-note strong { color: var(--amber); font-size: .95rem; }
.legal-note p { margin: 9px 0 15px; font-size: .92rem; }
.legal-note span { color: var(--muted); font-size: .78rem; }
.legal-document { display: grid; gap: 8px; }
.legal-document section { display: grid; grid-template-columns: 42px 1fr; column-gap: 15px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.legal-document section > span { grid-row: 1 / span 2; color: var(--brand-soft); font: 750 .62rem/1.3 "JetBrains Mono Local", monospace; }
.legal-document h2 { margin: 0 0 9px; font-size: 1.2rem; }
.legal-document p { margin: 0; font-size: .98rem; line-height: 1.72; }

.site-footer { padding: 68px 0 25px; border-top: 1px solid var(--border); background: var(--footer-bg); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
.footer-brand p { max-width: 320px; margin: 17px 0 9px; font-size: .94rem; }
.footer-brand > a { color: var(--brand-soft); font-size: .9rem; overflow-wrap: anywhere; }
.footer-column { display: grid; align-content: start; gap: 8px; }
.footer-column h2 { margin: 5px 0 10px; font-size: .9rem; letter-spacing: .02em; }
.footer-column a { width: max-content; max-width: 100%; color: var(--muted); font-size: .9rem; }
.footer-column a:hover { color: var(--brand-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 21px; border-top: 1px solid var(--border); color: var(--muted); font-size: .8rem; }

.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(2,4,9,.74); backdrop-filter: blur(7px); }
.modal__dialog { position: relative; z-index: 2; width: min(100%, 560px); max-height: calc(100vh - 40px); overflow-y: auto; padding: 31px; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: var(--card-bg); box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.modal__close { position: absolute; top: 15px; right: 15px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--control-border); border-radius: 10px; color: var(--muted); background: var(--surface-strong); font-size: 1.25rem; cursor: pointer; }
.modal h2 { margin: 14px 0 7px; font-size: 1.75rem; }
.modal__intro { margin-bottom: 22px; font-size: .95rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-grid__full { grid-column: 1 / -1; }
.config-summary { display: flex; align-items: center; justify-content: space-between; margin: 18px 0 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.config-summary > span { color: var(--muted); font-size: .9rem; }
.config-summary strong { font: 800 1.5rem/1 "JetBrains Mono Local", monospace; }
.config-summary strong > span:first-child, .config-summary small { color: var(--muted); font-size: .8rem; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease var(--delay, 0ms), transform .55s ease var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1279px) {
    .desktop-header { gap: 10px; padding-inline: 16px; }
    .desktop-primary-nav { gap: 2px; }
    .desktop-nav-link { gap: 7px; padding-inline: 9px; font-size: .82rem; }
    .desktop-header__actions { gap: 5px; }
    .desktop-header__actions .toolbar-link span { display: none; }
    .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 880px; gap: 26px; }
    .plan-grid > .plan-card,
    .plan-grid--rdp:not(.plan-grid--preview) > .plan-card:nth-child(4),
    .plan-grid--rdp:not(.plan-grid--preview) > .plan-card:nth-child(5) { grid-column: auto; }
    .plan-grid > .plan-card:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: min(100%, 420px); }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .feature-card { min-height: 0; padding: 21px; }
    .os-grid { grid-template-columns: repeat(2, 1fr); }
    .os-card { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 18px; padding: 19px; text-align: left; }
    .os-card__icon { width: 68px; height: 68px; margin: 0; border-radius: 19px; }
    .os-card__icon img { width: 48px; height: 48px; }
    .os-card--centos .os-card__icon img, .os-card--almalinux .os-card__icon img { width: 58px; height: 58px; }
    .os-card h3 { margin-bottom: 6px; }
}

@media (max-width: 1199.98px) {
    :root { --header-height: var(--mobile-header-height); }
    .desktop-header { display: none; }
    .mobile-header { position: fixed; inset: 0 0 auto; z-index: 80; display: flex; align-items: center; justify-content: space-between; height: var(--mobile-header-height); padding: 0 18px; border-bottom: 1px solid var(--border); background: var(--header-bg); backdrop-filter: blur(20px); }
    .mobile-header .brand-mark { width: 34px; height: 34px; }
    .mobile-header__actions { display: flex; gap: 12px; }
    .icon-button { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border-radius: 11px; font-size: .95rem; }
    .menu-glyph, .menu-glyph::before, .menu-glyph::after { display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
    .menu-glyph { position: relative; }
    .menu-glyph::before, .menu-glyph::after { content: ""; position: absolute; left: 0; }
    .menu-glyph::before { top: -5px; }
    .menu-glyph::after { top: 5px; }
    #menu-toggle[aria-expanded="true"] .menu-glyph { background: transparent; }
    #menu-toggle[aria-expanded="true"] .menu-glyph::before { top: 0; transform: rotate(45deg); }
    #menu-toggle[aria-expanded="true"] .menu-glyph::after { top: 0; transform: rotate(-45deg); }
    .sidebar { inset: var(--mobile-header-height) auto 0 0; display: flex; width: min(88vw, 330px); transform: translateX(-104%); transition: transform .3s cubic-bezier(.2,.75,.25,1); }
    .sidebar.is-open { transform: translateX(0); }
    .sidebar-overlay { position: fixed; inset: var(--mobile-header-height) 0 0; z-index: 55; display: block; background: rgba(2,4,9,.64); opacity: 0; pointer-events: none; backdrop-filter: blur(3px); transition: opacity .25s ease; }
    .sidebar-overlay.is-visible { opacity: 1; pointer-events: auto; }
    .site-main { margin-left: 0; padding-top: var(--mobile-header-height); }
    .page-hero { min-height: auto; }
    .page-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr); gap: 28px; }
    .page-hero h1 { font-size: clamp(2.7rem, 5.6vw, 4rem); }
    .page-hero__visual { min-height: 280px; }
    .page-hero__visual img { max-height: 300px; }
    .trust-strip { margin-top: 0; padding-top: 10px; }
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip__grid div { min-height: 66px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .trust-strip__grid div:nth-child(even) { border-right: 0; }
    .trust-strip__grid div:nth-child(n+5) { border-bottom: 0; }
}

@media (max-width: 767px) {
    .container { width: min(calc(100% - 36px), var(--container)); }
    .section { padding: 58px 0; }
    .section--compact { padding-top: 20px; }
    .page-hero { padding: 36px 0 40px; text-align: center; }
    .page-hero--compact { min-height: auto; padding: 40px 0; }
    .page-hero__grid { grid-template-columns: 1fr; gap: 32px; }
    .page-hero__copy { margin-inline: auto; }
    .page-hero h1, .page-hero--compact h1 { margin: 18px 0 16px; font-size: clamp(2.1rem, 9.6vw, 2.9rem); line-height: 1.08; letter-spacing: -.05em; }
    .page-hero__copy > p { max-width: 390px; margin-inline: auto; font-size: 1rem; line-height: 1.68; }
    .page-hero .hero-price { display: flex; width: max-content; margin-right: auto; margin-left: 0; }
    .page-hero .button-row { justify-content: center; }
    .page-hero .button-row { gap: 10px; margin-top: 24px; }
    .page-hero__visual { order: 2; min-height: 250px; margin-top: 0; }
    .page-hero__visual::before { width: min(87vw, 390px); }
    .page-hero__visual img { width: min(78vw, 330px); max-height: 285px; }
    body[data-page="home"] .page-hero__visual img { width: min(84vw, 360px); max-height: 315px; }
    body[data-page="vps"] .page-hero__visual img { width: min(84vw, 360px); max-height: 315px; }
    body[data-page="about"] .page-hero__visual img,
    body[data-page="terms"] .page-hero__visual img,
    body[data-page="privacy"] .page-hero__visual img,
    body[data-page="refund-policy"] .page-hero__visual img { width: min(88vw, 430px); max-height: 340px; }
    .trust-strip__grid div { min-height: 62px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border) !important; }
    .trust-strip__grid div:nth-child(even) { border-right: 0; }
    .trust-strip__grid div:nth-child(n+5) { border-bottom: 0 !important; }
    .plan-grid, .feature-grid, .os-grid, .windows-grid, .guide-grid, .split-section, .split-section--balanced, .contact-layout, .legal-layout { grid-template-columns: 1fr; }
    .plan-grid { max-width: 420px; gap: 28px; }
    .plan-grid > .plan-card:last-child:nth-child(odd) { grid-column: auto; width: 100%; }
    .feature-card { min-height: 0; }
    .os-card p { min-height: 0; }
    .windows-card { grid-template-columns: auto 1fr; padding: 19px; }
    .section--locations { padding-block: 44px; }
    .section--locations .section-heading { margin-bottom: 24px; }
    .location-panel { grid-template-columns: 1fr; }
    .location-item { min-height: 74px; justify-content: center; padding: 16px 18px; }
    .location-item + .location-item { border-top: 1px solid var(--divider); border-left: 0; }
    .location-item__flag { width: 52px; height: 34px; }
    .comparison-card { grid-template-columns: 1fr; }
    .comparison-card__divider { top: 50%; left: 50%; }
    .support-contact { align-items: flex-start; flex-direction: column; padding: 25px; }
    .support-contact .button { width: 100%; }
    .legal-note { position: static; }
    .cta-panel { min-height: 0; padding: 22px 20px; text-align: center; }
    .cta-panel__content { grid-template-columns: 1fr; gap: 17px; }
    .cta-panel h2 { margin: 8px 0 7px; }
    .cta-panel__copy { margin-inline: auto; }
    .cta-panel p { margin-inline: auto; }
    .cta-panel .button-row { flex-wrap: wrap; justify-content: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 479px) {
    .brand-name { font-size: .92rem; }
    .mobile-header { padding-inline: 14px; }
    .mobile-header__actions { gap: 12px; }
    .page-hero h1, .page-hero--compact h1 { font-size: clamp(2rem, 10vw, 2.65rem); }
    .button-row { flex-direction: column; width: 100%; }
    .button-row .button { width: 100%; }
    body[data-page="home"] .page-hero .button-row { flex-direction: row; gap: 8px; }
    body[data-page="home"] .page-hero .button-row .button { flex: 1 1 0; width: auto; min-width: 0; padding-inline: 8px; font-size: .82rem; }
    .page-hero__visual { min-height: 230px; }
    .page-hero__visual img { max-height: 260px; }
    .cta-panel { padding: 18px 15px; }
    .cta-panel__content { gap: 12px; }
    .cta-panel h2 { font-size: 1.65rem; }
    .cta-panel p { font-size: .94rem; line-height: 1.5; }
    .cta-panel .button-row { gap: 8px; }
    .cta-panel .button { min-height: 44px; }
    .billing-row { gap: 8px; }
    .saving-pill { display: none; }
    .service-tabs { width: 100%; }
    .plan-card { padding: 0; }
    .plan-card__header { gap: 10px; padding: 19px 15px; }
    .plan-card__icon { width: 39px; height: 39px; }
    .plan-card h3 { font-size: 1.08rem; }
    .plan-price strong { font-size: 1.65rem; }
    .plan-description { min-height: 0; padding: 17px 15px 0; }
    .price-caption { padding-inline: 15px; }
    .spec-grid { margin-inline: 15px; }
    .spec-item { gap: 7px; min-height: 60px; padding: 8px; }
    .spec-item__icon { width: 29px; height: 29px; }
    .spec-item__copy strong { overflow: visible; font-size: .79rem; line-height: 1.25; text-overflow: clip; white-space: normal; }
    .plan-benefits { margin-inline: 15px; }
    .plan-benefits span { padding-inline: 4px; font-size: .73rem; line-height: 1.35; }
    .plan-card__action { width: calc(100% - 30px); margin: 16px 15px; }
    .plan-card__locations { padding: 13px 10px; font-size: .7rem; }
    .plan-card__location { gap: 4px; }
    .plan-card__flag { width: 22px; height: 15px; }
    .feature-grid { gap: 12px; }
    .plan-grid { gap: 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid__full { grid-column: 1; }
    .modal { padding: 10px; }
    .modal__dialog { max-height: calc(100vh - 20px); padding: 25px 18px; border-radius: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

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