/* ==========================================================================
   itsupport.host — landing v51 Clean Corporate
   ========================================================================== */

:root {
  --bg: #0f1129;
  --bg-elev: #161938;
  --card: rgba(255, 255, 255, 0.04);
  --card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(139, 125, 255, 0.18);
  --border-hover: rgba(139, 125, 255, 0.35);
  --text: #f0f2ff;
  --muted: #a8b2d1;
  --accent: #4f46e5;
  --accent-2: #6d63ff;
  --accent-light: #22d3ee;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 18px 60px rgba(8, 10, 32, 0.45);
  --container: 1200px;
  --header-h: 72px;
  --font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.svg-sprite { position: absolute; width: 0; height: 0; }
.svg-sprite svg, svg use { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 41, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-logo { width: 28px; height: 28px; }

.site-nav {
  display: flex;
  gap: 22px;
  margin-left: 8px;
}
.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--text); }

.header-phone {
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.header-phone:hover { color: var(--text); }

.header-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--accent-2); }

.header-account {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}
.header-account:hover {
  background: rgba(34, 211, 238, 0.10);
  border-color: rgba(34, 211, 238, 0.4);
  color: var(--text);
}
.header-account-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent-light); }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Section base
   -------------------------------------------------------------------------- */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 52px 32px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 600;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--card); border-color: var(--border-hover); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 17, 41, 0.95) 0%, rgba(15, 17, 41, 0.72) 45%, rgba(15, 17, 41, 0.25) 75%, rgba(15, 17, 41, 0) 100%),
    linear-gradient(180deg, rgba(15, 17, 41, 0.5) 0%, rgba(15, 17, 41, 0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 72px 32px;
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 24px;
  max-width: 720px;
}
.hero .lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-hooks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-hooks a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}
.hero-hooks a:hover {
  background: rgba(34, 211, 238, 0.14);
  border-color: rgba(34, 211, 238, 0.55);
  color: var(--text);
  transform: translateY(-1px);
}
.hero-hooks .hook-arrow {
  display: inline-block;
  color: var(--accent-light);
  transition: transform 0.2s ease;
}
.hero-hooks a:hover .hook-arrow {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all 0.25s;
}
.service-card:hover {
  background: var(--card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.service-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(79, 70, 229, 0.18);
  color: var(--accent-light);
  margin-bottom: 22px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Approach
   -------------------------------------------------------------------------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.approach-card {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.approach-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
}
.approach-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 41, 0) 30%, rgba(15, 17, 41, 0.65) 65%, rgba(15, 17, 41, 0.95) 100%);
}
.approach-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.approach-card-content .step {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.approach-card-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.approach-card-content p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.method-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  flex-wrap: wrap;
}
.method-flow span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(79, 70, 229, 0.18);
  color: var(--accent-light);
  flex-shrink: 0;
}
.method-flow span svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   Trust
   -------------------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.trust-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 32px 36px;
  overflow: hidden;
}
.trust-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
}
.trust-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent-light);
  margin-bottom: 18px;
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.trust-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.tech-tags span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.price-featured {
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.18) 0%, rgba(79, 70, 229, 0.04) 100%);
  border-color: rgba(79, 70, 229, 0.55);
  box-shadow: var(--shadow);
}
.price-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 18px;
}
.price-amount {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.price-amount span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-right: 4px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.price-amount small {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.price-sub {
  font-size: 14px;
  color: var(--muted);
  margin: -14px 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.pricing-note {
  margin: 24px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.price-card li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
  transform: rotate(-45deg);
}
.price-card .btn { width: 100%; }

.price-account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.price-account-link svg {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
  flex-shrink: 0;
}
.price-account-link:hover {
  color: var(--text);
  background: rgba(34, 211, 238, 0.08);
}

/* --------------------------------------------------------------------------
   Colocation highlight
   -------------------------------------------------------------------------- */
.colocation-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.10) 0%, rgba(34, 211, 238, 0.05) 60%, rgba(15, 17, 41, 0.6) 100%);
  box-shadow: var(--shadow);
  position: relative;
}
.colocation-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
}
.colocation-info {
  padding: 36px 36px 36px 40px;
}
.colocation-info .eyebrow { margin-bottom: 12px; }
.colocation-info h2 {
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.01em;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 14px;
}
.colocation-info > p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.6;
}
.colocation-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.colocation-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.colocation-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
  transform: rotate(-45deg);
}

