/* Cyberhub — brand theme */
:root {
    --bg: #000000;
    --bg-card: #0d0d0d;
    --bg-card-hover: #141414;
    --border: rgba(241, 90, 36, 0.14);
    --border-strong: rgba(241, 90, 36, 0.4);
    --text: #ffffff;
    --text-muted: #a3a3a3;
    --accent: #f15a24;
    --accent-bright: #ff6600;
    --accent-dim: #d94e1f;
    --accent-glow: rgba(241, 90, 36, 0.35);
    --accent-soft: rgba(241, 90, 36, 0.1);
    --gold: #ffb347;
    --font-brand: 'Jura', sans-serif;
    --font-display: 'Quicksand', sans-serif;
    --font-body: 'Quicksand', system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --header-h: 72px;
    --container: 1200px;
    --transition: 0.25s ease;
    --gutter: max(1rem, env(safe-area-inset-left, 0px));
    --gutter-right: max(1rem, env(safe-area-inset-right, 0px));
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-top: env(safe-area-inset-top, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(3.5rem + var(--safe-top));
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter) var(--gutter-right);
}

.container--narrow { max-width: 780px; }

/* Background effects */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(241, 90, 36, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(241, 90, 36, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow--1 {
    width: 500px; height: 500px;
    top: -100px; right: -100px;
    background: rgba(241, 90, 36, 0.1);
}

.bg-glow--2 {
    width: 400px; height: 400px;
    bottom: 20%; left: -100px;
    background: rgba(241, 90, 36, 0.06);
}

main, .header, .footer { position: relative; z-index: 1; }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border);
}

.header--menu-open {
    background: rgba(0, 0, 0, 0.98);
}

.header .container {
    padding-top: max(0.5rem, var(--safe-top));
    padding-bottom: 0;
}

.header__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem 1rem;
    min-height: 68px;
    position: relative;
    z-index: 2;
}

.header__actions {
    justify-self: end;
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.logo--center {
    justify-self: center;
    grid-column: 2;
    padding: 0.15rem 0;
}

.logo--center .logo__img {
    height: 58px;
    width: auto;
    max-width: min(320px, 72vw);
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(241, 90, 36, 0.18));
    transition: filter var(--transition), transform var(--transition);
}

.logo--center:hover .logo__img {
    filter: drop-shadow(0 4px 18px rgba(241, 90, 36, 0.32));
    transform: scale(1.02);
}

.header__phone {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.header__phone:hover { color: var(--accent); }

.header .nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.1rem;
    padding: 0.5rem 0 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 0.25rem;
}

/* Promo bar */
.promo-bar {
    background: linear-gradient(90deg, rgba(241, 90, 36, 0.15), rgba(241, 90, 36, 0.05));
    border-bottom: 1px solid var(--border-strong);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.promo-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.12), var(--bg-card));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
}

.promo-card__icon { font-size: 2rem; line-height: 1; }

