/* ==========================================================================
   Hosting-VDS — Design System
   Light theme · Deep emerald/teal secondary · Emerald→teal→cyan accent
   (legacy variable names --navy/--blue/--violet kept for cascade)
   ========================================================================== */

:root {
  /* base / 60% — neutral cool light */
  --bg: #f6f7fb;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f0f1f9;

  /* secondary / 30% — deep indigo / graphite (dark contrast) */
  --navy: #1b1740;
  --navy-2: #241d57;
  --navy-3: #2e2470;
  --graphite: #181430;
  --ink: #1c1a3a;

  /* accent / 10% — multicolor: violet → pink → orange (+ helpers) */
  --cyan: #0891b2;
  --cyan-bright: #22d3ee;
  --blue: #7c3aed;       /* PRIMARY action — violet */
  --violet: #ec4899;     /* pink */
  --amber: #f59e0b;
  --orange: #f97316;
  --emerald: #10b981;
  --red: #ef4444;
  --accent: #7c3aed;
  --accent-grad: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #fb923c 112%);
  --accent-grad-soft: linear-gradient(135deg, rgba(139,92,246,.16), rgba(236,72,153,.14));

  /* text */
  --text: #1f2138;
  --text-2: #565a76;
  --text-3: #8a8da6;
  --text-on-dark: #eef0fb;
  --text-on-dark-2: #b7bbe0;

  /* lines */
  --border: #e7e8f2;
  --border-2: #d7d9ea;

  /* effects (indigo-tinted shadows) */
  --shadow-sm: 0 1px 2px rgba(26,20,69,.06), 0 2px 8px rgba(26,20,69,.05);
  --shadow-md: 0 8px 24px rgba(26,20,69,.08), 0 2px 6px rgba(26,20,69,.05);
  --shadow-lg: 0 24px 60px rgba(26,20,69,.14), 0 8px 20px rgba(26,20,69,.08);
  --shadow-accent: 0 12px 34px rgba(124,58,237,.34);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --maxw: 1400px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Sora", "Manrope", system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* svg logo sprite */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.bico { display: block; width: 60%; height: 60%; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 200;
  background: var(--accent-grad); background-size: 200% auto;
  box-shadow: 0 0 12px rgba(45,212,191,.6); transition: width .1s linear;
}

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 8px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap; will-change: transform; isolation: isolate;
}
.btn svg { transition: transform .3s var(--ease); position: relative; z-index: 2; }
.btn > * { position: relative; z-index: 2; }
.btn:hover svg { transform: translateX(3px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
/* shine sweep */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 140%; }

.btn-accent {
  color: #fff; background: var(--accent-grad);
  background-size: 200% 200%; background-position: 0% 50%;
  box-shadow: var(--shadow-accent);
  animation: btnGradient 5s ease infinite;
}
@keyframes btnGradient { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.btn-accent:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 44px rgba(16,185,129,.5); }
.btn-accent:active { transform: translateY(-1px) scale(1); }

.btn-soft { color: var(--navy); background: var(--surface-soft); border: 1px solid var(--border); }
.btn-soft:hover { transform: translateY(-2px); border-color: var(--cyan-bright); box-shadow: var(--shadow-md); color: var(--blue); }

.btn-ghost { color: var(--navy); border: 1px solid var(--border-2); background: transparent; }
.btn-ghost:hover { border-color: var(--navy); background: var(--surface); }

.btn-dark { color: #fff; background: var(--navy); }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-3); box-shadow: var(--shadow-lg); }

.btn-light { color: var(--navy); background: #fff; }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.9);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(6,43,39,.06);
}
.header-inner { display: flex; align-items: center; gap: 22px; height: 72px; }

.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; height: 36px; width: auto; filter: drop-shadow(0 4px 10px rgba(10,31,68,.25)); transition: transform .4s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.04); }

.main-nav { margin-left: 8px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 10px; color: var(--text-2);
  font-weight: 700; font-size: .95rem; transition: color .2s, background .2s;
}
.nav-link::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; border-radius: 2px; background: var(--accent-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-link:hover { color: var(--navy); background: var(--surface-soft); }
.nav-link:hover::after, .has-mega:hover .nav-link::after, .has-mega.kb-open .nav-link::after, .has-mega.is-open .nav-link::after { transform: scaleX(1); }
.nav-link .chev { transition: transform .3s var(--ease); }
.has-mega:hover .nav-link .chev { transform: rotate(180deg); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* mega menu */
.has-mega { position: relative; }
.mega {
  position: fixed; top: 72px; left: 50%; transform: translateX(-50%) translateY(12px);
  width: min(780px, 94vw);
  background: rgba(255,255,255,.97); backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid var(--border); border-radius: 22px; padding: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
}
.mega::before { content: ""; position: absolute; top: -16px; left: -10%; right: -10%; height: 22px; }
.has-mega:hover .mega, .has-mega:focus-within .mega, .has-mega.kb-open .mega, .has-mega.is-open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

/* wide locations mega — fits without scrolling */
.mega-wide { width: min(1360px, 98vw); padding: 20px 22px; }
.mega-wide-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 0 4px 14px; margin-bottom: 10px; border-bottom: 1px solid var(--border); }
.mega-wide-head .eyebrow { margin-bottom: 0; }
.mega-wide-head h3 { font-size: 1.02rem; color: var(--ink); }
.mega-loc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.loc-card {
  display: grid; grid-template-columns: 46px 1fr; grid-template-rows: auto auto;
  column-gap: 12px; align-items: center; padding: 13px 14px; border-radius: 15px;
  transition: background .2s, transform .25s var(--ease), box-shadow .2s; position: relative; overflow: hidden;
  border: 1px solid transparent;
}
.loc-card::before { content: ""; position: absolute; inset: 0; border-radius: 15px; background: var(--accent-grad-soft); opacity: 0; transition: opacity .25s; z-index: 0; }
.loc-card > * { position: relative; z-index: 1; }
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border); }
.loc-card:hover::before { opacity: 1; }
.loc-ico { grid-row: 1 / 3; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--surface-soft); overflow: hidden; transition: transform .25s var(--ease); }
.loc-ico .bico { width: 28px; height: 28px; }
.loc-ico.flag { background: none; box-shadow: inset 0 0 0 1px var(--border); }
.loc-ico.flag .bico { width: 46px; height: 46px; }
.loc-card:hover .loc-ico { transform: scale(1.1) rotate(-4deg); }
.loc-tt { font-weight: 800; color: var(--ink); font-size: .82rem; line-height: 1.2; letter-spacing: -.01em; }
.loc-sub { color: var(--text-3); font-size: .72rem; line-height: 1.25; margin-top: 2px; }
@media (max-width: 1200px) { .mega-loc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .mega-loc-grid { grid-template-columns: repeat(2, 1fr); } }
.mega-card {
  display: grid; grid-template-columns: 46px 1fr; grid-template-rows: auto auto;
  column-gap: 12px; align-items: center;
  padding: 13px 14px; border-radius: 15px; transition: background .2s, transform .2s;
}
.mega-card:hover { background: var(--surface-soft); transform: translateY(-2px); }
.mega-ico {
  grid-row: 1 / 3; width: 46px; height: 46px; display: grid; place-items: center;
  font-size: 1.5rem; border-radius: 13px; background: var(--accent-grad-soft);
}
.mega-tt { font-weight: 700; color: var(--ink); font-size: .92rem; }
.mega-sub { color: var(--text-3); font-size: .8rem; line-height: 1.3; }

/* burger + mobile */
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border: 1px solid var(--border-2); }
.burger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: 72px 0 0 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
  transform: translateX(100%); transition: transform .35s var(--ease);
  overflow-y: auto; padding: 24px;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { padding: 15px 12px; font-weight: 700; font-size: 1.08rem; border-bottom: 1px solid var(--border); color: var(--ink); }
.mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden; padding: 70px 0 0;
  background:
    radial-gradient(60% 55% at 82% -5%, rgba(45,212,191,.30), transparent 60%),
    radial-gradient(48% 45% at 8% 8%, rgba(16,185,129,.20), transparent 62%),
    radial-gradient(50% 50% at 50% 110%, rgba(6,182,212,.18), transparent 60%),
    linear-gradient(165deg, #e6fbf2 0%, #eef9f4 42%, #f2faf6 72%, var(--bg) 100%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .9; }
.hero-aurora {
  position: absolute; z-index: 0; pointer-events: none; inset: -25% -12% auto -12%; height: 95%;
  background:
    radial-gradient(42% 52% at 18% 28%, rgba(45,212,191,.30), transparent 70%),
    radial-gradient(46% 58% at 82% 18%, rgba(6,182,212,.24), transparent 70%),
    radial-gradient(52% 62% at 56% 62%, rgba(16,185,129,.24), transparent 70%);
  filter: blur(22px); animation: auroraShift 14s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(4%, -2%, 0) scale(1.12); }
  100% { transform: translate3d(-4%, 5%, 0) scale(1.18); }
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(10,31,68,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(10,31,68,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 35%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 35%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  min-height: 600px; padding-bottom: 70px;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(255,255,255,.7); border: 1px solid var(--border);
  font-weight: 700; font-size: .82rem; color: var(--navy); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #16d09a; position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(22,208,154,.5); animation: pulseRing 1.8s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

.hero-title { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 800; margin: 20px 0 18px; letter-spacing: -.03em; }
.grad-text { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% auto; animation: gradMove 6s linear infinite; }
@keyframes gradMove { to { background-position: 200% center; } }
.hero-lead { font-size: 1.12rem; color: var(--text-2); max-width: 540px; }

.hero-cta { display: flex; gap: 14px; margin: 30px 0 26px; flex-wrap: wrap; }

.hero-locs { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-locs-label { color: var(--text-3); font-weight: 600; font-size: .9rem; }
.loc-chip {
  padding: 8px 15px; border-radius: 999px; border: 1px solid var(--border-2);
  background: var(--surface); font-weight: 700; font-size: .9rem; color: var(--navy);
  transition: all .22s var(--ease);
}
.loc-chip:hover { border-color: var(--cyan-bright); transform: translateY(-2px); }
.loc-chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-md); }
.loc-soon { color: var(--text-3); font-size: .82rem; font-style: italic; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 12px 34px; padding-top: 24px; border-top: 1px solid var(--border); }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height: 1; }
.hero-stats span { color: var(--text-3); font-size: .85rem; margin-top: 4px; }

/* advantages hub visual — размеры в % / cqw, чтобы блок честно сжимался на мобильных
   (фиксированные 440px + transform:scale ломали layout: бокс оставался шире экрана) */
.orbit-wrap {
  position: relative; width: min(440px, 100%); aspect-ratio: 1 / 1;
  display: grid; place-items: center; margin: 0 auto;
  container-type: inline-size;
}
.orbit { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(16,185,129,.18); }
.orbit-1 { width: 100%; height: 100%; animation: spin 26s linear infinite; }
.orbit-2 { width: 75%; height: 75%; border-color: rgba(45,212,191,.22); animation: spin 18s linear infinite reverse; }
.orbit-3 { width: 50%; height: 50%; border-color: rgba(5,150,105,.20); animation: spin 12s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-dot { position: absolute; border-radius: 50%; }
.dot-1 { width: 14px; height: 14px; background: var(--cyan-bright); top: 0; left: 50%; box-shadow: 0 0 18px var(--cyan-bright); animation: orbitMove1 26s linear infinite; }
.dot-2 { width: 11px; height: 11px; background: var(--violet); top: 50%; left: 0; box-shadow: 0 0 16px var(--violet); animation: orbitMove2 18s linear infinite; }
.dot-3 { width: 9px; height: 9px; background: var(--blue); top: 50%; right: 0; box-shadow: 0 0 14px var(--blue); animation: orbitMove3 12s linear infinite; }
@keyframes orbitMove1 { from { transform: rotate(0) translateX(50cqw) rotate(0);} to { transform: rotate(360deg) translateX(50cqw) rotate(-360deg);} }
@keyframes orbitMove2 { from { transform: rotate(0) translateX(37.5cqw) rotate(0);} to { transform: rotate(-360deg) translateX(37.5cqw) rotate(360deg);} }
@keyframes orbitMove3 { from { transform: rotate(0) translateX(25cqw) rotate(0);} to { transform: rotate(360deg) translateX(25cqw) rotate(-360deg);} }

.server-card {
  position: relative; z-index: 3; width: 280px;
  background: linear-gradient(160deg, #0c2350, #0a1c3f); color: #fff;
  border-radius: 22px; padding: 18px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06) inset;
  transform-style: preserve-3d; transition: transform .15s ease-out;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.server-glow { position: absolute; inset: -2px; border-radius: 22px; background: var(--accent-grad); filter: blur(22px); opacity: .1; z-index: -1; }
.server-top { display: flex; align-items: center; gap: 7px; font-size: .72rem; letter-spacing: .08em; }
.server-led { width: 8px; height: 8px; border-radius: 50%; background: #16d09a; box-shadow: 0 0 8px #16d09a; }
.server-led.led-2 { background: #f5b942; box-shadow: 0 0 8px #f5b942; }
.server-name { font-weight: 700; color: #b8ece0; }
.server-online { margin-left: auto; color: #16d09a; font-weight: 800; font-size: .66rem; }
.server-rack { display: grid; gap: 7px; margin: 16px 0; }
.rack-unit { position: relative; height: 26px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 5px; padding: 0 10px; }
.rack-unit span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4); }
.rack-unit i { position: absolute; right: 10px; width: 38px; height: 5px; border-radius: 3px; background: var(--accent-grad); opacity: .8; }
.rack-unit:nth-child(1) span:first-child { background: var(--cyan-bright); box-shadow: 0 0 6px var(--cyan-bright); animation: blink 2.2s infinite; }
.rack-unit:nth-child(2) span:nth-child(2) { background: var(--violet); box-shadow: 0 0 6px var(--violet); animation: blink 1.6s infinite .3s; }
.rack-unit:nth-child(3) span:first-child { background: #16d09a; box-shadow: 0 0 6px #16d09a; animation: blink 2.6s infinite .6s; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.server-graph { background: rgba(255,255,255,.05); border-radius: 12px; padding: 10px; }
.server-graph svg { width: 100%; height: 50px; }
.graph-line { stroke: var(--cyan-bright); stroke-width: 2.4; filter: drop-shadow(0 0 6px rgba(45,212,191,.7)); stroke-dasharray: 600; stroke-dashoffset: 600; animation: drawLine 2.4s var(--ease) forwards .4s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.server-graph-labels { display: flex; justify-content: space-between; font-size: .7rem; color: #a7c6bd; margin-top: 4px; }
.server-graph-labels .up { color: #16d09a; font-weight: 700; }

.floating-chip {
  position: absolute; z-index: 4; padding: 9px 14px; border-radius: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  font-weight: 700; font-size: .82rem; color: var(--navy);
}
.chip-a { top: 8%; left: -6%; animation: floatY 5s ease-in-out infinite .2s; }
.chip-b { bottom: 18%; left: -10%; animation: floatY 6.5s ease-in-out infinite .6s; }
.chip-c { top: 22%; right: -8%; animation: floatY 5.6s ease-in-out infinite 1s; }

/* marquee */
.hero-marquee { position: relative; z-index: 2; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.5); padding: 14px 0; }
.marquee-track { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-weight: 700; color: var(--text-2); font-size: .92rem; }
.marquee-track span:nth-child(even) { color: var(--cyan); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTIONS general
   ========================================================================== */
.section { padding: 92px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block; font-weight: 800; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); background: var(--accent-grad-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; }
.section-sub { color: var(--text-2); font-size: 1.08rem; margin-top: 14px; }

/* ---------- section background rhythm (contrast) ---------- */
.features, .os, .help { background: var(--bg-2); }      /* clean white */
.apps, .article { background: var(--surface-soft); }    /* mint band */
.features, .apps, .faq, .os { position: relative; overflow: hidden; }
/* decorative color blobs to break the monotony */
.features::before, .features::after,
.faq::before, .faq::after,
.os::after, .apps::before {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.features > .container, .faq > .container, .os > .container, .apps > .container { position: relative; z-index: 1; }
.features::before { width: 460px; height: 460px; right: -140px; top: -110px; background: radial-gradient(circle, rgba(244,63,94,.12), transparent 70%); }
.features::after  { width: 420px; height: 420px; left: -150px; bottom: -130px; background: radial-gradient(circle, rgba(6,182,212,.13), transparent 70%); }
.os::after        { width: 420px; height: 420px; right: -130px; bottom: -120px; background: radial-gradient(circle, rgba(245,158,11,.12), transparent 70%); }
.apps::before     { width: 460px; height: 460px; left: -150px; top: -120px; background: radial-gradient(circle, rgba(16,185,129,.14), transparent 70%); }
.faq::before      { width: 440px; height: 440px; left: -140px; top: -120px; background: radial-gradient(circle, rgba(124,58,237,.12), transparent 70%); }
.faq::after       { width: 420px; height: 420px; right: -130px; bottom: -120px; background: radial-gradient(circle, rgba(14,165,233,.13), transparent 70%); }

/* ---------- advantages constellation ---------- */
.adv-constellation { display: grid; grid-template-columns: 1fr 1.04fr 1fr; gap: 26px; align-items: center; }
.adv-col { display: flex; flex-direction: column; gap: 16px; }

.adv-card {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 18px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.adv-card--r { flex-direction: row-reverse; text-align: right; }
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--c) 45%, var(--border)); }
.adv-left .adv-card:hover { transform: translateY(-4px) translateX(-6px); }
.adv-right .adv-card:hover { transform: translateY(-4px) translateX(6px); }

.adv-ico {
  position: relative; flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  color: var(--c); background: color-mix(in srgb, var(--c) 15%, #fff);
  transition: transform .35s var(--ease), background .35s, color .35s, box-shadow .35s;
}
.adv-ico::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--c) 55%, transparent);
  animation: advPulse 3s ease-out infinite;
}
@keyframes advPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--c) 50%, transparent); }
  70%, 100% { box-shadow: 0 0 0 16px rgba(0,0,0,0); }
}
.adv-left .adv-card:nth-child(2) .adv-ico::after, .adv-right .adv-card:nth-child(2) .adv-ico::after { animation-delay: .4s; }
.adv-left .adv-card:nth-child(3) .adv-ico::after, .adv-right .adv-card:nth-child(3) .adv-ico::after { animation-delay: .8s; }
.adv-left .adv-card:nth-child(4) .adv-ico::after, .adv-right .adv-card:nth-child(4) .adv-ico::after { animation-delay: 1.2s; }
.adv-ico svg { width: 28px; height: 28px; }
.adv-ico lottie-player { width: 42px; height: 42px; }
.adv-ico lottie-player.lp-big { width: 42px; height: 42px; transform: scale(1.7); }
.adv-card:hover .adv-ico { background: color-mix(in srgb, var(--c) 24%, #fff); transform: rotate(-6deg) scale(1.1); box-shadow: 0 12px 28px color-mix(in srgb, var(--c) 40%, transparent); }
.adv-card:hover .adv-ico svg { animation: advWiggle .5s var(--ease); }
@keyframes advWiggle { 0%,100% { transform: rotate(0); } 30% { transform: rotate(-8deg) scale(1.05); } 60% { transform: rotate(6deg); } }
.adv-card h3 { font-size: 1.04rem; margin-bottom: 4px; }
.adv-card p { color: var(--text-2); font-size: .85rem; line-height: 1.45; }

/* center hub */
.adv-hub { text-align: center; padding: 10px 8px; }
.adv-hub .eyebrow { margin-bottom: 14px; }
.adv-hub .section-title { font-size: clamp(1.7rem, 2.6vw, 2.4rem); }
.adv-hub .section-sub { margin: 12px auto 26px; max-width: 360px; }

@media (max-width: 980px) {
  .adv-constellation { grid-template-columns: 1fr; gap: 24px; }
  .adv-hub { order: -1; }
  .adv-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .adv-card, .adv-card--r { flex-direction: row; text-align: left; }
  .adv-left .adv-card:hover, .adv-right .adv-card:hover { transform: translateY(-4px); }
}
@media (max-width: 560px) {
  .adv-col { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing { background: linear-gradient(180deg, var(--bg), #e3f4ec 60%, var(--bg)); }
.pricing-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 38px; }
.line-toggle { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 6px; gap: 4px; box-shadow: var(--shadow-sm); }
.line-opt { display: flex; flex-direction: column; align-items: flex-start; padding: 10px 18px; border-radius: 12px; transition: background .25s, color .25s; color: var(--text-2); text-align: left; }
.line-name { font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.line-cpu { font-size: .76rem; color: var(--text-3); }
.line-opt.is-active { background: var(--navy); }
.line-opt.is-active .line-name, .line-opt.is-active .line-cpu { color: #fff; }
.line-opt.is-active .line-cpu { color: var(--text-on-dark-2); }
.line-badge { background: var(--accent-grad); color: #fff; font-size: .68rem; padding: 2px 7px; border-radius: 6px; font-weight: 800; }

.period-toggle { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 5px; gap: 4px; box-shadow: var(--shadow-sm); }
.period-opt { padding: 10px 22px; border-radius: 999px; font-weight: 700; color: var(--text-2); transition: all .25s; display: inline-flex; align-items: center; gap: 8px; }
.period-opt.is-active { background: var(--accent-grad); color: #fff; box-shadow: var(--shadow-accent); }
.save-badge { background: rgba(255,255,255,.25); padding: 2px 8px; border-radius: 999px; font-size: .72rem; }
.period-opt:not(.is-active) .save-badge { background: var(--accent-grad-soft); color: var(--cyan); }

.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }

/* ---- colored "petal/arc" pricing cards ---- */
.plan-card {
  --pc: #1fae5b; --pc2: #5fd98c;
  position: relative; display: flex; flex-direction: column;
  padding: 26px 24px 24px; color: #eaeefb;
  background: linear-gradient(165deg, #2c3760 0%, #1e2747 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px 110px 18px 18px / 18px 200px 18px 18px;
  box-shadow: 0 16px 36px rgba(8,12,22,.28);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  overflow: visible;
}
.plan-card > * { position: relative; z-index: 1; }
.plan-card:hover { border-color: rgba(255,255,255,.22); box-shadow: 0 24px 46px rgba(8,12,22,.38); }
.plan-card.is-popular { border-color: rgba(255,255,255,.28); box-shadow: 0 22px 48px rgba(8,12,22,.4); }
.plan-card.is-popular:hover { box-shadow: 0 26px 52px rgba(8,12,22,.44); }

/* ribbon banner with arrow + folded tail */
.plan-ribbon {
  position: relative; align-self: flex-start; display: inline-flex; align-items: center;
  margin: 4px 0 22px -36px; padding: 11px 20px 11px 28px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; letter-spacing: .02em;
  color: #fff; background: linear-gradient(90deg, var(--pc), var(--pc2));
  border-radius: 0 4px 4px 0;
  box-shadow: 0 12px 22px color-mix(in srgb, var(--pc) 42%, transparent);
}
.plan-ribbon::after { content: ""; position: absolute; right: -18px; top: 0; bottom: 0; width: 18px; background: var(--pc2); clip-path: polygon(0 0, 100% 50%, 0 100%); }
.plan-ribbon::before { content: ""; position: absolute; left: 0; bottom: -9px; border-style: solid; border-width: 9px 0 0 12px; border-color: color-mix(in srgb, var(--pc) 55%, #000) transparent transparent transparent; }

/* price block (top) */
.plan-price { display: flex; flex-direction: column; gap: 1px; margin: 0 0 20px; padding-bottom: 18px; border-bottom: 1px dashed rgba(255,255,255,.16); }
.plan-eur { font-family: var(--font-head); font-size: 1.95rem; font-weight: 800; color: #ffffff; line-height: 1.02; }
.plan-rub { color: rgba(232,237,247,.62); font-size: .84rem; margin-top: 2px; }
.plan-per { color: rgba(232,237,247,.5); font-size: .78rem; }

/* feature list with animated svg icons */
.plan-feats { display: flex; flex-direction: column; gap: 13px; margin: 0 0 22px; flex: 1 1 auto; }
.plan-feats li { display: flex; align-items: center; gap: 11px; color: #dfe6f3; font-weight: 600; font-size: .94rem; }
.plan-feats .pf-ico {
  flex-shrink: 0; width: 30px; height: 30px; padding: 6px; border-radius: 9px;
  color: var(--pc2); background: color-mix(in srgb, var(--pc) 26%, transparent);
  transition: transform .3s var(--ease), background .3s;
  animation: pfFloat 3.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .25s);
}
.plan-feats li:nth-child(1) .pf-ico { --i: 0; }
.plan-feats li:nth-child(2) .pf-ico { --i: 1; }
.plan-feats li:nth-child(3) .pf-ico { --i: 2; }
.plan-feats li:nth-child(4) .pf-ico { --i: 3; }
.plan-feats li:nth-child(5) .pf-ico { --i: 4; }
.plan-feats li:nth-child(6) .pf-ico { --i: 5; }
.plan-feats li:nth-child(7) .pf-ico { --i: 6; }
.plan-feats li:nth-child(8) .pf-ico { --i: 7; }
@keyframes pfFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.plan-card:hover .pf-ico { background: color-mix(in srgb, var(--pc) 40%, transparent); transform: scale(1.08) rotate(-4deg); }

/* buy button — clean, strict, single accent for all plans */
.plan-buy {
  margin-top: auto; margin-bottom: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  color: #ffffff; background: linear-gradient(180deg, #3f7bff 0%, #2f61e0 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 20px rgba(24,54,140,.4);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), filter .2s;
}
.plan-buy::after { content: "→"; font-size: 1.05rem; transition: transform .2s var(--ease); }
.plan-buy:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 13px 28px rgba(24,54,140,.5); }
.plan-buy:hover::after { transform: translateX(3px); }
.plan-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); z-index: 3; background: var(--pc); color: #fff; font-weight: 800; font-size: .72rem; padding: 6px 16px; border-radius: 999px; box-shadow: 0 10px 22px color-mix(in srgb, var(--pc) 45%, transparent); white-space: nowrap; }

@media (max-width: 1080px) { .plan-card { border-radius: 18px 80px 18px 18px / 18px 140px 18px 18px; } }
@media (prefers-reduced-motion: reduce) { .plan-feats .pf-ico { animation: none; } }

/* ---- "included in all plans" — compact icon tiles ---- */
.included { margin-top: 48px; }
.inc-head { text-align: center; max-width: 540px; margin: 0 auto 26px; }
.inc-title { font-family: var(--font-head); font-size: clamp(1.35rem, 2.2vw, 1.8rem); color: var(--ink); margin: 10px 0 6px; letter-spacing: -.01em; }
.inc-sub { color: var(--text-2); font-size: .96rem; }
.inc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.inc-card {
  --ic: #1aa6c4; position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 12px;
  padding: 13px 15px; border-radius: 13px;
  background: linear-gradient(160deg, #29335a 0%, #1b2340 100%);
  border: 1px solid rgba(255,255,255,.1); box-shadow: 0 6px 18px rgba(8,12,22,.18);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.inc-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.24); box-shadow: 0 14px 30px rgba(8,12,22,.3); }
.inc-ico {
  flex-shrink: 0; width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 11px; color: var(--ic); background: color-mix(in srgb, var(--ic) 24%, transparent);
  transition: transform .3s var(--ease), background .3s;
  animation: incFloat 4s ease-in-out infinite;
}
.inc-card:nth-child(2) .inc-ico { animation-delay: .3s; }
.inc-card:nth-child(3) .inc-ico { animation-delay: .6s; }
.inc-card:nth-child(4) .inc-ico { animation-delay: .9s; }
.inc-card:nth-child(5) .inc-ico { animation-delay: 1.2s; }
.inc-card:nth-child(6) .inc-ico { animation-delay: 1.5s; }
.inc-card:nth-child(7) .inc-ico { animation-delay: 1.8s; }
.inc-card:nth-child(8) .inc-ico { animation-delay: 2.1s; }
.inc-ico svg { width: 22px; height: 22px; }
.inc-card:hover .inc-ico { transform: scale(1.1) rotate(-6deg); background: color-mix(in srgb, var(--ic) 38%, transparent); }
.inc-tx { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.inc-card b { font-family: var(--font-head); font-weight: 800; color: #ffffff; font-size: .9rem; line-height: 1.2; }
.inc-card i { font-style: normal; color: rgba(234,238,251,.6); font-size: .76rem; }
@keyframes incFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* bonus tile: subtle amber accent on the dark base */
.inc-bonus { background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 28%, #1b2340), #1b2340 72%); border-color: color-mix(in srgb, var(--accent) 45%, rgba(255,255,255,.12)); }
.inc-bonus b { color: #ffc861; }

@media (max-width: 900px) { .inc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .inc-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .inc-ico { animation: none; } }

/* ==========================================================================
   HELP
   ========================================================================== */
.help-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.help-head .section-sub { max-width: 680px; margin-left: auto; margin-right: auto; }

.tier-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.tier-card { position: relative; flex: 0 1 340px; max-width: 360px; min-width: 280px; background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.16); border-radius: 18px; overflow: hidden; box-shadow: 0 12px 32px -20px rgba(0,0,0,.65); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease); display: flex; flex-direction: column; }
.tier-card:hover { transform: translateY(-5px); border-style: solid; border-color: rgba(232,163,61,.55); background: rgba(232,163,61,.06); box-shadow: 0 28px 54px -26px rgba(0,0,0,.85), 0 0 0 1px rgba(232,163,61,.25); }

.tier-cover { position: relative; height: 168px; overflow: hidden; display: flex; align-items: flex-end; padding: 16px 20px; background: linear-gradient(160deg, #141d3d 0%, #0e1530 100%); }
.tier-cover-bg { position: absolute; inset: 0; background-size: contain; background-repeat: no-repeat; background-position: center; filter: saturate(1.05); transition: transform .5s var(--ease); }
.tier-card:hover .tier-cover-bg { transform: scale(1.04); }
.tier-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,18,40,0) 24%, rgba(20,29,61,.4) 60%, rgba(28,37,68,.95) 100%); }
.tier-name { position: relative; z-index: 1; color: #fff; font-size: 1.28rem; font-weight: 800; letter-spacing: -.01em; text-shadow: 0 2px 14px rgba(0,0,0,.55); }

.tier-body { position: relative; padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.tier-desc { color: rgba(226,232,247,.74); font-size: .95rem; line-height: 1.6; margin-bottom: 18px; flex: 1; }
.tier-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: .95rem; color: var(--accent); }
.tier-link svg { transition: transform .25s var(--ease); }
.tier-card:hover .tier-link { color: color-mix(in srgb, var(--accent) 80%, #fff); }
.tier-card:hover .tier-link svg { transform: translateX(5px); }

/* ==========================================================================
   EASY + BENCHMARK
   ========================================================================== */
.easy { background: linear-gradient(180deg, var(--bg), #e3f4ec); }
.easy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.easy-left .section-title, .easy-left .section-sub { text-align: left; }
.easy-left .section-sub { max-width: none; }
.easy-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 26px; }
.easy-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; transition: border-color .25s, transform .25s; }
.easy-list li:hover { border-color: var(--cyan-bright); transform: translateY(-2px); }
.easy-ico { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; }

.bench-card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-lg); }
.bench-badge { display: inline-block; font-weight: 800; font-size: .76rem; letter-spacing: .06em; padding: 5px 13px; border-radius: 999px; background: rgba(5,150,105,.12); color: var(--violet); margin-bottom: 14px; }
.bench-title { font-size: 1.35rem; margin-bottom: 8px; }
.bench-sub { color: var(--text-2); font-size: .92rem; margin-bottom: 22px; }
.bench-block { margin-bottom: 22px; }
.bench-label { font-weight: 800; color: var(--navy); font-size: .9rem; margin-bottom: 12px; }
.bench-row { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 12px; margin-bottom: 10px; }
.bench-name { font-size: .85rem; color: var(--text-2); font-weight: 600; }
.bench-name.hi { color: var(--violet); font-weight: 800; }
.bench-bar { height: 12px; border-radius: 999px; background: var(--surface-soft); overflow: hidden; }
.bench-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #aebfb9, #889b95); transition: width 1.3s var(--ease); }
.bench-fill.fill-hi { background: var(--accent-grad); box-shadow: 0 0 14px rgba(5,150,105,.5); }
.bench-val { font-family: var(--font-head); font-weight: 800; color: var(--ink); min-width: 56px; text-align: right; }
.bench-delta { text-align: right; color: #16a37a; font-weight: 800; font-size: .82rem; }
.bench-cta { width: 100%; justify-content: center; margin-top: 8px; }

/* ==========================================================================
   ARTICLE
   ========================================================================== */
.article { position: relative; overflow: hidden; }
.art-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.art-orbs::before, .art-orbs::after { content: ""; position: absolute; border-radius: 50%; filter: blur(12px); }
.art-orbs::before { width: 46vw; height: 46vw; left: -16vw; top: 6%; background: radial-gradient(circle, rgba(26,166,196,.10), transparent 70%); animation: floatY 18s ease-in-out infinite; }
.art-orbs::after { width: 44vw; height: 44vw; right: -18vw; bottom: 2%; background: radial-gradient(circle, rgba(232,151,60,.10), transparent 70%); animation: floatY 24s ease-in-out infinite reverse; }
.article .container { position: relative; z-index: 1; }
.art-head { text-align: center; max-width: 760px; margin: 0 auto 30px; }

/* prose card */
.art-prose {
  max-width: 900px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  padding: clamp(24px, 4vw, 50px); box-shadow: 0 18px 46px rgba(20,23,31,.08);
}
.art-prose p { color: var(--text-2); font-size: 1.02rem; line-height: 1.75; margin: 0 0 18px; }
.art-prose > *:last-child { margin-bottom: 0; }
.art-lead { color: var(--text) !important; font-size: 1.08rem !important; font-weight: 600; }
.art-q { font-family: var(--font-head); font-size: clamp(1.25rem, 2.2vw, 1.6rem); color: var(--ink); letter-spacing: -.01em; margin: 34px 0 18px; padding-top: 30px; border-top: 1px solid var(--border); }

/* capability + benefit lists with check markers */
.art-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 13px; }
.art-list.cols { grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.art-list li { position: relative; padding-left: 32px; color: var(--text); line-height: 1.6; font-size: .99rem; }
.art-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 6px;
  background: var(--accent-grad) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4 10-11'/%3E%3C/svg%3E") center/13px no-repeat;
  box-shadow: 0 4px 10px rgba(232,163,61,.28);
}
/* lists with per-item themed icons instead of check marker */
.art-list.cols li, .art-list.benefits li { padding-left: 0; display: flex; align-items: flex-start; gap: 13px; }
.art-list.cols li::before, .art-list.benefits li::before { content: none; }
.art-ico { flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: var(--accent); background: color-mix(in srgb, var(--accent) 13%, #fff); border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent); }
.art-ico svg { width: 19px; height: 19px; }
.art-ico--blue { --bic: #2f74e0; color: var(--bic); background: color-mix(in srgb, var(--bic) 12%, #fff); border-color: color-mix(in srgb, var(--bic) 22%, transparent); }
.art-ico--green { --bic: #0ea56d; color: var(--bic); background: color-mix(in srgb, var(--bic) 12%, #fff); border-color: color-mix(in srgb, var(--bic) 22%, transparent); }

/* highlighted result callout */
.art-result {
  margin: 0; padding: 16px 20px; border-radius: 12px;
  background: var(--accent-grad-soft); border-left: 3px solid var(--accent);
  color: var(--ink) !important; font-weight: 600 !important; line-height: 1.6 !important;
}

/* numbered order steps */
.art-order { list-style: none; counter-reset: step; margin: 0 0 24px; padding: 0; display: grid; gap: 12px; }
.art-order li { counter-increment: step; position: relative; padding: 13px 18px 13px 60px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-weight: 600; line-height: 1.5; }
.art-order li::before {
  content: counter(step); position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px;
  background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .98rem;
}
.art-final { margin-top: 24px; }
.art-prose .btn-accent { margin-top: 24px; }

@media (max-width: 720px) { .art-list.cols { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .art-orbs::before, .art-orbs::after { animation: none; } }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner { padding: 0 0 96px; }
.cta-inner {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  border-radius: 30px; padding: 76px 30px;
  background: linear-gradient(120deg, #059669 0%, #2dd4bf 38%, #10b981 64%, #06b6d4 100%);
  background-size: 280% 280%; animation: ctaGradient 12s ease infinite;
  box-shadow: 0 30px 70px rgba(16,185,129,.35);
}
@keyframes ctaGradient { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.cta-glow { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 60% at 18% 12%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(45% 65% at 85% 88%, rgba(5,150,105,.5), transparent 60%);
}
/* animated mesh blobs */
.cta-inner::before, .cta-inner::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; z-index: 0;
}
.cta-inner::before { width: 340px; height: 340px; background: rgba(255,255,255,.28); top: -120px; left: -60px; animation: floatY 8s ease-in-out infinite; }
.cta-inner::after { width: 300px; height: 300px; background: rgba(45,212,191,.4); bottom: -120px; right: -40px; animation: floatY 10s ease-in-out infinite reverse; }
/* dotted texture */
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3rem); text-shadow: 0 2px 20px rgba(6,43,39,.28); }
.cta-inner p { color: rgba(255,255,255,.92); margin: 16px 0 32px; font-size: 1.18rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-accent { background: #fff; color: var(--blue); box-shadow: 0 14px 34px rgba(6,43,39,.3); animation: none; }
.cta-actions .btn-accent:hover { color: var(--violet); }
.cta-actions .btn-light { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.cta-actions .btn-light:hover { background: rgba(255,255,255,.24); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--bg-2); }
.faq-list { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
@media (max-width: 820px) { .faq-list { grid-template-columns: 1fr; } }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 4px 6px; box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, border-color .3s, transform .3s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--blue) 35%, var(--border)); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
  padding: 18px 18px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { margin-left: auto; flex-shrink: 0; position: relative; width: 24px; height: 24px; border-radius: 8px; background: var(--accent-grad-soft); }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 2.4px; border-radius: 2px; background: var(--blue); transform: translate(-50%,-50%); transition: transform .3s var(--ease); }
.faq-mark::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .faq-mark::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-body { padding: 0 18px 20px; }
.faq-body p { color: var(--text-2); font-size: .98rem; line-height: 1.6; }
.faq-item[open] .faq-body { animation: faqReveal .4s var(--ease); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   WAVE TRUST BAND
   ========================================================================== */
.wave-band {
  position: relative; margin: 40px 0; padding: clamp(70px, 9vw, 110px) 0;
  background: linear-gradient(120deg, #059669 0%, #10b981 40%, #06b6d4 100%);
  background-size: 200% 200%; animation: ctaGradient 14s ease infinite;
  overflow: hidden;
}
.wave-band::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 70% at 15% 20%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(40% 70% at 85% 90%, rgba(255,255,255,.16), transparent 60%); }
.wb-wave { position: absolute; left: 0; width: 100%; height: clamp(48px, 6vw, 96px); z-index: 2; }
.wb-wave path { fill: var(--bg); }
.wb-wave-top { top: -1px; }
.wb-wave-bottom { bottom: -1px; }
.wb-inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wb-stat { text-align: center; color: #fff; }
.wb-stat strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1; text-shadow: 0 2px 16px rgba(6,43,39,.25); }
.wb-stat span { display: block; margin-top: 8px; color: rgba(255,255,255,.9); font-weight: 600; font-size: .92rem; }
@media (max-width: 680px) { .wb-inner { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }

/* ==========================================================================
   FOOTER (light)
   ========================================================================== */
.site-footer { background: linear-gradient(180deg, #ffffff, var(--surface-soft)); color: var(--text-2); padding-top: 64px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 2fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer-about { margin: 18px 0; font-size: .92rem; max-width: 340px; color: var(--text-2); }
.footer-legal { margin: 18px 0 14px; font-size: .86rem; line-height: 1.65; color: var(--text-2); }
.footer-email { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: 18px; transition: color .2s; }
.footer-email svg { width: 17px; height: 17px; opacity: .8; }
.footer-email:hover { color: #fff; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badges span { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700; color: var(--blue); background: var(--accent-grad-soft); border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; }
.footer-badges span svg { width: 14px; height: 14px; }
.footer-col-wide .footer-links-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.footer-col a.footer-panel-btn { display: inline-flex; align-items: center; gap: 9px; margin: 16px 0 14px; padding: 11px 20px; border-radius: 8px; font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: #fff; background: linear-gradient(180deg, #3f7bff 0%, #2f61e0 100%); box-shadow: 0 10px 24px rgba(24,54,140,.4); transition: transform .2s var(--ease), filter .2s, box-shadow .25s; }
.footer-col a.footer-panel-btn svg { width: 16px; height: 16px; }
.footer-col a.footer-panel-btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 14px 30px rgba(24,54,140,.5); color: #fff; }
.footer-col h4 { color: var(--ink); font-size: .95rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col a { display: block; padding: 6px 0; font-size: .92rem; color: var(--text-2); transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--blue); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: var(--text-3); }
.footer-pay { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* to top */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-grad); color: #fff; box-shadow: var(--shadow-accent); opacity: 0; visibility: hidden; transform: translateY(16px) scale(.8); transition: all .35s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { transform: translateY(-3px) scale(1.06); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .06s; }
[data-reveal].d2 { transition-delay: .12s; }
[data-reveal].d3 { transition-delay: .18s; }
[data-reveal].d4 { transition-delay: .24s; }

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  /* подвал: на планшетах 4 узкие колонки не помещаются — бренд и «Услуги» на всю ширину */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand, .footer-col-wide { grid-column: 1 / -1; }
}
@media (max-width: 920px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  /* боковые отступы даёт .container — здесь их НЕ обнуляем */
  .hero-inner { grid-template-columns: 1fr; }
  .easy-inner { grid-template-columns: 1fr; }
  .easy-right { order: -1; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .plans-grid { grid-template-columns: 1fr; }
  .pricing-controls { flex-direction: column; align-items: stretch; }
  .line-toggle { flex-direction: column; }
  .period-toggle { justify-content: center; }
  .easy-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 14px 24px; }
  .hero-stats strong { font-size: 1.4rem; }
}
@media (max-width: 460px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links-2 { grid-template-columns: 1fr; }
  .floating-chip { font-size: .74rem; padding: 7px 10px; }
  .chip-a { left: 0; } .chip-b { left: -2%; } .chip-c { right: -2%; }
  .btn-lg { padding: 14px 24px; font-size: .98rem; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .mobile-drawer { padding: 18px 16px; }
  .m-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FINAL THEME — consolidated dark/light balance (replaces v8/v9)
   ========================================================================== */
:root {
  --bg: #0b0d11;
  --bg-2: #0e1116;
  --surface: #151922;
  --surface-soft: #1b2029;
  --ink: #f5f7fb;
  --navy: #e7ebf3;
  --text: #ced4df;
  --text-2: #98a1b1;
  --text-3: #6a7280;
  --text-on-dark: #f1f4fa;
  --text-on-dark-2: #aab2c2;
  --border: #252a34;
  --border-2: #303642;
  --cyan: #d99a3a;
  --cyan-bright: #f6b94e;
  --blue: #e8a33d;
  --violet: #cf8a4a;
  --amber: #e8a33d; --orange: #e0792e; --emerald: #7f9a86; --red: #c0603f;
  --accent: #e8a33d;
  --on-accent: #1a1206;
  --accent-grad: linear-gradient(135deg, #f6b94e 0%, #e8973c 100%);
  --accent-grad-soft: linear-gradient(135deg, rgba(246,185,78,.14), rgba(232,151,60,.10));
  --shadow-sm: 0 1px 2px rgba(0,0,0,.45), 0 2px 8px rgba(0,0,0,.35);
  --shadow-md: 0 10px 28px rgba(0,0,0,.5);
  --shadow-lg: 0 28px 64px rgba(0,0,0,.62);
  --shadow-accent: 0 12px 30px rgba(232,163,61,.28);
}
body { background: var(--bg); }

/* ---- header ---- */
.site-header { position: fixed; left: 0; right: 0; top: 0; z-index: 100; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid transparent; box-shadow: none; }
.site-header.scrolled { background: rgba(22,26,36,.66); backdrop-filter: saturate(160%) blur(20px); -webkit-backdrop-filter: saturate(160%) blur(20px); border-bottom-color: rgba(255,255,255,.10); box-shadow: 0 10px 34px rgba(0,0,0,.32); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.brand { justify-self: start; color: var(--ink); }
.main-nav { justify-self: center; }
.header-actions { justify-self: end; }
.main-nav .nav-list { justify-content: center; }
.nav-link:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.topbar { overflow: hidden; max-height: 64px; border-bottom: 1px solid rgba(246,185,78,.16); background: linear-gradient(90deg, rgba(232,163,61,.12), rgba(232,163,61,.05) 50%, rgba(232,163,61,.12)); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: max-height .35s var(--ease), opacity .3s, border-color .3s; }
.topbar-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; min-height: 40px; font-size: .8rem; }
.topbar-inner .tb-mail { justify-self: start; }
.topbar-inner .tb-promo { justify-self: center; text-align: center; color: rgba(255,255,255,.92); }
.topbar-inner .tb-links { justify-self: end; display: inline-flex; align-items: center; gap: 22px; }
.tb-item { display: inline-flex; align-items: center; gap: 7px; color: var(--text-on-dark-2); font-weight: 600; transition: color .2s; }
.tb-item:hover { color: #fff; }
.tb-promo b, .tb-accent { color: var(--accent); }
.site-header.scrolled .topbar { max-height: 0; opacity: 0; pointer-events: none; border-bottom-color: transparent; }
.mega { background: rgba(18,21,28,.97); border-color: var(--border); top: 116px; }
.site-header.scrolled .mega { top: 66px; }
.mega-card:hover { background: rgba(255,255,255,.05); }
.mega-grid .mega-card, .mega-loc-grid .loc-card { border: 1px dashed rgba(255,255,255,.13); }
.mega-grid .mega-card:hover, .mega-loc-grid .loc-card:hover { border-style: solid; border-color: rgba(232,163,61,.45); }
.mobile-drawer { background: rgba(11,13,17,.98); }
.burger { border-color: var(--border-2); }
.brand-logo { filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.footer-brand .brand-logo { height: 40px; }
html { scroll-padding-top: 100px; }
@media (max-width: 980px) { .tb-promo { display: none; } }
/* топбар прячем на том же брейкпоинте, что и десктоп-навигацию (920px),
   иначе мобильный drawer (top:72px) уезжает под шапку с топбаром */
@media (max-width: 920px) { .topbar { display: none; } .mega, .site-header.scrolled .mega { top: 80px; } }

/* ---- hero ---- */
.hero { min-height: 100vh; display: flex; flex-direction: column; padding: 0; background: var(--bg); }
/* на мобильных vh «прыгает» из-за адресной строки — svh стабильнее */
@supports (min-height: 100svh) { .hero { min-height: 100svh; } }
.hero-bg { background: radial-gradient(60% 60% at 50% 44%, rgba(11,13,17,.45), rgba(11,13,17,0) 72%), url("../assets/hero-bg-dark.jpg?v=2") center / cover no-repeat; opacity: 1; }
.hero-inner { flex: 1 1 auto; min-height: 0; padding-top: 132px; padding-bottom: 36px; }
.hero-marquee { margin-top: auto; background: rgba(255,255,255,.02); border-color: var(--border); }
.pill { background: rgba(255,255,255,.05); border-color: var(--border); color: var(--text); }
.hero-locs .loc-chip, .hero-locs .loc-chip.is-active { background: rgba(255,255,255,.07); color: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.16); box-shadow: none; cursor: default; }
.hero-locs .loc-chip:hover { background: rgba(255,255,255,.12); }
.btn-accent { color: var(--on-accent); }
.btn-ghost { color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--accent); background: var(--surface); color: var(--ink); }

/* ---- light section token scope ---- */
.features, .pricing, .os, .apps, .help, .article, .faq, .easy, .usecases {
  --bg: #f4f5f8; --bg-2: #ffffff; --surface: #ffffff; --surface-soft: #eef0f5;
  --ink: #14171f; --navy: #14171f; --text: #3b4250; --text-2: #5b6273; --text-3: #8a90a0;
  --text-on-dark: #14171f; --text-on-dark-2: #5b6273; --border: #e6e8ef; --border-2: #d7dae4;
  --shadow-sm: 0 1px 2px rgba(20,23,31,.06), 0 2px 8px rgba(20,23,31,.05);
  --shadow-md: 0 10px 28px rgba(20,23,31,.10); --shadow-lg: 0 24px 58px rgba(20,23,31,.14);
}
.features, .os, .help, .faq, .usecases { background: #ffffff; }
.apps, .article { background: #f4f5f8; }

/* ---- pricing: light abstract background, calm & professional ---- */
.pricing {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(248,250,253,.32), rgba(244,247,251,.5)), url("../assets/pricing-bg2.jpg?v=1") center / cover no-repeat;
  background-color: #eef1f7;
}
.pricing > .container { position: relative; z-index: 1; }
.pricing .plan-card, .pricing .plan-card.is-popular {
  background: linear-gradient(165deg, #2c3760 0%, #1e2747 100%);
}

/* ---- pricing controls: soft segmented, matches cards ---- */
.pricing .pricing-controls { justify-content: center; gap: 16px; }
.pricing .line-toggle, .pricing .period-toggle {
  background: linear-gradient(165deg, #2c3760 0%, #1e2747 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.28);
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.pricing .line-opt { border-radius: 12px; transition: background .25s, box-shadow .25s; color: rgba(234,238,251,.7); }
.pricing .line-opt .line-name { color: #eaeefb; }
.pricing .line-opt .line-cpu { color: rgba(234,238,251,.55); }
.pricing .line-opt.is-active { background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 6px 16px rgba(0,0,0,.3); }
.pricing .line-opt.is-active .line-name { color: #ffffff; }
.pricing .line-opt.is-active .line-cpu { color: rgba(234,238,251,.72); }
.pricing .line-badge { background: var(--accent-grad); color: #fff; }
.pricing .period-opt { border-radius: 999px; color: rgba(234,238,251,.7); }
.pricing .period-opt.is-active { background: var(--accent-grad); color: #fff; box-shadow: 0 8px 20px rgba(232,163,61,.34); }
.pricing .period-opt .save-badge { background: rgba(255,255,255,.28); color: #fff; }
.pricing .period-opt:not(.is-active) .save-badge { background: rgba(255,255,255,.12); color: #ffd08a; }

/* ---- view-all button ---- */
.pricing-cta { text-align: center; margin-top: 44px; }

/* ---- "view all" CTA: matches the strict blue plan buttons ---- */
.view-all-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 34px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; letter-spacing: .01em;
  color: #ffffff; background: linear-gradient(180deg, #3f7bff 0%, #2f61e0 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 26px rgba(24,54,140,.4);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), filter .2s;
}
.view-all-btn .va-ico { width: 21px; height: 21px; flex-shrink: 0; }
.view-all-btn::after { content: "→"; font-size: 1.15rem; transition: transform .2s var(--ease); }
.view-all-btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 16px 34px rgba(24,54,140,.5); }
.view-all-btn:hover::after { transform: translateX(4px); }
@media (max-width: 480px) { .view-all-btn { padding: 14px 24px; font-size: .94rem; } }

/* ---- merged OS + Apps (clean card grid) ---- */
.os-apps {
  position: relative;
  background: #ffffff;
}
.os-apps .oa-grid { display: grid; grid-template-columns: 1fr; gap: 52px; align-items: start; position: relative; z-index: 1; }
.os-apps .oa-head { margin: 0 auto 26px; text-align: center; max-width: 640px; }
.os-apps .oa-title { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin-bottom: 6px; }
.os-apps .oa-sub { color: var(--text-3); font-size: .95rem; }
.os-apps .oa-list { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.os-apps .oa-os, .os-apps .oa-apps { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.os-apps .oa-item {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 16px; background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.os-apps .oa-item::before { content: ""; position: absolute; inset: 0; border-radius: 16px; background: var(--accent-grad-soft); opacity: 0; transition: opacity .28s; z-index: 0; }
.os-apps .oa-item > * { position: relative; z-index: 1; }
.os-apps .oa-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.os-apps .oa-item:hover::before { opacity: 1; }
.os-apps .oa-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--surface-soft); display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--border); transition: transform .3s var(--ease); }
.os-apps .oa-item:hover .oa-ico { transform: scale(1.1) rotate(-5deg); }
.os-apps .oa-ico .bico { width: 26px; height: 26px; }
.os-apps .oa-tx { display: flex; flex-direction: column; min-width: 0; }
.os-apps .oa-tx b { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: .96rem; line-height: 1.2; }
.os-apps .oa-tx i { font-style: normal; color: var(--text-3); font-size: .79rem; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---- trust band: cloud bg, no waves ---- */
.wave-band { margin: 0; padding: clamp(70px, 9vw, 104px) 0; background: linear-gradient(rgba(8,9,12,.30), rgba(8,9,12,.44)), url("../assets/band-bg.jpg?v=3") center / cover no-repeat; }
.wave-band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(55% 110% at 50% 44%, rgba(246,185,78,.12), transparent 50%), radial-gradient(82% 130% at 50% 50%, transparent 42%, rgba(8,9,12,.5)); }
.wb-wave { display: none; }
.wb-stat strong { color: #fff; text-shadow: none; }
.wb-stat span { color: rgba(255,255,255,.72); }

/* ---- bench badges tuned to gold ---- */
.bench-badge { background: rgba(232,163,61,.14); color: #b8791f; }
.help { background: radial-gradient(120% 92% at 50% -12%, #172444 0%, #0d1426 62%) !important; }
.help .section-title { color: #ffffff; }
.help .section-sub { color: rgba(220,228,248,.72); }
.help .eyebrow { color: #f2bd6d !important; background: rgba(232,163,61,.14) !important; }

/* ---- easy section (dark, matches "help" block) ---- */
.easy { background: radial-gradient(120% 92% at 50% -12%, #172444 0%, #0d1426 62%) !important; }
.easy .eyebrow { background: rgba(232,163,61,.14) !important; color: #f2bd6d !important; }
.easy .section-title { color: #ffffff; }
.easy-left .section-sub { color: rgba(220,228,248,.72); }
.easy-list li { color: #eef2fb; background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.16); }
.easy-list li:hover { border-style: solid; border-color: rgba(232,163,61,.55); background: rgba(232,163,61,.06); transform: translateY(-2px); }

/* bench card -> dark */
.bench-card { background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.16); box-shadow: 0 26px 56px -28px rgba(0,0,0,.82); }
.bench-badge { background: rgba(232,163,61,.16); color: #f2bd6d; }
.bench-title { color: #ffffff; }
.bench-sub { color: rgba(220,228,248,.7); }
.bench-label { color: #eef2fb; }
.bench-name { color: rgba(220,228,248,.7); }
.bench-name.hi { color: #f2bd6d; }
.bench-bar { background: rgba(255,255,255,.09); }
.bench-fill { background: linear-gradient(90deg, #6b7a92, #4d5a70); }
.bench-fill.fill-hi { background: var(--accent-grad); box-shadow: 0 0 14px rgba(232,163,61,.5); }
.bench-val { color: #ffffff; }
.bench-delta { color: #4bd39a; }

/* ---- CTA banner (data-center image, strict dark blue) ---- */
.cta-banner { background: linear-gradient(180deg, #ffffff 0%, #f4f5f8 100%); padding: 64px 0 92px; }
.cta-inner {
  background: linear-gradient(120deg, rgba(8,17,42,.82) 0%, rgba(11,26,64,.6) 50%, rgba(8,15,38,.85) 100%), url("../assets/cta-band.jpg") center / cover no-repeat !important;
  box-shadow: 0 34px 76px rgba(8,17,42,.45), inset 0 0 0 1px rgba(255,255,255,.08) !important;
  animation: none !important;
}
.cta-inner::before, .cta-inner::after { display: none; }
.cta-glow { background: radial-gradient(62% 82% at 50% -12%, rgba(86,132,255,.28), transparent 60%); }
.cta-inner h2 { color: #ffffff !important; text-shadow: 0 2px 26px rgba(0,0,0,.55) !important; }
.cta-inner p { color: rgba(224,232,252,.9) !important; }
.cta-actions .btn-accent { background: var(--accent-grad) !important; color: #241400 !important; box-shadow: 0 16px 36px rgba(232,163,61,.42) !important; }
.cta-actions .btn-accent:hover { filter: brightness(1.06); color: #241400 !important; transform: translateY(-2px); }
.cta-actions .btn-light { background: rgba(255,255,255,.12) !important; color: #fff !important; border: 1.5px solid rgba(255,255,255,.45) !important; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.cta-actions .btn-light:hover { background: rgba(255,255,255,.22) !important; transform: translateY(-2px); }
@media (max-width: 720px) {
  .cta-banner { padding: 48px 0 64px; }
  .cta-inner { padding: 52px 22px; border-radius: 20px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ---- footer (dark blue, matches CTA banner) ---- */
.site-footer {
  --ink: #ffffff; --navy: #ffffff; --text: rgba(226,234,252,.82); --text-2: rgba(210,220,244,.72); --text-3: rgba(188,200,228,.6);
  --border: rgba(255,255,255,.1); --surface: rgba(255,255,255,.05);
  position: relative; color: var(--text-2);
  background: linear-gradient(180deg, #0b1836 0%, #070f26 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(4,8,20,.6); }
.site-footer::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background: radial-gradient(50% 80% at 12% 0%, rgba(232,163,61,.06), transparent 60%), radial-gradient(45% 80% at 90% 10%, rgba(26,166,196,.06), transparent 60%); }
.site-footer .container { position: relative; z-index: 1; }
.footer-about { color: var(--text-2); }
.footer-badges span { color: #f2bd6d; background: rgba(232,163,61,.16); border: 1px solid rgba(232,163,61,.28); }
.footer-col h4 { color: var(--ink); }
.footer-col a { color: var(--text-2); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner { color: var(--text-3); }

/* payment method icons */
.footer-pay { gap: 10px; }
.footer-pay .pay-label { color: var(--text-3); font-weight: 600; margin-right: 2px; }
.footer-pay .pay-ico { display: inline-grid; place-items: center; height: 34px; min-width: 52px; padding: 0 11px; border-radius: 9px; background: #fff; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(20,23,31,.06); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; }
.footer-pay .pay-ico:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(20,23,31,.12); border-color: var(--accent); }
.footer-pay .pay-ico svg { height: 22px; width: auto; display: block; }

@media (max-width: 980px) { .os-apps .oa-grid { gap: 36px; } }
/* телефоны: карточки ОС/приложений в один ряд — подписи видны целиком, без обрезки */
@media (max-width: 560px) {
  .os-apps .oa-list, .os-apps .oa-os, .os-apps .oa-apps { grid-template-columns: 1fr; gap: 9px; }
  .os-apps .oa-item { grid-template-columns: 40px 1fr; gap: 12px; padding: 11px 14px; border-radius: 13px; }
  .os-apps .oa-ico { width: 40px; height: 40px; border-radius: 11px; }
  .os-apps .oa-ico .bico { width: 23px; height: 23px; }
  .os-apps .oa-tx b { font-size: .92rem; }
  .os-apps .oa-tx i { white-space: normal; overflow: visible; text-overflow: clip; }
}

/* ---- hero warm aurora restore (match approved hero glow) ---- */
.hero-bg {
  position: absolute; inset: -60px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 58% at 50% 42%, rgba(11,13,17,.28), rgba(11,13,17,0) 70%),
    url("../assets/hero-bg-dark.jpg?v=2") center / cover no-repeat;
  opacity: 1;
}
.hero-aurora {
  background:
    radial-gradient(44% 54% at 78% 12%, rgba(246,185,78,.40), transparent 70%),
    radial-gradient(48% 58% at 15% 26%, rgba(224,121,46,.26), transparent 70%),
    radial-gradient(56% 66% at 52% 74%, rgba(207,138,74,.26), transparent 70%);
}

/* ---- hero content centered (match approved layout) ---- */
.hero-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; grid-template-columns: none; min-height: 0;
}
.hero-copy { display: flex; flex-direction: column; align-items: center; max-width: 880px; margin: 0 auto; }
.hero-lead { max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-cta, .hero-locs { justify-content: center; }
.hero-stats { display: inline-flex; justify-content: center; }
@media (max-width: 920px) {
  .hero-inner { display: flex; }
}

/* ==========================================================================
   STICKY HEADER — restyled scrolled state + client-panel button swap
   ========================================================================== */
.btn-panel svg { width: 17px; height: 17px; }
/* «Заказать сервер» появляется только в прилипшей шапке */
.btn-order-hdr { display: none; padding: 9px 16px; color: #fff; border-color: rgba(255,255,255,.22); }
.btn-order-hdr:hover { border-color: rgba(246,185,78,.55); background: rgba(246,185,78,.1); }

/* scrolled: refined dark-glass bar with gold accent */
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(20,16,8,.92), rgba(14,12,9,.88));
  -webkit-backdrop-filter: saturate(150%) blur(22px);
  backdrop-filter: saturate(150%) blur(22px);
  border-bottom: 1px solid rgba(246,185,78,.22);
  box-shadow: 0 12px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.05);
}
.site-header.scrolled .header-inner { height: 64px; }
/* мобильная шапка: nav скрыт (display:none) — в grid 1fr auto 1fr кнопки съезжали
   в среднюю колонку; flex прижимает лого влево, кнопки вправо. Высота при скролле
   не меняется, чтобы логотип не «прыгал», а drawer (top:72px) открывался без щели */
@media (max-width: 920px) {
  .header-inner { display: flex; justify-content: space-between; }
  .site-header.scrolled .header-inner { height: 72px; }
}
.site-header.scrolled .nav-link { color: rgba(255,255,255,.82); }
.site-header.scrolled .nav-link:hover { color: #fff; background: rgba(246,185,78,.12); }
/* в прилипшей шапке рядом с «Панель клиента» появляется «Заказать сервер» */
.site-header.scrolled .btn-order-hdr { display: inline-flex; }
/* на мобильных вторая кнопка не помещается — заказ доступен из drawer */
@media (max-width: 920px) {
  .btn-order-hdr { display: none !important; }
}

/* узкие телефоны: компактнее логотип и кнопки шапки, чтобы всё влезало в одну строку */
@media (max-width: 420px) {
  .header-inner { gap: 10px; }
  .header-actions { gap: 8px; }
  .brand-logo { height: 30px; }
  .btn-panel { padding: 9px 12px; font-size: .82rem; }
}

/* ==========================================================================
   MOBILE MENU — redesigned drawer
   ========================================================================== */
.mobile-drawer { background: linear-gradient(180deg, rgba(16,13,8,.99), rgba(11,12,15,.99)); }
.mobile-nav { display: flex; flex-direction: column; gap: 10px; }
.mobile-nav a { border-bottom: 0; padding: 0; color: var(--text-on-dark); font-size: 1rem; }
.m-group-title { display: block; margin: 14px 2px 2px; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-bright); }
.m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.m-card {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px !important;
  border-radius: 12px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); transition: background .2s, border-color .2s, transform .2s;
}
.m-card b { font-family: var(--font-head); font-weight: 700; font-size: .84rem; color: #fff; line-height: 1.15; }
.m-card:hover, .m-card:active { background: rgba(246,185,78,.12); border-color: rgba(246,185,78,.4); transform: translateY(-2px); }
.m-ico { font-size: 1.05rem; flex-shrink: 0; }
.m-locs { display: flex; flex-wrap: wrap; gap: 7px; }
.m-loc {
  display: inline-flex !important; align-items: center; gap: 7px;
  padding: 7px 12px !important; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  font-weight: 700; color: #fff !important;
  transition: background .2s, border-color .2s;
}
/* тот же шрифт и размер, что у карточек «Меню» (.m-card b);
   селектор с a — иначе перебивает .mobile-nav a { font-size: 1rem } */
.mobile-nav a.m-loc { font-family: var(--font-head); font-size: .84rem; }
.m-loc .bico { width: 18px; height: 18px; border-radius: 4px; overflow: hidden; }
.m-loc:hover, .m-loc:active { background: rgba(246,185,78,.12); border-color: rgba(246,185,78,.4); }
/* CTA внизу drawer: две кнопки одна под другой на всю ширину */
.mobile-cta { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 26px; }
.mobile-cta .btn {
  width: 100%; justify-content: center;
  padding: 13px 16px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
}
.btn-panel-m { display: inline-flex; align-items: center; gap: 8px; background: rgba(246,185,78,.08); color: #f6d296; border: 1px solid rgba(246,185,78,.35); }
.btn-panel-m:hover, .btn-panel-m:active { background: rgba(246,185,78,.16); border-color: rgba(246,185,78,.55); }

/* ==========================================================================
   HERO TITLE — turquoise gradient + per-letter glint wave
   ========================================================================== */
.grad-text {
  background-image: linear-gradient(100deg, #2dd4bf 0%, #22d3ee 38%, #38bdf8 72%, #5eead4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 220% auto;
  animation: gradMove 3s linear infinite;
}
.grad-text .gl {
  display: inline-block; will-change: transform, filter;
  background-image: linear-gradient(100deg, #2dd4bf 0%, #22d3ee 40%, #38bdf8 80%, #5eead4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: letterGlint 2.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.06s);
}
@keyframes letterGlint {
  0%, 55%, 100% { filter: brightness(1); transform: translateY(0); }
  28% { filter: brightness(1.75) drop-shadow(0 0 12px rgba(94,234,212,.85)); transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .grad-text .gl { animation: none; }
}

/* ==========================================================================
   LOCATIONS MAP — «Наши локации»
   ========================================================================== */
.locations { position: relative; background: linear-gradient(180deg, #0a1020 0%, #0c1526 100%); }
.locations .section-title { color: #fff; }
.locations .eyebrow { color: #f2bd6d; background: rgba(232,163,61,.14); }
.locations .section-sub { color: rgba(210,220,244,.72); }

.locmap-wrap { margin-top: 48px; }
.locmap {
  position: relative;
  background: url("../assets/world-dots.svg") center / 100% 100% no-repeat;
  aspect-ratio: 822.2 / 322.2;
}
.locmap::before {
  content: ""; position: absolute; inset: -8% -4%; pointer-events: none; z-index: 0;
  background: radial-gradient(44% 70% at 80% 44%, rgba(232,163,61,.09), transparent 64%),
              radial-gradient(40% 70% at 12% 70%, rgba(63,123,255,.1), transparent 64%);
}

/* маршрут-цепочка между дата-центрами (без повторений, единый поток) */
.locmap-net { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; overflow: visible; }
.locmap-net path { fill: none; stroke-linecap: round; }
/* pathLength на каждой дуге = её экранная длина → скорость пунктира одинакова на всех участках */
.locmap-net .link-main { stroke: rgba(247,199,124,.8); stroke-width: .42; stroke-dasharray: .3 3; animation: locFlow 4.5s linear infinite; filter: drop-shadow(0 0 1px rgba(242,189,109,.5)); }
@keyframes locFlow { to { stroke-dashoffset: -16.5; } }

/* pins — круглый флаг страны + зелёная галочка; тултип с городом при наведении */
.locpin { position: absolute; transform: translate(-50%, -50%); z-index: 3; cursor: pointer; text-decoration: none; }
.locpin:hover { z-index: 5; }
.locpin-flag {
  position: relative; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: #0d1428; border: 2px solid rgba(255,255,255,.35);
  box-shadow: 0 4px 14px rgba(0,0,0,.5), 0 0 16px 2px rgba(232,163,61,.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.locpin-flag .bico { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; }
.locpin:hover .locpin-flag { transform: scale(1.14); border-color: rgba(242,189,109,.9); box-shadow: 0 6px 18px rgba(0,0,0,.55), 0 0 22px 4px rgba(232,163,61,.55); }
.locpin::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 32px; height: 32px;
  transform: translate(-50%, -50%); border-radius: 50%; border: 2px solid rgba(242,189,109,.55);
  animation: locPulse 2.8s cubic-bezier(.2,.6,.3,1) infinite; animation-delay: var(--d, 0s);
  pointer-events: none;
}
@keyframes locPulse {
  0% { opacity: .65; }
  100% { opacity: 0; width: 72px; height: 72px; }
}
.locpin-tip {
  position: absolute; left: 50%; bottom: calc(50% + 26px); transform: translateX(-50%) translateY(4px); white-space: nowrap;
  font-size: .78rem; font-weight: 700; color: #f2f5ff; letter-spacing: .01em;
  background: rgba(10,16,30,.85); border: 1px solid rgba(242,189,109,.4); padding: 5px 12px; border-radius: 8px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
  pointer-events: none;
}
.locpin-tip::after {
  content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: rgba(10,16,30,.85);
}
.locpin:hover .locpin-tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* подсказка «проведите по карте» — видна только на телефонах */
.locmap-hint {
  display: none; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; color: rgba(210,220,244,.55); font-size: .8rem; font-weight: 600;
}
.locmap-hint svg { width: 16px; height: 16px; flex: none; }

/* на телефонах карта не ужимается в «марку», а листается по горизонтали свайпом;
   скроллбары спрятаны, стартовая позиция (Европа) выставляется в main.js */
@media (max-width: 720px) {
  .locpin-flag { width: 24px; height: 24px; border-width: 1.5px; }
  .locpin::before { width: 24px; height: 24px; }
  .locpin-tip { font-size: .68rem; padding: 4px 9px; bottom: calc(50% + 19px); }
  .locmap-wrap { margin-top: 32px; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .locmap-wrap::-webkit-scrollbar { display: none; }
  .locmap { min-width: 640px; }
  .locmap::before { display: none; }
  .locmap-hint { display: flex; }
}

/* ==========================================================================
   USE CASES — «Для чего нужен VDS?» (бенто-мозаика)
   ========================================================================== */
.usecases { position: relative; overflow: hidden; }
/* точечная подложка — перекличка с dot-matrix картой выше */
.usecases::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(20,23,31,.07) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(75% 65% at 50% 42%, #000, transparent 78%);
  mask-image: radial-gradient(75% 65% at 50% 42%, #000, transparent 78%);
}
.usecases > .container { position: relative; z-index: 1; }
.usecases .section-head { text-align: center; max-width: 720px; margin: 0 auto; }

/* бенто-сетка: 4 колонки × 3 ряда, витринная плитка 2×2 + широкая 2×1 */
.uc-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(150px, auto); gap: 16px; margin-top: 48px; }
.uc-tile--hero { grid-column: span 2; grid-row: span 2; }
.uc-tile--wide { grid-column: span 2; }

.uc-tile {
  --uc: 37, 99, 235;
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 8px;
  padding: 24px 24px 22px; border-radius: 18px; color: inherit; text-decoration: none;
  background: linear-gradient(150deg, rgba(var(--uc), .055) 0%, rgba(var(--uc), .13) 100%);
  border: 1px solid rgba(var(--uc), .18);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.uc-tile:hover {
  transform: translateY(-5px); border-color: rgba(var(--uc), .45);
  box-shadow: 0 24px 48px -26px rgba(var(--uc), .45);
}
.uc-tile b { font-size: 1.05rem; font-weight: 800; color: #14171f; }
.uc-tile p { font-size: .87rem; line-height: 1.55; color: #545d70; margin: 0; }

/* крупный номер-водяной знак */
.uc-num {
  position: absolute; top: 10px; right: 16px; font-size: 2.7rem; font-weight: 800;
  line-height: 1; color: rgba(var(--uc), .14); letter-spacing: -.03em; user-select: none;
}

.uc-ico {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; flex: none;
  color: rgb(var(--uc)); background: rgba(var(--uc), .13); border: 1px solid rgba(var(--uc), .2);
  margin-bottom: 6px; transition: transform .22s ease;
}
.uc-ico svg { width: 24px; height: 24px; }
.uc-tile:hover .uc-ico { transform: scale(1.1) rotate(-4deg); }

/* палитра плиток */
.uc-blue   { --uc: 37, 99, 235; }
.uc-green  { --uc: 16, 148, 108; }
.uc-violet { --uc: 124, 77, 245; }
.uc-teal   { --uc: 13, 138, 128; }
.uc-amber  { --uc: 200, 113, 12; }
.uc-indigo { --uc: 88, 92, 231; }
.uc-rose   { --uc: 219, 39, 81; }
.uc-sky    { --uc: 2, 132, 199; }

/* ---- витринная плитка (2×2) ---- */
.uc-tile--hero { padding: 30px 30px 26px; }
.uc-tile--hero b { font-size: 1.45rem; }
.uc-tile--hero p { font-size: .95rem; max-width: 46ch; }
.uc-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 12px;
  font-weight: 800; font-size: .92rem; color: rgb(var(--uc));
}
.uc-more svg { width: 17px; height: 17px; transition: transform .2s ease; }
.uc-tile--hero:hover .uc-more svg { transform: translateX(4px); }

/* мини-браузер (CSS-иллюстрация) */
.uc-browser {
  position: absolute; right: -14px; bottom: -18px; width: 240px; padding: 12px 14px 24px;
  display: flex; flex-direction: column; gap: 9px;
  background: #fff; border: 1px solid rgba(var(--uc), .2); border-radius: 12px;
  box-shadow: 0 18px 40px -18px rgba(var(--uc), .4);
  transform: rotate(-3deg); transition: transform .25s ease;
}
.uc-tile--hero:hover .uc-browser { transform: rotate(-1deg) translateY(-4px); }
.uc-b-bar { display: flex; gap: 5px; margin-bottom: 2px; }
.uc-b-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(var(--uc), .3); }
.uc-b-bar i:first-child { background: #f87171; }
.uc-b-bar i:nth-child(2) { background: #fbbf24; }
.uc-b-bar i:nth-child(3) { background: #34d399; }
.uc-b-line { height: 8px; border-radius: 4px; background: rgba(var(--uc), .16); }
.uc-b-chip { width: 64px; height: 20px; border-radius: 6px; background: rgba(var(--uc), .75); margin-top: 2px; }

/* статус-пилюля VPN */
.uc-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto; align-self: flex-start;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em; color: rgb(var(--uc));
  background: #fff; border: 1px solid rgba(var(--uc), .25); border-radius: 999px; padding: 6px 13px;
}
.uc-pill i { width: 8px; height: 8px; border-radius: 50%; background: rgb(var(--uc)); box-shadow: 0 0 0 3px rgba(var(--uc), .18); animation: ucPulse 1.8s ease-in-out infinite; }
@keyframes ucPulse { 50% { box-shadow: 0 0 0 6px rgba(var(--uc), .08); } }

/* мини-терминал */
.uc-term {
  margin-top: auto; align-self: flex-start; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .74rem; font-weight: 600; color: rgb(var(--uc));
  background: #fff; border: 1px solid rgba(var(--uc), .25); border-radius: 8px; padding: 7px 11px;
}
.uc-term i { font-style: normal; animation: ucBlink 1.1s steps(1) infinite; }
@keyframes ucBlink { 50% { opacity: 0; } }

@media (max-width: 1100px) {
  .uc-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .uc-tile--hero { grid-row: span 1; padding-bottom: 150px; }
}
@media (max-width: 640px) {
  .uc-bento { grid-template-columns: 1fr; gap: 13px; }
  .uc-tile--hero, .uc-tile--wide { grid-column: span 1; }
  .uc-tile--hero { padding: 24px 22px 140px; }
  .uc-tile--hero b { font-size: 1.2rem; }
  .uc-browser { width: 200px; right: -10px; }
  .uc-num { font-size: 2.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .uc-pill i, .uc-term i { animation: none; }
}
