/* Serva4ok — единая вёрстка */
@import url("/css/Inter.css");

:root {
  --bg: #0a0e14;
  --bg-elevated: #121820;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f0f4f8;
  --muted: rgba(255, 255, 255, 0.6);
  --muted-2: rgba(255, 255, 255, 0.45);
  --accent: #5eead4;
  --accent-2: #38bdf8;
  --accent-hover: #2dd4bf;
  --accent-dim: rgba(94, 234, 212, 0.12);
  --accent-glow: rgba(94, 234, 212, 0.25);
  --danger: #f87171;
  --radius: 14px;
  --max: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
.logo img,
.site-footer .logo img,
.header-logo-icon,
.login-logo-icon {
  max-width: none;
}
.header-logo-icon,
.login-logo-icon {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.06) contrast(1.1);
}
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  min-width: 110px;
}
.logo img {
  display: block;
  height: 40px;
  width: auto;
  min-width: 110px;
  max-width: 190px;
  object-fit: contain;
  filter: brightness(1.06) contrast(1.1);
}
.nav-main {
  display: flex;
  gap: 28px;
}
.nav-main a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-main a:hover { color: var(--text); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-ghost {
  padding: 10px 18px;
  border-radius: 100px;
  color: var(--text);
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-dim); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--accent);
  color: #0a0e14;
  font-weight: 600;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--accent); background: var(--accent-dim); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  padding: 64px 0 48px;
  text-align: center;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.hero .lead {
  margin: 0 auto 32px;
  max-width: 560px;
  font-size: 1.125rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Hero PRO (sales) */
.hero-pro {
  position: relative;
  padding: 64px 0 56px;
  text-align: left;
  overflow: hidden;
}
.hero-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 20%, var(--accent-glow) 0%, transparent 60%),
    radial-gradient(ellipse 500px 350px at 85% 75%, rgba(56, 189, 248, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-pro .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 18px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-text h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.accent-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text .lead {
  margin: 0 0 24px;
  max-width: none;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text);
}
.hero-bullets .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-pro .hero-actions {
  justify-content: flex-start;
  gap: 14px;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.02rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--muted);
}
.pay-pill {
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
}