.colocation-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(15, 17, 41, 0.55) 0%, rgba(15, 17, 41, 0.85) 100%);
  border-left: 1px solid var(--border);
}
.colocation-price-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.colocation-price-amount {
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.colocation-price-amount small {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
  letter-spacing: 0;
}
.colocation-price-unit {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.colocation-price .btn { width: 100%; }
.colocation-note {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.85;
  margin: 12px 0 0;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Contacts
   -------------------------------------------------------------------------- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contacts-info .eyebrow { margin-bottom: 14px; }
.contacts-info h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.1;
}
.contacts-info p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 460px;
}
.contact-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.contact-pills a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s;
}
.contact-pills a:hover {
  background: var(--card-hover);
  border-color: var(--border-hover);
}
.contact-pills .pill-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
}
.contact-pills .pill-tg:hover .pill-icon {
  color: var(--text);
}
.contact-pills .pill-tg {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16) 0%, rgba(79, 70, 229, 0.10) 100%);
  border-color: rgba(34, 211, 238, 0.45);
}
.contact-pills .pill-tg:hover {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.24) 0%, rgba(79, 70, 229, 0.14) 100%);
  border-color: rgba(34, 211, 238, 0.7);
}

.footer-tg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-tg .pill-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
}
.brand-mark {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 8px;
}

.legal-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
}

