/* ==========================================================================
   Пригони — Landing styles (B2B for import companies)
   On top of foundations.css. All classes `pg-` prefixed.
   ========================================================================== */

html { scroll-behavior: smooth; }
body { background: var(--bg-page); overflow-x: hidden; }

/* --- Container --- */
.pg-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Nav --- */
.pg-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,243,245,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.pg-nav-row {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}
.pg-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 900; font-stretch: 90%;
  font-size: 22px; letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink-900);
}
.pg-logo-mark {
  width: 38px; height: 38px; border-radius: 9px;
  object-fit: cover; display: inline-block;
}
.pg-logo-beta {
  font-family: var(--font-mono); font-size: 9px;
  background: var(--teal-300); color: var(--ink-900);
  padding: 2px 5px; border-radius: 3px;
  letter-spacing: 0.1em; margin-left: 4px;
  font-weight: 700;
}
.pg-nav-links { display: flex; gap: 24px; flex: 1; }
.pg-nav-link {
  font-size: 14px; font-weight: 600; color: var(--fg-secondary);
  cursor: pointer; transition: color 180ms;
}
.pg-nav-link:hover { color: var(--ink-900); }
.pg-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink-900); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 700;
  transition: background 180ms;
  border: 0; cursor: pointer;
}
.pg-nav-cta:hover { background: var(--ink-700); }

/* --- Hero --- */
.pg-hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(95,222,213,0.12) 0%, transparent 60%),
    var(--bg-page);
}
.pg-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink-900); color: var(--teal-300);
  padding: 6px 14px; border-radius: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.pg-hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-300);
  box-shadow: 0 0 0 4px rgba(95,222,213,0.3);
  animation: pg-pulse 1.8s infinite;
}
@keyframes pg-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(95,222,213,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(95,222,213,0); }
}
.pg-hero-title {
  font-family: var(--font-display); font-weight: 900; font-stretch: 88%;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9; letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 22px 0 24px;
  text-wrap: balance;
}
.pg-hero-title em {
  font-style: italic; font-stretch: 78%;
  color: var(--teal-500);
}
.pg-hero-title-strike {
  position: relative; display: inline-block;
  color: var(--ink-300);
}
.pg-hero-title-strike::after {
  content: ""; position: absolute;
  left: -4%; right: -4%; top: 50%;
  height: 6px; background: var(--ink-900);
  transform: translateY(-50%) rotate(-2deg);
}
.pg-hero-sub {
  font-size: 19px; line-height: 1.5;
  color: var(--fg-secondary);
  max-width: 640px;
  margin-bottom: 32px;
}
.pg-hero-sub b { color: var(--ink-900); font-weight: 700; }
.pg-hero-cta-row {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-bottom: 36px;
}
.pg-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink-900); color: #fff;
  padding: 18px 28px; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  border: 0; cursor: pointer;
  transition: background 180ms, transform 120ms;
  letter-spacing: -0.005em;
}
.pg-cta-primary:hover { background: var(--ink-700); }
.pg-cta-primary:active { transform: translateY(1px); }
.pg-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink-900);
  padding: 16px 22px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--ink-900);
  cursor: pointer;
  transition: all 180ms;
}
.pg-cta-secondary:hover { background: var(--ink-900); color: #fff; }
.pg-hero-trust {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--fg-secondary);
}
.pg-hero-avatars { display: flex; }
.pg-hero-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink-900); color: var(--teal-300);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-stretch: 90%;
  font-size: 11px;
  border: 2px solid var(--bg-page);
  margin-left: -10px;
}
.pg-hero-avatar:first-child { margin-left: 0; }
.pg-hero-trust b { color: var(--ink-900); }

