/* =================================================================
   ТОЧКА ВЫГОДЫ — Design System & Styles
   Палитра: #FF6A00 (primary) · #FF8F1F (accent) · #111111 (ink)
            #F7F8FA (paper) · #FFFFFF
   Шрифты: Manrope (display) · Inter (body)
================================================================= */

:root{
  /* --- palette --- */
  --c-primary: #FF6A00;
  --c-primary-2: #FF8F1F;
  --c-ink: #111111;
  --c-ink-2: #1A1A1E;
  --c-ink-3: #232327;
  --c-paper: #F7F8FA;
  --c-white: #FFFFFF;
  --c-muted: #62626B;
  --c-muted-dark: #A7A7B0;
  --c-line: rgba(17,17,17,0.09);
  --c-line-dark: rgba(255,255,255,0.10);
  --c-glass: rgba(255,255,255,0.66);

  /* --- gradients --- */
  --grad-primary: linear-gradient(135deg, var(--c-primary-2), var(--c-primary) 70%);
  --grad-dark: linear-gradient(180deg, #111113 0%, #0A0A0C 100%);

  /* --- type --- */
  --f-display: 'Manrope', 'SF Pro Display', -apple-system, sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- radii --- */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* --- shadows --- */
  --sh-sm: 0 2px 10px rgba(17,17,17,0.06);
  --sh-md: 0 12px 32px rgba(17,17,17,0.09);
  --sh-lg: 0 24px 60px rgba(17,17,17,0.12);
  --sh-glow: 0 12px 40px rgba(255,106,0,0.30);

  /* --- easing --- */
  --ease: cubic-bezier(.16,.84,.32,1);

  --header-h: 84px;
}

/* =================================================================
   RESET
================================================================= */
*, *::before, *::after{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body{
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea{ font: inherit; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible{ outline: 2.5px solid var(--c-primary); outline-offset: 3px; border-radius: 4px; }

.sprite-sheet{ position: absolute; width: 0; height: 0; overflow: hidden; }

.icon{ width: 20px; height: 20px; flex-shrink: 0; }
.icon--sm{ width: 16px; height: 16px; }
.icon--xs{ width: 13px; height: 13px; }

.container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =================================================================
   TYPOGRAPHY
================================================================= */
h1, h2, h3, h4{ font-family: var(--f-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.06; }

.h2{
  font-size: clamp(30px, 3.6vw, 46px);
  color: var(--c-ink);
}
.h2--light{ color: var(--c-white); }

.text-accent{
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead{
  font-size: 17px;
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.6;
}
.section-lead--dark{ color: var(--c-muted-dark); }

.section-head{ margin-bottom: 56px; max-width: 680px; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--c-primary);
  background: #FFF1E6;
  padding: 9px 16px 9px 13px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.eyebrow--light{ background: #FFF1E6; }
.eyebrow--dark{
  background: rgba(255,106,0,0.14);
  color: var(--c-primary-2);
}

/* =================================================================
   BUTTONS
================================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--lg{ padding: 18px 32px; font-size: 16px; }
.btn--sm{ padding: 10px 18px; font-size: 13.5px; }
.btn--block{ width: 100%; }

.btn--primary{
  background: var(--grad-primary);
  color: var(--c-white);
  box-shadow: 0 10px 26px rgba(255,106,0,0.28);
}
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(255,106,0,0.40);
}
.btn--primary:active{ transform: translateY(0); }

.btn--outline{
  background: transparent;
  color: var(--c-ink);
  border-color: rgba(17,17,17,0.16);
}
.btn--outline:hover{ border-color: var(--c-ink); transform: translateY(-2px); }

.btn--ghost{
  background: rgba(17,17,17,0.05);
  color: var(--c-ink);
}
.btn--ghost:hover{ background: rgba(17,17,17,0.09); }

.btn--white{
  background: var(--c-white);
  color: var(--c-primary);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}
.btn--white:hover{ transform: translateY(-2px); box-shadow: 0 20px 44px rgba(0,0,0,0.24); }

.btn--text{
  background: none;
  color: var(--c-ink);
  font-weight: 600;
  padding: 15px 6px;
  gap: 6px;
}
.btn--text:hover{ color: var(--c-primary); gap: 10px; }
.btn--text .icon{ transition: transform .3s var(--ease); }

/* =================================================================
   HEADER
================================================================= */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled{
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 rgba(17,17,17,0.06), 0 12px 30px rgba(17,17,17,0.05);
  border-bottom-color: rgba(17,17,17,0.05);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo{ display: flex; align-items: center; gap: 10px; }
.logo__mark{ display: flex; }
.logo__text{
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14.5px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.logo__text--light{ color: var(--c-white); }

.nav{ display: flex; align-items: center; gap: 34px; }
.nav__link{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink);
  position: relative;
  padding: 6px 0;
}
.nav__link::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--grad-primary);
  transition: width .3s var(--ease);
  border-radius: 2px;
}
.nav__link:hover::after{ width: 100%; }

.header__actions{ display: flex; align-items: center; gap: 12px; }

.locale-chip{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: var(--r-pill);
  background: rgba(17,17,17,0.05);
  color: var(--c-ink);
}
.locale-chip:hover{ background: rgba(17,17,17,0.09); }

.burger{
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-pill);
}
.burger:hover{ background: rgba(17,17,17,0.06); }

.mobile-nav{
  /* The blurred fixed header becomes a containing block for fixed children in
     Chromium/WebKit. Keep the drawer anchored to the header, but give it an
     explicit viewport height so it cannot collapse to the 72px header. */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  background: var(--c-white);
  z-index: 300;
  padding: 24px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.mobile-nav.is-open{ transform: translateX(0); }
.mobile-nav__head{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line);
}
.mobile-nav__link{
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  padding: 14px 4px;
  border-bottom: 1px solid var(--c-line);
}
.mobile-nav .btn{ margin-top: 24px; }

/* =================================================================
   HERO
================================================================= */
.hero{
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 0;
  overflow: hidden;
  background: var(--c-white);
}
.hero__bg{ position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid{
  position: absolute; inset: -10% -5%;
  background-image:
    radial-gradient(circle, rgba(17,17,17,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 40%, transparent 85%);
}
.glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.glow--a{
  width: 620px; height: 620px;
  top: -220px; right: -160px;
  background: radial-gradient(circle, rgba(255,143,31,0.55), transparent 70%);
}
.glow--b{
  width: 460px; height: 460px;
  bottom: -180px; left: -140px;
  background: radial-gradient(circle, rgba(255,106,0,0.28), transparent 70%);
}

.hero__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}

.hero__title{
  font-size: clamp(42px, 5.6vw, 72px);
  color: var(--c-ink);
  margin-bottom: 22px;
}
.hero__subtitle{
  font-size: 18px;
  color: var(--c-muted);
  max-width: 470px;
  margin-bottom: 34px;
  line-height: 1.6;
}
.hero__actions{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero__stats{ display: flex; gap: 40px; flex-wrap: wrap; }
.stat{ display: flex; flex-direction: column; }
.stat__num{
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stat__label{ font-size: 13px; color: var(--c-muted); max-width: 120px; }

/* --- hero visual: phone + floating cards --- */
.hero__visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}
.hero__scene{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform .5s var(--ease);
}

.phone{
  position: relative;
  width: 300px;
  height: 610px;
  background: linear-gradient(160deg, #1c1c1f, #0c0c0d);
  border-radius: 52px;
  padding: 14px;
  box-shadow:
    0 40px 90px rgba(17,17,17,0.30),
    0 0 0 2px rgba(255,255,255,0.06) inset,
    0 0 60px rgba(255,106,0,0.14);
  animation: phoneFloat 7s ease-in-out infinite;
  z-index: 2;
}
.phone--sm{ width: 210px; height: 430px; border-radius: 38px; padding: 10px; }

@keyframes phoneFloat{
  0%, 100%{ transform: translateY(0) rotate(-1.2deg); }
  50%{ transform: translateY(-16px) rotate(0.6deg); }
}

.phone__notch{
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #0c0c0d;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}
.phone__notch--pill{ width: 70px; height: 18px; border-radius: 12px; top: 16px; }

.phone__screen{
  position: relative;
  width: 100%; height: 100%;
  background: var(--c-paper);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone--sm .phone__screen{ border-radius: 30px; }
.phone__screen--alt{ background: #EFEFF2; }

.app-topbar{
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 20px 12px;
}
.app-topbar__title{ display: block; font-family: var(--f-display); font-weight: 800; font-size: 16px; }
.app-topbar__sub{ display: block; font-size: 11.5px; color: var(--c-muted); margin-top: 1px; }
.app-topbar__bell{
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-white);
  border-radius: var(--r-pill);
  color: var(--c-ink);
  box-shadow: var(--sh-sm);
}

.app-tabs{ display: flex; gap: 8px; padding: 0 20px 14px; }
.app-tab{
  font-size: 11.5px; font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: var(--c-white);
  color: var(--c-muted);
}
.app-tab--active{ background: var(--c-ink); color: var(--c-white); }

.app-map{
  position: relative;
  flex: 1;
  background: #EFEDE8;
  overflow: hidden;
}
.app-map--sm{ min-height: 260px; }
.app-map__streets{ position: absolute; inset: 0; width: 100%; height: 100%; }

.user-dot{
  position: absolute;
  top: 52%; left: 46%;
  width: 14px; height: 14px;
  background: #2E7CF6;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 4;
}
.radar-ring{
  position: absolute;
  top: 52%; left: 46%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(46,124,246,0.35);
  transform: translate(-50%,-50%);
  animation: radarPulse 2.6s ease-out infinite;
}
.radar-ring--2{ animation-delay: 1.3s; }
@keyframes radarPulse{
  0%{ width: 14px; height: 14px; opacity: 0.55; }
  100%{ width: 160px; height: 160px; opacity: 0; }
}

.map-pin{
  position: absolute;
  width: 34px; height: 34px;
  border-radius: 50% 50% 50% 4px;
  background: var(--pc, var(--c-primary));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(45deg);
  box-shadow: 0 6px 14px rgba(17,17,17,0.25);
  animation: pinDrop .6s var(--ease) backwards;
}
.map-pin .icon{ transform: rotate(-45deg); }
.map-pin--1{ top: 22%; left: 28%; animation-delay: .1s; }
.map-pin--2{ top: 40%; left: 65%; animation-delay: .25s; }
.map-pin--3{ top: 66%; left: 30%; animation-delay: .4s; }
.map-pin--4{ top: 28%; left: 74%; animation-delay: .55s; }
.map-pin--5{ top: 74%; left: 66%; animation-delay: .7s; }
@keyframes pinDrop{
  from{ opacity: 0; transform: translateY(-18px) rotate(45deg); }
  to{ opacity: 1; transform: translateY(0) rotate(45deg); }
}

.float-card{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  padding: 11px 16px 11px 11px;
  box-shadow: 0 18px 40px rgba(17,17,17,0.14);
  z-index: 3;
  animation: cardFloat 6s ease-in-out infinite;
}
.float-card__icon{
  width: 40px; height: 40px;
  border-radius: 13px;
  background: var(--fc, #FFE7D6);
  color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card__body{ display: flex; flex-direction: column; gap: 2px; }
.float-card__body strong{ font-size: 13.5px; font-weight: 700; white-space: nowrap; }
.float-card__meta{ font-size: 12px; color: var(--c-muted); }
.price-off{ color: var(--c-primary); font-weight: 700; }

.float-card--1{ top: 6%; left: -9%; animation-delay: 0s; }
.float-card--2{ top: 26%; right: -13%; animation-delay: 1.4s; }
.float-card--3{ bottom: 24%; left: -13%; animation-delay: 2.6s; }
.float-card--4{ bottom: 3%; right: -8%; animation-delay: 3.8s; }
@keyframes cardFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

/* marquee strip */
.marquee{
  position: relative;
  border-top: 1px solid var(--c-line);
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee__track{
  display: flex;
  gap: 14px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: rgba(17,17,17,0.32);
  letter-spacing: 0.01em;
}
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* =================================================================
   SECTIONS — общие
================================================================= */
.section{ padding: 118px 0; position: relative; }
.section--muted{ background: var(--c-paper); }
.section--dark{ background: var(--c-ink); position: relative; overflow: hidden; }

/* =================================================================
   HOW IT WORKS
================================================================= */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.step-line{
  position: absolute;
  top: 78px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(17,17,17,0.16) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step{
  position: relative;
  z-index: 1;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 30px 26px 34px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.step:hover{ transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.step__num{
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--c-primary);
  background: #FFF1E6;
  display: inline-flex;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.step__art{ width: 86px; height: 86px; margin-bottom: 10px; }
.step__svg{ width: 100%; height: 100%; }
.step__title{ font-size: 19px; margin-bottom: 8px; }
.step__text{ font-size: 14.5px; color: var(--c-muted); line-height: 1.55; }

/* =================================================================
   CATEGORIES
================================================================= */
.cat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-tile{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.cat-tile:hover{
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: rgba(255,106,0,0.25);
}
.cat-tile__icon{
  width: 50px; height: 50px;
  border-radius: 15px;
  background: #FFF1E6;
  color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.cat-tile:hover .cat-tile__icon{
  background: var(--grad-primary);
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}
.cat-tile--all{
  background: var(--c-ink);
  color: var(--c-white);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cat-tile--all:hover{ background: #000; border-color: transparent; }

/* =================================================================
   ДЛЯ БИЗНЕСА
================================================================= */
.biz{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.biz__list{ display: flex; flex-direction: column; gap: 15px; margin: 30px 0 36px; }
.biz__list li{
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; color: var(--c-ink);
  font-weight: 500;
}
.li-check{
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #FFF1E6;
  color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.dash{
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  padding: 30px;
  box-shadow: var(--sh-lg);
}
.dash__head{ display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.dash__label{ font-size: 13px; color: var(--c-muted); font-weight: 600; }
.dash__figure{
  font-family: var(--f-display); font-weight: 800; font-size: 26px;
  display: flex; align-items: center; gap: 10px; margin-top: 4px;
}
.dash__delta{
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--f-body); font-size: 12.5px; font-weight: 700;
  color: #15A05C; background: #E4F8ED;
  padding: 4px 9px; border-radius: var(--r-pill);
}
.dash__badge{
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700;
  background: linear-gradient(135deg,#FFF1E6,#FFE2CC);
  color: var(--c-primary);
  padding: 8px 13px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.dash__chart{ width: 100%; height: 120px; margin-bottom: 18px; }
.dash__line{ stroke-dasharray: 700; stroke-dashoffset: 700; animation: drawLine 2.2s var(--ease) forwards; }
@keyframes drawLine{ to{ stroke-dashoffset: 0; } }

.dash__stats{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.dash__stat{
  display: flex; align-items: center; gap: 10px;
  background: var(--c-paper);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.dash__stat svg{ color: var(--c-primary); }
.dash__stat strong{ display: block; font-family: var(--f-display); font-size: 16px; }
.dash__stat span{ display: block; font-size: 11.5px; color: var(--c-muted); }

.dash__row{
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 4px;
  border-top: 1px solid var(--c-line);
  font-size: 13.5px; font-weight: 500;
}
.dash__row--muted{ color: var(--c-muted); }
.dash__toggle{
  width: 34px; height: 20px;
  border-radius: var(--r-pill);
  background: #E2E2E6;
  position: relative;
}
.dash__toggle::after{
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%; background: #fff;
  transition: transform .3s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.dash__toggle--on{ background: var(--c-primary); }
.dash__toggle--on::after{ transform: translateX(14px); }

/* =================================================================
   BENEFITS
================================================================= */
.benefit-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card{
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--sh-sm);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.benefit-card:hover{ transform: translateY(-6px); box-shadow: var(--sh-md); }
.benefit-card__icon{
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--grad-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(255,106,0,0.28);
}
.benefit-card h3{ font-size: 18.5px; margin-bottom: 8px; }
.benefit-card p{ font-size: 14.5px; color: var(--c-muted); line-height: 1.55; }

/* =================================================================
   AI SECTION (dark)
================================================================= */
.ai-bg{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,106,0,0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255,106,0,0.10), transparent 60%);
}
.ai{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ai__chips{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.ai-chip{
  font-size: 13px; font-weight: 600;
  color: #F0E4DA;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-line-dark);
  padding: 9px 15px;
  border-radius: var(--r-pill);
}
.ai-network{ width: 100%; height: auto; }
.ai-network__nodes circle{ filter: drop-shadow(0 0 8px rgba(255,106,0,0.7)); animation: nodePulse 3s ease-in-out infinite; }
.ai-network__nodes circle:nth-child(2){ animation-delay: .3s; }
.ai-network__nodes circle:nth-child(3){ animation-delay: .6s; }
.ai-network__nodes circle:nth-child(4){ animation-delay: .9s; }
.ai-network__nodes circle:nth-child(5){ animation-delay: 1.2s; }
.ai-network__nodes circle:nth-child(6){ animation-delay: 1.5s; }
.ai-network__nodes circle:nth-child(7){ animation-delay: 1.8s; }
.ai-network__nodes circle:nth-child(8){ animation-delay: 2.1s; }
@keyframes nodePulse{ 0%,100%{ opacity: .75; } 50%{ opacity: 1; } }
.ai-network__pulse{ animation: ringPulse 2.4s ease-out infinite; transform-origin: 240px 210px; }
.ai-network__pulse--2{ animation-delay: .6s; }
@keyframes ringPulse{ 0%{ opacity: .7; transform: scale(0.6); } 100%{ opacity: 0; transform: scale(1.6); } }

/* =================================================================
   REVIEWS
================================================================= */
.reviews{ position: relative; display: flex; align-items: center; gap: 18px; }
.reviews__viewport{ flex: 1; overflow: hidden; }
.reviews__track{
  display: flex;
  gap: 22px;
  transition: transform .55s var(--ease);
}
.review-card{
  flex: 0 0 calc(33.333% - 15px);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-card__stars{ display: flex; gap: 3px; color: var(--c-primary); }
.review-card__text{ font-size: 15px; line-height: 1.6; color: var(--c-ink); flex: 1; }
.review-card__who{ display: flex; align-items: center; gap: 12px; }
.review-card__who strong{ display: block; font-size: 14px; }
.review-card__who span{ display: block; font-size: 12.5px; color: var(--c-muted); }

.avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}

.reviews__nav{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.reviews__nav:hover{ background: var(--c-ink); color: #fff; transform: scale(1.05); }
.reviews__nav--prev svg{ transform: rotate(180deg); }

.reviews__dots{ display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.reviews__dots button{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(17,17,17,0.16);
  transition: all .3s var(--ease);
}
.reviews__dots button.is-active{ background: var(--c-primary); width: 22px; border-radius: 5px; }

/* =================================================================
   APP PROMO
================================================================= */
.app-promo{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.store-badges{ display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.store-badge{
  display: flex; align-items: center; gap: 10px;
  background: var(--c-ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-family: var(--f-display); font-weight: 700; font-size: 14.5px;
  transition: transform .3s var(--ease);
}
.store-badge:hover{ transform: translateY(-3px); }
.store-badge small{ display: block; font-family: var(--f-body); font-weight: 500; font-size: 10.5px; opacity: .7; }

.app-promo__phones{
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone--back{ position: absolute; left: 18%; transform: rotate(-8deg); opacity: .9; filter: brightness(0.94); animation: none; }
.phone--front{ position: absolute; right: 14%; transform: rotate(6deg); z-index: 2; animation: none; }

.app-card{ margin: 8px 14px; background: #fff; border-radius: 18px; padding: 16px; box-shadow: var(--sh-sm); }
.app-card__top{ display: flex; align-items: center; justify-content: space-between; color: var(--c-primary); margin-bottom: 14px; }
.app-card__price{ font-family: var(--f-display); font-weight: 800; font-size: 20px; margin-bottom: 12px; }
.app-card__price s{ font-size: 13px; font-weight: 500; color: var(--c-muted); margin-left: 6px; }

/* =================================================================
   CTA
================================================================= */
.cta{
  position: relative;
  background: var(--grad-primary);
  overflow: hidden;
  padding: 110px 0;
  text-align: center;
}
.cta__rings{
  position: absolute; inset: 0;
  background-image: repeating-radial-gradient(circle at 50% 120%, rgba(255,255,255,0.14) 0, rgba(255,255,255,0.14) 1px, transparent 1px, transparent 80px);
}
.cta__inner{ position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta__title{
  font-size: clamp(32px, 4.4vw, 54px);
  color: #fff;
  margin-bottom: 16px;
  max-width: 720px;
}
.cta__text{
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 34px;
}

/* =================================================================
   FOOTER
================================================================= */
.footer{ background: var(--c-ink); color: var(--c-muted-dark); padding: 84px 0 0; }
.footer__inner{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--c-line-dark);
}
.footer__tagline{ font-size: 14px; margin: 18px 0 22px; max-width: 260px; line-height: 1.6; }
.social-row{ display: flex; gap: 10px; }
.social-btn{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-line-dark);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.social-btn:hover{ background: var(--c-primary); transform: translateY(-3px); border-color: transparent; }
.social-btn--text{ font-weight: 700; font-size: 12px; font-family: var(--f-display); }

.footer__col{ display: flex; flex-direction: column; gap: 13px; }
.footer__col h4{ color: #fff; font-size: 14px; margin-bottom: 6px; }
.footer__col a{ font-size: 14px; transition: color .25s var(--ease); }
.footer__col a:hover{ color: #fff; }
.footer__addr{ font-size: 14px; line-height: 1.5; }

.footer__bottom{
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal{ display: flex; gap: 24px; }
.footer__legal a:hover{ color: #fff; }

/* =================================================================
   CURSOR GLOW (desktop only, subtle)
================================================================= */
.cursor-glow{
  position: fixed;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.10), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%,-50%);
  left: var(--x, 50%);
  top: var(--y, 50%);
  opacity: 0;
  transition: opacity .4s ease;
  will-change: left, top;
}
.cursor-glow.is-active{ opacity: 1; }

/* =================================================================
   SCROLL REVEAL
================================================================= */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"]{ transition-delay: .12s; }
[data-reveal-delay="2"]{ transition-delay: .24s; }
[data-reveal-delay="3"]{ transition-delay: .36s; }

/* =================================================================
   RESPONSIVE
================================================================= */
@media (max-width: 1180px){
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .step-line{ display: none; }
  .cat-grid{ grid-template-columns: repeat(3, 1fr); }
  .benefit-grid{ grid-template-columns: repeat(2, 1fr); }
  .review-card{ flex: 0 0 calc(50% - 11px); }
}

@media (max-width: 1024px){
  .container{ padding: 0 24px; }
  .nav{ display: none; }
  .locale-chip span{ display: none; }
  .burger{ display: flex; }
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__visual{ min-height: 560px; order: -1; }
  .hero__copy{ text-align: left; }
  .biz, .ai, .app-promo{ grid-template-columns: 1fr; }
  .ai__visual{ order: -1; max-width: 420px; margin: 0 auto; }
  .footer__inner{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 720px){
  :root{ --header-h: 72px; }
  .container{ padding: 0 20px; }
  .section{ padding: 84px 0; }
  .hero{ padding-top: calc(var(--header-h) + 32px); }
  .hero__title{ font-size: clamp(36px, 9vw, 48px); }
  .hero__actions{ flex-direction: column; }
  .hero__actions .btn{ width: 100%; }
  .hero__stats{ gap: 24px; }
  .steps{ grid-template-columns: 1fr; }
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
  .benefit-grid{ grid-template-columns: 1fr; }
  .review-card{ flex: 0 0 100%; }
  .footer__inner{ grid-template-columns: 1fr; }
  .footer__bottom{ flex-direction: column; align-items: flex-start; }
  .phone{ width: 260px; height: 530px; }
  .float-card{ position: static; margin-top: 12px; width: fit-content; animation: none; }
  .hero__visual{ min-height: auto; padding-bottom: 20px; }
  .hero__scene{ flex-direction: column; }
  .app-promo__phones{ height: 380px; }
  .phone--sm{ width: 170px; height: 350px; }
  .dash{ padding: 22px; }
  .dash__stats{ grid-template-columns: 1fr; }
  .cursor-glow{ display: none; }
  .eyebrow{ font-size: 12px; }
  .cta{ padding: 74px 0; }
}

@media (max-width: 420px){
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
  .hero__stats{ gap: 18px 26px; }
}
