:root {
  --bg: #ffffff;
  --bg-subtle: #F7F8FB;
  --bg-dark: #0A0A23;
  --text: #0A0A23;
  --text-muted: #5E6772;
  --text-light: #8A93A0;
  --border: #E8EAF0;
  --border-strong: #D4D8E2;
  --accent: #4A7CF6;
  --accent-dark: #2D5BDE;
  --accent-soft: #EEF3FF;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 35, 0.04);
  --shadow: 0 4px 14px rgba(10, 10, 35, 0.06);
  --shadow-lg: 0 12px 40px rgba(10, 10, 35, 0.08);
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

/* ---------- PROMO BAR ---------- */
.lp-promo {
  display: block;
  position: relative;
  z-index: 51;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  text-align: center;
  font-size: 14px; font-weight: 500;
  line-height: 1.4;
  padding: 9px 16px;
  transition: padding-top 0.2s ease;
}
.lp-promo:has(.lp-promo__code.is-copied) {
  padding-top: 36px;
}
.lp-promo__text { display: inline-block; }
.lp-promo b { font-weight: 800; }
.lp-promo__code {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  padding: 1px 8px;
  margin: 0 2px;
  color: #fff; font: inherit;
  font-weight: 700; letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.lp-promo__code:hover { background: rgba(255, 255, 255, 0.28); border-color: #fff; }
.lp-promo__code.is-copied { background: rgba(255, 255, 255, 0.32); border-style: solid; }
.lp-promo__code::after {
  content: "Скопировано";
  position: absolute; left: 50%; bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  background: var(--text); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0;
  white-space: nowrap; padding: 4px 9px; border-radius: 6px;
  opacity: 0; pointer-events: none;
  z-index: 1;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.lp-promo__code.is-copied::after { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 600px) {
  .lp-promo { font-size: 12.5px; padding: 8px 12px; }
}

/* ---------- HEADER ---------- */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.lp-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}
.lp-logo {
  justify-self: start;
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--text);
}
.lp-logo__img { height: 30px; width: auto; display: block; }

.lp-nav {
  justify-self: center;
  display: flex; align-items: center; gap: 28px;
}
.lp-nav__link {
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: color .15s;
}
.lp-nav__link:hover { color: var(--text); }

.lp-header__tools {
  display: flex; align-items: center; gap: 10px;
  justify-self: end;
}
.lp-nav__actions { display: flex; align-items: center; gap: 10px; }

.lp-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.lp-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.lp-header--open .lp-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-header--open .lp-burger span:nth-child(2) { opacity: 0; }
.lp-header--open .lp-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-mobile-menu {
  display: none;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; border: 1px solid transparent;
  font-size: 14px; font-weight: 600; line-height: 1;
  text-decoration: none; cursor: pointer; transition: all .15s;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; box-shadow: 0 4px 14px rgba(74, 124, 246, 0.35);
}
.btn--primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74, 124, 246, 0.45); }
.btn--ghost {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--bg-subtle); color: var(--text); }
.btn--light {
  background: #fff; color: var(--text); border-color: var(--border);
}
.btn--light:hover { background: var(--bg-subtle); color: var(--text); }
.btn--lg { padding: 15px 26px; font-size: 15px; border-radius: 12px; }
.btn--block { width: 100%; white-space: normal; line-height: 1.3; }

/* ---------- HERO ---------- */
.hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(74,124,246,0.08), transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(74,124,246,0.05), transparent 40%);
}
.hero__inner { max-width: 900px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.08; font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero__title span {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  font-size: 19px; line-height: 1.55; color: var(--text-muted);
  max-width: 680px; margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 24px; }
.hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 14px;
}
.hero__trust-item i { color: var(--success); font-size: 14px; }
.hero--launch {
  background:
    radial-gradient(circle at 90% 15%, rgba(74,124,246,0.1), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(74,124,246,0.06), transparent 45%);
}

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
.section--subtle { background: var(--bg-subtle); }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__eyebrow {
  display: inline-block; padding: 5px 12px; border-radius: 100px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 16px;
}
.section__title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section__subtitle {
  font-size: 18px; line-height: 1.55; color: var(--text-muted);
}