/* Hero card preview */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 0;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(94, 234, 212, 0.05);
  overflow: hidden;
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border);
}
.hero-card-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.hero-card-dot:nth-child(1) { background: #f87171; }
.hero-card-dot:nth-child(2) { background: #fbbf24; }
.hero-card-dot:nth-child(3) { background: #4ade80; }
.hero-card-url {
  margin-left: 14px;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'SF Mono', Menlo, monospace;
}
.hero-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
}
.metric {
  padding: 22px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.metric-num {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}
.metric-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.metric-wide {
  grid-column: 1 / -1;
  text-align: left;
  padding: 18px;
}
.metric-label-top {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 8px;
  font-weight: 600;
}
.metric-stack { font-size: 0.92rem; color: var(--text); line-height: 1.5; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat span { font-size: 0.875rem; color: var(--muted); }

/* Sections */
.section {
  padding: 56px 0;
}

/* Inner-page hero */
.page-hero {
  position: relative;
  padding: 48px 0 36px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 350px at 50% 20%, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.page-hero .lead {
  margin: 0 auto 22px;
  max-width: 720px;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.55;
}
.page-hero .hero-actions {
  justify-content: center;
  gap: 12px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.breadcrumbs a { color: var(--muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--muted-2); }

/* Nav active state */
.nav-main a.active { color: var(--accent); }
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Domain search */
.domain-block {
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.08) 0%, transparent 60%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 40px 32px;
  margin-bottom: 56px;
}
.domain-block h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  text-align: center;
}
.domain-block .hint {
  text-align: center;
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 0.95rem;
}
.domain-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}
.domain-form-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  align-items: stretch;
}
.domain-form label {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.domain-form input {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  font-size: 1.05rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.domain-form input::placeholder { color: rgba(255,255,255,0.35); }
.domain-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.domain-form button {
  padding: 16px 28px;
  white-space: nowrap;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0a0e14;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}
.domain-form button:hover { background: var(--accent-hover); }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: rgba(94, 234, 212, 0.35);
  transform: translateY(-2px);
}
.service-card .num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.service-card p {
  margin: 0 0 20px;
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
}
.service-card .price-line {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.service-card .price-line strong { color: var(--accent); }

/* Pricing */
.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.currency-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.currency-label {
  font-size: 0.85rem;
  color: var(--muted);
}
.currency-btn {
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.currency-btn:hover,
.currency-btn.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.pricing-note {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin: -8px 0 20px;
}
.price-card .price-alt {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.litespeed-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    grid-column: 1 / -1;
    width: 100%;
}
.order-geo-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.btn-order-geo {
    display: block;
    text-align: center;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-order-geo:hover {
    background: var(--accent);
    color: #fff;
}
.litespeed-plan-extra {
    grid-column: 1 / -1;
    max-width: 320px;
    justify-self: center;
}
.geo-menu {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
    margin-bottom: 24px;
}
.geo-menu-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
}
.geo-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg, var(--surface));
}
.geo-tab {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.geo-tab:hover {
    color: var(--accent);
    background: rgba(99, 102, 241, 0.06);
}
.geo-tab.active {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
}
.pricing-panel[data-panel="litespeed"] {
    display: none;
}
.pricing-panel[data-panel="litespeed"].active {
    display: grid;
}
.pricing-panel-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.pricing-tab {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  transition: all 0.2s;
}
.pricing-tab:hover,
.pricing-tab.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.pricing-panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
  align-items: stretch;
}
.pricing-panel.active { display: grid; }

.price-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.price-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}
.price-card ul {
  margin: 0 0 24px;
  padding-left: 0;
  flex: 1;
  list-style: none;
}
.price-card .btn-order,
.price-card .btn-order-litespeed {
  margin-top: auto;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(94, 234, 212, 0.06) 0%, var(--surface) 60%);
  box-shadow: 0 20px 60px -20px var(--accent-glow);
}
.price-card.featured:hover {
  box-shadow: 0 25px 80px -20px var(--accent-glow);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #0a0e14;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px -4px var(--accent-glow);
}
.price-card h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-card .desc {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--muted);
  min-height: 2.6em;
}
.price-card .price {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.price-card .price-main {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-card .price-period {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.price-card .price-alt {
  display: block;
  width: 100%;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted-2);
}
.price-card li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
}
.price-card li strong { color: var(--accent); font-weight: 700; }
.price-card li:last-child { border-bottom: none; }
.price-card .btn-order {
  display: block;
  margin-top: auto;
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  transition: all 0.2s;
}
.price-card .btn-order:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0e14;
  transform: translateY(-1px);
}
.btn-order-featured {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%) !important;
  border-color: transparent !important;
  color: #0a0e14 !important;
}
.btn-order-featured:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px var(--accent-glow);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature h3 { margin: 0 0 8px; font-size: 1.08rem; font-weight: 700; }
.feature p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
.feature.large { grid-column: span 2; }

