:root {
  --blue:      #2A7BF5;
  --blue-d:    #1a65db;
  --teal:      #18B4B0;
  --orange:    #F46B45;
  --orange-g:  linear-gradient(135deg, #f46b45 0%, #eea849 100%);
  --blue-g:    linear-gradient(90deg, #2FADE3 0%, #2A7BF5 100%);

  --bg:        #f5f8ff;
  --bg2:       #ffffff;
  --txt:       #1a2332;
  --txt2:      #5a6a80;
  --txt3:      #9aa5b4;
  --border:    #e8edf5;

  --shadow-sm: 0 2px 8px rgba(42,123,245,0.08);
  --shadow:    0 8px 32px rgba(42,123,245,0.12);
  --shadow-lg: 0 20px 60px rgba(42,123,245,0.15);

  --r:    12px;
  --r-sm: 8px;
  --r-lg: 20px;
  --r-xl: 28px;

  --t: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { overflow-x: clip; }
body {
  background: var(--bg2);
  color: var(--txt);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--txt);
  margin-bottom: 0.85rem;
}
.section-title--white { color: #fff; }
.section-sub { font-size: 1rem; color: var(--txt2); max-width: 500px; line-height: 1.7; }
.section-sub--white { color: rgba(255,255,255,0.8); }
.section-top { text-align: center; margin-bottom: 2.5rem; }
.section-top .section-sub { margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(42,123,245,0.08);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 1rem;
}
.eyebrow--white { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 1000px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--blue-g);
  color: #fff;
  padding: 13px 28px;
  box-shadow: 0 4px 20px rgba(42,123,245,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42,123,245,0.4);
}
.btn--outline {
  border-color: var(--blue);
  color: var(--blue);
  padding: 13px 28px;
  background: transparent;
}
.btn--outline:hover { background: rgba(42,123,245,0.06); }
.btn--ghost { color: rgba(255,255,255,0.7); padding: 13px 20px; }
.btn--ghost:hover { color: #fff; }
.header.scrolled .btn--ghost { color: var(--txt2); }
.header.scrolled .btn--ghost:hover { color: var(--txt); }
.btn--white {
  background: #fff;
  color: var(--blue);
  padding: 13px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 9px 20px; font-size: 0.875rem; }
.btn--block { width: 100%; justify-content: center; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--t);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon {
  width: 36px; height: 36px;
  background: var(--blue-g);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.logo__name {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  transition: color var(--t);
}
.header.scrolled .logo__name { color: var(--txt); }
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color var(--t);
}
.nav__link:hover { color: #fff; }
.header.scrolled .nav__link { color: var(--txt2); }
.header.scrolled .nav__link:hover { color: var(--blue); }
.header__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--txt2);
  border-radius: 2px;
  transition: var(--t);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: #0d1520;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  bottom: auto;
  height: 120%;
  top: -10%;
  z-index: 0;
  will-change: transform;
}
.hero__video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,18,35,0.88) 0%,
    rgba(10,18,35,0.75) 50%,
    rgba(10,18,35,0.4) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(24,180,176,0.2);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(24,180,176,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(24,180,176,0.1); }
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__cta .btn--outline {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.hero__cta .btn--outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 16px 0;
  backdrop-filter: blur(12px);
  width: fit-content;
}
.hero__trust-item {
  text-align: center;
  padding: 0 24px;
}
.hero__trust-item strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero__trust-item span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}
.hero__trust-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.12);
}