/* ---------- AUDIENCE ---------- */
.audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.audience-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border);
  transition: all .2s;
}
.audience-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.audience-card__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.audience-card__title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.audience-card__text { color: var(--text-muted); font-size: 15px; line-height: 1.55; }

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature {
  padding: 28px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border);
}
.feature__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 18px;
}
.feature__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature__text { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* ---------- STEPS ---------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  counter-reset: step-counter;
}
.step {
  padding: 28px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border);
  position: relative;
}
.step__num {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; margin-bottom: 18px;
}
.step__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step__text { font-size: 14px; line-height: 1.55; color: var(--text-muted); }

/* ---------- EXAMPLES ---------- */
.examples-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.examples-grid--industries { grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---------- INDUSTRY LANDING (/examples/<slug>/) ---------- */
.idemo-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.icollage {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  align-self: center;
}
.icollage img {
  width: 100%; border-radius: var(--radius-lg); object-fit: cover; display: block;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.icollage img:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.icollage img:nth-child(2) { aspect-ratio: 1 / 1; transform: rotate(-1.5deg); }
.icollage img:nth-child(3) { aspect-ratio: 1 / 1; transform: rotate(1.5deg); margin-top: 10px; }
.iblock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.iblock {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px;
}
.iblock--accent { border-top: 3px solid var(--primary); }
.iblock__icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; background: var(--accent-soft); color: var(--primary);
  font-size: 18px; margin-bottom: 14px;
}
.iblock__title { font-weight: 700; font-size: 19px; margin-bottom: 10px; }
.iblock__text { color: var(--text-muted); line-height: 1.65; }
.idemo {
  display: flex; gap: 14px; align-items: center; margin-top: 18px;
  padding: 14px 18px; border: 1px dashed var(--border); border-radius: var(--radius-lg);
  background: #fff; width: fit-content;
}
.idemo__label { font-weight: 600; }
.idemo__domain { color: var(--text-muted); font-size: 14px; }
.idemo__theme { color: var(--text-muted); font-size: 13px; margin-top: 10px; }
.check-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.check-list li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.55; }
.check-list li i {
  color: var(--primary); margin-top: 4px; flex: 0 0 auto; font-size: 14px;
}
.iprice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 1024px) {
  .idemo-grid { grid-template-columns: 1fr; }
  .icollage { max-width: 560px; }
}
@media (max-width: 760px) {
  .iblock-grid, .iprice-grid, .check-list { grid-template-columns: 1fr; }
}
.examples-grid--industries .example__name { font-size: 16px; }
.examples-grid--industries .example__body {
  padding: 16px; gap: 12px; flex-direction: column; align-items: flex-start;
}
@media (max-width: 1100px) {
  .examples-grid--industries { grid-template-columns: repeat(2, 1fr); }
}
.example {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: #fff;
  transition: all .2s; display: flex; flex-direction: column;
}
.example:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.example__preview {
  aspect-ratio: 16 / 10; overflow: hidden; position: relative;
  border-bottom: 1px solid var(--border);
}
.example__iframe-scale {
  position: absolute; top: 0; left: 0;
  width: 1600px; height: 1000px;
  transform: scale(0.4375); transform-origin: top left;
  border: 0; pointer-events: none;
}
.example__body {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.example__info { flex: 1; min-width: 0; }
.example__name { font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.example__desc { font-size: 13px; color: var(--text-muted); }

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
  margin-bottom: 32px;
}
.price-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.price-card--featured {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,124,246,0.12);
}
.price-card__badge {
  position: absolute; top: -10px; right: 16px;
  padding: 4px 10px; border-radius: 100px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 600;
}
.price-card__head { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.price-card__name { font-size: 15px; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.price-card__price { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.price-card__price small { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.price-card__list { list-style: none; padding: 0; margin: 0; flex: 1; }
.price-card__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; padding: 6px 0; color: var(--text);
}
.price-card__list li i { color: var(--success); font-size: 14px; margin-top: 4px; flex-shrink: 0; }
.price-total {
  padding: 24px 28px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-dark), #1a1a3a);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.price-total__label { font-size: 15px; opacity: 0.85; }
.price-total__value { font-size: 26px; font-weight: 800; }

/* ---------- LAUNCH PAGE ---------- */
.launch-checklist {
  max-width: 980px;
  margin: 0 auto;
}
.launch-checklist ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}
.launch-checklist li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .15s, box-shadow .15s;
}
.launch-checklist li:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.launch-checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--success);
  font-size: 14px;
}

