:root {
  --bg: #070b14;
  --bg-2: #0b1020;
  --panel: rgba(18, 24, 39, 0.86);
  --panel-2: rgba(28, 36, 58, 0.74);
  --text: #f4f7fb;
  --text-2: #aab6c8;
  --text-3: #65758d;
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(191, 219, 254, 0.3);
  --accent: #7c8cff;
  --accent-h: #a58bff;
  --accent-2: #00d4ff;
  --accent-soft: rgba(124, 140, 255, 0.18);
  --green: #3ddc97;
  --green-soft: rgba(61, 220, 151, 0.16);
  --amber: #ffd166;
  --radius: 14px;
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 34px rgba(0, 0, 0, 0.26);
  --shadow-lg: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 24px 70px rgba(0, 0, 0, 0.42);
  --container: 1180px;
  font-size: 15px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100vh;
  font: 15px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 18% -10%, rgba(124, 140, 255, 0.2), transparent 62%),
    radial-gradient(760px 460px at 82% 8%, rgba(0, 212, 255, 0.13), transparent 58%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  font-weight: 650;
  letter-spacing: -0.01em;
}

.nowrap {
  white-space: nowrap;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  background: var(--panel);
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: all 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-h));
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(124, 140, 255, 0.28);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-h), var(--accent-2));
  border-color: transparent;
}
.btn--ghost {
  background: transparent;
  color: var(--text-2);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: none;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 2px solid var(--border);
  background: rgba(10, 15, 28, 0.82);
  color: var(--text);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.store-badge:hover {
  transform: translateY(-2px);
}
.store-badge--apple {
  border-color: rgba(124, 140, 255, 0.8);
  box-shadow:
    0 0 0 1px rgba(124, 140, 255, 0.25),
    0 0 18px rgba(124, 140, 255, 0.35),
    0 0 36px rgba(0, 212, 255, 0.15),
    inset 0 0 18px rgba(124, 140, 255, 0.08);
}
.store-badge--apple:hover {
  border-color: rgba(165, 139, 255, 1);
  background: rgba(18, 24, 48, 0.95);
  box-shadow:
    0 0 0 1px rgba(165, 139, 255, 0.45),
    0 0 24px rgba(124, 140, 255, 0.55),
    0 0 48px rgba(0, 212, 255, 0.25),
    inset 0 0 22px rgba(124, 140, 255, 0.12);
}
.store-badge--google {
  border-color: rgba(61, 220, 151, 0.8);
  box-shadow:
    0 0 0 1px rgba(61, 220, 151, 0.25),
    0 0 18px rgba(61, 220, 151, 0.35),
    0 0 32px rgba(251, 188, 4, 0.18),
    inset 0 0 18px rgba(61, 220, 151, 0.08);
}
.store-badge--google:hover {
  border-color: rgba(61, 220, 151, 1);
  background: rgba(12, 28, 24, 0.95);
  box-shadow:
    0 0 0 1px rgba(61, 220, 151, 0.45),
    0 0 24px rgba(61, 220, 151, 0.55),
    0 0 44px rgba(251, 188, 4, 0.28),
    inset 0 0 22px rgba(61, 220, 151, 0.12);
}
.store-badge--telegram {
  border-color: rgba(44, 165, 224, 0.45);
}
.store-badge--telegram:hover {
  border-color: rgba(44, 165, 224, 0.72);
  background: rgba(10, 25, 42, 0.9);
}
.store-badge__text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  line-height: 1.1;
  font-size: 0.95rem;
}
.store-badge__text small {
  font-weight: 400;
  font-size: 0.68rem;
  color: var(--text-3);
}
.store-badge__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  padding: 6px;
  box-sizing: content-box;
  background-color: rgba(255, 255, 255, 0.08);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'><path fill='%23ffffff' d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}
