/* ONWILL landing — pixel reference layout */

:root {
  --lp-blue: #0047ab;
  --lp-blue-dark: #003d94;
  --lp-blue-soft: #e8f2ff;
  --lp-blue-copy: #2563eb;
  --lp-blue-copy-hover: #1d4ed8;
  --lp-bg-radial: radial-gradient(
    ellipse 120% 80% at 50% 40%,
    #f5faff 0%,
    #dbeafe 45%,
    #c8e0fb 100%
  );
  --lp-white: #ffffff;
  --lp-text: #333333;
  --lp-text-muted: #5a6b7a;
  --lp-text-subtle: #6b7280;
  --lp-text-faint: #9ca3af;
  --lp-border-soft: #e5e7eb;
  --lp-orange: #ff8a00;
  --lp-orange-hover: #e67a00;
  --lp-lime: #b2d33d;
  --lp-star: #b2d33d;
  --lp-footer: #002a5c;
  /* Единая система: радиус + 2 уровня теней */
  --lp-radius: 12px;
  --lp-radius-lg: 14px;
  --lp-radius-pill: 999px;
  --lp-shadow-card: 0 4px 14px rgba(0, 0, 0, 0.055);
  --lp-shadow-elevated: 0 8px 24px rgba(0, 0, 0, 0.06);
  --lp-shadow-promo-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  --lp-shadow-btn: 0 6px 16px rgba(0, 0, 0, 0.1);
  --lp-shadow-dropdown: 0 10px 30px rgba(0, 0, 0, 0.08);
  --lp-promo-bg: #dbeafe;
  --lp-promo-bg-hover: #bfdbfe;
  --lp-success-bg: #d1fae5;
  --lp-success-bg-strong: #a7f3d0;
  --lp-success-text: #047857;
  --lp-success-icon: #059669;
  --lp-max: 1180px;
  --lp-pad-x: clamp(16px, 4vw, 48px);
  /* Inter — основной текст; Rounds Black — акценты */
  --lp-font-ui: "Inter", system-ui, sans-serif;
  --lp-font-display: "Rounds Black", system-ui, sans-serif;
  --lp-font: var(--lp-font-display);
  --lp-text-h1: clamp(1.35rem, 3.8vw, 2.25rem);
  --lp-text-h2: clamp(1.05rem, 2.2vw, 1.4rem);
  --lp-text-body: clamp(0.875rem, 1.2vw, 0.9375rem);
  --lp-text-small: 0.8125rem;
}

.lp-page {
  min-height: 100vh;
  background: var(--lp-white);
  color: var(--lp-text);
  font-family: var(--lp-font-ui);
  font-weight: 500;
  font-size: var(--lp-text-body);
  line-height: 1.5;
  /* Hero / promo decos extend past the grid — avoid horizontal page scroll */
  overflow-x: hidden;
  overflow-x: clip;
}

/* Акцентный шрифт (Rounds Black) — только крупные секционные заголовки и лого */
.lp-logo,
.lp-hero__title,
.lp-btn--orange,
.lp-section-title,
.lp-store-title,
.lp-store-promos__heading,
.lp-footer__logo {
  font-family: var(--lp-font-display);
}

.lp-container {
  width: 100%;
  max-width: var(--lp-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--lp-pad-x);
  padding-right: var(--lp-pad-x);
}

/* ——— Header ——— */
.lp-header {
  background: var(--lp-white);
  border-bottom: 1px solid rgba(0, 71, 171, 0.06);
}

.lp-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition: box-shadow 0.2s ease;
}

.lp-header__bar.lp-header__bar--scrolled {
  box-shadow: 0 4px 20px rgba(0, 40, 100, 0.07);
}

.lp-logo {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--lp-blue);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex: 1;
}

.lp-nav a {
  color: var(--lp-blue);
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  font-weight: 700;
  transition: opacity 0.2s;
}