.pg-hero-image-wrap {
  position: relative;
  margin-top: 40px;
  padding: 0 40px;
}
.pg-hero-image {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 40px 60px rgba(11,13,17,0.35));
}
.pg-hero-image-floats {
  position: absolute; inset: 0;
  pointer-events: none;
}
.pg-float-card {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 30px -8px rgba(11,13,17,0.18);
  font-size: 13px;
  display: flex; align-items: center; gap: 12px;
  pointer-events: auto;
}
.pg-float-card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--teal-100); color: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pg-float-card-icon.dark { background: var(--ink-900); color: var(--teal-300); }
.pg-float-card-title {
  font-family: var(--font-display); font-weight: 900; font-stretch: 92%;
  font-size: 16px; line-height: 1;
}
.pg-float-card-sub {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--fg-muted); margin-top: 2px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.pg-float-1 { top: 12%; left: 4%; }
.pg-float-2 { top: 28%; right: 4%; }
.pg-float-3 { bottom: 12%; left: 8%; }

/* --- Stats bar --- */
.pg-stats {
  background: var(--ink-900);
  color: #fff;
  margin-top: -60px;
  position: relative;
  z-index: 3;
  border-radius: 24px;
  margin-left: 24px; margin-right: 24px;
}
.pg-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 24px;
}
.pg-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pg-stat:last-child { border-right: 0; }
.pg-stat-val {
  font-family: var(--font-display); font-weight: 900; font-stretch: 88%;
  font-size: 52px; letter-spacing: -0.02em; line-height: 1;
  color: var(--teal-300);
}
.pg-stat-val sup {
  font-size: 22px; color: rgba(255,255,255,0.5);
  font-stretch: 100%; vertical-align: super;
  font-weight: 700;
}
.pg-stat-lbl {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.6); margin-top: 8px;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* --- Section primitives --- */
.pg-section {
  padding: 120px 0;
  position: relative;
}
.pg-section-sm { padding: 80px 0; }

.pg-section-head { margin-bottom: 56px; }
.pg-section-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase; letter-spacing: 0.16em;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.pg-section-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--teal-500);
}
.pg-section-title {
  font-family: var(--font-display); font-weight: 900; font-stretch: 88%;
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.02em; line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 18px; text-wrap: balance;
  max-width: 900px;
}
.pg-section-title em {
  font-style: italic; font-stretch: 78%; color: var(--teal-500);
}
.pg-section-sub {
  font-size: 18px; line-height: 1.5;
  color: var(--fg-secondary); max-width: 620px;
}

/* --- Problem section (paired contrast) --- */
.pg-problem {
  background: var(--ink-900);
  color: #fff;
  border-radius: 32px;
  margin: 0 24px;
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.pg-problem .pg-section-eyebrow { color: var(--teal-300); }
.pg-problem .pg-section-eyebrow::before { background: var(--teal-300); }
.pg-problem .pg-section-title { color: #fff; }
.pg-problem .pg-section-sub { color: rgba(255,255,255,0.7); }
.pg-problem-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.pg-problem-list {
  display: flex; flex-direction: column; gap: 4px;
}
.pg-problem-row {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pg-problem-row:last-child { border-bottom: 0; }
.pg-problem-num {
  font-family: var(--font-mono); font-size: 13px;
  color: rgba(255,255,255,0.4); font-weight: 600;
  letter-spacing: 0.1em;
  flex-shrink: 0; width: 32px;
}
.pg-problem-text {
  flex: 1;
  font-family: var(--font-display); font-weight: 700; font-stretch: 95%;
  font-size: 22px; letter-spacing: -0.005em; line-height: 1.2;
}
.pg-problem-tag {
  background: rgba(255,255,255,0.06); color: var(--teal-300);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 5px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.pg-problem-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.pg-problem-visual-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.5); letter-spacing: 0.14em; text-transform: uppercase;
}
.pg-problem-visual-num {
  font-family: var(--font-display); font-weight: 900; font-stretch: 88%;
  font-size: 96px; line-height: 0.9; letter-spacing: -0.03em;
  color: var(--teal-300);
  margin: 16px 0 12px;
}
.pg-problem-visual-bars {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 24px;
}
.pg-problem-bar-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
}
.pg-problem-bar-lbl {
  width: 80px; color: rgba(255,255,255,0.7);
  font-family: var(--font-mono); letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 10px;
}
.pg-problem-bar {
  flex: 1; height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden;
}
.pg-problem-bar-fill {
  height: 100%; background: var(--teal-300); border-radius: 4px;
}
.pg-problem-bar-val {
  font-family: var(--font-mono); font-weight: 700;
  color: #fff; width: 40px; text-align: right;
}

/* --- How it works --- */
.pg-how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pg-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 180ms, transform 280ms;
}
.pg-step:hover {
  border-color: var(--ink-900);
  transform: translateY(-4px);
}
.pg-step-num {
  font-family: var(--font-display); font-weight: 900; font-stretch: 88%;
  font-size: 64px; letter-spacing: -0.04em; line-height: 0.85;
  color: var(--teal-300);
  -webkit-text-stroke: 1.5px var(--teal-500);
}
.pg-step-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-900);
  background: var(--ink-50);
  border-radius: 10px;
}
.pg-step-head {
  display: flex; align-items: start; justify-content: space-between;
}
.pg-step-title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 92%;
  font-size: 18px; letter-spacing: -0.01em; line-height: 1.15;
  text-transform: uppercase;
}
.pg-step-text {
  font-size: 14px; color: var(--fg-secondary); line-height: 1.5;
}