.promo-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.promo-card__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.footer__promo {
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* Floating contact widgets */
.float-widgets {
    position: fixed;
    bottom: max(0.85rem, var(--safe-bottom));
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.telegram-widget {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.15rem;
    background: #229ed9;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 8px 28px rgba(34, 158, 217, 0.35);
    transition: all var(--transition);
}

.telegram-widget:hover {
    color: #fff;
    background: #1a8bc4;
    transform: translateY(-2px);
}

.telegram-widget__icon {
    width: 20px;
    height: 20px;
}

.call-widget {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: var(--accent);
    color: #000;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px var(--accent-glow);
    transition: all var(--transition);
}

.call-widget:hover {
    background: var(--accent-bright);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.call-widget__icon {
    width: 20px;
    height: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo__img {
    height: 38px;
    width: auto;
    display: block;
}

/* Brand wordmark: Cyber (white) + hub (orange), шрифт Jura як на лого */
.brand {
    font-family: var(--font-brand);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
}

.brand__cyber { color: #ffffff; }
.brand__hub { color: var(--accent); }

.brand--inline {
    display: inline;
    font-family: var(--font-brand);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: inherit;
    white-space: nowrap;
}

.brand--inline .brand__cyber,
.brand--inline .brand__hub,
.brand .brand__cyber,
.brand .brand__hub {
    font-family: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

a .brand__cyber,
a:hover .brand__cyber {
    color: #ffffff;
}

a .brand__hub {
    color: var(--accent);
}

a:hover .brand__hub {
    color: var(--accent-bright);
}

.brand--hero {
    font-size: clamp(2.35rem, 11vw, 5.5rem);
    filter: drop-shadow(0 0 40px var(--accent-glow));
}

.brand--footer {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nav__link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: all var(--transition);
}

.nav__link:hover,
.nav__link--promo {
    color: var(--gold);
}

.nav__link--promo:hover,
.nav__link--promo.nav__link--active {
    color: var(--accent-bright);
}

.nav__link--active {
    color: var(--accent);
    background: var(--accent-soft);
}

.header__cta { flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem;
    margin-left: 0.15rem;
    flex-shrink: 0;
    order: 10;
    position: relative;
    z-index: 5;
    width: 40px;
    height: 40px;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.nav-toggle--open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle--open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 250;
    backdrop-filter: blur(2px);
}

.nav-overlay:not([hidden]) {
    display: block;
}

.nav-overlay[hidden] {
    display: none !important;
}

.nav__mobile-actions {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn--lg { padding: 0.85rem 1.75rem; font-size: 1rem; }

.btn-primary {
    background: var(--accent);
    color: #000000;
    border-color: var(--accent);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-bright);
    border-color: var(--accent-bright);
    color: #000000;
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--border-strong);
}

.btn-outline:hover {
    background: rgba(241, 90, 36, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-accent {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    font-weight: 700;
}

.btn-accent:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}

.text-accent { color: var(--accent); }

/* Hero — mobile-first */
.hero {
    padding: 2.25rem 0 2.75rem;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    max-width: 100%;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.45;
    color: var(--accent);
    margin-bottom: 1.15rem;
    text-align: center;
}

.hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hero__title-main {
    display: block;
}

.hero__title-sub {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__title--solo {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    text-wrap: balance;
}

.hero__usp {
    max-width: 620px;
    margin: 0 auto 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    text-wrap: pretty;
}

.hero__usp strong { color: var(--accent); }

.hero__desc {
    max-width: 540px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 1.75rem;
}

.hero__actions .btn {
    width: 100%;
    justify-content: center;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
}

.feature-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    min-width: 0;
}

.feature-pill__icon { font-size: 1rem; }

/* Hero — landing / реклама */
.hero--landing .hero__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.hero__rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    padding: 0.45rem 0.85rem;
    background: rgba(241, 90, 36, 0.1);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
}

.hero__rating:hover {
    border-color: var(--accent);
    background: rgba(241, 90, 36, 0.16);
}

.hero__rating-score {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
}

.hero__rating-stars {
    color: #f5b301;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.hero__rating-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero__location {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.hero__location a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero__location a:hover { color: var(--accent); }

.hero__location-hint {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero__phone {
    margin: -0.75rem auto 1.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.hero__phone a {
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

.hero__actions--landing .btn-accent {
    order: 2;
}

/* Sticky CTA — головна, мобільна реклама */
.home-ad-bar {
    display: none;
}

@media (max-width: 768px) {
    .page--home {
        padding-bottom: calc(3.75rem + var(--safe-bottom));
    }

    .page--home .float-widgets {
        display: none;
    }

    .home-ad-bar {
        display: grid;
        grid-template-columns: 1fr 1fr minmax(0, auto);
        gap: 0.4rem;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 250;
        padding: 0.5rem max(0.65rem, env(safe-area-inset-right, 0px)) max(0.55rem, var(--safe-bottom)) max(0.65rem, env(safe-area-inset-left, 0px));
        background: rgba(0, 0, 0, 0.94);
        border-top: 1px solid var(--border-strong);
        backdrop-filter: blur(10px);
    }

    .home-ad-bar__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 0.5rem;
        border-radius: 10px;
        font-size: 0.78rem;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        border: 2px solid transparent;
        min-height: 44px;
    }

    .home-ad-bar__btn--primary {
        background: var(--accent);
        color: #000;
        border-color: var(--accent);
    }

    .home-ad-bar__btn--route {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.4);
    }

    .home-ad-bar__btn--phone {
        background: transparent;
        color: var(--accent);
        border-color: var(--border-strong);
        font-size: 0.68rem;
        padding: 0.7rem 0.35rem;
        white-space: nowrap;
    }
}

/* Page hero (inner pages) — mobile-first */
.page-hero {
    padding: 2rem 0 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.page-hero__desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    text-wrap: pretty;
}

/* Sections — mobile-first */
.section {
    padding: 2.25rem 0;
}

.section--dark {
    background: rgba(18, 20, 28, 0.6);
    border-block: 1px solid var(--border);
}

.section--cta {
    padding: 2.75rem 0;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
}

.section__subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.section__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    text-align: center;
    margin-top: 2.5rem;
}

/* Cards */
.cards {
    display: grid;
    gap: 1.5rem;
}

.cards--3,
.cards--4,
.cards--5,
.cards--zones {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .cards--zones {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }
}

@media (min-width: 1200px) {
    .cards--zones {
        grid-template-columns: repeat(5, 1fr);
    }
}

.card--clickable {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.card--clickable:hover {
    color: inherit;
    border-color: var(--accent);
}

.card--clickable .card__title,
.card--clickable .card__list li {
    color: inherit;
}

.card__cta {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.card--zone.card--clickable {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card--zone .card__cta {
    margin-top: auto;
    padding-top: 0.75rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    margin: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
}

.gallery-item:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 460 / 215;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.section__title--spaced {
    margin-top: 2.5rem;
}

.section__title--spaced:first-child {
    margin-top: 0;
}

.articles-hub-intro {
    margin-bottom: 1.5rem;
    max-width: 52rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card--highlight {
    border-color: var(--border-strong);
    background: linear-gradient(145deg, rgba(241, 90, 36, 0.08), var(--bg-card));
}

.card__icon { font-size: 2rem; margin-bottom: 1rem; }

.card__badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: rgba(241, 90, 36, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.card__badge--gold {
    background: rgba(255, 209, 102, 0.12);
    color: var(--gold);
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
}

.card__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card__link {
    font-size: 0.9rem;
    font-weight: 600;
}

.card__list {
    list-style: none;
    margin-bottom: 1.25rem;
}

.card__list li {
    padding: 0.35rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.card__list li::before {
    content: '▸ ';
    color: var(--accent);
}

.card__price {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card__price strong {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Spec grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.spec-grid--large { max-width: 1000px; }

.spec-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.spec-item--large {
    padding: 1.75rem;
}

.spec-item__icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }

.spec-item__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.spec-item__value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
}

.spec-item__hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Price zones */
.price-zones {
    display: grid;
    gap: 2rem;
}

.price-zone {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-margin-top: 5rem;
}

.section__title[id] {
    scroll-margin-top: 5rem;
}

.price-zone--highlight {
    border-color: var(--border-strong);
    box-shadow: 0 0 40px rgba(241, 90, 36, 0.12);
}

.price-zone__header {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
}

.price-zone__badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: rgba(241, 90, 36, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.price-zone__badge--gold {
    background: rgba(255, 209, 102, 0.12);
    color: var(--gold);
}

.price-zone__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.price-zone__desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-table-wrap { overflow-x: auto; }

/* Ціни: mobile-first — картки за замовчуванням, таблиця з 769px */
.price-table-wrap--desktop {
    display: none;
}

.price-cards--mobile {
    display: grid;
    gap: 1rem;
    padding: 1rem 1.25rem 1.25rem;
}

@media (min-width: 769px) {
    .price-table-wrap--desktop {
        display: block;
    }

    .price-cards--mobile {
        display: none;
    }
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 1rem 1.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.price-table th {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(0,0,0,0.2);
}

.price-table td:first-child { font-weight: 600; }
.price-table td:not(:first-child) { color: var(--accent); font-weight: 600; }

.price-table--wide th,
.price-table--wide td {
    padding: 0.75rem 0.65rem;
    font-size: 0.85rem;
    text-align: center;
    vertical-align: middle;
}

.price-table--wide td:first-child,
.price-table--wide th:first-child {
    text-align: left;
    padding-left: 1.25rem;
}

.price-table__period {
    font-weight: 700;
    color: #fff !important;
    white-space: nowrap;
}

.price-table__sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
}

.price-table__total {
    display: block;
    color: var(--accent);
    font-weight: 700;
}

.price-table__rate {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-table__empty {
    color: var(--text-muted);
    opacity: 0.4;
}

.price-zone__link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-rules {
    list-style: none;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.price-rules li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price-rules li::before {
    content: '▸ ';
    color: var(--accent);
}

/* Zone specs (hardware page) */
.zone-specs {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.zone-spec {
    scroll-margin-top: 5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.zone-spec--highlight {
    border-color: var(--border-strong);
    box-shadow: 0 0 40px rgba(241, 90, 36, 0.1);
}

.zone-spec__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.zone-spec__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    flex-grow: 1;
}

.zone-spec__link {
    font-size: 0.85rem;
    font-weight: 600;
}

.zone-spec__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.zone-spec__section {
    padding: 1.5rem 1.35rem;
}

.zone-spec__section + .zone-spec__section {
    border-left: 1px solid var(--border);
}

.zone-spec__col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

/* Hardware spec tiles */
.hw-spec-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hw-spec-tile {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hw-spec-tile:hover {
    background: rgba(241, 90, 36, 0.04);
    border-color: var(--border);
    transform: translateX(2px);
}

.hw-spec-tile__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hw-spec-tile__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.hw-spec-tile__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    padding-top: 0.15rem;
}

.hw-spec-tile__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.hw-spec-tile__value {
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text);
}

.page-hero--hardware {
    background: linear-gradient(180deg, rgba(241, 90, 36, 0.05) 0%, transparent 100%);
}

.zone-spec--highlight .zone-spec__section {
    background: linear-gradient(180deg, rgba(241, 90, 36, 0.03) 0%, transparent 100%);
}

.hw-infra-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.hw-infra-tile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.hw-infra-tile:hover {
    border-color: var(--border-strong);
    box-shadow: 0 8px 28px rgba(241, 90, 36, 0.08);
}

.hw-infra-tile__icon {
    width: 56px;
    height: 56px;
}

.hw-infra-tile__title {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.hw-infra-tile__text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Simracing */
.page-hero--sim {
    padding-bottom: 3rem;
    background: linear-gradient(180deg, rgba(241, 90, 36, 0.06) 0%, transparent 100%);
}

.sim-equipment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.sim-equipment__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sim-equipment__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.sim-equipment__value {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .zone-spec__body { grid-template-columns: 1fr; }
    .zone-spec__section + .zone-spec__section {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .hw-infra-list {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.15rem;
}

.price-card__period {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.price-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.price-card__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-card__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-card__label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
}

.price-card__sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.85;
}

.price-card__value {
    text-align: right;
    flex-shrink: 0;
}

.price-card__value .price-table__total {
    font-size: 1.15rem;
    font-weight: 700;
}

.price-card__value .price-table__rate {
    display: block;
    font-size: 0.82rem;
    margin-top: 0.15rem;
}

.price-note {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.price-note p { color: var(--text-muted); font-size: 0.9rem; max-width: 560px; }

.price-note__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.price-includes {
    max-width: 640px;
    margin: 0 auto 2rem;
}

.price-includes__list {
    list-style: none;
}

.price-includes__list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price-includes__list li::before {
    content: '▸ ';
    color: var(--accent);
    font-weight: 700;
}

/* Hardware zones */
.hardware-zones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hardware-zone {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.hardware-zone--highlight {
    border-color: var(--border-strong);
}

.hardware-zone__title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
}

.hardware-zone__list {
    list-style: none;
}

.hardware-zone__list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hardware-zone__list strong { color: var(--text); }

/* Game tags */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.game-tag {
    display: inline-flex;
    padding: 0.5rem 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
}

a.game-tag { color: var(--text-muted); }

.game-tag:hover,
a.game-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Schedule */
.schedule-block__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.schedule-table-wrap { overflow-x: auto; }

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.schedule-table th,
.schedule-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.schedule-table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.schedule-table td:last-child {
    color: var(--accent);
    font-weight: 600;
}

.schedule-night {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(241, 90, 36, 0.08), var(--bg-card));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
}

.schedule-night__title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.schedule-night__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-night__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.schedule-night__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.schedule-night__when {
    font-weight: 700;
    color: #fff;
    grid-row: span 2;
    align-self: center;
    white-space: nowrap;
}

.schedule-night__hours {
    color: var(--accent);
    font-weight: 600;
}

.schedule-night__note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Games grid */
.games-intro {
    max-width: 720px;
    margin-inline: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.games-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.game-card--compact {
    padding: 1rem;
    text-align: center;
    align-items: center;
}

.game-card__emoji {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.game-card--compact .game-card__emoji {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.game-card__genre {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.game-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.game-card__title a { color: #fff; }
.game-card__title a:hover { color: var(--accent); }

.game-card--compact .game-card__title {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.game-card__desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.game-card__link {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Game detail page */
.game-page__header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.game-page__back {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.game-page__emoji {
    display: block;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.game-page__genre {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.game-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.3;
}

.game-page__content {
    padding: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-page__intro p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.game-page__intro p:last-child { margin-bottom: 0; }

.game-page__setup-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.game-page__setup-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.game-page__setup-list li {
    position: relative;
    padding-left: 1.35rem;
    line-height: 1.6;
    color: var(--text);
}

.game-page__setup-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
}

.game-page__faq { margin-top: 0.25rem; }

.game-page__seo-spoiler { margin-top: 0.25rem; }

.game-page__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 3rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

/* Footer */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.contact-card__icon { font-size: 1.75rem; margin-bottom: 0.5rem; }

.contact-card__title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.contact-card__value {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

a.contact-card__value:hover { color: var(--accent); }

.contact-card__hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.contact-card__social {
    display: flex;
    gap: 1rem;
}

.contact-card__social a {
    font-weight: 600;
}

.contact-card__link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.contacts-map__iframe {
    width: 100%;
    min-height: 360px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.map-placeholder {
    background: var(--bg-card);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.map-placeholder__icon { font-size: 2.5rem; }

.map-placeholder small { font-size: 0.8rem; opacity: 0.7; }

/* CTA block */
.cta-block {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(241, 90, 36, 0.08), var(--bg-card));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
}

.cta-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
}

.cta-block__text {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.cta-block__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.article-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.article-card__thumb-link {
    display: block;
    line-height: 0;
    overflow: hidden;
    background: #08080a;
}

.article-card__thumb {
    width: 100%;
    aspect-ratio: 920 / 430;
    object-fit: cover;
    object-position: center;
    display: block;
    border-bottom: 1px solid var(--border);
    background: #08080a;
    transition: transform 0.35s ease, opacity var(--transition);
}

.article-card:hover .article-card__thumb {
    transform: scale(1.03);
    opacity: 0.95;
}

.article-card__body {
    padding: 1.75rem;
}

.article-card__date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0.75rem 0;
    line-height: 1.4;
}

.article-card__title a { color: #fff; }
.article-card__title a:hover { color: var(--accent); }

.article-card__excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-card__link {
    font-size: 0.9rem;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-state code {
    background: var(--bg-card);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Article page */
.article-page__header {
    padding: 1.5rem 0 1.25rem;
    border-bottom: 1px solid var(--border);
}

.article-page__back {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.article-page__back:hover { color: var(--accent); }

.article-page__date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.article-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-page__excerpt {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.article-cover {
    margin: 0 0 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.article-cover__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 920 / 430;
    object-fit: cover;
    object-position: center;
    background: #08080a;
}

.article-page__content {
    padding: 0 0 2.5rem;
}

.article-page__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 4rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.article-faq {
    margin-bottom: 2rem;
}

.article-faq__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.article-faq .faq-list {
    margin-top: 0;
}

/* Prose (article content) */
.prose h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--accent);
}

.prose h3 {
    font-size: 1.05rem;
    margin: 1.5rem 0 0.5rem;
}

.prose p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.prose ul {
    margin: 0 0 1rem 1.25rem;
    color: var(--text-muted);
}

.prose li { margin-bottom: 0.35rem; }

.prose strong { color: var(--text); }

.prose a.btn { margin-top: 0.5rem; }

.prose .article-lead {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.65;
    padding: 1rem 1rem 1rem 0.85rem;
    background: rgba(241, 90, 36, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 1.25rem;
}

.compare-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 1.25rem 0 1.75rem;
    font-size: 0.88rem;
}

.compare-table th,
.compare-table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

.compare-table th:first-child,
.compare-table td:first-child {
    width: 24%;
}

.compare-table th:nth-child(2),
.compare-table td:nth-child(2),
.compare-table th:nth-child(3),
.compare-table td:nth-child(3) {
    width: 38%;
}

.prose .compare-table ul,
.prose .compare-table ol {
    margin: 0;
    padding-left: 1.1rem;
    color: inherit;
}

.prose .compare-table li,
.prose .compare-table p {
    margin: 0;
    color: inherit;
}

.compare-table .compare-perks {
    margin: 0;
}

.compare-table .compare-perk {
    margin: 0.18rem 0;
    padding-left: 0.55rem;
    border-left: 2px solid rgba(241, 90, 36, 0.35);
    line-height: 1.38;
    font-size: inherit;
}

.compare-table .compare-perk:first-child {
    margin-top: 0;
}

.compare-table .compare-perk:last-child {
    margin-bottom: 0;
}

.compare-table__note {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.78em;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.35;
}

.compare-table thead th {
    background: rgba(241, 90, 36, 0.1);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.compare-table tbody td:first-child {
    font-weight: 600;
    color: var(--text);
}

.article-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.article-cta p {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* compare-table mobile cards — see .compare-table--cards below */

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    margin-top: 2rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer__tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.35rem;
}

.footer__links,
.footer__social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a,
.footer__social a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer__links a:hover,
.footer__social a:hover { color: var(--accent); }

.footer__legal {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer__legal a {
    color: var(--text-muted);
}

.footer__legal a:hover {
    color: var(--accent);
}

.footer__copy {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .contacts-grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body {
        padding-bottom: calc(4.25rem + var(--safe-bottom));
    }

    body:has(.page--prices) {
        padding-bottom: 0;
    }

    .header__top {
        grid-template-columns: 1fr auto;
        position: relative;
        z-index: 270;
        min-height: 56px;
    }

    .logo--center {
        display: flex;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        grid-column: auto;
        z-index: 1;
        pointer-events: auto;
    }

    .logo--center .logo__img {
        height: 46px;
        max-width: min(260px, 58vw);
    }

    .logo--center:hover .logo__img {
        transform: scale(1.02);
    }

    .header__actions {
        grid-column: 2;
        position: relative;
        z-index: 271;
    }

    .header__phone { display: none; }

    .nav-toggle {
        display: flex;
        z-index: 272;
    }

    body.menu-open { overflow: hidden; }

    .header .nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: min(100%, 320px);
        height: 100dvh;
        max-height: 100dvh;
        padding: 4.75rem 1.25rem 2rem;
        background: rgba(0, 0, 0, 0.98);
        border-left: 1px solid var(--border);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        z-index: 260;
        transition: transform 0.28s ease, visibility 0s linear 0.28s;
        overflow-y: auto;
        border-top: none;
        margin-top: 0;
        gap: 0;
    }

    .header .nav--open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.28s ease, visibility 0s linear 0s;
    }

    .header .nav__link {
        width: 100%;
        text-align: left;
        padding: 0.85rem 0.5rem;
        font-size: 1rem;
    }

    .nav__mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
    }

    .nav__book-btn { width: 100%; }

    .nav__phone-mobile {
        font-weight: 600;
        color: var(--accent);
        font-size: 1rem;
        text-align: center;
    }

    .call-widget__text,
    .telegram-widget__text { display: none; }

    .call-widget,
    .telegram-widget {
        padding: 0.9rem;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }

    .contacts-map--hero .contacts-map__iframe { min-height: 240px; }

    .footer__inner { grid-template-columns: 1fr; text-align: center; }
    .footer__links, .footer__social { align-items: center; }

    .promo-card {
        flex-direction: column;
        padding: 1.15rem;
        gap: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.25rem;
    }

    .card:hover {
        transform: none;
    }

    .article-page__title {
        font-size: 1.35rem;
        line-height: 1.35;
        text-wrap: pretty;
    }

    .article-page__excerpt {
        font-size: 0.92rem;
    }

    .article-page__footer,
    .game-page__footer {
        flex-direction: column;
    }

    .article-page__footer .btn,
    .game-page__footer .btn {
        width: 100%;
        justify-content: center;
    }

    .article-cta p {
        flex-direction: column;
    }

    .article-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section__subtitle {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        padding-inline: 0.25rem;
    }

    .section__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .section__cta .btn {
        width: 100%;
    }

    .cta-block__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-block__actions .btn {
        width: 100%;
    }

    .games-grid--visual {
        grid-template-columns: 1fr;
    }

    .club-accounts-list {
        grid-template-columns: 1fr;
    }

    .sim-icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .page-hero .hero__actions {
        max-width: 100%;
    }
}

/* Visual game & sim cards */
.games-grid--visual { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.game-card--visual { padding: 0; overflow: hidden; }

.game-card__media {
    display: block;
    position: relative;
    aspect-ratio: 460 / 215;
    overflow: hidden;
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.game-card--visual:hover .game-card__img { transform: scale(1.05); }

.game-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}

.game-card__body { padding: 1.25rem 1.5rem 1.5rem; }

.club-accounts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem 1.25rem;
    list-style: none;
    margin: 1.5rem 0 1rem;
    padding: 0;
}

.club-accounts-list__item {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.club-accounts-list__note {
    color: var(--text-muted);
    font-weight: 400;
}

.club-accounts-footnote {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.game-card--compact-visual {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.game-card--compact-visual:hover { border-color: var(--accent); }

.game-card--compact-visual .game-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.game-card__compact-title {
    display: block;
    padding: 0.65rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    background: var(--bg-card);
}

.game-page__hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.game-page__hero-img {
    width: 100%;
    display: block;
    aspect-ratio: 460/215;
    object-fit: cover;
}

.sim-equipment--visual { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.sim-equipment__item--visual { padding: 0; overflow: hidden; }

.sim-equipment__media {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #111;
}

.sim-equipment__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.75rem;
    background: #0a0a0a;
}

.sim-equipment__body { padding: 1rem 1.25rem 1.25rem; }

.section--map-top { padding-top: 1.5rem; }

.contacts-map--hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacts-map--hero .contacts-map__iframe { min-height: 420px; }

.contacts-map__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.contacts-grid--cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.contact-card--promo {
    border-color: var(--border-strong);
    background: linear-gradient(145deg, rgba(241, 90, 36, 0.08), var(--bg-card));
}

.contacts-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.contacts-social-row a { font-weight: 600; color: var(--text-muted); }
.contacts-social-row a:hover { color: var(--accent); }

.page-hero--compact { padding: 2.5rem 0 1rem; }

/* Reviews */
.reviews-section__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.reviews-summary__score {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.reviews-summary__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviews-summary__count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.review-card {
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.review-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-card__author {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-card__text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.star {
    color: var(--accent);
    font-size: 0.95rem;
}

.star--dim {
    color: rgba(255, 255, 255, 0.15);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-item__question {
    position: relative;
    padding: 1rem 2.75rem 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.faq-item[open] .faq-item__question::after { content: '−'; }

.faq-item__answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.faq-empty {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    text-align: center;
}

.faq-empty a { color: var(--accent); }

body { padding-bottom: 5rem; }

/* Promotions page */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.promo-card--page {
    flex-direction: column;
    height: 100%;
}

.promo-card__body { flex: 1; }

.promo-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.promo-card__list {
    margin-top: 0.75rem;
    padding-left: 1.1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cards--2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.advantage-item__icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.advantage-item__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.advantage-item__text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.cta-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.section__title--left,
.section__subtitle--left { text-align: left; }

/* Sim spec compact */
.price-zone--sim-spec {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
}

.zone-spec__list--sim {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.5rem 2rem;
    margin-top: 1rem;
}

.sim-games-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    margin-top: 1rem;
}

.sim-games-list li {
    padding: 0.4rem 0.85rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Simracing showcase — Instagram-style icon cards */
.sim-showcase {
    padding-top: 2rem;
}

.sim-showcase__head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sim-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.sim-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.sim-icon-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(241, 90, 36, 0.18);
}

.sim-icon-card:hover .sim-icon-card__icon {
    box-shadow: 0 12px 32px rgba(241, 90, 36, 0.28);
}

/* SRP server highlight */
.sim-srp-section {
    padding-top: 0;
}

.sim-srp-card {
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.1), var(--bg-card));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    text-align: center;
}

.sim-srp-card__badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(241, 90, 36, 0.15);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.sim-srp-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.sim-srp-card__text {
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 36rem;
    margin: 0 auto 1.25rem;
    font-size: 0.95rem;
}

.sim-srp-card__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    list-style: none;
}

.sim-srp-card__list li {
    padding: 0.4rem 0.9rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
}

/* SEO spoiler — текст у DOM для індексації, згорнутий за замовчуванням */
.sim-seo-section {
    padding-top: 0;
    padding-bottom: 1rem;
}

.sim-seo-section .seo-spoiler {
    margin-bottom: 0.5rem;
}

.seo-spoiler {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.seo-spoiler__title {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-muted);
}

.seo-spoiler__title::-webkit-details-marker { display: none; }

.seo-spoiler__title::after {
    content: '+';
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.seo-spoiler[open] .seo-spoiler__title::after { content: '−'; }

.seo-spoiler[open] .seo-spoiler__title {
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.seo-spoiler__body {
    padding: 1.25rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.seo-spoiler__body h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    margin: 1.5rem 0 0.75rem;
}

.seo-spoiler__body h3 {
    font-size: 0.95rem;
    color: var(--text);
    margin: 1rem 0 0.35rem;
}

.sim-icon-card__icon {
    width: 112px;
    height: 112px;
    margin-bottom: 0.85rem;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(241, 90, 36, 0.15);
}

.sim-icon-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.sim-icon-card__label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.sim-icon-card__value {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted);
    max-width: 12rem;
}

.sim-spec-bar {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.65rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.08), var(--bg-card));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
}

.sim-spec-bar__item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 0;
}

.sim-spec-bar__key {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.sim-spec-bar__val {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.sim-games-list--pills li {
    border-color: var(--border-strong);
    color: var(--text);
    font-weight: 500;
}

    .sim-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .sim-icon-card__icon {
        width: 80px;
        height: 80px;
    }
}

/* Game SEO */
.game-page__lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-top: 0.75rem;
}

.game-page__seo p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.footer__promo a { color: var(--accent); }
.footer__promo a:hover { color: var(--accent-bright); }

/* ── UX / SEO polish ── */

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible,
.nav__link:focus-visible {
    outline: 2px solid var(--accent-bright);
    outline-offset: 3px;
}

.breadcrumbs {
    padding: 0.75rem var(--gutter) 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs__item:not(:last-child)::after {
    content: '›';
    color: var(--accent);
    opacity: 0.7;
}

.breadcrumbs__link {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumbs__link:hover {
    color: var(--accent);
}

.breadcrumbs__current {
    color: var(--text);
    font-weight: 600;
}

.promo-card--flex {
    flex: 1;
    margin: 0;
}

.article-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.article-page__reading {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0.2rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 999px;
}

.article-related {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.article-related__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.article-related__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-related__list li {
    margin-bottom: 0.5rem;
}

.article-related__list a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}

.article-related__list a:hover {
    color: var(--accent);
}

.footer__dev-links {
    margin-top: 0.75rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0.75;
}

.footer__dev-label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer__dev-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer__dev-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.anchor-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(0, 0, 0, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.anchor-nav__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.75rem 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.anchor-nav__link {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    padding: 0.5rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.anchor-nav__price {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
}

.prices-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    html:has(.page--prices) {
        scroll-padding-top: 7.5rem;
    }

    .page--prices .anchor-nav {
        top: 52px;
    }

    .page--prices .page-hero {
        padding: 2.5rem 0 1.25rem;
    }

    .page--prices .page-hero__desc {
        font-size: 0.92rem;
    }

    .page--prices .section {
        padding: 2.5rem 0;
    }

    .page--prices .price-zone {
        scroll-margin-top: 7rem;
    }

    .page--prices .price-note__actions {
        flex-direction: column;
        width: 100%;
    }

    .page--prices .price-note__actions .btn {
        width: 100%;
    }

    .prices-mobile-cta {
        display: flex;
        gap: 0.5rem;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 190;
        padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
        background: rgba(0, 0, 0, 0.96);
        border-top: 1px solid var(--border);
        backdrop-filter: blur(10px);
    }

    .prices-mobile-cta .btn {
        flex: 1;
        justify-content: center;
        padding: 0.85rem 0.5rem;
        font-size: 0.88rem;
    }

    .page--prices .float-widgets {
        bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    }

    .page--prices main {
        padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    }

    .cards--zones {
        grid-template-columns: 1fr;
    }
}

.anchor-nav__link:hover {
    color: var(--accent);
    border-color: var(--border-strong);
    background: rgba(241, 90, 36, 0.06);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-chips__link {
    padding: 0.45rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
}

.filter-chips__link:hover {
    color: var(--accent);
    border-color: var(--border-strong);
    background: rgba(241, 90, 36, 0.06);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .card:hover,
    .gallery-item:hover {
        transform: none;
    }
}

.error-page {
    text-align: center;
    padding: 2rem 0 4rem;
}

.error-page__code {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.error-page__subtitle {
    font-family: var(--font-display);
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.error-page__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.error-page__link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: border-color var(--transition), color var(--transition);
}

.error-page__link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.error-page__hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.prose img,
.article-cover__img {
    max-width: 100%;
}

.article-map {
    margin: 1.25rem 0 0;
}

.article-map .contacts-map__iframe {
    min-height: 320px;
}

.prose .article-map .contacts-map__actions {
    margin-top: 1rem;
}

/* Порівняльні таблиці — картки на мобільному */
@media (max-width: 768px) {
    .compare-table--cards {
        display: block;
        width: 100%;
        margin: 1rem 0 1.5rem;
        border: none;
        table-layout: auto;
    }

    .compare-table--cards thead {
        display: none;
    }

    .compare-table--cards tbody {
        display: block;
    }

    .compare-table--cards td {
        display: block;
        width: auto !important;
        min-width: 0;
        padding: 0.6rem 0.85rem;
        border: none;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
    }

    /* Головна порівняльна таблиця: критерій + 2 колонки поруч */
    .compare-table--cards.compare-table--summary tbody tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        margin-bottom: 0.6rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--bg-card);
        overflow: hidden;
    }

    .compare-table--cards.compare-table--summary td {
        font-size: 0.78rem;
        line-height: 1.4;
        padding: 0.5rem 0.65rem;
    }

    .compare-table--cards.compare-table--summary td:first-child {
        grid-column: 1 / -1;
        background: rgba(241, 90, 36, 0.14);
        color: var(--accent);
        font-size: 0.66rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 0.42rem 0.65rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .compare-table--cards.compare-table--summary td:nth-child(2) {
        grid-column: 1;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(241, 90, 36, 0.05);
    }

    .compare-table--cards.compare-table--summary td:nth-child(3) {
        grid-column: 2;
        background: rgba(255, 255, 255, 0.02);
    }

    .compare-table--cards.compare-table--summary td:not(:first-child)::before {
        content: attr(data-label);
        display: block;
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--text-muted);
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }

    .compare-table--cards.compare-table--summary .compare-table__note {
        font-size: 0.68rem;
        margin-top: 0.15rem;
    }

    /* Плюшки — на всю ширину, Cyberhub і конкурент стеком */
    .compare-table--cards.compare-table--summary tbody tr.compare-row--perks {
        grid-template-columns: 1fr;
    }

    .compare-table--cards.compare-table--summary tbody tr.compare-row--perks td:nth-child(2),
    .compare-table--cards.compare-table--summary tbody tr.compare-row--perks td:nth-child(3) {
        grid-column: 1;
        border-right: none;
    }

    .compare-table--cards.compare-table--summary tbody tr.compare-row--perks td:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .compare-table--cards.compare-table--summary tbody tr.compare-row--perks .compare-perk {
        margin: 0.12rem 0;
        font-size: 0.74rem;
        line-height: 1.35;
    }

    /* Допоміжні 2-колонкові таблиці в статтях — стек */
    .compare-table--cards:not(.compare-table--summary) tbody tr {
        display: block;
        margin-bottom: 0.75rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--bg-card);
        overflow: hidden;
    }

    .compare-table--cards:not(.compare-table--summary) td {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .compare-table--cards:not(.compare-table--summary) td:last-child {
        border-bottom: none;
    }

    .compare-table--cards:not(.compare-table--summary) td:first-child {
        background: rgba(241, 90, 36, 0.12);
        color: var(--accent);
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .compare-table--cards:not(.compare-table--summary) td:not(:first-child)::before {
        content: attr(data-label);
        display: block;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        margin-bottom: 0.35rem;
    }

    .compare-table--cards:not(.compare-table--summary) .compare-perk {
        margin: 0.12rem 0;
    }

    .prose table:not(.compare-table--cards) {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Desktop — розширення поверх mobile-first бази */
@media (min-width: 769px) {
    html {
        scroll-padding-top: calc(4.5rem + var(--safe-top));
    }

    .hero {
        padding: 4.5rem 0 5.5rem;
    }

    .hero__badge {
        border-radius: 999px;
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.35rem 1rem;
    }

    .hero__usp {
        font-size: 0.95rem;
    }

    .hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: none;
        width: auto;
        margin: 0 auto 3rem;
        gap: 1rem;
    }

    .hero__actions .btn {
        width: auto;
    }

    .hero__features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .feature-pill {
        border-radius: 999px;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        justify-content: flex-start;
    }

    .page-hero {
        padding: 3.5rem 0 2rem;
    }

    .page-hero__desc {
        font-size: 1.05rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section--cta {
        padding: 5rem 0;
    }

    .cards--3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .cards--4,
    .cards--5 {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }

    .games-grid--visual {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .article-page__header {
        padding: 3rem 0 2rem;
    }

    .prose .article-lead {
        font-size: 1.08rem;
        padding: 1.25rem 1.5rem;
        border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    }

    body {
        padding-bottom: 0;
    }

    .float-widgets {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .call-widget__text,
    .telegram-widget__text {
        display: inline;
    }

    .call-widget,
    .telegram-widget {
        width: auto;
        height: auto;
        padding: 0.85rem 1.25rem;
        border-radius: 999px;
    }
}

/* CS2 Leaderboard */
.lb-page.section { padding-top: 2rem; padding-bottom: 3rem; }
.lb-page__header { text-align: center; margin-bottom: 2rem; }
.lb-page__lead { color: var(--text-muted); max-width: 36rem; margin: 0.75rem auto 0; }
.lb-page__season {
    display: inline-block; margin-top: 1rem; padding: 0.35rem 1rem;
    border: 1px solid var(--border-strong); border-radius: 999px;
    color: var(--gold); font-size: 0.9rem;
}
.lb-sort {
    display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem;
}
.lb-sort__btn {
    background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
    padding: 0.5rem 1.1rem; border-radius: 999px; cursor: pointer; font-family: inherit;
    transition: border-color var(--transition), background var(--transition);
}
.lb-sort__btn:hover, .lb-sort--active {
    border-color: var(--accent); background: var(--accent-soft); color: #fff;
}
.lb-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem; margin-bottom: 1.5rem;
}
.lb-stats__item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1rem; text-align: center;
}
.lb-stats__val { display: block; font-size: 1.5rem; font-weight: 700; color: var(--accent-bright); }
.lb-stats__label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.lb-podium {
    display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 0.75rem;
    align-items: end; margin-bottom: 1.5rem;
}
.lb-podium__card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.25rem 0.75rem; text-align: center;
}
.lb-podium__card--1 { border-color: var(--gold); transform: scale(1.03); }
.lb-podium__card--2 { border-color: #c0c0c0; }
.lb-podium__card--3 { border-color: #cd7f32; }
.lb-podium__medal { font-size: 2rem; line-height: 1; }
.lb-podium__name { margin: 0.5rem 0 0.25rem; font-family: var(--font-display); font-size: 1.05rem; }
.lb-podium__stats { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.lb-search-label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.lb-search {
    width: 100%; max-width: 24rem; margin: 0 auto 1.25rem; display: block;
    background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
    padding: 0.65rem 1rem; border-radius: var(--radius); font-family: inherit;
}
.lb-search:focus { outline: none; border-color: var(--accent); }
.lb-loading, .lb-error { text-align: center; padding: 2rem; color: var(--text-muted); }
.lb-error { color: #f66; }
.lb-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.lb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    display: table;
    table-layout: auto;
}
.lb-table thead { display: table-header-group; }
.lb-table tbody { display: table-row-group; }
.lb-table tr { display: table-row; }
.lb-table th,
.lb-table td { display: table-cell; }
.lb-table th {
    background: var(--bg-card-hover); color: var(--text-muted); font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 0.04em; padding: 0.75rem 0.5rem;
}
.lb-table td { padding: 0.75rem 0.5rem; border-top: 1px solid var(--border); text-align: center; }
.lb-table tbody tr:hover { background: var(--accent-soft); }
.lb-player { text-align: left !important; }
.lb-login code { font-size: 0.8em; color: var(--text-muted); }
.lb-k, .lb-mvp { font-weight: 700; color: var(--accent-bright); }
.lb-kd--good { color: #6f6; font-weight: 600; }
.lb-kd--ok { color: var(--gold); font-weight: 600; }
.lb-kd--low { color: #f88; }
.lb-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin: 1.25rem 0; }
.lb-page__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.game-page__leaderboard-cta {
    margin: 1.5rem 0; padding: 1.25rem; background: var(--accent-soft);
    border: 1px solid var(--border-strong); border-radius: var(--radius-lg); text-align: center;
}
@media (max-width: 640px) {
    .lb-podium { grid-template-columns: 1fr; }
    .lb-podium__card--1 { transform: none; }
    .lb-table { font-size: 0.8rem; }
}