.hero__right {
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 60% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at 60% 50%, black 40%, transparent 100%);
}
.hero__mockup {
  position: relative;
  margin: 30px 70px 30px 70px;
}
.mockup__screen {
  background: rgba(8, 18, 38, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
}
.mockup__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup__url {
  margin-left: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 2px 12px;
}
.mockup__screen img {
  width: 100%;
  display: block;
  opacity: 0.92;
}
.mockup__screen img[src="assets/dashboard.webp"] { display: none; }
.mockup__screen img[src="assets/dashboard.webp"]:not([src="assets/dashboard.webp"]) + .mockup__placeholder { display: none; }

.mockup__placeholder {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(8,18,38,0.6);
}
.mockup__screen img + .mockup__placeholder { display: none; }

.mp__header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mp__title-row { display: flex; align-items: center; gap: 10px; }
.mp__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  flex-shrink: 0;
}
.mp__line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}
.mp__line--dark { background: rgba(255,255,255,0.18); }
.mp__chips { display: flex; gap: 6px; }
.mp__chip {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
.mp__chip--blue { background: rgba(42,123,245,0.3); color: #7eb3ff; }
.mp__stats { display: flex; gap: 8px; }
.mp__stat {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  text-align: center;
}
.mp__stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.mp__stat-num--green { color: #3dd9c0; }
.mp__stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.mp__chart { background: rgba(255,255,255,0.05); border-radius: var(--r-sm); padding: 14px; }
.mp__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 8px;
}
.mp__bar {
  flex: 1;
  background: rgba(42,123,245,0.2);
  border-radius: 4px 4px 0 0;
}
.mp__bar--active { background: var(--blue-g); }
.mp__chart-label { font-size: 0.68rem; color: rgba(255,255,255,0.35); font-weight: 600; }
.mp__list { display: flex; flex-direction: column; gap: 8px; }
.mp__list-item { display: flex; align-items: center; gap: 8px; }
.mp__list-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.mp__list-dot--green { background: #18b4a0; }
.mp__list-dot--blue { background: var(--blue); }
.mp__badge {
  margin-left: auto;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--txt2);
  flex-shrink: 0;
}
.mp__badge--green { background: rgba(24,180,160,0.15); color: #18b4a0; }
.mp__badge--blue { background: rgba(42,123,245,0.12); color: var(--blue); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 18, 40, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  font-size: 0.78rem;
  white-space: nowrap;
  z-index: 10;
}
.float-card--1 { bottom: 60px;  left: -60px;  animation: floatA 2.6s ease-in-out infinite; }
.float-card--2 { top:    40px;  right: -55px; animation: floatB 3s   ease-in-out infinite; }
.float-card--3 { bottom: -20px; right: -45px; animation: floatA 2.8s ease-in-out infinite 0.4s; }
.float-card--4 { top: -18px;   left: 20px;   animation: floatB 2.5s ease-in-out infinite 0.7s; }
.float-card--5 { bottom: -15px; left: 20px; animation: floatA 2.7s ease-in-out infinite 1s; }

@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-16px) rotate(1deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%      { transform: translateY(14px) rotate(-1deg); }
}

.float-card__icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card__icon--green  { background: rgba(24,180,160,0.12); color: #18b4a0; }
.float-card__icon--blue   { background: rgba(42,123,245,0.1);  color: var(--blue); }
.float-card__icon--orange { background: #fff3f0; color: var(--orange); }
.float-card__icon--teal   { background: rgba(24,180,176,0.1);  color: var(--teal); }

.float-card__title { font-weight: 700; color: #fff; font-size: 0.8rem; line-height: 1.2; }
.float-card__sub   { color: rgba(255,255,255,0.55); margin-top: 2px; font-size: 0.72rem; }
.float-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-left: 4px;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.float-card__dot--green { background: #18b4a0; }

.hero__wave {
  line-height: 0;
  margin-top: -1px;
}
.hero__wave svg { width: 100%; display: block; }

.problems { padding: 72px 0; background: var(--bg); }
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t);
}
.problem-card:hover {
  border-color: #ffc5b5;
  box-shadow: 0 8px 24px rgba(244,107,69,0.1);
  transform: translateY(-4px);
}
.problem-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: #fff3f0;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.problem-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.9rem; color: var(--txt2); line-height: 1.65; }
.problems__solution {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
}
.problems__solution svg { flex-shrink: 0; }

.features { padding: 72px 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t);
  position: relative;
}
.feat-card:hover {
  border-color: rgba(42,123,245,0.25);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feat-card--highlight {
  background: linear-gradient(135deg, #f0f6ff 0%, #f5f8ff 100%);
  border-color: rgba(42,123,245,0.2);
}
.feat-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feat-card__icon--blue { background: rgba(42,123,245,0.1); color: var(--blue); }
.feat-card__icon--teal { background: rgba(24,180,176,0.1); color: var(--teal); }
.feat-card__icon--orange { background: #fff3f0; color: var(--orange); }
.feat-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.6rem; }
.feat-card p { font-size: 0.9rem; color: var(--txt2); line-height: 1.65; }
.feat-card__tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(24,180,176,0.1);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
}

.rm-section {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  background: #0d1520;
}
.rm-section__bg {
  position: absolute;
  inset: 0;
}
.rm-section__bg img {
  position: absolute;
  left: 0; top: -10%;
  width: 100%; height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.rm-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,18,35,0.82);
}
.rm-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rm-section__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rm-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: all var(--t);
}
.rm-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateX(4px);
}
.rm-card__icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.rm-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; color: #fff; }
.rm-card p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

.analytics { padding: 72px 0; background: var(--bg); }
.analytics__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.alist { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.alist__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  transition: all var(--t);
}
.alist__item:hover {
  border-color: rgba(42,123,245,0.2);
  box-shadow: var(--shadow-sm);
}
.alist__icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(42,123,245,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.alist__item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.alist__item p { font-size: 0.83rem; color: var(--txt2); }
.analytics__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}
.analytics__img-wrap img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  background: var(--bg);
  min-height: 320px;
  object-fit: cover;
}
.analytics__img-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 16px;
  box-shadow: var(--shadow);
}
.analytics__img-badge--1 { top: -16px; right: -16px; }
.analytics__img-badge--2 { bottom: -16px; left: -16px; }
.analytics__img-badge-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal);
}
.analytics__img-badge-label { font-size: 0.72rem; color: var(--txt2); font-weight: 600; }

