/*
Theme Name: Sigma VPN Theme
Theme URI: https://vps-sigma.cfd/
Author: ChatGPT
Description: Легкая SEO-оптимизированная WordPress-тема для русскоязычного сайта Sigma VPN.
Version: 1.0.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: sigma-vpn
*/

:root {
  --sg-bg: #090b14;
  --sg-bg-soft: #111522;
  --sg-surface: #ffffff;
  --sg-surface-soft: #f7f8fc;
  --sg-text: #141824;
  --sg-muted: #657084;
  --sg-white: #ffffff;
  --sg-border: rgba(20, 24, 36, .1);
  --sg-border-dark: rgba(255, 255, 255, .14);
  --sg-red: #e30545;
  --sg-orange: #ff793d;
  --sg-gold: #ffb04a;
  --sg-accent: #f04b45;
  --sg-gradient: linear-gradient(135deg, #e30545 0%, #ff793d 55%, #ffb04a 100%);
  --sg-gradient-soft: linear-gradient(135deg, rgba(227, 5, 69, .14), rgba(255, 121, 61, .14));
  --sg-shadow: 0 20px 60px rgba(17, 21, 34, .12);
  --sg-shadow-strong: 0 26px 90px rgba(227, 5, 69, .24);
  --sg-radius: 24px;
  --sg-radius-sm: 16px;
  --sg-wrap: 1180px;
  --sg-header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--sg-text);
  background: var(--sg-surface);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.sg-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sg-red); }
img, svg { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.sg-skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--sg-white);
  background: var(--sg-red);
  transition: top .2s ease;
}
.sg-skip-link:focus { top: 12px; }

.sg-wrap {
  width: min(100% - 32px, var(--sg-wrap));
  margin-inline: auto;
}
.sg-section { padding: 84px 0; }
.sg-section--soft { background: var(--sg-surface-soft); }
.sg-section--dark {
  color: var(--sg-white);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 121, 61, .24), transparent 34%),
    radial-gradient(circle at 78% 8%, rgba(227, 5, 69, .2), transparent 30%),
    var(--sg-bg);
}
.sg-section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}
.sg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(227, 5, 69, .16);
  border-radius: 999px;
  color: #a31532;
  background: rgba(227, 5, 69, .08);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}
.sg-section--dark .sg-eyebrow,
.sg-hero .sg-eyebrow {
  color: #ffd8ce;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}
.sg-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.sg-title--sm { font-size: clamp(28px, 4vw, 44px); }
.sg-lead {
  margin: 18px 0 0;
  color: var(--sg-muted);
  font-size: clamp(17px, 2vw, 20px);
}
.sg-section--dark .sg-lead,
.sg-hero .sg-lead { color: rgba(255, 255, 255, .78); }
.sg-text-muted { color: var(--sg-muted); }
.sg-gradient-text {
  background: var(--sg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--sg-white);
  background: var(--sg-gradient);
  box-shadow: 0 14px 34px rgba(227, 5, 69, .28);
  font-weight: 900;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.sg-btn:hover { color: var(--sg-white); transform: translateY(-2px); box-shadow: var(--sg-shadow-strong); }
.sg-btn:focus-visible, .sg-menu-link:focus-visible, .sg-burger:focus-visible, .sg-sub-toggle:focus-visible, .sg-faq-q:focus-visible {
  outline: 3px solid rgba(255, 176, 74, .55);
  outline-offset: 3px;
}
.sg-btn--ghost {
  color: var(--sg-white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: none;
}
.sg-btn--ghost:hover { background: rgba(255, 255, 255, .14); box-shadow: none; }
.sg-btn--light {
  color: var(--sg-red);
  background: var(--sg-white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}
.sg-btn--light:hover { color: var(--sg-red); }
.sg-btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.sg-center { text-align: center; }

.sg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 11, 20, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.sg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--sg-header-h);
  gap: 18px;
}
.sg-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sg-white);
  font-weight: 950;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.sg-logo__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sg-gradient);
  box-shadow: 0 12px 34px rgba(227, 5, 69, .35);
}
.sg-logo__mark svg { width: 25px; height: 25px; fill: var(--sg-white); }
.sg-logo__text span { display: block; font-size: 12px; letter-spacing: .16em; color: rgba(255,255,255,.58); }
.sg-logo__name { font-size: 24px; line-height: 1; }
.sg-nav { display: flex; align-items: center; gap: 20px; }
.sg-menu { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.sg-menu-item { position: relative; }
.sg-menu-link, .sg-sub-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  background: transparent;
  font-weight: 800;
}
.sg-menu-link { padding: 10px 13px; }
.sg-menu-link:hover, .sg-menu-item.is-open > .sg-menu-link { color: var(--sg-white); background: rgba(255, 255, 255, .08); }
.sg-sub-toggle {
  width: 34px;
  justify-content: center;
  margin-left: -8px;
  color: rgba(255, 255, 255, .66);
}
.sg-sub-toggle::before { content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .18s ease; }
.sg-menu-item.is-open > .sg-sub-toggle::before { transform: rotate(225deg) translate(-1px, -1px); }
.sg-sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 248px;
  padding: 10px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: #111522;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.sg-menu-item:hover > .sg-sub-menu,
