:root {
    color-scheme: light;
    --bg: #f7f8fc;
    --bg-alt: #eef2ff;
    --surface: rgba(255, 255, 255, .82);
    --surface-solid: #fff;
    --surface-soft: #f2f4fb;
    --text: #101528;
    --heading: #090d1c;
    --muted: #667085;
    --line: rgba(30, 41, 74, .12);
    --primary: #5b5cf0;
    --primary-dark: #4445ce;
    --secondary: #8b5cf6;
    --cyan: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef476f;
    --shadow-sm: 0 12px 34px rgba(45, 55, 100, .10);
    --shadow-lg: 0 32px 90px rgba(38, 45, 90, .17);
    --radius: 24px;
    --nav-height: 74px;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #080b16;
    --bg-alt: #101426;
    --surface: rgba(18, 23, 42, .82);
    --surface-solid: #11162a;
    --surface-soft: #181e34;
    --text: #eef1ff;
    --heading: #fff;
    --muted: #a7aec2;
    --line: rgba(218, 224, 255, .12);
    --primary: #8384ff;
    --primary-dark: #696af0;
    --secondary: #aa7bff;
    --cyan: #22d3ee;
    --success: #36d6a4;
    --warning: #fbbf24;
    --danger: #ff7291;
    --shadow-sm: 0 14px 38px rgba(0, 0, 0, .24);
    --shadow-lg: 0 35px 100px rgba(0, 0, 0, .42);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 20px); }
body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background .3s ease, color .3s ease;
}
h1, h2, h3, h4, h5, h6, .section-title, .brand-name { font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif; }
body.menu-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }
.container { width: min(1180px, calc(100% - 40px)); max-width: none; margin-inline: auto; padding-inline: 0; }
.skip-link {
    position: fixed; top: -80px; left: 20px; z-index: 200;
    padding: 12px 18px; border-radius: 12px; background: var(--surface-solid); box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 12px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bi.icon { display: inline-flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; }

.ambient { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: -1; }
.ambient::after {
    content: ""; position: absolute; inset: 0; opacity: .4;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0, transparent 65%);
}
.glow { position: absolute; border-radius: 50%; filter: blur(30px); opacity: .15; animation: float-glow 18s ease-in-out infinite alternate; }
.glow-one { width: 520px; height: 520px; left: -230px; top: 70px; background: var(--primary); }
.glow-two { width: 480px; height: 480px; right: -220px; top: 35%; background: var(--cyan); animation-delay: -7s; }
.glow-three { width: 320px; height: 320px; left: 42%; bottom: 3%; background: var(--secondary); animation-delay: -12s; }
@keyframes float-glow { to { transform: translate3d(55px, 35px, 0) scale(1.12); } }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav-height);
    border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
    border-color: var(--line); background: color-mix(in srgb, var(--bg) 80%, transparent);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 8px 30px rgba(20, 25, 60, .06);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.04em; }