.advantages { padding: 72px 0; }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.adv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--t);
}
.adv-card:hover {
  border-color: rgba(42,123,245,0.2);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.adv-card--featured {
  background: linear-gradient(145deg, #f0f6ff, #f5f9ff);
  border-color: rgba(42,123,245,0.25);
}
.adv-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: #fff3f0;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 1.25rem;
}
.adv-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.adv-card__icon--blue { background: rgba(42,123,245,0.1); color: var(--blue); }
.adv-card__icon--teal { background: rgba(24,180,176,0.1); color: var(--teal); }
.adv-card__icon--orange { background: #fff3f0; color: var(--orange); }
.adv-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.65rem; }
.adv-card p { font-size: 0.9rem; color: var(--txt2); line-height: 1.7; margin-bottom: 1.25rem; }
.adv-card__link { font-size: 0.88rem; font-weight: 700; color: var(--blue); transition: var(--t); }
.adv-card__link:hover { color: var(--blue-d); }

.stats {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  background: #0d1520;
}
.stats__bg-img {
  position: absolute;
  inset: 0;
}
.stats__bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.stats__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,18,35,0.78);
}
.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: center;
  gap: 2rem;
}
.stats__item { text-align: center; }
.stats__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.stats__label { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.5; font-weight: 500; }

.pricing { padding: 72px 0; background: var(--bg); }

.pricing-single {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-single__features {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.psf {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.psf__icon {
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: rgba(42,123,245,0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.psf strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.psf p { font-size: 0.85rem; color: var(--txt2); line-height: 1.55; }

.pricing-single__cta {
  background: #0d1520;
  background-image: url('../assets/rm-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}
.pricing-single__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, 0.82);
}
.pricing-single__cta > * { position: relative; z-index: 1; }
.pricing-single__cta-top h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0.5rem 0 0.75rem;
}
.pricing-single__cta-top p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.pricing-single__cta .btn--primary {
  background: var(--blue-g);
  color: #fff;
  box-shadow: 0 4px 20px rgba(42,123,245,0.4);
}
.pricing-single__cta .btn--primary:hover { box-shadow: 0 8px 30px rgba(42,123,245,0.5); }
.pricing-single__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.pricing-single__note svg { color: rgba(255,255,255,0.9); flex-shrink: 0; }

@media (max-width: 768px) {
  .pricing-single { grid-template-columns: 1fr; }
}

.cta-section {
  padding: 72px 0;
  background: var(--bg);
}
.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.cta-section__text .eyebrow { margin-bottom: 1rem; }
.cta-section__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-section__text p { font-size: 1rem; color: var(--txt2); margin-bottom: 1.75rem; line-height: 1.7; }
.cta-section__list { display: flex; flex-direction: column; gap: 0.6rem; }
.cta-section__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--txt2);
}
.cta-section__list li svg { color: var(--teal); flex-shrink: 0; }
.cta-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta-form h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.form-group { display: flex; flex-direction: column; }
.form-input {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 13px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: var(--txt);
  outline: none;
  transition: border-color var(--t);
  width: 100%;
  appearance: none;
}
.form-input::placeholder { color: var(--txt3); }
.form-input:focus { border-color: var(--blue); background: #fff; }
.form-note { font-size: 0.75rem; color: var(--txt3); text-align: center; }

.footer {
  background: var(--txt);
  padding: 48px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .logo__name { color: #fff; }
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
}
.footer__socials { display: flex; gap: 0.6rem; }
.soc-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--t);
}
.soc-link:hover { background: rgba(255,255,255,0.15); color: #fff; }
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.85rem;
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 3px 0;
  transition: color var(--t);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.3); transition: color var(--t); }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .burger { display: none; }

  .header .burger span { background: rgba(255,255,255,0.9); }
  .header.scrolled .burger span { background: var(--txt); }
  .header.scrolled .nav__link { color: var(--txt2) !important; }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0; right: 0;
    background: transparent;
    backdrop-filter: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.5rem 1.25rem;
    gap: 0;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
    z-index: 10;
    display: none;
  }
  .nav.open {
    display: none;
  }
  .nav__link {
    font-size: 0.95rem !important;
    color: #fff !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    font-weight: 600;
  }
  .nav__link:last-child { border-bottom: none; }
  .header.scrolled .nav {
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .header.scrolled .nav__link {
    color: var(--txt2) !important;
    border-bottom: 1px solid var(--border);
  }
  .header__right .btn--ghost { display: none; }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__right { display: block; margin-top: 2rem; }
  .hero__left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__cta { justify-content: center; }
  .hero__trust { margin: 0 auto; width: 100%; }
  .hero__video-wrap video {
    object-position: 85% center;
  }
  .hero__video-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,18,35,0.75) 0%,
      rgba(10,18,35,0.55) 50%,
      rgba(10,18,35,0.72) 100%
    );
  }
  .hero__mockup { margin: 20px 50px; }
  .float-card--5 { display: none; }
  .analytics__inner { grid-template-columns: 1fr; gap: 3rem; }
  .rm-section__inner { grid-template-columns: 1fr; }
  .cta-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero__mockup { margin: 16px 44px; }
  .float-card--4, .float-card--5 { display: none; }
  .float-card--1 { left: -44px; bottom: 40px; }
  .float-card--2 { right: -44px; top: 30px; }
  .float-card--3 { right: -44px; bottom: -16px; }
}