.store-badge--apple .store-badge__icon {
  border-color: rgba(124, 140, 255, 0.55);
  box-shadow: 0 0 16px rgba(124, 140, 255, 0.45);
}
.store-badge--google .store-badge__icon {
  border-color: rgba(61, 220, 151, 0.5);
  box-shadow: 0 0 16px rgba(61, 220, 151, 0.4);
}
.store-badge__icon--android {
  background-image: url("../assets/icons/google-play.svg");
}
.store-badge__icon--telegram {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path fill='%23f4f7fb' d='M446.7 67.3L380.8 425c-5 25.8-18 32.2-36.5 20.1L228 358.3l-56.1 54c-6.2 6.2-11.4 11.4-23.4 11.4l8.4-119.2L373.9 108c9.4-8.4-2-13.1-14.6-4.7L92.1 271.1 13.6 246.5C-11.2 238.7-11.7 221.6 18.8 210L421.6 54.8c18.7-6.8 35 4.5 25.1 12.5z'/></svg>");
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 8, 20, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  height: 30px;
  width: auto;
}
.nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
}
.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.flex_download {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header__cta { margin-left: 8px; }
.download-dropdown {
  position: relative;
}
.download-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(5, 8, 20, 0.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  z-index: 120;
}
.download-dropdown--center .download-dropdown__menu {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.download-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.download-dropdown__item--apple {
  border-color: rgba(124, 140, 255, 0.35);
  box-shadow: 0 0 14px rgba(124, 140, 255, 0.18);
}
.download-dropdown__item--apple:hover {
  background: rgba(124, 140, 255, 0.12);
  border-color: rgba(124, 140, 255, 0.65);
  box-shadow: 0 0 18px rgba(124, 140, 255, 0.35);
  color: #fff;
}
.download-dropdown__item--google {
  border-color: rgba(61, 220, 151, 0.35);
  box-shadow: 0 0 14px rgba(61, 220, 151, 0.18);
}
.download-dropdown__item--google:hover {
  background: rgba(61, 220, 151, 0.12);
  border-color: rgba(61, 220, 151, 0.65);
  box-shadow: 0 0 18px rgba(61, 220, 151, 0.35);
  color: #fff;
}
.download-dropdown__menu .store-badge__icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  background-size: 20px 20px;
}
.flex_download .btn {
  padding: 12px 24px;
}
.download-dropdown.is-open .download-dropdown__menu {
  display: flex;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  margin-left: 4px;
  padding: 0 8px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 420px at 72% -12%, rgba(124, 140, 255, 0.28), transparent 64%),
    radial-gradient(620px 420px at 22% 40%, rgba(0, 212, 255, 0.1), transparent 62%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(124, 140, 255, 0.28);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 650;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 .brand-name {
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__media {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero__media::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 55%;
  top: 20%;
  left: 15%;
  background: radial-gradient(circle, rgba(124, 140, 255, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hero__media img {
  position: relative;
  z-index: 1;
  max-height: 620px;
  width: auto;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

/* Sections */
.section { padding: 88px 0; position: relative; }
.section__eyebrow {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-bottom: 16px;
  color: #fff;
}
.section__subtitle {
  color: var(--text-2);
  max-width: 700px;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Structure */
.structure__title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.structure__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.structure__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.structure__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.structure__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(124, 140, 255, 0.18) inset;
}
.structure__card h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
  color: #fff;
}
.structure__card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* Screens */
.screens__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.screens__text p {
  color: var(--text-2);
  line-height: 1.65;
  font-size: 1rem;
}
.screens__media {
  max-width: 280px;
  margin: 0 auto;
}
.screens__media img {
  max-width: 280px;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
  background: #050814;
}

/* Help */
.help__title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.help__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.help__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.15s, border-color 0.15s;
}
.help__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.help__card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.help__card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #fff;
}
.help__card p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Extra services */
.extra-services .section__title,
.extra-services .section__subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.extra-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.extra-services__cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--panel);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  font-weight: 650;
  color: var(--text);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.service-tile__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(124, 140, 255, 0.25));
}
.service-tile:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Parts */
.parts {
  position: relative;
}
.parts::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background: radial-gradient(600px 280px at 80% 50%, rgba(0, 212, 255, 0.12), transparent 70%);
  pointer-events: none;
}
.parts__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}
.parts__text { max-width: 640px; }
.parts p {
  color: var(--text-2);
  line-height: 1.6;
}
.parts__globe {
  display: flex;
  justify-content: center;
}
.parts__globe img {
  max-width: 260px;
  width: 100%;
}
.parts__steps {
  margin: 22px 0;
  counter-reset: step;
}
.parts__steps li {
  counter-increment: step;
  padding: 12px 0 12px 44px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
  color: var(--text);
}
.parts__steps li:last-child { border-bottom: none; }
.parts__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-h));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.parts__note {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-top: 16px;
}
.parts__cta {
  margin-top: 28px;
  display: flex;
}