.brand-logo { max-width: 152px; max-height: 42px; object-fit: contain; }
.brand-mark {
    width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary) 52%, var(--cyan));
    box-shadow: 0 9px 24px color-mix(in srgb, var(--primary) 28%, transparent);
}
.brand-mark svg { width: 23px; height: 23px; fill: currentColor; }
.brand-mark .bi { font-size: 22px; line-height: 1; }
.brand-mark .brand-favicon { width: 100%; height: 100%; border-radius: inherit; object-fit: contain; }
.brand-name { font-size: 19px; }
.brand-name span { color: var(--primary); }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 3px; }
.main-nav a {
    padding: 10px 8px; border-radius: 10px; color: var(--muted); font-size: 13px; font-weight: 700;
    white-space: nowrap; transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn, .menu-btn {
    width: 42px; height: 42px; padding: 0; display: grid; place-items: center; cursor: pointer;
    border: 1px solid var(--line); border-radius: 13px; color: var(--text); background: var(--surface);
}
.icon-btn .theme-moon { display: inline-flex; }
.icon-btn .theme-sun { display: none; }
[data-theme="dark"] .icon-btn .theme-moon { display: none; }
[data-theme="dark"] .icon-btn .theme-sun { display: inline-flex; }
.menu-btn { display: none; }
.login-link { padding: 11px 16px; color: var(--text); font-size: 13px; font-weight: 800; white-space: nowrap; }
.btn {
    min-height: 48px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    border: 1px solid transparent; border-radius: 14px; cursor: pointer; font-weight: 800; font-size: 14px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #fff; background: linear-gradient(120deg, var(--primary), var(--secondary), var(--cyan));
    background-size: 200% 200%; box-shadow: 0 14px 32px color-mix(in srgb, var(--primary) 28%, transparent);
    animation: gradient-flow 7s ease infinite;
}
.btn-secondary { color: var(--text); border-color: var(--line); background: var(--surface); backdrop-filter: blur(12px); }
@keyframes gradient-flow { 50% { background-position: 100% 50%; } }

.hero { min-height: 780px; padding: 155px 0 90px; display: flex; align-items: center; position: relative; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr); gap: clamp(45px, 7vw, 90px); align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid var(--line);
    border-radius: 999px; color: var(--muted); background: var(--surface); backdrop-filter: blur(12px);
    font-size: 12px; font-weight: 800;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 6px color-mix(in srgb, var(--success) 14%, transparent); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px transparent; } }
.hero h1 {
    margin: 24px 0 20px; color: var(--heading); font-size: clamp(48px, 5.6vw, 76px);
    line-height: .99; letter-spacing: -.068em;
}
.gradient-text {
    background: linear-gradient(100deg, var(--primary), var(--secondary) 50%, var(--cyan));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.7vw, 19px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-primary-action { position: relative; display: inline-flex; }
.click-hint { position: absolute; z-index: 2; display: block; width: 48px !important; height: 48px !important; right: -35px; bottom: -31px; pointer-events: none; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--muted); font-size: 13px; font-weight: 650; }
.trust-item { display: inline-flex; align-items: center; gap: 7px; }
.trust-item .icon { width: 17px; height: 17px; color: var(--success); }