/* --- Bento benefits --- */
.pg-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.pg-bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 220ms, transform 280ms;
}
.pg-bento-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.pg-bento-card-eyebrow {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: var(--teal-700); letter-spacing: 0.12em; text-transform: uppercase;
}
.pg-bento-card-title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 90%;
  font-size: 24px; letter-spacing: -0.01em; line-height: 1.05;
  text-transform: uppercase;
}
.pg-bento-card-text {
  font-size: 14px; color: var(--fg-secondary); line-height: 1.5;
  margin-top: auto;
}
.pg-bento-1 { grid-column: span 4; grid-row: span 2; background: var(--ink-900); color: #fff; }
.pg-bento-1 .pg-bento-card-eyebrow { color: var(--teal-300); }
.pg-bento-1 .pg-bento-card-text { color: rgba(255,255,255,0.7); }
.pg-bento-2 { grid-column: span 2; }
.pg-bento-3 { grid-column: span 2; }
.pg-bento-4 { grid-column: span 2; background: var(--teal-300); }
.pg-bento-5 { grid-column: span 2; }
.pg-bento-6 { grid-column: span 4; }

.pg-bento-bignum {
  font-family: var(--font-display); font-weight: 900; font-stretch: 88%;
  font-size: 96px; letter-spacing: -0.025em; line-height: 0.85;
}
.pg-bento-bignum sup {
  font-size: 32px; vertical-align: super; opacity: 0.5;
  font-stretch: 100%;
}
.pg-bento-pillrow {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 12px;
}
.pg-bento-pill {
  background: rgba(255,255,255,0.08); color: #fff;
  padding: 5px 10px; border-radius: 6px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em;
}
.pg-bento-feature-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pg-bento-feature-row:last-child { border-bottom: 0; }
.pg-bento-feature-row svg { flex-shrink: 0; }

/* --- Product preview --- */
.pg-preview-frame {
  background: var(--ink-900);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 40px 80px -20px rgba(11,13,17,0.4);
  margin-top: 40px;
}
.pg-preview-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 14px;
}
.pg-preview-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.pg-preview-url {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  padding: 6px 14px; border-radius: 8px;
  font-family: var(--font-mono); font-size: 11px;
  margin-left: 10px;
}
.pg-preview-screen {
  background: var(--bg-page);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 540px;
}
.pg-preview-side {
  background: var(--bg-surface);
  border-right: 1px solid var(--border-soft);
  padding: 20px 16px;
}
.pg-preview-side-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 900; font-stretch: 90%;
  font-size: 18px; text-transform: uppercase;
  margin-bottom: 22px;
}
.pg-preview-side-section {
  font-family: var(--font-mono); font-size: 9px; font-weight: 600;
  color: var(--fg-muted); letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 8px 6px;
}
.pg-preview-side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--fg-secondary);
  margin-bottom: 2px;
}
.pg-preview-side-item.active {
  background: var(--ink-900); color: #fff;
}
.pg-preview-side-item .pg-side-count {
  margin-left: auto;
  background: var(--ink-50); color: var(--fg-muted);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 5px;
}
.pg-preview-side-item.active .pg-side-count {
  background: rgba(255,255,255,0.15); color: #fff;
}
.pg-preview-main { padding: 24px; }
.pg-preview-main-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 22px; }
.pg-preview-main-title {
  font-family: var(--font-display); font-weight: 900; font-stretch: 90%;
  font-size: 32px; text-transform: uppercase; letter-spacing: -0.015em;
  line-height: 0.95;
}
.pg-preview-main-title em { color: var(--teal-500); font-style: italic; font-stretch: 78%; }
.pg-preview-leads { display: flex; flex-direction: column; gap: 10px; }
.pg-preview-lead {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
}
.pg-preview-lead.hot {
  border-color: var(--teal-500);
  background: var(--teal-50);
}
.pg-preview-lead-info { display: flex; flex-direction: column; gap: 4px; }
.pg-preview-lead-title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 92%;
  font-size: 15px; text-transform: uppercase; letter-spacing: -0.005em;
}
.pg-preview-lead-meta {
  display: flex; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; color: var(--fg-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.pg-preview-lead-num {
  font-family: var(--font-display); font-weight: 900; font-stretch: 92%;
  font-size: 18px; text-align: right;
  font-variant-numeric: tabular-nums;
}
.pg-preview-lead-num-lbl {
  font-family: var(--font-mono); font-size: 9px;
  color: var(--fg-muted); letter-spacing: 0.1em;
}
.pg-preview-lead-btn {
  background: var(--ink-900); color: #fff;
  padding: 8px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 700; border: 0;
}
.pg-preview-lead.hot .pg-preview-lead-btn {
  background: var(--teal-500); color: var(--ink-900);
}

/* --- Pricing --- */
.pg-pricing {
  background: var(--ink-900);
  color: #fff;
  border-radius: 32px;
  padding: 64px 56px;
  margin: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pg-pricing-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--teal-300); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.pg-pricing-title {
  font-family: var(--font-display); font-weight: 900; font-stretch: 88%;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff;
  margin: 0 0 18px; text-wrap: balance;
}
.pg-pricing-title em { color: var(--teal-300); font-style: italic; font-stretch: 78%; }
.pg-pricing-sub {
  font-size: 16px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.pg-pricing-features {
  display: flex; flex-direction: column; gap: 12px;
}
.pg-pricing-feat {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #fff;
  font-weight: 500;
}
.pg-pricing-feat-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-300); color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pg-pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 32px;
  position: relative;
}
.pg-pricing-card-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.pg-pricing-card-tag {
  background: var(--teal-300); color: var(--ink-900);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px;
  letter-spacing: 0.12em;
}
.pg-pricing-card-price {
  display: flex; align-items: baseline; gap: 8px;
  margin: 16px 0 6px;
}
.pg-pricing-card-price-val {
  font-family: var(--font-display); font-weight: 900; font-stretch: 88%;
  font-size: 84px; letter-spacing: -0.03em; line-height: 0.85;
  color: #fff;
}
.pg-pricing-card-price-unit { font-size: 18px; color: rgba(255,255,255,0.6); font-weight: 600; }
.pg-pricing-card-meta { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.pg-pricing-card-strikethrough {
  text-decoration: line-through; color: rgba(255,255,255,0.4);
  font-size: 14px; margin-right: 8px;
}
.pg-pricing-card-cta {
  width: 100%; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--teal-300); color: var(--ink-900);
  padding: 18px 24px; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  border: 0; cursor: pointer;
  transition: background 180ms;
}
.pg-pricing-card-cta:hover { background: var(--teal-400); }
.pg-pricing-spots {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; color: rgba(255,255,255,0.7);
  font-family: var(--font-mono); letter-spacing: 0.06em;
}
.pg-pricing-spots b { color: var(--teal-300); }

/* --- FAQ --- */
.pg-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.pg-faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 22px 24px;
  cursor: pointer;
}
.pg-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 700; font-stretch: 95%;
  font-size: 17px; letter-spacing: -0.005em;
}
.pg-faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-200);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-900);
  flex-shrink: 0;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.pg-faq-item.open .pg-faq-toggle {
  background: var(--ink-900); color: #fff; border-color: var(--ink-900);
}
.pg-faq-a {
  font-size: 14px; line-height: 1.55;
  color: var(--fg-secondary);
  max-height: 0; overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.22,1,0.36,1), margin-top 220ms;
}
.pg-faq-item.open .pg-faq-a {
  max-height: 200px;
  margin-top: 14px;
}