.lp-nav a:hover {
  opacity: 0.75;
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Обёртка поиска + dropdown */
.lp-search-wrap {
  position: relative;
  min-width: 0;
  max-width: 280px;
}

.lp-search {
  display: flex;
  align-items: center;
  background: var(--lp-blue-soft);
  border-radius: var(--lp-radius-pill);
  overflow: hidden;
  min-width: 0;
  width: 100%;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(0, 71, 171, 0.08);
}

.lp-search-wrap--open .lp-search {
  box-shadow:
    inset 0 0 0 1px rgba(0, 71, 171, 0.14),
    0 0 0 2px rgba(0, 71, 171, 0.06);
}

.lp-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.3rem 0.65rem 0.3rem 0.75rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-search input::placeholder {
  color: #7a8fa5;
  font-weight: 700;
}

.lp-search-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--lp-blue);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.lp-search-btn:hover {
  background: var(--lp-blue-dark);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.lp-search-btn:active {
  transform: translateY(1px);
}

.lp-search-btn svg {
  width: 16px;
  height: 16px;
}

.lp-search-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 100;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border-soft);
  box-shadow: var(--lp-shadow-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  pointer-events: none;
}

.lp-search-wrap--open .lp-search-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lp-search-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  color: var(--lp-text);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.15s ease;
}

.lp-search-dropdown__item:hover,
.lp-search-dropdown__item:focus-visible {
  background: var(--lp-blue-soft);
  outline: none;
}

.lp-search-dropdown__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e5e7eb;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.lp-search-dropdown__empty {
  padding: 0.6rem 0.9rem;
  color: var(--lp-text-faint);
  font-size: 0.85rem;
  font-weight: 600;
}

.lp-search-dropdown__label {
  flex: 1;
  min-width: 0;
}

.lp-search-dropdown__arrow {
  flex-shrink: 0;
  color: var(--lp-text-faint);
  opacity: 0.7;
}

.lp-search-dropdown__arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.lp-user {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 71, 171, 0.25);
}

.lp-user svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* ——— Hero ——— */
.lp-hero {
  background: var(--lp-white);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  overflow: visible;
}

.lp-hero__shell {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: clamp(0.75rem, 3.5vw, 2.75rem);
  align-items: center;
}

.lp-hero__col--text {
  min-width: 0;
  padding-bottom: 0.25rem;
}

.lp-hero__inner {
  padding-top: clamp(0.35rem, 1.5vw, 0.75rem);
}

/* Правая колонка: свечение, маскот, 3D-плюс (макет) */
.lp-hero__col--visual {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.lp-hero__viz {
  position: relative;
  width: 100%;
  max-width: min(100%, 560px);
  margin: 0 0 0 auto;
  min-height: clamp(260px, 32vw, 360px);
}

.lp-hero__glow {
  position: absolute;
  z-index: 0;
  display: block;
  width: clamp(220px, 26vw, 320px);
  height: auto;
  right: -16%;
  top: 42%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  opacity: 0.7;
}

/* Важно: без blend-mode, иначе на белом пропадает */

.lp-hero__mascot {
  position: absolute;
  z-index: 1;
  display: block;
  width: min(110%, 520px);
  max-width: none;
  height: auto;
  right: -6%;
  bottom: -15.5%;
  object-fit: contain;
  user-select: none;
}

.lp-hero__deco {
  position: absolute;
  z-index: 2;
  display: block;
  width: clamp(90px, 11vw, 128px);
  height: auto;
  top: 10%;
  right: -8%;
  left: auto;
  transform: rotate(12deg);
  pointer-events: none;
  user-select: none;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.1));
}

@media (max-width: 900px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1.5rem;
  }

  .lp-hero__col--visual {
    justify-content: center;
    order: -1;
  }

  .lp-hero__viz {
    margin: 0 auto;
    min-height: clamp(240px, 55vw, 360px);
    max-width: min(100%, 380px);
  }

  .lp-hero__glow {
    right: -8%;
    top: 56%;
    width: clamp(190px, 44vw, 300px);
    transform: translateY(-50%);
  }

  .lp-hero__deco {
    right: 6%;
    left: auto;
    top: 8%;
    width: clamp(72px, 18vw, 96px);
  }

  .lp-hero__mascot {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}

.lp-hero__title {
  font-size: var(--lp-text-h1);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}

.lp-hero__title-line {
  display: block;
  color: var(--lp-blue);
}

.lp-hero__title-accent {
  display: block;
  color: var(--lp-lime);
  margin-top: 0.15em;
}