.control-panel {
    position: relative; padding: 16px; border: 1px solid var(--line); border-radius: 30px;
    background: color-mix(in srgb, var(--surface-solid) 75%, transparent); box-shadow: var(--shadow-lg);
    backdrop-filter: blur(24px); animation: panel-float 7s ease-in-out infinite;
}
@keyframes panel-float { 50% { transform: translateY(-9px); } }
.control-panel::before {
    content: ""; position: absolute; inset: -1px 14% auto; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--cyan), transparent);
}
.panel-top { padding: 6px 7px 17px; display: flex; align-items: center; justify-content: space-between; }
.panel-title { display: flex; align-items: center; gap: 10px; font-weight: 850; font-size: 14px; }
.panel-dots { display: flex; gap: 5px; }
.panel-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.panel-online { color: var(--success); font-size: 11px; font-weight: 800; }
.dashboard { padding: 14px; border: 1px solid var(--line); border-radius: 21px; background: var(--surface-soft); }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.dash-stat { padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-solid); }
.dash-stat span { display: block; color: var(--muted); font-size: 10px; font-weight: 750; }
.dash-stat strong { display: block; margin-top: 6px; font-size: 19px; letter-spacing: -.04em; }
.trend { color: var(--success); font-size: 9px; font-weight: 800; }
.chart-card { margin-top: 9px; padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-solid); }
.chart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.chart-head strong { font-size: 12px; }
.chart-head span { color: var(--muted); font-size: 10px; }
.chart-gif { width: 100%; height: 116px; display: block; border-radius: 10px; object-fit: cover; }
.chart { height: 116px; display: flex; align-items: end; gap: 8px; }
.bar { flex: 1; min-width: 8px; border-radius: 7px 7px 3px 3px; background: linear-gradient(to top, var(--primary), var(--cyan)); transform-origin: bottom; animation: grow-bar 1.1s both; }
.bar:nth-child(2n) { background: linear-gradient(to top, var(--secondary), var(--primary)); }
@keyframes grow-bar { from { transform: scaleY(.08); opacity: .2; } }
.order-feed { margin-top: 9px; display: grid; gap: 7px; }
.feed-row { padding: 10px 12px; display: grid; grid-template-columns: 31px 1fr auto; gap: 9px; align-items: center; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-solid); }
.social-dot { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: #fff; font-size: 11px; font-weight: 900; }
.social-dot.fb { background: #1877f2; } .social-dot.tt { background: #121212; } .social-dot.yt { background: #ff0033; }
.social-dot img, .platform-badge img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.feed-row strong, .feed-row span { display: block; }
.feed-row strong { font-size: 10px; } .feed-row span { margin-top: 3px; color: var(--muted); font-size: 9px; }
.status-chip { padding: 5px 7px; border-radius: 999px; color: var(--success); background: color-mix(in srgb, var(--success) 12%, transparent); font-size: 8px; font-weight: 850; }
.float-card { position: absolute; z-index: 2; padding: 11px 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-solid); box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 800; animation: bob 5s ease-in-out infinite; }
.float-card.one { left: -32px; top: 18%; } .float-card.two { right: -28px; bottom: 17%; animation-delay: -2.5s; }
@keyframes bob { 50% { transform: translateY(-7px) rotate(1deg); } }

.platform-strip { padding: 19px 0; overflow: hidden; border-block: 1px solid var(--line); background: var(--surface); }
.marquee { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 55px; padding-right: 55px; }
.platform { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; font-weight: 850; white-space: nowrap; }
.platform strong { color: var(--primary); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.platform-badge { width: 31px; height: 31px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; color: var(--primary); background: var(--surface-solid); font-size: 15px; font-weight: 900; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 110px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg-alt) 70%, transparent), transparent); }
.section-head { max-width: 740px; margin: 0 auto 48px; text-align: center; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.section-title { margin: 13px 0 14px; color: var(--heading); font-size: clamp(34px, 4.5vw, 53px); line-height: 1.08; letter-spacing: -.055em; }
.section-copy { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.filter-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-btn {
    padding: 10px 15px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
    color: var(--muted); background: var(--surface); font-size: 12px; font-weight: 800;
}
.filter-platform-icon { width: 18px; height: 18px; border-radius: 6px; object-fit: cover; }
.filter-btn:hover, .filter-btn.active { color: #fff; border-color: transparent; background: linear-gradient(110deg, var(--primary), var(--secondary)); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    position: relative; min-height: 225px; padding: 25px; overflow: hidden; border: 1px solid var(--line);
    border-radius: var(--radius); background: var(--surface); backdrop-filter: blur(14px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--primary) 42%, var(--line)); box-shadow: var(--shadow-sm); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 0; color: var(--primary); background: transparent; }
.service-icon img { width: 48px; height: 48px; border-radius: 0; object-fit: contain; }
.service-card h3 { margin: 21px 0 9px; color: var(--heading); font-size: 19px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-type { display: inline-flex; margin-top: 2px; padding: 6px 9px; border-radius: 999px; color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); font-size: 10px; font-weight: 850; }
.service-code { position: absolute; top: 25px; right: 25px; max-width: calc(100% - 100px); overflow: hidden; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.card-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-size: 12px; font-weight: 850; }
.card-link .icon { width: 15px; height: 15px; transition: transform .2s; }
.service-card:hover .card-link .icon { transform: translateX(4px); }
.empty-state { grid-column: 1 / -1; padding: 44px; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); text-align: center; }

.server-shell { padding: 18px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-sm); }
.server-toolbar { padding: 5px 5px 18px; display: grid; grid-template-columns: 1fr 230px; gap: 12px; }
.search-box { position: relative; }
.search-box .icon { position: absolute; left: 15px; top: 50%; color: var(--muted); transform: translateY(-50%); }
.control {
    width: 100%; min-height: 48px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px;
    outline: 0; color: var(--text); background-color: var(--surface-solid);
}
.search-box .control { padding-left: 46px; }
.control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 14%, transparent); }
.server-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.server-card {
    min-width: 0; padding: 18px; display: flex; flex-direction: column; border: 1px solid var(--line);
    border-radius: 18px; background: var(--surface-solid); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.server-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--primary) 38%, var(--line)); box-shadow: var(--shadow-sm); }