/* --- Final CTA --- */
.pg-final-cta {
  background:
    radial-gradient(80% 80% at 50% 0%, var(--teal-300) 0%, var(--teal-200) 70%);
  border-radius: 32px;
  padding: 80px 56px;
  margin: 0 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-final-cta-title {
  font-family: var(--font-display); font-weight: 900; font-stretch: 88%;
  font-size: clamp(48px, 6vw, 88px); line-height: 0.92;
  letter-spacing: -0.025em; text-transform: uppercase;
  color: var(--ink-900);
  margin: 0 auto 18px;
  max-width: 920px; text-wrap: balance;
}
.pg-final-cta-title em { font-style: italic; font-stretch: 78%; }
.pg-final-cta-sub {
  font-size: 18px; color: var(--ink-700);
  max-width: 540px; margin: 0 auto 32px; line-height: 1.5;
}
.pg-form-row {
  display: flex; gap: 8px; max-width: 480px; margin: 0 auto 14px;
  background: var(--bg-surface);
  border-radius: 14px; padding: 6px;
  box-shadow: 0 16px 32px -8px rgba(11,13,17,0.18);
}
.pg-form-row input {
  flex: 1; border: 0; outline: 0; background: transparent;
  padding: 12px 16px;
  font: 500 15px var(--font-sans); color: var(--ink-900);
}
.pg-form-row input::placeholder { color: var(--fg-muted); }
.pg-form-row button {
  background: var(--ink-900); color: #fff;
  padding: 14px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 700; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.pg-form-row button:hover { background: var(--ink-700); }
.pg-final-cta-meta {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-700);
  letter-spacing: 0.08em; opacity: 0.75;
}

/* --- Footer --- */
.pg-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  margin-top: 80px;
}
.pg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.pg-footer-brand {
  font-family: var(--font-display); font-weight: 900; font-stretch: 90%;
  font-size: 28px; letter-spacing: -0.02em; color: #fff;
  text-transform: uppercase; margin-bottom: 16px;
}
.pg-footer-text { font-size: 14px; line-height: 1.5; max-width: 320px; }
.pg-footer-col h4 {
  font-family: var(--font-display); font-weight: 900; font-stretch: 90%;
  font-size: 13px; color: #fff; text-transform: uppercase;
  letter-spacing: 0.06em; margin: 0 0 14px;
}
.pg-footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pg-footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); cursor: pointer; }
.pg-footer-col a:hover { color: var(--teal-300); }
.pg-footer-bot {
  display: flex; justify-content: space-between; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* --- Reveal animation --- */
.pg-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.22,1,0.36,1), transform 720ms cubic-bezier(0.22,1,0.36,1);
}
.pg-reveal.in {
  opacity: 1; transform: translateY(0);
}
.pg-reveal-2 { transition-delay: 80ms; }
.pg-reveal-3 { transition-delay: 160ms; }
.pg-reveal-4 { transition-delay: 240ms; }
.pg-reveal-5 { transition-delay: 320ms; }