/* Catalogs */
.catalogs .section__title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.catalogs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.catalogs__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  font-weight: 650;
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.15s, border-color 0.15s;
}
.catalogs__card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.catalogs__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.catalogs__points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.catalogs__points p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.92rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  line-height: 1.45;
}
.catalogs__points p::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
  flex-shrink: 0;
}

/* Auto Blog */
.blog__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.blog__text { max-width: 640px; }
.blog__text p {
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 4px;
}
.blog__media {
  display: flex;
  justify-content: center;
}
.blog__media img {
  max-width: 260px;
  width: 100%;
}

/* Phone mockups */
.phone-shot img {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  background: #050814;
}

/* Selling flow */
.flow__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.flow__text {
   text-align: left;
   min-height: 500px;
}
.flow__text .section__title,
.flow__text .section__subtitle,
.flow__text .flow__note {
  max-width: 520px;
}
.flow__note {
  margin-top: 22px;
  background: var(--accent-soft);
  border: 1px solid rgba(124, 140, 255, 0.22);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 550;
  max-width: 520px;
}

/* Flow slider */
.flow__slider {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}
.flow__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 20px;
  scrollbar-width: none;
}
.flow__track::-webkit-scrollbar { display: none; }
.flow__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  text-align: center;
}
.flow__slide img {
  max-width: 280px;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  margin: 0 auto 16px;
  display: block;
  background: #050814;
}
.flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-h));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.flow__slide h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
  color: #fff;
}
.flow__slide p {
  font-size: 0.85rem;
  color: var(--text-2);
}
.flow__arrow {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  backdrop-filter: blur(12px);
}
.flow__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.flow__arrow--prev { left: -18px; }
.flow__arrow--next { right: -18px; }
.flow__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.flow__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(148, 163, 184, 0.35);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.flow__dots button.is-active {
  background: var(--accent);
  transform: scale(1.25);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Partners CTA */
.partners {
  text-align: center;
}
.partners__inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: visible;
}
.partners__inner::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 50%;
  width: min(520px, 100%);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 140, 255, 0.28), transparent 70%);
  pointer-events: none;
}
.partners h2 {
  position: relative;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #fff;
}
.partners p {
  position: relative;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 10px;
}
.partners__punch {
  position: relative;
  font-weight: 650;
  color: var(--text);
  font-size: 1.08rem;
  margin: 18px 0 24px;
}
.partners .btn { position: relative; }
.partners-dropdown {
  position: relative;
  display: inline-flex;
  justify-content: center;
}
.partners-dropdown__menu {
  min-width: 340px;
  margin-top: 4px;
  z-index: 140;
}
.partners-dropdown__item {
  font-weight: 600;
  justify-content: center;
  text-align: center;
}
.partners-dropdown__item--parts {
  border-color: rgba(124, 140, 255, 0.45);
  box-shadow: 0 0 16px rgba(124, 140, 255, 0.22);
}
.partners-dropdown__item--parts:hover {
  background: rgba(124, 140, 255, 0.12);
  border-color: rgba(124, 140, 255, 0.72);
  box-shadow: 0 0 22px rgba(124, 140, 255, 0.42);
}
.partners-dropdown__item--services {
  border-color: rgba(44, 165, 224, 0.45);
  box-shadow: 0 0 16px rgba(44, 165, 224, 0.22);
}
.partners-dropdown__item--services:hover {
  background: rgba(44, 165, 224, 0.12);
  border-color: rgba(44, 165, 224, 0.72);
  box-shadow: 0 0 22px rgba(44, 165, 224, 0.42);
}
.partners-dropdown__item--offline {
  border-color: rgba(61, 220, 151, 0.45);
  box-shadow: 0 0 16px rgba(61, 220, 151, 0.22);
}
.partners-dropdown__item--offline:hover {
  background: rgba(61, 220, 151, 0.12);
  border-color: rgba(61, 220, 151, 0.72);
  box-shadow: 0 0 22px rgba(61, 220, 151, 0.42);
}