.lp-hero__lead {
  font-size: var(--lp-text-body);
  font-weight: 600;
  color: var(--lp-text-subtle);
  line-height: 1.55;
  max-width: 38rem;
  margin: 0 0 1.35rem;
}

.lp-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 1.75rem;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--lp-blue);
}

.lp-pill__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-pill__icon--check {
  background: rgba(178, 211, 61, 0.25);
  color: #5a9a12;
}

.lp-pill__icon--clock {
  background: rgba(255, 138, 0, 0.2);
  color: var(--lp-orange);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--lp-radius-pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.lp-btn--primary {
  background: var(--lp-blue);
  color: #fff;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-btn);
}

.lp-btn--primary:hover {
  background: var(--lp-blue-dark);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.12),
    0 4px 8px rgba(0, 55, 120, 0.15);
}

.lp-btn--primary:active {
  transform: translateY(1px);
}

.lp-btn--orange {
  background: var(--lp-orange);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1rem 2.5rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  border-radius: var(--lp-radius-lg);
  box-shadow:
    var(--lp-shadow-btn),
    0 4px 12px rgba(255, 138, 0, 0.22);
}

.lp-btn--orange:hover {
  background: var(--lp-orange-hover);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(255, 138, 0, 0.28);
}

.lp-btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.lp-btn--orange-sm {
  background: var(--lp-orange);
  color: #fff;
  border-radius: var(--lp-radius-pill);
}

/* Section titles */
.lp-section-title {
  text-align: center;
  font-size: var(--lp-text-h2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--lp-blue);
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
}

/* ——— How it works ——— */
/* Непрерывный фон страницы вынесен на <main>, чтобы между секциями не было швов */
main {
  background: linear-gradient(
    180deg,
    #f5faff 0%,
    #e3efff 22%,
    #d3e3fa 50%,
    #d8e7fb 78%,
    #c8dcf3 100%
  );
}

.lp-band {
  background: transparent;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.lp-band--white {
  background: var(--lp-white);
}

/* Декорации по секциям: оранжевое кольцо и зелёный плюс */
.lp-band-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  display: block;
  height: auto;
  z-index: 0;
  filter: drop-shadow(0 12px 28px rgba(0, 71, 171, 0.1));
  opacity: 0.9;
}

.lp-band-deco--ring-l {
  left: clamp(-60px, -3vw, -24px);
  top: 50%;
  width: clamp(120px, 14vw, 200px);
  transform: translateY(-50%);
}

.lp-band-deco--ring-r {
  right: clamp(-60px, -3vw, -24px);
  top: 22%;
  width: clamp(120px, 14vw, 200px);
}

.lp-band-deco--ring-rb {
  right: clamp(-40px, -2vw, -12px);
  bottom: 12%;
  width: clamp(110px, 12vw, 170px);
}

.lp-band-deco--plus-l {
  left: clamp(-50px, -3vw, -16px);
  bottom: 10%;
  width: clamp(140px, 18vw, 240px);
  transform: rotate(-12deg);
}

.lp-band-deco--plus-r {
  right: clamp(-60px, -3vw, -20px);
  top: 18%;
  width: clamp(140px, 18vw, 240px);
  transform: rotate(10deg);
}

.lp-band-deco--plus-tl {
  left: clamp(-30px, -1vw, -8px);
  top: 4%;
  width: clamp(120px, 14vw, 200px);
  transform: rotate(-14deg);
}

.lp-band-mascot {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: clamp(140px, 18vw, 240px);
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.lp-band--benefits {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.lp-band--benefits .lp-benefits__grid {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .lp-band-mascot {
    opacity: 0.5;
    right: -6%;
    width: clamp(120px, 28vw, 200px);
  }
}

.lp-band > .lp-container {
  position: relative;
  z-index: 1;
}

.lp-how__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.5vw, 2rem);
  max-width: 780px;
  margin: 0 auto;
}