.server-card-head { display: flex; align-items: flex-start; gap: 11px; }
.server-card-icon {
    flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px;
    color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary), var(--cyan));
}
.server-card-icon .icon { width: 18px; height: 18px; }
.server-name {
    margin: 1px 0 0; display: -webkit-box; overflow: hidden; color: var(--heading); font-size: 13px;
    font-weight: 800; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
}
.server-details { margin-top: 17px; padding-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; border-top: 1px solid var(--line); }
.server-metric { padding: 10px; border-radius: 12px; background: var(--surface-soft); }
.server-metric span, .server-price-block span { display: block; color: var(--muted); font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.server-metric strong { display: block; margin-top: 5px; color: var(--heading); font-size: 12px; }
.server-price-block { margin-top: 14px; display: flex; align-items: end; justify-content: space-between; gap: 10px; }
.server-price { color: var(--primary); font-size: 19px; font-weight: 900; letter-spacing: -.035em; white-space: nowrap; }
.tag { display: inline-flex; padding: 5px 8px; border-radius: 999px; font-size: 9px; font-weight: 850; white-space: nowrap; }
.tag-success { color: var(--success); background: color-mix(in srgb, var(--success) 12%, transparent); }
.tag-muted { color: var(--muted); background: var(--surface-soft); }
.table-empty { grid-column: 1 / -1; padding: 34px; border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); text-align: center; font-size: 13px; }
.server-pagination { margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.page-button {
    min-width: 38px; height: 38px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 11px; cursor: pointer; color: var(--text); background: var(--surface-solid); font-size: 12px; font-weight: 800;
}
.page-button:hover:not(:disabled) { color: var(--primary); border-color: var(--primary); }
.page-button:disabled { cursor: not-allowed; opacity: .4; }
.page-info { min-width: 90px; color: var(--muted); text-align: center; font-size: 11px; font-weight: 750; }
.server-note { margin: 14px 7px 2px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.server-groups { display: grid; gap: 16px; }
.server-group { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-solid); }
.server-group-head { padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.server-group-title { min-width: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; }
.server-group-platform-icon { width: 27px; height: 27px; border-radius: 8px; object-fit: cover; }
.server-group-title h3 { margin: 0; color: var(--heading); font-size: 15px; letter-spacing: -.02em; }
.server-type-badge { display: inline-flex; max-width: 100%; padding: 5px 8px; overflow: hidden; border-radius: 999px; color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); font-size: 9px; font-weight: 850; text-overflow: ellipsis; white-space: nowrap; }
.server-count { flex: 0 0 auto; color: var(--muted); font-size: 10px; font-weight: 800; }
.server-list-head, .server-item { display: grid; grid-template-columns: minmax(300px, 1fr) 105px 105px 145px; gap: 16px; align-items: center; }
.server-list-head { padding: 11px 18px; color: var(--muted); background: color-mix(in srgb, var(--surface-soft) 56%, transparent); font-size: 9px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.server-item { padding: 16px 18px; border-top: 1px solid var(--line); transition: background .2s ease; }
.server-list-head + .server-item { border-top: 0; }
.server-item:hover { background: color-mix(in srgb, var(--primary) 5%, transparent); }
.server-item-name { min-width: 0; color: var(--text); font-size: 12px; font-weight: 700; line-height: 1.65; overflow-wrap: anywhere; }
.server-list-value { color: var(--muted); font-size: 12px; }
.server-list-value strong { display: none; }
.server-group-empty { padding: 34px 20px; border: 1px dashed var(--line); border-radius: 18px; color: var(--muted); text-align: center; font-size: 13px; }

.news-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 18px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.news-visual { height: 190px; padding: 22px; display: flex; align-items: end; position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #5b5cf0, #8b5cf6 53%, #06b6d4); }
.news-card.featured .news-visual { height: 250px; }
.news-visual::before { content: ""; position: absolute; width: 180px; height: 180px; right: -30px; top: -50px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.07), 0 0 0 62px rgba(255,255,255,.04); }
.news-visual strong { position: relative; max-width: 280px; font-size: 23px; line-height: 1.15; letter-spacing: -.04em; }
.news-body { padding: 21px; }
.news-meta { display: flex; align-items: center; gap: 7px; color: var(--primary); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.news-body h3 { margin: 11px 0 9px; color: var(--heading); font-size: 17px; line-height: 1.4; }
.news-body p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 65px; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro .section-title { font-size: clamp(34px, 4vw, 48px); }
.faq-visual { position: relative; margin-top: 12px; overflow: visible; background: transparent; }
.faq-visual dotlottie-wc { position: relative; display: block; width: min(430px, 112%) !important; height: 400px !important; margin-inline: auto; }
.support-card { margin-top: 25px; padding: 19px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.faq-visual + .support-card { margin-top: 14px; }
.support-card strong { display: block; margin-bottom: 7px; font-size: 14px; }
.support-card p { margin: 0 0 14px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; background: var(--surface); overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.faq-item:hover { transform: translateX(5px); border-color: color-mix(in srgb, var(--primary) 38%, var(--line)); box-shadow: 0 12px 30px color-mix(in srgb, var(--primary) 10%, transparent); }
.faq-item.open { border-color: color-mix(in srgb, var(--primary) 48%, var(--line)); background: color-mix(in srgb, var(--surface) 94%, var(--primary) 6%); box-shadow: 0 14px 34px color-mix(in srgb, var(--primary) 11%, transparent); animation: faq-select .35s ease; }
@keyframes faq-select { 50% { transform: scale(1.008); } }
.faq-question { width: 100%; padding: 19px 21px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 0; cursor: pointer; color: var(--heading); background: transparent; text-align: left; font-size: 14px; font-weight: 800; transition: color .25s ease, background .25s ease; }
.faq-question:hover { color: var(--primary); background: color-mix(in srgb, var(--primary) 5%, transparent); }
.faq-question:active { background: color-mix(in srgb, var(--primary) 10%, transparent); }
.faq-plus { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); transition: transform .3s ease, color .25s ease, background .25s ease, box-shadow .25s ease; }
.faq-question:hover .faq-plus { color: #fff; background: var(--primary); box-shadow: 0 7px 18px color-mix(in srgb, var(--primary) 28%, transparent); transform: scale(1.08); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { margin: 0; padding: 0 21px 21px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.faq-item.open .faq-plus { color: #fff; background: var(--primary); transform: rotate(45deg); }
.faq-item.open .faq-question:hover .faq-plus { transform: rotate(45deg) scale(1.08); }

.review-shell { position: relative; max-width: 850px; margin-inline: auto; }
.review-viewport { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: var(--surface); box-shadow: var(--shadow-sm); }
.review-track { display: flex; transition: transform .5s cubic-bezier(.22,.8,.25,1); }
.review { flex: 0 0 100%; padding: clamp(30px, 6vw, 58px); text-align: center; }
.stars { color: var(--warning); letter-spacing: 4px; }
.review blockquote { max-width: 690px; margin: 22px auto 26px; color: var(--heading); font-size: clamp(20px, 3vw, 28px); line-height: 1.55; letter-spacing: -.025em; }
.review-person { display: inline-flex; align-items: center; gap: 12px; text-align: left; }
.avatar { width: 46px; height: 46px; display: block; flex: 0 0 auto; border-radius: 15px; object-fit: cover; background: var(--surface-soft); }
.review-person strong, .review-person span { display: block; }
.review-person strong { font-size: 13px; } .review-person span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 20px; }
.slider-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; cursor: pointer; background: color-mix(in srgb, var(--muted) 35%, transparent); transition: width .2s, background .2s; }
.slider-dot.active { width: 25px; border-radius: 99px; background: var(--primary); }
.review-arrow {
    position: absolute; z-index: 3; top: 50%; width: 46px; height: 46px; display: grid; place-items: center;
    border: 1px solid var(--line); border-radius: 15px; cursor: pointer; color: var(--text);
    background: var(--surface-solid); box-shadow: var(--shadow-sm); transform: translateY(-50%);
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.review-arrow:hover { color: var(--primary); border-color: var(--primary); }
.review-arrow.prev { left: -23px; }
.review-arrow.next { right: -23px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { position: relative; isolation: isolate; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease; }
.plan::before { content: ""; position: absolute; z-index: 0; width: 55%; height: 160%; left: -85%; top: -30%; opacity: 0; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary) 12%, transparent), transparent); transform: rotate(18deg); transition: left .75s ease, opacity .3s ease; pointer-events: none; }
.plan:hover { transform: translateY(-9px); border-color: color-mix(in srgb, var(--primary) 42%, var(--line)); box-shadow: 0 24px 55px color-mix(in srgb, var(--primary) 14%, transparent); }
.plan:hover::before { left: 135%; opacity: 1; }
.plan.featured { border-color: color-mix(in srgb, var(--primary) 55%, var(--line)); box-shadow: var(--shadow-lg); transform: translateY(-12px); }
.plan.featured:hover { transform: translateY(-19px) scale(1.012); }
.plans .plan.visible { animation: plan-enter .72s cubic-bezier(.2,.8,.2,1) backwards; }
.plans .plan:nth-child(2).visible { animation-name: plan-featured-enter; animation-delay: .12s; }
.plans .plan:nth-child(3).visible { animation-delay: .24s; }
@keyframes plan-enter { from { opacity: 0; transform: translateY(42px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes plan-featured-enter { from { opacity: 0; transform: translateY(32px) scale(.96); } to { opacity: 1; transform: translateY(-12px) scale(1); } }
.popular { position: absolute; right: 20px; top: 20px; padding: 6px 9px; border-radius: 999px; color: #fff; background: linear-gradient(100deg, var(--primary), var(--secondary)); box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 35%, transparent); font-size: 9px; font-weight: 900; animation: popular-pulse 2.4s ease-out infinite; }
@keyframes popular-pulse { 55%, 100% { box-shadow: 0 0 0 10px transparent; } }
.plan-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 14px; color: var(--primary); background: color-mix(in srgb, var(--primary) 11%, transparent); animation: plan-icon-float 3s ease-in-out infinite; }
.plan:nth-child(2) .plan-icon { animation-delay: -.8s; }
.plan:nth-child(3) .plan-icon { animation-delay: -1.6s; }
@keyframes plan-icon-float { 50% { transform: translateY(-6px) rotate(4deg); box-shadow: 0 9px 20px color-mix(in srgb, var(--primary) 15%, transparent); } }
.plan h3 { margin: 18px 0 7px; color: var(--heading); font-size: 20px; }
.plan-sub { min-height: 42px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.discount { margin: 22px 0; color: var(--heading); font-size: 36px; font-weight: 900; letter-spacing: -.055em; }
.discount small { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0; }
.plan-list { margin: 0 0 24px; padding: 0; display: grid; gap: 12px; list-style: none; }
.plan-list li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; }
.plan-list .icon { width: 16px; height: 16px; color: var(--success); }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: start; }
.process-grid::before { display: none; }
.step {
    position: relative; min-height: 225px; padding: 30px; overflow: hidden; border: 1px solid var(--line);
    border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); text-align: left;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.step::before { content: ""; position: absolute; z-index: 0; width: 46%; height: 180%; left: -75%; top: -42%; opacity: 0; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary) 10%, transparent), transparent); transform: rotate(18deg); transition: left .7s ease, opacity .25s ease; pointer-events: none; }
.step::after {
    content: ""; position: absolute; width: 150px; height: 150px; right: -72px; bottom: -78px;
    border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent); border-radius: 50%;
    box-shadow: 0 0 0 25px color-mix(in srgb, var(--primary) 4%, transparent); animation: process-ring 4s ease-in-out infinite;
}
.step:nth-child(even) { min-height: 285px; margin-top: 58px; }
.step:nth-child(3) { min-height: 275px; }
.step:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--primary) 42%, var(--line)); box-shadow: var(--shadow-lg); }
.step:hover::before { left: 135%; opacity: 1; }
.process-grid .step.visible { animation: process-enter-left .75s cubic-bezier(.2,.8,.2,1) backwards; }
.process-grid .step:nth-child(even).visible { animation-name: process-enter-right; animation-delay: .12s; }
.process-grid .step:nth-child(3).visible { animation-delay: .22s; }
.process-grid .step:nth-child(4).visible { animation-delay: .34s; }
@keyframes process-enter-left { from { opacity: 0; transform: translate3d(-45px, 25px, 0) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes process-enter-right { from { opacity: 0; transform: translate3d(45px, 25px, 0) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes process-ring { 50% { transform: scale(1.12); opacity: .55; } }
.step-number { position: relative; z-index: 1; width: 62px; height: 62px; margin: 0 0 25px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--line)); border-radius: 20px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: 0 14px 30px color-mix(in srgb, var(--primary) 20%, transparent); font-size: 18px; font-weight: 900; transform: rotate(4deg); animation: step-number-float 3s ease-in-out infinite; transition: transform .3s ease, box-shadow .3s ease; }
.step:nth-child(2) .step-number { animation-delay: -.7s; }
.step:nth-child(3) .step-number { animation-delay: -1.4s; }
.step:nth-child(4) .step-number { animation-delay: -2.1s; }
.step:hover .step-number { animation: none; transform: rotate(-4deg) scale(1.08); box-shadow: 0 18px 36px color-mix(in srgb, var(--primary) 32%, transparent); }
@keyframes step-number-float { 50% { transform: rotate(-3deg) translateY(-7px); box-shadow: 0 20px 36px color-mix(in srgb, var(--primary) 28%, transparent); } }
.step-number span { transform: rotate(-4deg); }
.step h3 { position: relative; z-index: 1; margin: 0 0 10px; color: var(--heading); font-size: 20px; }
.step p { position: relative; z-index: 1; max-width: 440px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.landing-cta { padding-top: 75px; }
.cta-box { position: relative; padding: clamp(36px, 7vw, 72px); overflow: hidden; border-radius: 34px; color: #fff; background: linear-gradient(125deg, #4647d7, #7c4ee4 52%, #0899b5); box-shadow: 0 35px 85px rgba(79, 70, 210, .28); text-align: center; }
.cta-box::before, .cta-box::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.cta-box::before { width: 330px; height: 330px; left: -150px; top: -190px; box-shadow: 0 0 0 45px rgba(255,255,255,.04), 0 0 0 90px rgba(255,255,255,.025); }
.cta-box::after { width: 270px; height: 270px; right: -100px; bottom: -170px; box-shadow: 0 0 0 38px rgba(255,255,255,.04); }
.cta-content { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.cta-box h2 { margin: 0 0 15px; font-size: clamp(34px, 5vw, 58px); line-height: 1.05; letter-spacing: -.06em; }
.cta-box p { max-width: 620px; margin: 0 auto 27px; color: rgba(255,255,255,.82); line-height: 1.7; }
.cta-box .btn { color: #3738b6; background: #fff; box-shadow: 0 15px 32px rgba(18,22,70,.2); }

.footer { padding: 85px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 50px; }
.footer-about p { max-width: 340px; margin: 17px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.footer h3 { margin: 0 0 17px; color: var(--heading); font-size: 13px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--primary); }
.social-links { display: flex; gap: 8px; margin-top: 20px; }
.social-links a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: var(--muted); background: var(--surface); }
.social-links a:hover { color: var(--primary); border-color: var(--primary); }
.footer-bottom { margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.back-to-top {
    position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 44px; height: 44px; display: grid; place-items: center;
    border: 1px solid var(--line); border-radius: 14px; cursor: pointer; color: #fff; background: var(--primary);
    box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }

@media (max-width: 1100px) {
    .main-nav { display: none; position: fixed; inset: var(--nav-height) 0 auto; max-height: calc(100dvh - var(--nav-height)); padding: 18px 20px 25px; overflow-y: auto; border-bottom: 1px solid var(--line); background: var(--surface-solid); box-shadow: var(--shadow-sm); }
    .main-nav.open { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .main-nav a { padding: 13px; font-size: 14px; }
    .menu-btn { display: grid; }
    .nav-actions { margin-left: auto; }
    .hero-grid { grid-template-columns: 1fr 440px; gap: 35px; }
    .hero h1 { font-size: clamp(45px, 5.5vw, 62px); }
}
@media (max-width: 900px) {
    .hero { padding-top: 135px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-copy { margin-inline: auto; }
    .hero-actions, .trust-row { justify-content: center; }
    .control-panel { width: min(520px, 100%); margin-inline: auto; }
    .services-grid, .plans { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card.featured { grid-column: 1 / -1; }
    .faq-layout { grid-template-columns: 1fr; gap: 35px; }
    .faq-intro { position: static; text-align: center; }
    .faq-visual { width: min(430px, 100%); margin-inline: auto; }
    .faq-visual + .support-card { width: min(430px, 100%); margin-inline: auto; }
    .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 45px; }
    .process-grid::before { display: none; }
    .server-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    :root { --nav-height: 66px; }
    .container { width: min(100% - 26px, 1180px); }
    .login-link { display: none; }
    .nav-register { display: none; }
    .brand-name { max-width: 135px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .hero { min-height: auto; padding: 115px 0 70px; }
    .hero h1 { font-size: clamp(41px, 12vw, 58px); }
    .hero-copy { font-size: 15px; }
    .hero-actions .btn { width: 100%; }
    .hero-primary-action { width: 100%; }
    .click-hint { right: 3px; bottom: -30px; }
    .trust-row { gap: 10px 16px; }
    .control-panel { padding: 10px; border-radius: 22px; }
    .float-card { display: none; }
    .dashboard { padding: 9px; }
    .dash-stat { padding: 10px; }
    .dash-stat strong { font-size: 15px; }
    .chart { height: 85px; }
    .section { padding: 82px 0; }
    .section-head { margin-bottom: 34px; }
    .section-title { font-size: 36px; }
    .services-grid, .plans, .news-grid, .process-grid { grid-template-columns: 1fr; }
    .news-card.featured { grid-column: auto; }
    .news-card.featured .news-visual { height: 210px; }
    .server-shell { padding: 11px; border-radius: 20px; }
    .server-toolbar { grid-template-columns: 1fr; }
    .server-grid { grid-template-columns: 1fr; }
    .server-list-head { display: none; }
    .server-group-head { align-items: flex-start; }
    .server-item { grid-template-columns: 1fr 1fr 1fr; gap: 13px 8px; }
    .faq-visual dotlottie-wc { width: min(390px, 112%) !important; height: 340px !important; }
    .faq-item:hover { transform: translateY(-2px); }
    .server-item-name { grid-column: 1 / -1; padding-bottom: 11px; border-bottom: 1px dashed var(--line); }
    .server-list-value strong { display: block; margin-bottom: 4px; color: var(--muted); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
    .plan.featured { transform: none; }
    .plans .plan:nth-child(2).visible { animation-name: plan-enter; }
    .plan:hover, .plan.featured:hover { transform: translateY(-6px); }
    .review { padding: 32px 20px; }
    .review blockquote { font-size: 19px; }
    .review-arrow { width: 38px; height: 38px; }
    .review-arrow.prev { left: 8px; }
    .review-arrow.next { right: 8px; }
    .step, .step:nth-child(even), .step:nth-child(3) { min-height: auto; margin-top: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
    .footer-about { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .plans .plan.visible, .process-grid .step.visible, .plan-icon, .popular, .step-number, .step::after { animation: none !important; }
}
