/* ─────────────────────────────────────────────
   NewWay — shared site components
   ───────────────────────────────────────────── */

/* ── Top navigation ─────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(239, 240, 242, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 80px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav__brand-mark {
  width: 36px; height: 36px;
  flex: 0 0 36px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-inline: auto;
}
.nav__menu a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  transition: color 0.15s ease;
  position: relative;
  padding: 6px 0;
}
.nav__menu a:hover { color: var(--ink-900); }
.nav__menu a[aria-current="page"] { color: var(--ink-900); }
.nav__menu a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.nav__phone {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.nav__icons { display: flex; gap: 10px; }

/* ── Icon button (circular) ─────────────────────────── */
.icon-btn {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--ink-700);
  transition: transform 0.12s ease, color 0.12s ease;
}
.icon-btn:hover { color: var(--blue-500); transform: translateY(-1px); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--blue-600) 100%);
  color: white;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 16px 28px -8px rgba(30,80,200,0.5); }
.btn--primary .btn__arrow {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.btn--ghost {
  background: var(--surface);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { background: var(--ink-50); }
.btn--lg { padding: 22px 32px; font-size: 16px; }

/* ── Pills / chips ──────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--surface);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ok);
}
.pill--dark {
  background: var(--night-700);
  color: rgba(255,255,255,0.9);
  box-shadow: none;
}

/* ── Cards ──────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card--feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card--feature .icon-tile {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--blue-50);
  color: var(--blue-500);
  display: grid;
  place-items: center;
}
.card--feature h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card--feature p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ── Stats bar (dark, как в hero IMG_2958) ──────────── */
.stats-bar {
  position: relative;
  margin-top: -120px;
  background: linear-gradient(180deg, var(--night-800) 0%, var(--night-900) 100%);
  color: white;
  border-radius: 0;
  padding: 38px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 28px;
  border-left: 1px solid var(--night-line);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  color: white;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
}
.stat__num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.35;
  max-width: 220px;
}

/* ── Hero (light, 3-col по IMG_2958) ────────────────── */
.hero {
  position: relative;
  padding-top: 24px;
  padding-bottom: 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.5fr) minmax(220px, 0.55fr);
  gap: 24px;
  align-items: center;
}
.hero__eyebrow { margin-bottom: 28px; }
.hero__title {
  font-size: clamp(52px, 6.2vw, 96px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink-900);
  text-wrap: balance;
}

.hero__visual {
  position: relative;
  margin: 0;
  align-self: stretch;
}
.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Right column ─ subtext + CTA + features */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
  align-items: flex-start;
}
.hero__sub {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 240px;
  margin: 0;
}
.hero__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.hero__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
}
.hero__features svg { flex: 0 0 22px; color: var(--blue-500); }

/* ── Section header ─────────────────────────────────── */
.section {
  padding: 120px 0;
}
.section--tight { padding: 72px 0; }
.section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.section__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.section__sub {
  max-width: 420px;
  font-size: 15.5px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--night-900);
  color: rgba(255,255,255,0.78);
  padding: 72px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.55);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; }
.footer a:hover { color: white; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--night-line);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__brand {
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__brand svg { width: 32px; height: 32px; }
.footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  line-height: 1.55;
  margin: 0 0 22px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.footer__socials a:hover { background: rgba(255,255,255,0.12); }

/* ── Misc ───────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  background: var(--blue-50);
  color: var(--blue-600);
}

/* Эмфаза «817» (номер склада) в крупном номере телефона */
.phone-hl{color:var(--blue-600);font-weight:800;white-space:nowrap;}