.footer-legal {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  background: rgba(15, 17, 41, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(15, 17, 41, 0.85);
}
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form .btn { margin-top: 4px; }

.form-captcha {
  margin: 4px 0 0;
  min-height: 0;
  display: flex;
  justify-content: center;
}
.form-captcha:empty { display: none; }

.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 5px;
  background-color: rgba(15, 17, 41, 0.6);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
  display: inline-block;
  vertical-align: top;
}
.form-consent input[type="checkbox"]:hover { border-color: var(--border-hover); }
.form-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}
.form-consent input[type="checkbox"]:checked {
  background-color: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 7'/%3E%3C/svg%3E");
}
.form-consent a { color: var(--accent-light); border-bottom: 1px dashed currentColor; }
.form-consent a:hover { color: var(--text); }
.form-status {
  margin: 8px 0 0;
  font-size: 13px;
  min-height: 1em;
}
.form-status.ok { color: #34d399; }
.form-status.error { color: #f87171; }

/* --------------------------------------------------------------------------
   Legal page (privacy)
   -------------------------------------------------------------------------- */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
}
.legal-inner {
  padding: 48px 32px 64px;
}
.legal-back {
  display: inline-block;
  font-size: 14px;
  color: var(--accent-light);
  margin-bottom: 24px;
}
.legal-back:hover { color: var(--text); }
.legal-page h1 {
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.15;
}
.legal-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 36px;
}
.legal-page h2 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal-page p, .legal-page li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.legal-page ul {
  margin: 8px 0 16px;
  padding-left: 22px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page a {
  color: var(--accent-light);
  border-bottom: 1px dashed currentColor;
}
.legal-page a:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.015);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  font-size: 14px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 8px;
}
.footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-col span {
  font-size: 14px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.footer-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-link-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 4px;
}
.footer-col-brand p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  transition: all 0.2s;
  align-self: flex-start;
}
.footer-partner:hover {
  background: rgba(34, 211, 238, 0.10);
  border-color: rgba(34, 211, 238, 0.4);
  color: var(--text);
}
.footer-partner .pill-icon { width: 14px; height: 14px; color: var(--accent-light); flex-shrink: 0; }
.footer-partner b { font-weight: 600; color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom small {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Cookie banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: rgba(15, 17, 41, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-banner.is-visible { transform: none; }
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.cookie-inner p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  line-height: 1.5;
}
.cookie-inner p a { color: var(--accent-light); border-bottom: 1px dashed currentColor; }
.cookie-inner .btn { padding: 10px 22px; font-size: 14px; flex-shrink: 0; }

@media (max-width: 720px) {
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px 16px; }
  .cookie-inner .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Marquee tech strip
   -------------------------------------------------------------------------- */
.marquee-strip {
  position: relative;
  margin: 12px 0 0;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee-row {
  display: flex;
  gap: 16px;
  padding: 0 8px;
  flex-shrink: 0;
}
.marquee-row span {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all 0.25s;
}
.team-card:hover {
  background: var(--card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 2px solid var(--border);
  background: var(--bg-elev);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.team-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.team-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.10) 0%, rgba(34, 211, 238, 0.06) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.team-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-stats b {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-stats span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Comparison
   -------------------------------------------------------------------------- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.compare-card.compare-us {
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.18) 0%, rgba(79, 70, 229, 0.04) 100%);
  border-color: rgba(79, 70, 229, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.compare-head {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-card.compare-us .compare-head {
  color: var(--accent-light);
}
.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-card li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.compare-card li::before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.compare-card li.pro::before {
  content: "+";
  background: rgba(52, 211, 153, 0.16);
  color: #34d399;
}
.compare-card li.con::before {
  content: "−";
  background: rgba(248, 113, 113, 0.14);
  color: #f87171;
}
.compare-card.compare-us li { color: var(--text); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] {
  background: var(--card-hover);
  border-color: var(--border-hover);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--accent-light);
}
.faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq-body p { margin: 0; }

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-stats { grid-template-columns: repeat(2, 1fr); padding: 20px; }
  .compare-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .compare-card.compare-us { transform: none; order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .colocation-card { grid-template-columns: 1fr; }
  .colocation-card::before { width: 100%; height: 4px; }
  .colocation-price { border-left: none; border-top: 1px solid var(--border); }
  .colocation-info { padding: 32px 28px; }
  .colocation-price { padding: 28px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 44px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-inner { padding: 44px 28px 24px; }
}

@media (max-width: 900px) {
  .site-nav,
  .header-phone,
  .header-cta,
  .header-account { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }

  body.menu-open { overflow: hidden; }
  body.menu-open .site-nav {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(15, 17, 41, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 24px 110px;
    gap: 22px;
    z-index: 99;
    overflow-y: auto;
  }
  body.menu-open .site-nav a {
    font-size: 18px;
    color: var(--text);
  }
  body.menu-open .header-account {
    display: inline-flex;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 12px 22px;
    font-size: 15px;
    background: rgba(34, 211, 238, 0.10);
    border-color: rgba(34, 211, 238, 0.4);
    color: var(--text);
  }

  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { min-height: 280px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-stats b { font-size: 26px; }
  .marquee-track { animation-duration: 40s; }
  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 17, 41, 0.5) 0%, rgba(15, 17, 41, 0.92) 80%);
  }
  .hero-bg img { object-position: center; }
  .hero-content { padding: 48px 24px; }
  .section-head { margin-bottom: 24px; }
  .section { padding: 36px 24px; }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 16px; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-content { padding: 40px 20px 56px; }
  .hero-hooks { gap: 8px; }
  .hero-hooks a { padding: 9px 14px; font-size: 12px; }
  .brand-name { display: none; }
  .legal-block { font-size: 12px; }
  .compare-card { padding: 24px 20px; }
  .price-amount { font-size: 32px; }
  .approach-card-content h3 { font-size: 19px; }
  .team-stats { padding: 18px; }
  .footer-partner { font-size: 12px; padding: 7px 12px; }
  .contact-form { padding: 20px; gap: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col-brand { grid-column: auto; }
  .footer-inner { padding: 36px 24px 20px; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .price-card { padding: 28px 24px; }
  .team-stats { grid-template-columns: repeat(2, 1fr); }
  .faq-item summary { font-size: 15px; padding: 18px 48px 18px 20px; }
  .faq-item summary::after { right: 20px; }
  .faq-body { padding: 0 20px 18px; font-size: 14px; }
}
