:root {
  color-scheme: dark;
  --black: #050505;
  --black-soft: #0d0d0e;
  --graphite: #161719;
  --titanium: #b8bec6;
  --titanium-bright: #f2f4f7;
  --steel: #7f8790;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--titanium-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  transition: background 0.24s ease, color 0.24s ease;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 36px;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: linear-gradient(145deg, #f4f4f4, #6d737a 46%, #151515 47%, #34373a);
  color: #050505;
  font-weight: 900;
  font-size: 1.22rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--steel);
  font-size: 0.78rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #d7dbe0;
  font-size: 0.95rem;
}

.desktop-nav a {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
}

.desktop-nav a:hover,
.header-call:hover,
.theme-toggle:hover,
.button:hover,
.toast-actions a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

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

.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-icon-moon,
[data-theme="light"] .theme-icon-sun {
  display: none;
}

[data-theme="light"] .theme-icon-moon {
  display: block;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.header-call svg,
.theme-toggle svg,
.button svg,
.feature-card svg,
.floating-contact svg,
.toast-actions svg,
.toast-close svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-opergps.png") center right / cover no-repeat;
  filter: saturate(0.25) contrast(1.14) brightness(0.62);
  opacity: 0.74;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 43%, rgba(255, 255, 255, 0.14), transparent 27%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.99) 0%, rgba(5, 5, 5, 0.9) 37%, rgba(5, 5, 5, 0.54) 72%, rgba(5, 5, 5, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.86) 100%);
}

.kazakhstan-outline {
  position: absolute;
  right: clamp(10px, 4vw, 76px);
  top: 50%;
  z-index: 1;
  width: min(58vw, 780px);
  max-height: 48svh;
  transform: translateY(-45%);
  pointer-events: none;
  opacity: 0.96;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 72px));
  padding: 92px 0 64px 36px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--titanium);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 5.2rem;
  line-height: 0.95;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 2.6rem;
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.14rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #d4d7dc;
  font-size: 1.2rem;
}

.hero-actions,
.contact-actions,
.toast-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button.primary {
  color: #050505;
  background: linear-gradient(135deg, #ffffff, #aab1ba 52%, #ffffff);
  border-color: rgba(255, 255, 255, 0.72);
}

.button.ghost {
  color: var(--titanium-bright);
  background: rgba(255, 255, 255, 0.07);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  width: min(100%, 480px);
  margin: 34px 0 0;
}

.hero-metrics div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.68);
}

.hero-metrics dt {
  color: var(--white);
  font-size: 1.32rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--steel);
  font-size: 0.88rem;
}

section {
  padding: 84px 36px;
}

.intro,
.advantages,
.install,
.cases-section,
.contact-section {
  border-bottom: 1px solid var(--line-dark);
}

.intro {
  background: linear-gradient(180deg, #080808, #111214);
}

.intro-grid,
.section-heading,
.platform,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid p,
.section-heading p,
.platform-copy p,
.contact-section p,
.feature-card p,
.steps p {
  color: #b9bec5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 36px auto 0;
}

.feature-card,
.steps article {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #0b0b0c;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.feature-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: #e5e8ec;
}

.platform {
  padding: 96px 36px;
  background: #050505;
}

.platform-copy {
  padding-top: 22px;
}

.console {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 42%),
    #0f1011;
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd4da;
}

.console-top span:nth-child(2) {
  background: #777f88;
}

.console-top span:nth-child(3) {
  background: #383b3f;
}

.console-map {
  position: relative;
  height: 240px;
  margin: 20px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.16), transparent 30%),
    #090909;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.route-line {
  position: absolute;
  left: 12%;
  top: 48%;
  width: 76%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, #8b929b, transparent);
  transform: rotate(-13deg);
}

.pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.pin-a {
  left: 18%;
  top: 52%;
}

.pin-b {
  left: 52%;
  top: 38%;
}

.pin-c {
  right: 16%;
  top: 28%;
}

.console-list {
  display: grid;
  gap: 10px;
  padding: 0 20px 20px;
}

.console-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #c5c9cf;
}

.console-list strong {
  color: #ffffff;
  font-size: 0.84rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 36px auto 0;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #050505;
  background: #f0f2f5;
  font-weight: 900;
}

.cases-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #0a0a0b, #050505);
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1180px;
  margin: 36px auto 0;
}

.case-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 42%),
    #0c0c0d;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 106px;
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #d6dae0;
  font-weight: 900;
}