.lp-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-card);
  padding: 1.35rem 1.15rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.lp-card h3 {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 700;
  color: var(--lp-blue);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.lp-card p {
  font-size: var(--lp-text-small);
  font-weight: 600;
  color: var(--lp-text-subtle);
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

.lp-how__cta {
  margin-top: 1.25rem;
  align-self: flex-start;
}

/* ——— Promo block (Figma: gradient band + frosted panel + deco) ——— */
.lp-promo-wrap {
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: visible;
}

.lp-promo-scene {
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: clamp(0.25rem, 1.5vw, 0.75rem) 0;
}

.lp-promo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("image/bg-pattern.png");
  background-repeat: repeat;
  background-size: 520px auto;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.lp-promo-wrap .lp-container {
  position: relative;
  z-index: 1;
}

.lp-promo-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.09;
  mix-blend-mode: soft-light;
  filter: saturate(0.85) contrast(1.05);
}

.lp-promo-card {
  background: rgba(240, 248, 255, 0.78);
  border-radius: var(--lp-radius-lg);
  box-shadow:
    0 16px 48px rgba(0, 71, 171, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(0, 71, 171, 0.1);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .lp-promo-card {
    background: rgba(235, 245, 255, 0.96);
  }
}

.lp-promo-card .lp-section-title {
  margin-bottom: 1.25rem;
}

.lp-promo-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  display: block;
  opacity: 0.92;
  filter: drop-shadow(0 12px 28px rgba(0, 71, 171, 0.12));
  z-index: 0;
}

.lp-promo-deco--ring {
  width: clamp(140px, 20vw, 240px);
  height: auto;
  left: clamp(-72px, -6vw, -36px);
  top: 42%;
  transform: translateY(-50%);
}

.lp-promo-deco--plus {
  width: clamp(160px, 22vw, 260px);
  height: auto;
  right: clamp(-88px, -7vw, -44px);
  bottom: clamp(-56px, -4vw, -28px);
  transform: rotate(10deg);
  opacity: 0.88;
}

.lp-promo-search {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  max-width: min(640px, 100%);
  margin: 0 auto 1rem;
  padding: 0.35rem 0.45rem 0.35rem 1.1rem;
  border-radius: var(--lp-radius-pill);
  overflow: hidden;
  border: 1px solid rgba(0, 71, 171, 0.12);
  background: linear-gradient(180deg, #e8f3ff 0%, #dbeafe 100%);
  box-shadow: 0 2px 12px rgba(0, 71, 171, 0.08);
}

.lp-promo-search input {
  flex: 1;
  border: 0;
  padding: 0.55rem 0.25rem 0.55rem 0;
  min-height: 0;
  min-width: 0;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-text);
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.lp-promo-search input::placeholder {
  color: var(--lp-text-faint);
}

.lp-promo-search button {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: var(--lp-blue);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 14px rgba(0, 71, 171, 0.28);
}

.lp-promo-search button svg {
  width: 20px;
  height: 20px;
  opacity: 0.95;
}

.lp-promo-search button:hover {
  background: var(--lp-blue-dark);
}

.lp-promo-search button:active {
  transform: scale(0.96);
}

.lp-promo-hint {
  text-align: center;
  font-size: var(--lp-text-small);
  font-weight: 600;
  color: var(--lp-text-subtle);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.lp-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

.lp-store-card {
  flex: 1 1 200px;
  max-width: 280px;
  background: var(--lp-promo-bg);
  border-radius: var(--lp-radius-lg);
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 1.25rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lp-store-card__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--lp-radius);
  background: linear-gradient(135deg, #e8f2ff, #cfe4ff);
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.lp-store-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-store-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-blue);
  margin: 0;
  line-height: 1.25;
}

.lp-store-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-text-faint);
  line-height: 1.35;
}

.lp-store-card__code {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-text-subtle);
}

.lp-store-card__code span {
  color: var(--lp-orange);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-store-card__date {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--lp-text-faint);
  margin: -0.25rem 0 0;
  line-height: 1.3;
}

.lp-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: auto;
  padding: 0.5rem 0.95rem;
  border-radius: var(--lp-radius);
  background: #dbeafe;
  color: var(--lp-blue-copy);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  box-shadow: 0 1px 2px rgba(0, 71, 171, 0.06);
}

.lp-copy:hover {
  background: #bfdbfe;
  color: var(--lp-blue-copy-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.18);
}

.lp-promo-card .lp-copy {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 3px rgba(0, 71, 171, 0.08);
}

.lp-promo-card .lp-copy:hover {
  background: #fff;
  color: var(--lp-blue-copy-hover);
}