.sg-menu-item:focus-within > .sg-sub-menu,
.sg-menu-item.is-open > .sg-sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.sg-sub-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .78);
  font-weight: 750;
}
.sg-sub-menu a:hover { color: var(--sg-white); background: rgba(255, 255, 255, .08); }
.sg-header-cta { min-height: 44px; padding: 12px 16px; }
.sg-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  color: var(--sg-white);
  background: rgba(255,255,255,.06);
}
.sg-burger span, .sg-burger::before, .sg-burger::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.sg-menu-open .sg-burger span { opacity: 0; }
.sg-menu-open .sg-burger::before { transform: translateY(7px) rotate(45deg); }
.sg-menu-open .sg-burger::after { transform: translateY(-7px) rotate(-45deg); }

.sg-hero {
  color: var(--sg-white);
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 176, 74, .3), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(227, 5, 69, .36), transparent 30%),
    linear-gradient(180deg, #090b14 0%, #101422 74%, #ffffff 74%, #ffffff 100%);
  overflow: hidden;
	height: 1100px;
}
.sg-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 44px;
  align-items: center;
  padding: 46px 0;
}
.sg-hero__copy { max-width: 720px; }
.sg-hero__copy .sg-title { max-width: 780px; }
.sg-hero__note { margin-top: 18px; color: rgba(255,255,255,.72); font-size: 14px; }
.sg-hero__visual {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 110px rgba(0,0,0,.28);
  overflow: hidden;
}
.sg-hero__visual::before {
  content: "";
  position: absolute;
  inset: -22% -20% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--sg-gradient);
  filter: blur(10px);
  opacity: .78;
}
.sg-globe {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 38% 34%, rgba(255,255,255,.95), transparent 3%),
    radial-gradient(circle at 64% 52%, rgba(255,255,255,.8), transparent 2.5%),
    radial-gradient(circle at 48% 66%, rgba(255,255,255,.75), transparent 2.2%),
    linear-gradient(135deg, rgba(255,121,61,.95), rgba(227,5,69,.86));
  box-shadow: inset -35px -30px 70px rgba(0,0,0,.2), 0 30px 70px rgba(227,5,69,.34);
}
.sg-globe::before, .sg-globe::after {
  content: "";
  position: absolute;
  inset: 46px 20px;
  border: 1px solid rgba(255,255,255,.32);
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
}
.sg-globe::after { inset: 20px 92px; border: 1px solid rgba(255,255,255,.25); }
.sg-phone {
  position: absolute;
  right: 34px;
  bottom: 26px;
  width: 170px;
  height: 310px;
  border: 10px solid #151927;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, #fff3ef);
  box-shadow: 0 30px 72px rgba(0,0,0,.34);
}
.sg-phone::before { content: ""; position: absolute; left: 50%; top: 9px; width: 54px; height: 5px; border-radius: 5px; background: #242938; transform: translateX(-50%); }
.sg-phone__screen {
  position: absolute;
  inset: 28px 10px 12px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,121,61,.38), transparent 36%),
    linear-gradient(180deg, #171b2b, #0d101b);
}
.sg-shield {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 70px;
  height: 84px;
  transform: translate(-50%, -50%);
  background: var(--sg-gradient);
  clip-path: polygon(50% 0, 88% 12%, 84% 62%, 50% 100%, 16% 62%, 12% 12%);
  box-shadow: 0 16px 32px rgba(227, 5, 69, .35);
}
.sg-mini-card {
  position: absolute;
  left: 24px;
  padding: 14px;
  min-width: 172px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  color: var(--sg-white);
  background: rgba(9, 11, 20, .72);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}