.case-body {
  max-width: 620px;
}

.case-meta svg,
.case-link svg {
  width: 20px;
  height: 20px;
}

.case-body h3 {
  margin-bottom: 8px;
  font-size: 1.48rem;
}

.case-body p {
  margin-bottom: 0;
  color: #b9bec5;
}

.case-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #050505;
  background: linear-gradient(135deg, #ffffff, #aab1ba 52%, #ffffff);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.case-link:hover {
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.contact-section {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 56%),
    #090909;
}

.contact-actions {
  justify-content: flex-end;
}

.plain-phone {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 900;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  color: #050505;
  background: #ffffff;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.floating-contact svg {
  width: 24px;
  height: 24px;
}

.contact-toast {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 31;
  width: min(352px, calc(100% - 44px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    #0a0a0b;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.contact-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: #e8ebef;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.contact-toast p {
  margin-bottom: 6px;
  padding-right: 34px;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.08rem;
}

.toast-phone {
  display: inline-block;
  margin-bottom: 16px;
  color: #d9dde2;
  font-size: 1.15rem;
  font-weight: 800;
}

.toast-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 36px;
  color: #8e959e;
  background: #050505;
  font-size: 0.92rem;
}

[data-theme="light"] {
  color-scheme: light;
}

[data-theme="light"] body {
  background: #f4f5f7;
  color: #15171b;
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(15, 18, 24, 0.12);
  box-shadow: 0 14px 36px rgba(15, 18, 24, 0.06);
}

[data-theme="light"] .brand strong,
[data-theme="light"] h2,
[data-theme="light"] h3 {
  color: #101216;
}

[data-theme="light"] .brand small,
[data-theme="light"] .section-kicker {
  color: #616b76;
}

[data-theme="light"] .desktop-nav {
  color: #24282e;
}

[data-theme="light"] .desktop-nav a:hover,
[data-theme="light"] .header-call:hover,
[data-theme="light"] .theme-toggle:hover,
[data-theme="light"] .button:hover,
[data-theme="light"] .toast-actions a:hover {
  border-color: rgba(15, 18, 24, 0.28);
}

[data-theme="light"] .header-call,
[data-theme="light"] .theme-toggle {
  color: #111318;
  background: rgba(15, 18, 24, 0.045);
  border-color: rgba(15, 18, 24, 0.13);
}

[data-theme="light"] .hero {
  background: #f4f5f7;
  border-bottom-color: rgba(15, 18, 24, 0.1);
}

[data-theme="light"] .hero::before {
  filter: saturate(0.18) contrast(1.08) brightness(0.92);
  opacity: 0.38;
}

[data-theme="light"] .hero-shade {
  background:
    radial-gradient(circle at 72% 43%, rgba(15, 18, 24, 0.12), transparent 27%),
    linear-gradient(90deg, rgba(244, 245, 247, 0.98) 0%, rgba(244, 245, 247, 0.88) 39%, rgba(244, 245, 247, 0.44) 74%, rgba(244, 245, 247, 0.82) 100%),
    linear-gradient(180deg, rgba(244, 245, 247, 0.08) 0%, rgba(244, 245, 247, 0.92) 100%);
}

[data-theme="light"] .kazakhstan-outline {
  opacity: 0.42;
  filter: invert(1) drop-shadow(0 24px 46px rgba(255, 255, 255, 0.78));
}

[data-theme="light"] .hero h1 {
  color: #08090b;
}

[data-theme="light"] .hero .eyebrow {
  color: #454e59;
}

[data-theme="light"] .hero-lead {
  color: #2f3741;
}

[data-theme="light"] .hero-metrics div {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 18, 24, 0.13);
  box-shadow: 0 16px 46px rgba(15, 18, 24, 0.08);
}

[data-theme="light"] .hero-metrics dt {
  color: #101216;
}

[data-theme="light"] .hero-metrics dd {
  color: #69727e;
}

