:root {
  --bg: #05070c;
  --bg-soft: #0a101b;
  --panel: rgba(12, 18, 30, 0.88);
  --panel-solid: #0c121e;
  --text: #f6f8fb;
  --muted: #a9b5c7;
  --line: rgba(167, 186, 214, 0.2);
  --blue: #2b7cff;
  --blue-strong: #68a7ff;
  --cyan: #58d7ff;
  --silver: #d7e2ef;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(43, 124, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 8% 42%, rgba(88, 215, 255, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(5, 7, 12, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--silver);
  font-weight: 800;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(104, 167, 255, 0.35);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 650;
}

.nav a:hover {
  color: var(--cyan);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: calc(100vh - 73px);
  padding: clamp(40px, 7vw, 86px) clamp(18px, 4vw, 64px) 44px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(100deg, rgba(5, 7, 12, 0.98), rgba(5, 7, 12, 0.74) 46%, rgba(43, 124, 255, 0.12));
}

.hero-content {
  max-width: 680px;
}

.hero-logo {
  width: clamp(92px, 12vw, 142px);
  height: clamp(92px, 12vw, 142px);
  margin-bottom: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(215, 226, 239, 0.32),
    0 0 44px rgba(43, 124, 255, 0.5);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 0 36px rgba(104, 167, 255, 0.22);
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--silver);
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 58ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.primary {
  border-color: rgba(104, 167, 255, 0.8);
  background: linear-gradient(135deg, var(--blue), #0f5ed7);
  color: #fff;
  box-shadow: 0 0 30px rgba(43, 124, 255, 0.35);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--silver);
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--blue-strong);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 226, 239, 0.2);
  border-radius: 10px;
  background: #0c121e;
  box-shadow: var(--shadow), 0 0 55px rgba(43, 124, 255, 0.26);
  aspect-ratio: 16 / 10;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 7, 12, 0.22), transparent 40%);
  pointer-events: none;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 64px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stats div {
  display: grid;
  gap: 6px;
  min-height: 128px;
  align-content: center;
  padding: 24px;
  background: rgba(8, 13, 22, 0.96);
}

.stats strong {
  color: var(--silver);
  font-size: 1.4rem;
}

.stats span {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(43, 124, 255, 0.1), transparent 44%),
    var(--panel);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
}

.service-card p,
.support p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  place-items: center;
  border: 1px solid rgba(104, 167, 255, 0.4);
  border-radius: 8px;
  background: rgba(43, 124, 255, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.catalog {
  background:
    linear-gradient(180deg, rgba(43, 124, 255, 0.08), transparent),
    #060a12;
}

.catalog-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.catalog-list article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  background: rgba(8, 13, 22, 0.96);
}

.catalog-list span {
  color: var(--silver);
  font-size: 1.05rem;
  font-weight: 900;
}

.catalog-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  background:
    linear-gradient(135deg, rgba(43, 124, 255, 0.12), transparent),
    #070b12;
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.steps li {
  min-height: 170px;
  padding: 24px;
  background: #080d16;
  color: var(--muted);
}

.steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--silver);
  font-size: 1.25rem;
  font-weight: 900;
}

.support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(43, 124, 255, 0.18), transparent 58%),
    var(--panel-solid);
}

.support > div {
  max-width: 800px;
}

.section-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(104, 167, 255, 0.35);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #05070c;
}

.back-top {
  border: 0;
  background: transparent;
  color: var(--cyan);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

@media (max-width: 860px) {
  .site-header,
  .support {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    order: -1;
    aspect-ratio: 16 / 9;
  }

  .stats,
  .service-grid,
  .steps,
  .catalog-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
