/* Лендинг /baza — ориентирован на конверсию */
:root {
  --baza-bg: #f1f5f9;
  --baza-surface: #ffffff;
  --baza-text: #0f172a;
  --baza-muted: #64748b;
  --baza-primary: #2563eb;
  --baza-primary-dark: #1d4ed8;
  --baza-accent: #0d9488;
  --baza-gold: #eab308;
  --baza-gold-light: #fde047;
  --baza-border: rgba(15, 23, 42, 0.1);
  --baza-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.08);
  --baza-shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.12);
  --baza-radius: 20px;
  --baza-radius-sm: 14px;
  --baza-max: 1140px;
  --baza-safe-bottom: env(safe-area-inset-bottom, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.page-baza {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, Arial, sans-serif;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.09), transparent),
    linear-gradient(180deg, #f8fafc 0%, var(--baza-bg) 40%);
  color: var(--baza-text);
  line-height: 1.6;
  padding-bottom: calc(88px + var(--baza-safe-bottom));
}

@media (min-width: 769px) {
  body.page-baza {
    padding-bottom: 0;
  }
}

.page-baza a {
  color: var(--baza-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.page-baza a:hover {
  color: var(--baza-primary-dark);
  text-decoration: underline;
}

.baza-skip {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.65rem 1rem;
  background: var(--baza-primary);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}

.baza-skip:focus {
  left: 0;
  top: 0;
  outline: none;
}

.baza-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--baza-border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.baza-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  font-size: 0.9rem;
  font-weight: 600;
}

.baza-topbar__catalog {
  color: var(--baza-muted);
  text-decoration: none;
}

.baza-topbar__catalog:hover {
  color: var(--baza-primary);
}

.baza-topbar__pay {
  flex-shrink: 0;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--baza-primary), var(--baza-primary-dark));
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.baza-topbar__pay:hover {
  filter: brightness(1.05);
  text-decoration: none !important;
}

.baza-container {
  width: 100%;
  max-width: var(--baza-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
}

/* ——— Hero ——— */
.baza-hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2rem, 4vw, 2.75rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(251, 191, 36, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(13, 148, 136, 0.12), transparent 45%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 42%, #134e4a 100%);
  color: #fff;
}

.baza-hero__glow {
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  right: -15%;
  top: -30%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.22) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.baza-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .baza-hero__inner {
    grid-template-columns: 1.25fr 1fr;
  }
}

.baza-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 14px;
}

.baza-hero__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--baza-gold-light);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.35);
}

.baza-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 4.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.baza-hero__accent {
  background: linear-gradient(90deg, #fde68a, #fbbf24, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.baza-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.baza-hero__lead strong {
  color: #fff;
}

.baza-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.baza-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.baza-pill .bi {
  font-size: 14px;
  opacity: 0.9;
}

.baza-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.baza-hero__note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  max-width: 36rem;
}

.baza-hero__note a {
  color: #fde68a;
  text-decoration: underline;
}

.baza-hero__note a:hover {
  color: #fff;
}

/* Price card in hero */
.baza-hero-card {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--baza-radius);
  padding: clamp(1.15rem, 3vw, 1.5rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.baza-hero-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.baza-hero-card__price {
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(251, 191, 36, 0.35);
}

.baza-hero-card__hint {
  margin: 10px 0 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.baza-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.baza-btn:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.baza-btn--primary {
  background: linear-gradient(180deg, #fde047 0%, #eab308 50%, #ca8a04 100%);
  color: #0f172a !important;
  box-shadow:
    0 2px 0 rgba(180, 83, 9, 0.45),
    0 14px 32px rgba(0, 0, 0, 0.3);
}

.baza-btn--primary:hover {
  filter: brightness(1.04);
  color: #0f172a !important;
}

.baza-btn--primary .bi {
  font-size: 1.25rem;
  margin-right: -2px;
  transition: transform 0.2s ease;
}

.baza-btn--primary:hover .bi {
  transform: translateX(3px);
}

.baza-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.baza-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
}

.baza-btn--outline-dark {
  background: var(--baza-surface);
  color: var(--baza-text) !important;
  border: 1px solid var(--baza-border);
  box-shadow: var(--baza-shadow);
}

.baza-btn--outline-dark:hover {
  border-color: var(--baza-primary);
  color: var(--baza-primary-dark) !important;
}

.baza-btn--block {
  width: 100%;
}

/* ——— Trust strip ——— */
.baza-trust {
  margin-top: -12px;
  position: relative;
  z-index: 2;
}

.baza-trust__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 16px 18px;
  background: var(--baza-surface);
  border-radius: var(--baza-radius-sm);
  border: 1px solid var(--baza-border);
  box-shadow: var(--baza-shadow);
}

.baza-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 0;
}

.baza-trust__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  color: var(--baza-primary);
  font-size: 1.15rem;
}

.baza-trust__text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--baza-text);
  margin-bottom: 2px;
}

.baza-trust__text span {
  font-size: 13px;
  color: var(--baza-muted);
  line-height: 1.35;
}

/* ——— Sections ——— */
.baza-section {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.baza-section--flush-top {
  padding-top: 0;
}

.baza-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.baza-section__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--baza-primary);
  margin: 0 0 8px;
}

.baza-section__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--baza-text);
}

.baza-section__sub {
  margin: 0;
  font-size: 1.02rem;
  color: var(--baza-muted);
  line-height: 1.5;
}