.lp-copy:active {
  transform: translateY(1px);
}

.lp-see-all {
  flex: 0 0 min(168px, 38vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem 0.85rem;
  border-radius: var(--lp-radius-lg);
  border: 2px dashed rgba(0, 71, 171, 0.22);
  background: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  color: var(--lp-blue);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: break-word;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.lp-see-all:hover {
  border-color: var(--lp-blue);
  background: rgba(255, 255, 255, 0.75);
}

.lp-see-all__grid {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  gap: 6px;
}

.lp-see-all__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-blue);
  opacity: 0.35;
}

/* ——— Benefits ——— */
.lp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 1.25rem 1.5rem;
  row-gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.lp-benefits__grid .lp-benefit:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.lp-benefit {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1.5rem 1.4rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.lp-benefit h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lp-blue);
  margin: 0 0 0.6rem;
}

.lp-benefit p {
  font-size: var(--lp-text-small);
  font-weight: 600;
  color: var(--lp-text-subtle);
  line-height: 1.55;
  margin: 0;
}

/* ——— Install ——— */
.lp-install {
  background-color: var(--lp-white);
  background-image: radial-gradient(rgba(0, 120, 200, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.lp-install__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.lp-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.lp-step-card__visual {
  aspect-ratio: 4/3;
  width: 100%;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.1), transparent 45%),
    linear-gradient(180deg, #0a5cc9 0%, #0047ab 100%);
  border-radius: var(--lp-radius-lg);
  box-shadow:
    var(--lp-shadow-elevated),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 22px);
}

/* Мок-контент внутри карточки установки */
.lp-step-mock {
  width: 100%;
  height: 100%;
  border-radius: var(--lp-radius);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp-step-mock--mascot {
  background: linear-gradient(180deg, #eaf3ff 0%, #cfe4ff 100%);
  align-items: center;
  justify-content: flex-end;
}

.lp-step-mock--mascot img {
  display: block;
  width: 95%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  user-select: none;
}

.lp-step-mock--browser {
  background: #e5e7eb;
}

.lp-step-mock__bar {
  background: #d1d5db;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.lp-step-mock__bar::before,
.lp-step-mock__bar::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ca3af;
}

.lp-step-mock__bar::after {
  box-shadow:
    14px 0 0 #9ca3af,
    28px 0 0 #9ca3af;
}

.lp-step-mock__screen {
  flex: 1;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  display: grid;
  place-items: center;
  position: relative;
}

.lp-step-mock__screen::before {
  content: "";
  position: absolute;
  inset: 12% 14% auto;
  height: 9px;
  border-radius: 6px;
  background: #cbd5e1;
}

.lp-step-mock__screen::after {
  content: "";
  width: clamp(22px, 4vw, 34px);
  height: clamp(22px, 4vw, 34px);
  border-radius: 50%;
  background: var(--lp-blue);
  box-shadow: 0 6px 16px rgba(0, 71, 171, 0.4);
}

.lp-step-mock--voucher {
  background: #fff;
  padding: clamp(10px, 1.6vw, 16px);
  align-items: center;
  text-align: center;
  gap: 6px;
}

.lp-step-mock__voucher-icon {
  width: clamp(24px, 3.2vw, 32px);
  height: clamp(24px, 3.2vw, 32px);
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.18);
  color: var(--lp-orange);
  font-family: var(--lp-font-ui);
  font-weight: 800;
  font-size: clamp(13px, 1.7vw, 17px);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-step-mock__voucher-text {
  font-family: var(--lp-font-ui);
  font-size: clamp(9px, 1.05vw, 11px);
  font-weight: 700;
  color: var(--lp-text);
  margin: 0;
  line-height: 1.3;
  max-width: 92%;
}

.lp-step-mock__voucher-date {
  font-family: var(--lp-font-ui);
  font-size: clamp(7px, 0.85vw, 9px);
  font-weight: 600;
  color: var(--lp-text-faint);
  margin: 0;
}

.lp-step-mock__voucher-btn {
  margin-top: auto;
  background: var(--lp-orange);
  color: #fff;
  font-family: var(--lp-font-ui);
  font-size: clamp(8px, 1vw, 10px);
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 5px 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
}

.lp-step-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lp-text-subtle);
  line-height: 1.3;
  max-width: 12rem;
}

.lp-install__footer {
  text-align: center;
}

.lp-install__note {
  font-size: var(--lp-text-small);
  font-weight: 600;
  color: var(--lp-text-subtle);
  max-width: 36rem;
  margin: 1.25rem auto 0;
  line-height: 1.55;
}

/* ——— Reviews ——— */
.lp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-review {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1.5rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-review__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--lp-border-soft);
}