/* Comparison table */
.comparison-section { padding: 56px 0; }
.compare-table {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.3fr;
  gap: 0;
  align-items: center;
}
.compare-row > div {
  padding: 16px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child > div { border-bottom: none; }
.compare-head {
  background: rgba(255, 255, 255, 0.04);
}
.compare-head > div {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.compare-us {
  position: relative;
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-dim);
}
.compare-us::before {
  content: '✓ ';
  font-weight: 700;
}
.compare-head .compare-us {
  background: var(--accent-dim);
  color: var(--accent);
}
.compare-head .compare-us::before { content: ''; }
.compare-them {
  color: var(--muted-2);
}
.compare-them::before {
  content: '✕ ';
  color: var(--danger);
  font-weight: 700;
}
.compare-head .compare-them { color: var(--muted); }
.compare-head .compare-them::before { content: ''; }

/* Service link cards (home cross-link to /vps /domains /support) */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-link-card {
  display: block;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.service-link-card:hover {
  border-color: var(--accent);
  background: var(--surface-strong);
  transform: translateY(-3px);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.service-link-card h3 { margin: 0 0 10px; font-size: 1.2rem; font-weight: 700; }
.service-link-card p { margin: 0 0 18px; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.service-link-arrow {
  display: inline-block;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.92rem;
  transition: transform 0.2s;
}
.service-link-card:hover .service-link-arrow { transform: translateX(4px); }

/* TLD grid (domains.html) */
.tld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.tld-card {
  position: relative;
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.tld-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.tld-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(94, 234, 212, 0.06) 0%, var(--surface) 70%);
}
.tld-name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.tld-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.tld-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.tld-desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Steps grid (domains/support — how it works) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.step-card h4 { margin: 0 0 8px; font-size: 1.02rem; font-weight: 700; }
.step-card p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

.center-action {
  text-align: center;
  margin-top: 32px;
}

/* Use cases grid (vps/support) */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.usecase {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.usecase:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.usecase h4 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
}
.usecase p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Locations grid (vps) */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.location-card {
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.location-card:hover { border-color: var(--border-strong); }
.location-flag { font-size: 2.4rem; margin-bottom: 8px; line-height: 1; }
.location-card h3 { margin: 0 0 10px; font-size: 1.15rem; font-weight: 700; }
.location-card > p { margin: 0 0 16px; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.loc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.loc-list li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.loc-list li::before {
  content: '◆';
  color: var(--accent);
  margin-right: 8px;
  font-size: 0.7rem;
}

.panel-block {
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 48px 0;
}
.panel-block h3 { margin: 0 0 12px; font-size: 1.5rem; }
.panel-block p { margin: 0 auto 24px; max-width: 560px; color: var(--muted); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.problem-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: var(--border-strong); }
.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.problem-card h4 { margin: 0 0 8px; font-size: 1.08rem; font-weight: 700; }
.problem-card p { margin: 0; font-size: 0.93rem; color: var(--muted); line-height: 1.55; }

/* Domain zones */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.zone-card {
  padding: 24px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.zone-card h4 { margin: 12px 0 8px; }
.zone-card .zone-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.cta-block {
  text-align: center;
  padding: 56px 32px;
  background: linear-gradient(180deg, var(--accent-dim) 0%, transparent 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  margin: 48px 0;
}
.cta-block h2 { margin: 0 0 12px; }
.cta-block p { margin: 0 auto 28px; max-width: 520px; color: var(--muted); }
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
}
.faq-q .num { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }
.faq-q .arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
  opacity: 0.5;
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); opacity: 1; }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

.help-block {
  text-align: center;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.help-block a { color: var(--accent); font-weight: 600; }

/* Legal pages */
.legal-page {
  padding: calc(var(--header-h) + 32px) 0 64px;
}
.legal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.legal-breadcrumb a { color: var(--accent); }
.legal-doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.legal-doc-wide { max-width: 920px; }
.legal-doc h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
}
.legal-subtitle {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
}
.legal-updated {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 20px;
}
.legal-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-related {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}
.legal-doc h2 {
  margin: 36px 0 14px;
  font-size: 1.25rem;
  color: var(--text);
}
.legal-doc h3 {
  margin: 24px 0 10px;
  font-size: 1.05rem;
  color: var(--muted);
}
.legal-doc p,
.legal-doc li {
  line-height: 1.7;
  color: var(--text);
}
.legal-doc p { margin: 0 0 12px; }
.legal-doc ul,
.legal-doc ol {
  margin: 0 0 16px;
  padding-left: 1.4rem;
}
.legal-doc li { margin-bottom: 6px; }
.legal-defs {
  margin: 16px 0 24px;
  padding: 0;
}
.legal-defs dt {
  font-weight: 600;
  margin-top: 12px;
  color: var(--accent);
}
.legal-defs dd {
  margin: 4px 0 0 0;
  padding-left: 0;
  color: var(--text);
}
.legal-doc a { color: var(--accent); }
.legal-doc sup { font-size: 0.75em; }

@media (max-width: 768px) {
  .legal-doc { padding: 28px 20px; }
}

/* Footer */
.site-footer {
  margin-top: 64px;
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--accent); }

/* Mobile */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-pro { text-align: center; padding: 48px 0 36px; }
  .hero-pro .hero-actions { justify-content: center; }
  .hero-bullets { align-items: flex-start; max-width: 360px; margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature.large { grid-column: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pricing-panel { grid-template-columns: repeat(2, 1fr); }
  .compare-row { grid-template-columns: 1fr 1fr 1fr; }
  .compare-row > div { padding: 14px 16px; font-size: 0.88rem; }
  .services-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-main, .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-main {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .site-header.nav-open .header-actions {
    position: absolute;
    top: calc(var(--header-h) + 220px);
    left: 24px;
    right: 24px;
    flex-direction: column;
  }
  .site-header.nav-open .header-actions .btn-ghost { display: inline-flex; width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-panel { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .domain-form-inner { flex-direction: column; }
  .domain-form-inner button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card-body { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2rem; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row > div:first-child {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    padding: 12px 16px;
  }
  .tld-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 32px 0 24px; }
}