/* Contacts */
.contacts {
  padding-top: 24px;
}
.contacts__inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.contacts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 20px;
  text-align: center;
  transition: background 0.15s;
  position: relative;
}
.contacts__item + .contacts__item {
  border-left: 1px solid var(--border);
}
.contacts__item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.contacts__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  background-color: var(--accent-soft);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
.contacts__icon--mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c8cff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}
.contacts__icon--wa {
  background-color: rgba(37, 211, 102, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
}
.contacts__label {
  font-weight: 650;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.35;
}
.contacts__value {
  color: var(--text-2);
  font-size: 0.9rem;
  word-break: break-word;
}
.contacts__item:hover .contacts__value {
  color: var(--accent-2);
}

/* FAQ */
.faq {
  padding-top: 0;
  /* Место снизу, чтобы заголовок FAQ мог встать под fixed-header */
  padding-bottom: 50vh;
}
.faq__title {
  scroll-margin-top: 88px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.faq__list {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq__item.is-open {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { content: ""; }
.faq__question::after {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c8cff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    center / 14px no-repeat,
    var(--accent-soft);
  transition: background-color 0.15s, transform 0.3s ease;
}
.faq__item.is-open .faq__question::after {
  transform: rotate(180deg);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    center / 14px no-repeat,
    rgba(0, 212, 255, 0.14);
}
.faq__question:hover { color: #fff; }
.faq__question:hover::after {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    center / 14px no-repeat,
    rgba(124, 140, 255, 0.28);
}
.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq__item.is-open .faq__answer-wrap {
  grid-template-rows: 1fr;
}
.faq__item.is-open .faq__answer {
  padding-bottom: 18px;
  opacity: 1;
}
.faq__answer {
  overflow: hidden;
  min-height: 0;
  padding: 0 20px;
  color: var(--text-2);
  line-height: 1.65;
  font-size: 0.96rem;
  opacity: 0.72;
  transition: opacity 0.25s ease, padding 0.3s ease;
}
.faq__answer p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .faq__answer-wrap,
  .faq__answer,
  .faq__question::after {
    transition: none;
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 8, 20, 0.9);
  color: var(--text-3);
  padding: 36px 0 48px;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__logo {
  height: 24px;
  width: auto;
}
.footer__nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.footer__nav a {
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--text-2);
  transition: color 0.15s, background 0.15s;
}
.footer__nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.footer__copy {
  font-size: 0.82rem;
  width: 100%;
  text-align: center;
  margin-top: 8px;
  color: var(--text-3);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 300px; margin: 0 auto; }
  .screens__inner { grid-template-columns: 1fr; }
  .structure__grid { grid-template-columns: repeat(2, 1fr); }
  .help__grid { grid-template-columns: repeat(2, 1fr); }
  .catalogs__grid { grid-template-columns: repeat(2, 1fr); }
  .extra-services__grid { grid-template-columns: repeat(2, 1fr); }
  .catalogs__points { grid-template-columns: 1fr; }
  .parts__inner { grid-template-columns: 1fr; padding: 28px 22px; }
  .parts__globe img { max-width: 220px; }
  .blog__inner { grid-template-columns: 1fr; padding: 28px 22px; }
  .blog__media { order: -1; }
  .blog__media img { max-width: 220px; }
  .flow__inner { grid-template-columns: 1fr; }
  .flow__slider { max-width: 240px; }
  .screens__media { max-width: 240px; }
  .partners__inner { padding: 36px 24px; }
  .contacts__inner {
    grid-template-columns: 1fr;
  }
  .contacts__item + .contacts__item {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .flow__text {
    min-height: fit-content;
  }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .flex_download { margin-left: auto; }
  .flex_download .btn { height: 36px; }
  .burger { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 8, 20, 0.96);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 20px;
    gap: 4px;
    backdrop-filter: blur(18px);
  }
  .nav.is-open a {
    padding: 12px 14px;
  }
  .section { padding: 64px 0; }
  .hero { padding: 112px 0 56px; }
  .structure__grid,
  .help__grid,
  .catalogs__grid,
  .extra-services__grid {
    grid-template-columns: 1fr;
  }
  .flow__arrow--prev { left: -8px; }
  .flow__arrow--next { right: -8px; }
  .parts, .blog { margin: 0 8px; }
  .partners-dropdown__menu {
    min-width: min(92vw, 340px);
  }
}

@media (max-width: 460px) {
  .hero__actions { justify-content: space-evenly; }
}