.sg-mini-card b { display: block; font-size: 24px; line-height: 1; }
.sg-mini-card span { color: rgba(255,255,255,.68); font-size: 13px; }
.sg-mini-card--one { top: 38px; }
.sg-mini-card--two { bottom: 42px; }
.sg-server-pills {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 160px;
  display: grid;
  gap: 8px;
}
.sg-server-pill {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(9, 11, 20, .56);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 850;
}
.sg-server-pill em { color: #ffd2c5; font-style: normal; }

.sg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.sg-stat {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
}
.sg-stat b { display: block; font-size: 28px; line-height: 1; }
.sg-stat span { display: block; margin-top: 8px; color: rgba(255,255,255,.68); font-size: 14px; }

.sg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.sg-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sg-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sg-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
  background: var(--sg-surface);
  box-shadow: var(--sg-shadow);
}
.sg-section--dark .sg-card {
  color: var(--sg-white);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  box-shadow: none;
}
.sg-card h2, .sg-card h3, .sg-card h4 { margin: 0 0 10px; line-height: 1.16; letter-spacing: -.02em; }
.sg-card p { margin: 0; color: var(--sg-muted); }
.sg-section--dark .sg-card p { color: rgba(255,255,255,.72); }
.sg-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--sg-white);
  background: var(--sg-gradient);
  box-shadow: 0 14px 34px rgba(227, 5, 69, .24);
  font-weight: 950;
}
.sg-card ul, .sg-check-list { margin: 16px 0 0; padding: 0; list-style: none; }
.sg-card li, .sg-check-list li { position: relative; padding-left: 26px; margin: 10px 0; color: var(--sg-muted); }
.sg-card li::before, .sg-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sg-red);
  font-weight: 950;
}
.sg-section--dark .sg-card li, .sg-section--dark .sg-check-list li { color: rgba(255,255,255,.72); }
.sg-note {
  padding: 18px 20px;
  border: 1px solid rgba(227, 5, 69, .18);
  border-radius: 18px;
  background: var(--sg-gradient-soft);
  color: #671426;
}
.sg-note p { margin: 0; }

.sg-pricing { align-items: stretch; }
.sg-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--sg-border);
  border-radius: 28px;
  background: var(--sg-white);
  box-shadow: var(--sg-shadow);
}
.sg-price-card--featured {
  border-color: rgba(227, 5, 69, .36);
  transform: translateY(-10px);
  box-shadow: var(--sg-shadow-strong);
}
.sg-price-card__tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--sg-white);
  background: var(--sg-gradient);
  font-size: 13px;
  font-weight: 900;
}
.sg-price-card h3 { margin: 0 0 10px; font-size: 26px; }
.sg-price { margin: 18px 0; font-size: 42px; line-height: 1; font-weight: 950; letter-spacing: -.05em; }
.sg-price span { font-size: 16px; color: var(--sg-muted); letter-spacing: 0; font-weight: 800; }
.sg-price-card .sg-btn { margin-top: auto; width: 100%; }
.sg-price-list { margin: 12px 0 24px; padding: 0; list-style: none; }
.sg-price-list li { position: relative; padding-left: 26px; margin: 10px 0; color: var(--sg-muted); }
.sg-price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sg-red); font-weight: 950; }
.sg-periods { display: grid; gap: 10px; margin: 18px 0 24px; }
.sg-periods__row { display: flex; justify-content: space-between; padding: 11px 12px; border-radius: 14px; background: var(--sg-surface-soft); font-weight: 850; }
.sg-periods__row b { color: var(--sg-red); }