[data-theme="light"] .button.primary,
[data-theme="light"] .case-link {
  color: #ffffff;
  background: linear-gradient(135deg, #111318, #5f6873 54%, #15181d);
  border-color: rgba(15, 18, 24, 0.3);
}

[data-theme="light"] .button.ghost,
[data-theme="light"] .toast-actions a {
  color: #111318;
  background: rgba(15, 18, 24, 0.045);
  border-color: rgba(15, 18, 24, 0.14);
}

[data-theme="light"] .intro,
[data-theme="light"] .advantages,
[data-theme="light"] .install,
[data-theme="light"] .cases-section,
[data-theme="light"] .contact-section {
  border-bottom-color: rgba(15, 18, 24, 0.1);
}

[data-theme="light"] .intro {
  background: linear-gradient(180deg, #ffffff, #eef0f3);
}

[data-theme="light"] .platform {
  background: #e9ecef;
}

[data-theme="light"] .cases-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 18, 24, 0.1), transparent 30%),
    linear-gradient(180deg, #f7f8fa, #eef0f3);
}

[data-theme="light"] .contact-section {
  background:
    linear-gradient(90deg, rgba(15, 18, 24, 0.06), transparent 56%),
    #ffffff;
}

[data-theme="light"] .intro-grid p,
[data-theme="light"] .section-heading p,
[data-theme="light"] .platform-copy p,
[data-theme="light"] .contact-section p,
[data-theme="light"] .feature-card p,
[data-theme="light"] .steps p,
[data-theme="light"] .case-card p {
  color: #4a535f;
}

[data-theme="light"] .feature-card,
[data-theme="light"] .steps article,
[data-theme="light"] .case-card {
  border-color: rgba(15, 18, 24, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.86)),
    #ffffff;
  box-shadow: 0 18px 60px rgba(15, 18, 24, 0.08);
}

[data-theme="light"] .feature-card svg {
  color: #242a31;
}

[data-theme="light"] .console {
  border-color: rgba(15, 18, 24, 0.13);
  background:
    linear-gradient(145deg, rgba(15, 18, 24, 0.06), rgba(255, 255, 255, 0.88) 42%),
    #ffffff;
  box-shadow: 0 22px 70px rgba(15, 18, 24, 0.12);
}

[data-theme="light"] .console-top,
[data-theme="light"] .console-map,
[data-theme="light"] .console-list div,
[data-theme="light"] .case-meta {
  border-color: rgba(15, 18, 24, 0.1);
}

[data-theme="light"] .console-map {
  background:
    linear-gradient(rgba(15, 18, 24, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 18, 24, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(15, 18, 24, 0.12), transparent 30%),
    #f7f8fa;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

[data-theme="light"] .route-line {
  background: linear-gradient(90deg, transparent, #111318, #7a828c, transparent);
}

[data-theme="light"] .pin {
  border-color: #111318;
  background: #ffffff;
  box-shadow: 0 0 0 8px rgba(15, 18, 24, 0.08);
}

[data-theme="light"] .console-list div,
[data-theme="light"] .case-meta {
  color: #4a535f;
  background: rgba(15, 18, 24, 0.035);
}

[data-theme="light"] .console-list strong {
  color: #111318;
}

[data-theme="light"] .plain-phone,
[data-theme="light"] .toast-phone {
  color: #111318;
}

[data-theme="light"] .floating-contact {
  color: #ffffff;
  background: #111318;
  border-color: rgba(15, 18, 24, 0.34);
}

[data-theme="light"] .contact-toast {
  border-color: rgba(15, 18, 24, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 245, 247, 0.92)),
    #ffffff;
  box-shadow: 0 24px 80px rgba(15, 18, 24, 0.16);
}

[data-theme="light"] .toast-close {
  color: #111318;
  background: rgba(15, 18, 24, 0.045);
  border-color: rgba(15, 18, 24, 0.12);
}

[data-theme="light"] .contact-toast p {
  color: #111318;
}

[data-theme="light"] .site-footer {
  color: #5c6672;
  background: #e6e8ec;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .intro-grid,
  .section-heading,
  .platform,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-meta {
    min-height: 74px;
  }

  .case-link {
    justify-self: flex-start;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .hero::before {
    background-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.99) 0%, rgba(5, 5, 5, 0.89) 62%, rgba(5, 5, 5, 0.64) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.9) 100%);
  }

  .kazakhstan-outline {
    right: -36vw;
    top: 38%;
    width: 118vw;
    max-height: 34svh;
    opacity: 0.38;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding: 66px 0 44px 20px;
  }

  h1 {
    font-size: 3.08rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  section,
  .platform {
    padding: 58px 20px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .steps article {
    min-height: auto;
  }

  .console {
    min-height: 390px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 20px;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .contact-toast {
    right: 16px;
    bottom: 86px;
    width: calc(100% - 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