/* Пакеты запуска */
.launch-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
}
.pkg-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,124,246,0.12), var(--shadow);
}
.pkg-card__badge {
  position: absolute;
  top: -11px; left: 26px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pkg-card__name {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pkg-card__for {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 42px;
  margin-bottom: 18px;
}
.pkg-card__price {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pkg-card__price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pkg-card__list {
  list-style: none;
  margin: 0 0 24px;
  flex: 1;
}
.pkg-card__list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 14px;
  line-height: 1.5;
}
.pkg-card__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 7px;
  color: var(--success);
  font-size: 13px;
}
.launch-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  background: #fff; margin-bottom: 12px; overflow: hidden;
}
.faq-item__q {
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 16px; font-weight: 600;
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q i {
  color: var(--text-muted); transition: transform .2s;
  font-size: 14px; flex-shrink: 0;
}
.faq-item[open] .faq-item__q i { transform: rotate(180deg); color: var(--accent); }
.faq-item__a {
  padding: 0 24px 22px; color: var(--text-muted);
  font-size: 15px; line-height: 1.65;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, var(--bg-dark), #161638);
  color: #fff;
}
.final-cta__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.final-cta__text { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto 32px; }
.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.lp-footer {
  background: #fff; border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.lp-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 40px;
}
.lp-footer__col-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.lp-footer__list { list-style: none; padding: 0; margin: 0; }
.lp-footer__list li { margin-bottom: 10px; }
.lp-footer__list a { color: var(--text-muted); font-size: 14px; text-decoration: none; }
.lp-footer__list a:hover { color: var(--accent); }
.lp-footer__bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted); font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}

/* ---------- FORMS ---------- */
.auth-wrap {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 24px;
  background: var(--bg-subtle);
}
.auth-card {
  width: 100%; max-width: 480px;
  padding: 40px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.auth-card__head { margin-bottom: 28px; }
.auth-card__title { font-size: 26px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.auth-card__subtitle { color: var(--text-muted); font-size: 15px; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.form-label__req { color: var(--danger); margin-left: 2px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 14px; font-size: 15px; font-family: inherit;
  border: 1px solid var(--border-strong); border-radius: 10px;
  background: #fff; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,124,246,0.14);
}
.form-input-group {
  display: flex; align-items: stretch;
  border: 1px solid var(--border-strong); border-radius: 10px;
  overflow: hidden; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form-input-group:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,124,246,0.14);
}
.form-input-group__input {
  flex: 1; border: 0; outline: none;
  padding: 12px 14px; font-size: 15px; font-family: inherit;
}
.form-input-group__suffix {
  padding: 12px 14px; background: var(--bg-subtle);
  color: var(--text-muted); font-size: 14px;
  border-left: 1px solid var(--border);
  display: flex; align-items: center;
}
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-muted);
  line-height: 1.5; margin: 8px 0 20px;
}
.form-check input { margin-top: 3px; }

.captcha-stub {
  padding: 14px; border: 1px dashed var(--border-strong);
  border-radius: 10px; background: var(--bg-subtle);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 20px;
}

.form-row--captcha {
  margin: 16px 0;
  max-width: 100%;
  overflow: hidden;
  container-type: inline-size;
}
.form-row--captcha .smart-captcha { transform-origin: left top; }
@container (max-width: 319px) {
  .form-row--captcha { height: calc(100cqw * 70 / 320); }
  .form-row--captcha .smart-captcha { transform: scale(calc(100cqw / 320px)); }
}

.auth-foot { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-muted); }