.sg-table-wrap {
  overflow: hidden;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
  background: var(--sg-white);
  box-shadow: var(--sg-shadow);
}
.sg-table { width: 100%; border-collapse: collapse; }
.sg-table th, .sg-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--sg-border); vertical-align: top; }
.sg-table th { color: #671426; background: #fff4ef; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.sg-table tr:last-child td { border-bottom: 0; }
.sg-table td b { color: var(--sg-text); }

.sg-locations { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.sg-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--sg-border);
  border-radius: 18px;
  background: var(--sg-white);
  box-shadow: 0 12px 34px rgba(17,21,34,.08);
}
.sg-location span { color: var(--sg-muted); font-size: 14px; }
.sg-location b:last-child { color: var(--sg-red); }

.sg-steps { counter-reset: step; display: grid; gap: 16px; }
.sg-step {
  position: relative;
  padding: 24px 24px 24px 78px;
  border: 1px solid var(--sg-border);
  border-radius: 22px;
  background: var(--sg-white);
  box-shadow: 0 12px 36px rgba(17,21,34,.08);
}
.sg-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--sg-white);
  background: var(--sg-gradient);
  font-weight: 950;
}
.sg-step h3 { margin: 0 0 8px; }
.sg-step p { margin: 0; color: var(--sg-muted); }

.sg-page-hero {
  color: var(--sg-white);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 121, 61, .28), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(227, 5, 69, .34), transparent 30%),
    var(--sg-bg);
  padding: 78px 0;
}
.sg-page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 42px; align-items: center; }
.sg-page-hero__panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.07);
}
.sg-page-hero__panel ul { margin: 0; padding: 0; list-style: none; }
.sg-page-hero__panel li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.75); }
.sg-page-hero__panel li:last-child { border-bottom: 0; }
.sg-page-hero__panel b { color: var(--sg-white); }
.sg-content { padding: 76px 0; }
.sg-content h2 { margin: 0 0 20px; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.12; letter-spacing: -.03em; }
.sg-content h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.2; }
.sg-content p { margin: 0 0 18px; }
.sg-content p:last-child { margin-bottom: 0; }
.sg-copy { max-width: 820px; }
.sg-two-col { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr); gap: 34px; align-items: start; }

.sg-faq { display: grid; gap: 12px; }
.sg-faq-item {
  border: 1px solid var(--sg-border);
  border-radius: 18px;
  background: var(--sg-white);
  overflow: hidden;
}
.sg-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  color: var(--sg-text);
  background: transparent;
  text-align: left;
  font-weight: 900;
}
.sg-faq-q::after { content: "+"; color: var(--sg-red); font-size: 24px; line-height: 1; }
.sg-faq-item.is-open .sg-faq-q::after { content: "−"; }
.sg-faq-a { display: none; padding: 0 20px 20px; color: var(--sg-muted); }
.sg-faq-item.is-open .sg-faq-a { display: block; }
.sg-faq-a p { margin: 0; }

.sg-cta {
  padding: 46px;
  border-radius: 34px;
  color: var(--sg-white);
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.2), transparent 24%),
    var(--sg-gradient);
  box-shadow: var(--sg-shadow-strong);
}
.sg-cta__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px; align-items: center; }
.sg-cta h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; }
.sg-cta p { margin: 0; color: rgba(255,255,255,.86); max-width: 760px; }

.sg-footer {
  color: rgba(255,255,255,.76);
  background: #090b14;
  padding: 56px 0 28px;
}
.sg-footer__grid { display: grid; grid-template-columns: 1.35fr repeat(3, minmax(160px, 1fr)); gap: 28px; }
.sg-footer h3, .sg-footer h4 { margin: 0 0 14px; color: var(--sg-white); }
.sg-footer p { margin: 0; max-width: 380px; }
.sg-footer ul { margin: 0; padding: 0; list-style: none; }
.sg-footer li { margin: 9px 0; }
.sg-footer a { color: rgba(255,255,255,.76); }
.sg-footer a:hover { color: var(--sg-white); }
.sg-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }

.sg-404 { min-height: 62vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.sg-404__box { max-width: 680px; }
.sg-404__code { font-size: clamp(80px, 16vw, 150px); line-height: .9; font-weight: 950; background: var(--sg-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

@media (max-width: 1080px) {
  .sg-header-cta { display: none; }
  .sg-hero__grid { grid-template-columns: 1fr; padding-top: 60px; }
.sg-hero__visual {
        display: flex;
        width: 650px;
	  justify-self: end;}
  .sg-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sg-locations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sg-hero {
		height: 1700px;
	}
}

@media (max-width: 920px) {
  :root { --sg-header-h: 70px; }
  .sg-burger { display: block; }
  .sg-nav {
    position: fixed;
    inset: var(--sg-header-h) 0 auto 0;
    display: block;
    max-height: calc(100vh - var(--sg-header-h));
    overflow-y: auto;
    padding: 18px 16px 24px;
    background: #090b14;
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 26px 70px rgba(0,0,0,.35);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .sg-menu-open .sg-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .sg-menu { display: grid; gap: 6px; }
  .sg-menu-item { display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .sg-menu-link { display: flex; width: 100%; padding: 12px 14px; }
  .sg-sub-toggle { margin-left: 0; width: 42px; }
  .sg-sub-menu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    display: none;
    margin: 4px 0 8px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(255,255,255,.06);
  }
  .sg-menu-item.is-open > .sg-sub-menu { display: block; }
  .sg-nav .sg-header-cta { display: flex; width: 100%; margin-top: 12px; }
  .sg-stats, .sg-grid, .sg-grid--2 { grid-template-columns: 1fr; }
  .sg-page-hero__grid, .sg-two-col, .sg-cta__grid { grid-template-columns: 1fr; }
  .sg-page-hero__panel { max-width: 520px; }
  .sg-price-card--featured { transform: none; }
	.sg-hero { height: 2100px;}
	.sg-hero__visual {
    
		justify-self: center;}
}

@media (max-width: 700px) {
  .sg-wrap { width: min(100% - 24px, var(--sg-wrap)); }
  .sg-section, .sg-content { padding: 56px 0; }
  .sg-hero__grid { padding: 46px 0 48px; }
  .sg-hero__visual { min-height: 390px; border-radius: 26px; }
  .sg-globe { width: 260px; height: 260px; }
  .sg-phone { right: 18px; bottom: 20px; width: 134px; height: 244px; border-width: 8px; }
  .sg-mini-card { left: 16px; min-width: 142px; padding: 12px; }
  .sg-server-pills { left: 16px; right: 16px; bottom: 126px; }
  .sg-stats { grid-template-columns: repeat(2, 1fr); }
  .sg-grid--4, .sg-locations { grid-template-columns: 1fr; }
  .sg-card, .sg-price-card { padding: 22px; border-radius: 22px; }
  .sg-cta { padding: 28px; border-radius: 26px; }
  .sg-footer__grid { grid-template-columns: 1fr; }
  .sg-footer__bottom { flex-direction: column; }
  .sg-table-wrap { box-shadow: none; background: transparent; border: 0; border-radius: 0; }
  .sg-table thead { display: none; }
  .sg-table, .sg-table tbody, .sg-table tr, .sg-table td { display: block; width: 100%; }
  .sg-table tr { margin-bottom: 12px; border: 1px solid var(--sg-border); border-radius: 18px; background: var(--sg-white); overflow: hidden; box-shadow: 0 12px 28px rgba(17,21,34,.08); }
  .sg-table td { display: grid; grid-template-columns: 122px 1fr; gap: 12px; border-bottom: 1px solid var(--sg-border); padding: 13px 14px; }
  .sg-table td::before { content: attr(data-label); color: #8c3343; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
  .sg-table td:last-child { border-bottom: 0; }
	.sg-hero__visual {
		display: none;
	}
	    .sg-hero {
        height: 1000px;
    }
}
@media (max-width: 480px) { .sg-hero {
        height: 1100px;
	}}

@media (max-width: 460px) {
  .sg-title { font-size: 34px; }
  .sg-btn-row, .sg-btn { width: 100%; }
  .sg-stats { grid-template-columns: 1fr; }
  .sg-stat b { font-size: 24px; }
  .sg-location { align-items: flex-start; flex-direction: column; gap: 4px; }
  .sg-step { padding: 22px; }
  .sg-step::before { position: static; margin-bottom: 14px; }
  .sg-table td { grid-template-columns: 1fr; gap: 3px; }
	 .sg-hero {
        height: 1400px;
    }
}

@media (max-width: 400px) {.sg-hero {
        height: 1500px;
	}}
@media (max-width: 345px) {.sg-hero {
        height: 1600px;
	}}