/* --- Marquee logos --- */
.pg-marquee {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-surface);
}
.pg-marquee-track {
  display: flex; gap: 56px;
  animation: pg-marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.pg-marquee-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-stretch: 92%;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink-400);
  text-transform: uppercase;
}
@keyframes pg-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pg-stats-inner { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .pg-stat:nth-child(2) { border-right: 0; }
  .pg-problem { padding: 56px 32px; }
  .pg-problem-grid { grid-template-columns: 1fr; }
  .pg-how { grid-template-columns: 1fr 1fr; }
  .pg-bento {
    grid-template-columns: 1fr 1fr;
  }
  .pg-bento-1, .pg-bento-6 { grid-column: span 2; }
  .pg-bento-1 { grid-row: auto; }
  .pg-pricing { grid-template-columns: 1fr; padding: 48px 32px; }
  .pg-faq-grid { grid-template-columns: 1fr; }
  .pg-footer-grid { grid-template-columns: 1fr 1fr; }
  .pg-preview-screen { grid-template-columns: 1fr; }
  .pg-preview-side { display: none; }
}
@media (max-width: 640px) {
  .pg-nav-links { display: none; }
  .pg-section { padding: 80px 0; }
  .pg-stats-inner { grid-template-columns: 1fr; row-gap: 20px; padding: 28px 24px; }
  .pg-stat { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
  .pg-stat:last-child { border-bottom: 0; }
  .pg-how { grid-template-columns: 1fr; }
  .pg-bento { grid-template-columns: 1fr; }
  .pg-bento-1, .pg-bento-6 { grid-column: auto; }
  .pg-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pg-problem { padding: 40px 24px; border-radius: 24px; }
  .pg-final-cta { padding: 56px 24px; }
  .pg-pricing { padding: 40px 24px; }
  .pg-hero-image-wrap { padding: 0 12px; }
  .pg-float-card { display: none; }
}

/* ── Компактный hero (без hero-картинки) ───────────────────── */
.pg-hero-compact {
  padding: 56px 0 80px;
}
.pg-hero-title-sm {
  font-size: clamp(34px, 5.4vw, 64px);
  margin: 20px 0 20px;
}

/* ── Реальный скриншот продукта вместо фейк-дашборда ────────── */
.pg-preview-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: var(--bg-page);
}

/* ── Hero: реальные BMW PNG вместо плейсхолдера ─────────────── */
.pg-hero-cars {
  position: relative;
  max-width: 920px;
  margin: 44px auto 0;
  height: clamp(180px, 26vw, 320px);
}
.pg-hero-car {
  position: absolute;
  bottom: 0;
  height: auto;
  filter: drop-shadow(0 26px 40px rgba(11,13,17,0.28));
}
.pg-hero-car-front {
  left: 50%;
  width: clamp(380px, 64%, 640px);
  transform: translateX(-46%);
  z-index: 2;
}
.pg-hero-car-back {
  left: 50%;
  width: clamp(300px, 52%, 520px);
  transform: translateX(-92%) translateY(-6%);
  opacity: 0.5;
  filter: drop-shadow(0 18px 30px rgba(11,13,17,0.18)) grayscale(0.15);
  z-index: 1;
}
@media (max-width: 760px) {
  .pg-hero-car-back { display: none; }
  .pg-hero-car-front { transform: translateX(-50%); width: 92%; }
  .pg-hero-cars { height: 200px; }
}