@media (max-width: 768px) {
  .problems {
    overflow: hidden;
  }
  .problems__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1.25rem;
    padding-right: 1.5rem;
    margin-left: -1.5rem;
    padding-left: 1.5rem;
    width: calc(100% + 3rem);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .problems__grid::-webkit-scrollbar { display: none; }
  .problem-card {
    flex: 0 0 76vw;
    min-width: 76vw;
    scroll-snap-align: start;
  }
  .prob-scroll-dots { display: flex; }
  .features__grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .adv-card--featured { margin-top: 0; }
  .pricing__grid { grid-template-columns: 1fr; }
  .price-card--featured { margin-top: 0; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stats__num { font-size: clamp(1.3rem, 5vw, 2rem); }
  .stats__label { font-size: 0.7rem; }
  .stats__ring-wrap { width: 80px; height: 80px; }
  .stats__ring-wrap .stats__num { font-size: clamp(1rem, 4vw, 1.5rem); }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero__cta { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .hero__trust {
    width: 100%;
    padding: 10px 0;
    justify-content: space-evenly;
  }
  .hero__trust-item {
    flex: 1;
    padding: 0 8px;
  }
  .hero__trust-item strong { font-size: 1.05rem; }
  .hero__trust-item span   { font-size: 0.65rem; }
  .hero__trust-sep { width: 1px; height: 26px; }
}

#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  z-index: 10000;
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

.reveal-section .eyebrow {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.reveal-section .section-title {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s, opacity 0.4s ease 0.1s;
}
.reveal-section .section-sub {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease 0.22s, transform 0.55s ease 0.22s;
}
.reveal-section.in-view .eyebrow {
  opacity: 1;
  transform: translateX(0);
}
.reveal-section.in-view .section-title {
  opacity: 1;
  clip-path: inset(0 0 0% 0);
}
.reveal-section.in-view .section-sub {
  opacity: 1;
  transform: translateY(0);
}

.analytics__left {
  position: sticky;
  top: 110px;
  align-self: start;
}

.stats__ring-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
}
.stat-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}
.stat-ring__track {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 3;
}
.stat-ring__fill {
  fill: none;
  stroke: url(#ring-grad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 263.9;
  stroke-dashoffset: 263.9;
}
.stats__ring-wrap .stats__num {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

@media (max-width: 767px) {
  .features {
    overflow: hidden;
  }
  .features .container {
    overflow: visible;
  }
  .features__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1.25rem;
    padding-right: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -1.5rem;
    padding-left: 1.5rem;
    width: calc(100% + 3rem);
  }
  .features__grid::-webkit-scrollbar { display: none; }
  .feat-card {
    flex: 0 0 76vw;
    min-width: 76vw;
    scroll-snap-align: start;
  }
}

.feat-scroll-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}
.feat-scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
}
.feat-scroll-dot.active {
  background: var(--blue);
  width: 20px;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .feat-scroll-dots { display: flex; }
}