.lp-review__author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lp-blue);
  margin: 0;
  line-height: 1.2;
}

.lp-review__stars {
  color: var(--lp-star);
  letter-spacing: 1px;
  font-size: 0.72rem;
  line-height: 1;
}

.lp-review__text {
  font-size: var(--lp-text-small);
  font-weight: 600;
  color: var(--lp-text-subtle);
  line-height: 1.5;
  margin: 0;
}

/* ——— FAQ ——— */
.lp-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-faq-item {
  background: var(--lp-blue-soft);
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow-card);
  border: 1px solid rgba(0, 71, 171, 0.06);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.lp-faq-item:hover {
  box-shadow: var(--lp-shadow-elevated);
  border-color: rgba(0, 71, 171, 0.12);
  background: #e0efff;
}

.lp-faq-item[open] {
  background: #e8f2ff;
}

.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1.15rem;
  font-size: var(--lp-text-small);
  color: var(--lp-blue);
  position: relative;
  font-weight: 700;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--lp-blue);
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%);
}

.lp-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-faq-item[open] .lp-faq__panel {
  grid-template-rows: 1fr;
}

.lp-faq__panel-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 1.15rem 1.05rem;
  font-size: var(--lp-text-small);
  font-weight: 600;
  color: var(--lp-text-faint);
  line-height: 1.55;
}

.lp-faq-item[open] summary {
  color: var(--lp-blue-dark);
}

.lp-faq__panel-inner p {
  margin: 0;
}

/* ——— Contacts ——— */
.lp-contacts {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.lp-contacts__row {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(280px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: none;
  margin: 0 auto;
}

.lp-mascot {
  width: 100%;
}

.lp-contacts__visual {
  position: relative;
  width: 100%;
  border-radius: 20px;
  background: #fff;
  min-height: clamp(260px, 30vw, 340px);
  overflow: hidden;
}

.lp-contacts__decor {
  position: absolute;
  left: -48px;
  top: 26px;
  width: clamp(180px, 24vw, 300px);
  opacity: 0.9;
  pointer-events: none;
  display: block;
}

.lp-contacts__mascot {
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: clamp(300px, 36vw, 470px);
  height: auto;
  display: block;
}

.lp-contacts__content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 0.25rem 0 0.25rem clamp(0.5rem, 3vw, 2.5rem);
}

.lp-contacts__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-contacts__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lp-blue);
  font-size: 1rem;
  font-weight: 700;
  transition: opacity 0.2s;
}

.lp-contacts__links a:hover {
  opacity: 0.8;
}

.lp-contacts__hint {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--lp-text-subtle);
  line-height: 1.55;
  margin: 0;
}

.lp-contacts .lp-btn--primary.lp-btn--block {
  align-self: flex-start;
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
}

.lp-btn--block {
  align-self: flex-start;
}

/* ——— Footer ——— */
.lp-footer {
  background: var(--lp-footer);
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem) 0 1.5rem;
}

.lp-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.lp-footer__logo {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  display: inline-block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.lp-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem 3rem;
}

.lp-footer__cols a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.lp-footer__cols a:hover {
  text-decoration: underline;
}