/* ——— Carousel ——— */
.baza-carousel-wrap {
  border-radius: var(--baza-radius);
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--baza-shadow-lg);
  border: 1px solid var(--baza-border);
}

.baza-carousel {
  position: relative;
}

.baza-carousel .baza-track {
  display: flex;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.baza-carousel .baza-slide {
  min-width: 100%;
  height: clamp(220px, 48vw, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
}

.baza-carousel .baza-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.baza-carousel__nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.baza-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.15s ease, transform 0.15s ease;
}

.baza-carousel__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.baza-carousel__arrow--prev {
  left: 12px;
}

.baza-carousel__arrow--next {
  right: 12px;
}

.baza-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  pointer-events: auto;
}

.baza-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.baza-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

/* ——— Offer block ——— */
.baza-offer {
  background: var(--baza-surface);
  border-radius: var(--baza-radius);
  border: 1px solid var(--baza-border);
  box-shadow: var(--baza-shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.baza-offer__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 880px) {
  .baza-offer__grid {
    grid-template-columns: 1fr minmax(240px, 300px);
    align-items: start;
  }
}

.baza-offer__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.baza-offer__lead {
  margin: 0 0 16px;
  color: var(--baza-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.baza-list-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.baza-list-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.baza-list-check .bi {
  flex-shrink: 0;
  color: var(--baza-accent);
  font-size: 1.1rem;
  margin-top: 2px;
}

.baza-pay-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.baza-pay-pill {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #f1f5f9;
  border: 1px solid var(--baza-border);
  color: var(--baza-text);
}

.baza-offer__aside {
  text-align: center;
  padding: 20px;
  border-radius: var(--baza-radius-sm);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--baza-border);
}

.baza-offer__amount {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--baza-text);
}

.baza-offer__once {
  margin: 8px 0 16px;
  font-size: 14px;
  color: var(--baza-muted);
  font-weight: 600;
}

.baza-offer__support {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--baza-muted);
  line-height: 1.45;
}

.baza-offer__steps-title {
  margin: 28px 0 0;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--baza-text);
}

/* Steps */
.baza-steps {
  display: grid;
  gap: 14px;
}

.baza-steps--tight {
  margin-top: 14px;
}

@media (min-width: 768px) {
  .baza-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.baza-step {
  position: relative;
  padding: 18px 16px;
  background: var(--baza-surface);
  border-radius: var(--baza-radius-sm);
  border: 1px solid var(--baza-border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.baza-step__num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  background: linear-gradient(135deg, var(--baza-primary), #3b82f6);
  color: #fff;
  margin-bottom: 10px;
}

.baza-step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.baza-step p {
  margin: 0;
  font-size: 13px;
  color: var(--baza-muted);
  line-height: 1.45;
}

/* Benefits grid */
.baza-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .baza-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 639px) {
  .baza-grid--3 {
    grid-template-columns: 1fr;
  }
}

.baza-grid--spaced {
  margin-top: 14px;
}

.baza-card {
  height: 100%;
  padding: 18px 16px;
  background: var(--baza-surface);
  border-radius: var(--baza-radius-sm);
  border: 1px solid var(--baza-border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.baza-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
}

.baza-card h3 .bi {
  color: var(--baza-primary);
  font-size: 1.15rem;
}

.baza-card ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 14px;
  color: var(--baza-muted);
  line-height: 1.5;
}

.baza-card ul li {
  margin-bottom: 6px;
}

.baza-prose {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--baza-border);
  font-size: 15px;
  color: var(--baza-muted);
  line-height: 1.65;
}

.baza-prose p {
  margin: 0 0 12px;
}

.baza-prose p:last-child {
  margin-bottom: 0;
}

/* Warning */
.baza-legal {
  padding: 16px 18px;
  border-radius: var(--baza-radius-sm);
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  color: #78350f;
  font-size: 14px;
  line-height: 1.5;
}

.baza-legal strong {
  color: #92400e;
}

/* Final CTA */
.baza-final {
  text-align: center;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.baza-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.baza-final__lead {
  margin: 0 auto 4px;
  max-width: 480px;
}

/* Sticky mobile bar */
.baza-sticky {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  padding: 10px 14px calc(10px + var(--baza-safe-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--baza-border);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .baza-sticky {
    display: none;
  }
}

.baza-sticky__price {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--baza-text);
}

.baza-sticky__price span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--baza-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.baza-sticky .baza-btn--primary {
  flex: 1;
  max-width: 220px;
  padding: 12px 16px;
  font-size: 14px;
}

/* Footer */
.baza-footer {
  text-align: center;
  padding: 28px 16px 36px;
  color: var(--baza-muted);
  font-size: 14px;
}

.baza-to-top {
  position: fixed;
  right: 18px;
  bottom: calc(88px + var(--baza-safe-bottom));
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--baza-primary);
  color: #fff !important;
  box-shadow: var(--baza-shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 850;
  border: none;
  font-size: 1.25rem;
}

@media (min-width: 769px) {
  .baza-to-top {
    bottom: 24px;
  }
}

.baza-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.baza-to-top:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .baza-btn:hover,
  .baza-carousel__arrow:hover,
  .baza-to-top:hover {
    transform: none;
  }

  .baza-carousel .baza-track {
    transition: none;
  }
}