.prob-scroll-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin: 1rem 0 1.5rem;
}
.prob-scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
}
.prob-scroll-dot.active {
  background: var(--orange);
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .problems, .features, .rm-section, .analytics,
  .advantages, .stats, .pricing, .cta-section {
    padding: 52px 0;
  }
  .section-top { margin-bottom: 2rem; }
  .hero { padding: 100px 0 56px; }
  .footer { padding: 40px 0 24px; }
}

@media (max-width: 767px) {
  .problems__grid .problem-card,
  .features__grid .feat-card {
    opacity: 1 !important;
    transform: none !important;
    transition: border-color var(--t), box-shadow var(--t) !important;
  }
}

.logo__img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo__img--footer {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
@media (max-width: 900px) {
    .logo__img { height: 26px; }
}

.nav__cta { display: none; }
@media (max-width: 900px) {
  .nav__cta {
    display: inline-flex;
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .header__inner {
    justify-content: space-between;
  }
}

.cta-contacts {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.cta-contacts h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.cta-contacts__name {
  font-size: 1rem;
  color: var(--txt2);
  margin-bottom: 1.75rem;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 0.75rem;
  transition: all var(--t);
  color: var(--txt);
}
.cta-contact-item:hover {
  border-color: rgba(42,123,245,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.cta-contact-item__icon {
  width: 44px; height: 44px;
  background: rgba(42,123,245,0.08);
  color: var(--blue);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-contact-item__label {
  display: block;
  font-size: 0.72rem;
  color: var(--txt3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.cta-contact-item__val {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
}

@media (max-width: 767px) {
  .cta-contacts {
    padding: 1.75rem 1.25rem;
  }
  .cta-contact-item {
    padding: 0.85rem 1rem;
  }
  .cta-contact-item__val {
    font-size: 0.9rem;
  }
}

.gallery {
  padding: 80px 0 0;
}

.gallery__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.gallery__tab {
  padding: 13px 28px;
  border: 2px solid var(--border);
  border-radius: 1000px;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--txt2);
  transition: all var(--t);
  white-space: nowrap;
}

.gallery__tab--active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue-g);
  box-shadow: 0 4px 20px rgba(42,123,245,0.3);
}

.gallery__tab:not(.gallery__tab--active):hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(42,123,245,0.06);
}

.gallery__track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.gallery__track-wrap:active {
  cursor: grabbing;
}

.gallery__track {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 400px;
  will-change: transform;
  padding-bottom: 24px;
}

.gallery__track img {
  height: 100%;
  width: auto;
  flex-shrink: 0;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
  cursor: zoom-in;
  object-fit: cover;
}

.gallery__track img:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow-lg);
}

.gallery__lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery__lightbox--open {
  opacity: 1;
  pointer-events: all;
}

.gallery__lb-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--r);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  object-fit: contain;
}

.gallery__lightbox--open .gallery__lb-img {
  transform: scale(1);
}

.gallery__lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}

.gallery__lb-close:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 767px) {
  .gallery__track { height: 280px; gap: 10px; }
  .gallery { padding: 60px 0 0; }
}

.aslider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-xl);
  perspective: 1000px;
  box-shadow:
    0 2px 0 2px rgba(42,123,245,0.12),
    0 6px 0 4px rgba(42,123,245,0.07),
    0 24px 60px rgba(42,123,245,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.6);
  outline: 3px solid rgba(42,123,245,0.1);
  outline-offset: 6px;
}

.aslider__item {
  position: absolute;
  inset: 0;
  transform: translateY(105%) translateZ(-180px) rotateX(14deg);
  opacity: 0;
  pointer-events: none;
}

.aslider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
}

.aslider__item--active {
  transform: translateY(0) translateZ(0) rotateX(0deg);
  opacity: 1;
  pointer-events: auto;
}

.aslider__item--leaving {
  transform: translateY(-105%) translateZ(-180px) rotateX(-14deg);
  opacity: 0;
}

.aslider.ready .aslider__item {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease;
}

@media (max-width: 767px) {
  .aslider { border-radius: var(--r-lg); }
}