/* ---------- LEGAL / TEXT ---------- */
.text-hero { padding: 64px 0 32px; background: var(--bg-subtle); border-bottom: 1px solid var(--border); }
.text-hero__title { font-size: clamp(30px, 3.8vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.text-hero__meta { color: var(--text-muted); font-size: 14px; }
.text-body { padding: 48px 0 96px; max-width: 800px; }
.text-body h2 { font-size: 22px; font-weight: 700; margin: 36px 0 14px; letter-spacing: -0.01em; }
.text-body h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; }
.text-body p { margin-bottom: 14px; color: var(--text); line-height: 1.7; }
.text-body code { font-size: 0.9em; background: var(--bg-subtle); padding: 2px 6px; border-radius: 4px; border: 1px solid var(--border); }
.text-body ul, .text-body ol { margin: 0 0 14px 24px; line-height: 1.7; }
.text-body li { margin-bottom: 6px; }
.text-body table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 15px; }
.text-body th, .text-body td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
.text-body thead th { background: var(--bg-subtle); font-weight: 600; }
.text-body tbody td:last-child { text-align: right; white-space: nowrap; }

/* ---------- FOOTER SOCIALS ---------- */
.lp-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.lp-footer__socials {
  display: flex; align-items: center; gap: 10px; margin-top: 28px;
}
.lp-footer__social-link {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: opacity .15s, transform .15s;
  opacity: .9;
}
.lp-footer__social-link:hover { opacity: 1; transform: translateY(-2px); }
.lp-footer__social-link img {
  width: 38px; height: 38px;
  object-fit: contain;
  display: block;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .lp-header__inner {
    display: flex;
    justify-content: space-between;
  }
  .lp-nav { display: none; }
  .lp-burger { display: flex; }
  .lp-nav__actions .lp-header__in-menu { display: none; }
  .lp-logo__img { max-width: min(42vw, 168px); height: auto; max-height: 28px; }

  .lp-header--open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .lp-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 49;
    padding: 28px 24px 40px;
    background: var(--bg);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .25s ease;
    visibility: hidden;
  }
  .lp-header--open .lp-mobile-menu {
    transform: translateX(0);
    visibility: visible;
  }
  .lp-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .lp-mobile-menu__link {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
  }
  .lp-mobile-menu__link:hover { color: var(--accent); }
  .lp-mobile-menu__actions { margin-top: auto; }

  body.lp-menu-open { overflow: hidden; }

  .features-grid, .audience-grid, .pricing-grid, .steps-grid { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 48px; }
  .example__iframe-scale { width: 1400px; height: 875px; transform: scale(0.35); }
  .launch-checklist ul { grid-template-columns: 1fr; }
  .launch-packages { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .lp-footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .final-cta__actions .btn { width: 100%; }
}

/* Попап заявки на запуск под ключ */
.form-hint--error { color: var(--danger); }
body.lp-modal-open { overflow: hidden; }
.lp-modal {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  align-items: flex-start; justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
}
.lp-modal.is-open,
.lp-modal:target { display: flex; }
.lp-modal__backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 10, 35, 0.55);
  backdrop-filter: blur(2px);
}
.lp-modal__dialog {
  position: relative;
  width: 100%; max-width: 460px;
  margin: auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}
.lp-modal__close {
  position: absolute; top: 14px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--text-muted); font-size: 16px; text-decoration: none;
}
.lp-modal__close:hover { background: var(--bg-subtle); color: var(--text); }
.lp-modal__head { margin-bottom: 20px; }
.lp-modal__title { font-size: 22px; font-weight: 800; color: var(--text); }
.lp-modal__subtitle { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.lp-modal__error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #B91C1C;
  padding: 10px 14px; border-radius: 8px;
  font-size: 13px; margin-bottom: 16px;
}
.lp-modal__hp { position: absolute; left: -10000px; width: 1px; height: 1px; }
.lp-modal__success { text-align: center; padding: 16px 0 4px; }
.lp-modal__success-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(16, 185, 129, 0.12);
  color: var(--success); font-size: 24px;
}
.lp-modal__success .lp-modal__subtitle { margin-bottom: 22px; }
@media (max-width: 480px) {
  .lp-modal__dialog { padding: 24px 20px; }
  .lp-modal__title { font-size: 19px; }
}