.lp-footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .lp-contacts__row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-contacts__visual {
    margin: 0 auto;
    min-height: clamp(240px, 70vw, 320px);
  }

  .lp-contacts__decor {
    left: -28px;
    top: 14px;
    width: clamp(160px, 44vw, 240px);
  }

  .lp-contacts__mascot {
    width: clamp(280px, 88vw, 420px);
  }

  .lp-contacts__content {
    align-items: center;
  }

  .lp-contacts .lp-btn--block {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .lp-nav {
    display: none;
  }

  .lp-how__grid {
    grid-template-columns: 1fr;
  }

  .lp-install__steps {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .lp-reviews__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-header__bar {
    flex-wrap: wrap;
  }

  .lp-search-wrap {
    max-width: none;
    flex: 1 1 100%;
    order: 3;
  }

  .lp-search {
    max-width: none;
  }

  .lp-store-row {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-store-card {
    max-width: none;
  }

  .lp-see-all {
    flex: 1 1 auto;
  }

  .lp-benefits__grid {
    grid-template-columns: 1fr;
  }

  .lp-footer__inner {
    grid-template-columns: 1fr;
  }

  .lp-footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* Появление секций при скролле */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

  .lp-faq__panel,
  .lp-faq-item summary::after {
    transition: none !important;
  }

  .lp-search-dropdown {
    transition: none !important;
  }
}

/* ——— Страница магазина (StorePage) ——— */
.lp-store-page {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.lp-store-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem 2rem;
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid var(--lp-border-soft);
}

.lp-store-logo {
  width: 120px;
  height: 120px;
  border-radius: var(--lp-radius);
  background: #d1d5db;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: block;
}

.lp-store-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--lp-text-subtle);
  font-size: var(--lp-text-small);
  font-weight: 600;
  width: 100%;
}

.lp-promo-tile__cond {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--lp-text-faint);
  line-height: 1.45;
}

.lp-store-info {
  min-width: 0;
}

.lp-store-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  color: var(--lp-blue);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.lp-store-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.75rem;
}

.lp-store-rating__stars {
  color: var(--lp-star);
  letter-spacing: 2px;
  font-size: 0.9rem;
  line-height: 1;
}

.lp-store-rating__meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-text-faint);
}

.lp-store-desc {
  margin: 0;
  max-width: 42rem;
  font-size: var(--lp-text-small);
  font-weight: 600;
  color: var(--lp-text-subtle);
  line-height: 1.55;
}

.lp-store-promos {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.lp-store-promos__heading {
  margin: 0 0 1.15rem;
  font-size: var(--lp-text-h2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--lp-blue);
}

/* Карточка промокода на странице магазина (PromoCard) */
.lp-promo-tile {
  border-radius: var(--lp-radius-lg);
  background: var(--lp-promo-bg);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: var(--lp-shadow-card);
  padding: 1.15rem 1.2rem;
  margin-bottom: 0.85rem;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.lp-promo-tile:last-child {
  margin-bottom: 0;
}

.lp-promo-tile--applied {
  background: var(--lp-success-bg);
  border-color: rgba(16, 185, 129, 0.45);
}

.lp-promo-tile__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.65rem 1rem;
}

.lp-promo-tile--applied .lp-promo-tile__inner {
  grid-template-columns: auto 1fr auto;
}

.lp-promo-tile__check {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lp-success-icon);
  color: #fff;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
}

.lp-promo-tile__check svg {
  width: 16px;
  height: 16px;
  display: block;
}

.lp-promo-tile--applied .lp-promo-tile__check {
  display: grid;
}

.lp-promo-tile__body {
  min-width: 0;
}

.lp-promo-tile__code {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lp-blue-dark);
}

.lp-promo-tile--applied .lp-promo-tile__code {
  color: var(--lp-success-text);
}

.lp-promo-tile__desc {
  margin: 0.4rem 0 0;
  font-size: var(--lp-text-small);
  font-weight: 600;
  color: var(--lp-text-subtle);
  line-height: 1.45;
}

.lp-promo-tile__btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: var(--lp-radius);
  border: 0;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: var(--lp-blue-copy);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
}

.lp-promo-tile__btn:hover:not(:disabled) {
  background: var(--lp-promo-bg-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.lp-promo-tile--applied .lp-promo-tile__btn {
  background: rgba(255, 255, 255, 0.65);
  color: var(--lp-success-text);
  opacity: 1;
  cursor: default;
  box-shadow: none;
}

.lp-promo-tile--applied .lp-promo-tile__btn:disabled {
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .lp-store-head {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .lp-store-info {
    text-align: center;
  }

  .lp-store-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-store-rating {
    justify-content: center;
  }

  .lp-promo-tile__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .lp-promo-tile--applied .lp-promo-tile__check {
    justify-self: center;
  }

  .lp-promo-tile__btn {
    width: 100%;
  }
}

