/* ============================================================
   БЕЗАГЕНТА · ОБЩИЕ СТИЛИ ЛЕНДИНГА
   Подключается всеми версиями страниц (index / 2k / 3k …)
   ============================================================ */
:root{
  --c-bg: #F4F7FC;
  --c-card: #FFFFFF;
  --c-bg-soft: #EDF2FA;
  --c-bg-softer: #F7FAFE;
  --c-primary: #2F7BFF;
  --c-primary-dark: #1E5FD6;
  --c-primary-soft: #E8F0FF;
  --c-success: #22C55E;
  --c-success-soft: #DCFCE7;
  --c-text: #0B1B34;
  --c-text-2: #4A5876;
  --c-text-3: #8A96AC;
  --c-border: #E3EAF4;
  --c-divider: #EEF2F9;
  --shadow-card: 0 4px 24px rgba(20, 40, 90, 0.06);
  --shadow-btn: 0 8px 22px rgba(47, 123, 255, 0.32);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;
}

*,*::before,*::after{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; }

body{
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #C8D2E0;
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 0 60px;
  line-height: 1.45;
}
@media (max-width: 440px){
  body{ padding: 0; gap: 0; background: var(--c-bg); }
}

.phone{
  width: 390px;
  background: var(--c-bg);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,30,80,0.18), 0 8px 24px rgba(10,30,80,0.10);
  position: relative;
}
@media (max-width: 440px){
  .phone{ border-radius: 0; box-shadow: none; width: 100%; }
}

button{ font-family: inherit; cursor: pointer; }

/* ============ ТИПОГРАФИКА ============ */
h1, h2, h3, h4, p { margin: 0; }
.h-display{
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}
.h-display .accent{ color: var(--c-primary); }
.h-section{
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 800;
  text-wrap: balance;
}
.h-card{
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}
.body-lg{ font-size: 15.5px; line-height: 1.5; color: var(--c-text-2); font-weight: 500; }
.body-md{ font-size: 14.5px; line-height: 1.5; color: var(--c-text-2); font-weight: 500; }
.body-sm{ font-size: 13px; line-height: 1.45; color: var(--c-text-3); font-weight: 500; }
.caption{ font-size: 12px; color: var(--c-text-3); font-weight: 600; }

/* ============ EYEBROW ============ */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.eyebrow .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 0 0 rgba(47,123,255,0.5);
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,123,255,0.6); }
  60% { box-shadow: 0 0 0 6px rgba(47,123,255,0); }
}

/* ============ BUTTONS ============ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  letter-spacing: -0.005em;
  width: 100%;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary{
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover{ background: var(--c-primary-dark); transform: translateY(-1px); }
.btn-primary:active{ transform: translateY(0); }
.btn-primary.disabled{
  background: #B8C5DC;
  box-shadow: none;
  cursor: not-allowed;
}

/* ============ TOPBAR ============ */
.topbar{
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-divider);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 5;
}
.logo{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.logo-mark{
  width: 26px; height: 26px;
  background: var(--c-primary);
  color: #fff;
  display: grid; place-items: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.topbar .badge{
  font-size: 10.5px;
  font-weight: 700;
  color: var(--c-text-2);
  background: var(--c-card);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}
.topbar .badge .dot{
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-success);
  flex-shrink: 0;
}

/* ============ SECTIONS ============ */
section{ padding: 28px 20px 32px; position: relative; }
section.alt{ background: var(--c-card); }
section.alt-soft{ background: linear-gradient(180deg, var(--c-bg-softer) 0%, var(--c-bg-soft) 100%); }

/* ============ HERO TOP NOTICE ============ */
.notice{
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-text-2);
}
.notice .ico{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ============ HERO ============ */
.hero{
  background: linear-gradient(180deg, #EEF4FD 0%, var(--c-bg) 60%);
  padding-top: 24px;
  padding-bottom: 36px;
}
.hero h1{ margin-bottom: 14px; }
.hero .hero-sub{ margin-bottom: 18px; }

/* ============ TRUST CHIPS ============ */
.trust-list{
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
.trust-row{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--c-text);
  font-weight: 600;
  background: var(--c-card);
  padding: 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-divider);
}
.trust-row .check{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-success-soft);
  color: var(--c-success);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ============ QUIZ ============ */
.quiz{
  background: var(--c-card);
  border-radius: 24px;
  border: 1px solid var(--c-divider);
  box-shadow: var(--shadow-card);
  padding: 20px 18px 18px;
  margin-bottom: 14px;
}
.quiz-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.quiz-title{
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.quiz-progress{
  display: flex;
  gap: 4px;
}
.quiz-progress i{
  width: 18px; height: 4px; border-radius: 2px;
  background: var(--c-border);
}
.quiz-progress i.done{ background: var(--c-primary); }

.q-step{ margin-bottom: 16px; }
.q-step:last-of-type{ margin-bottom: 0; }
.q-label{
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-text-3);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.q-options{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.q-options-3{
  grid-template-columns: 1fr 1fr 1fr;
}
.q-options-3 .q-opt{
  padding: 13px 6px;
  font-size: 13px;
}
.q-opt{
  border: 1.5px solid var(--c-border);
  background: var(--c-card);
  color: var(--c-text);
  padding: 13px 12px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: all .15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.q-opt .ico{ color: var(--c-text-3); }
.q-opt:hover{ border-color: var(--c-primary); }
.q-opt.selected{
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  box-shadow: 0 4px 12px rgba(47,123,255,0.25);
}
.q-opt.selected .ico{ color: #fff; }

.q-field{
  position: relative;
  display: flex;
  align-items: center;
  background: var(--c-bg-softer);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 0 14px;
  transition: border-color .15s, background .15s;
}
.q-field:focus-within{
  border-color: var(--c-primary);
  background: var(--c-card);
}
.q-field .ico-left{
  color: var(--c-text-3);
  flex-shrink: 0;
  margin-right: 10px;
}
.q-field input{
  flex: 1;
  height: 48px;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
}
.q-field input::placeholder{ color: var(--c-text-3); font-weight: 500; }
.q-field .suffix{
  font-weight: 700;
  color: var(--c-text-3);
  font-size: 14px;
  margin-left: 8px;
}

.q-budget-presets{
  display: flex;
  gap: 6px;
  margin-top: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.q-budget-presets::-webkit-scrollbar{ display: none; }
.q-budget-presets button{
  background: transparent;
  border: 1.5px solid var(--c-border);
  color: var(--c-text-2);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: all .15s;
}
.q-budget-presets button:hover{ border-color: var(--c-primary); color: var(--c-primary); }
.q-budget-presets button.active{
  background: var(--c-primary-soft);
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.under-cta{
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  color: var(--c-text-3);
  font-weight: 500;
  line-height: 1.45;
}
.under-cta svg{ display: none; }

/* ============ EXAMPLE PREVIEW ============ */
.example{
  margin-top: 26px;
}
.example-head{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.example-head .line{
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.example-card{
  background: var(--c-card);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-divider);
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
}
.example-card .img{
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--c-bg-soft) center/cover;
  position: relative;
}
.example-card .match-pill{
  position: absolute;
  top: 6px; left: 6px;
  background: var(--c-success);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.example-card .body{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.example-card .price{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.example-card .tags{
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.example-card .tag{
  background: var(--c-bg-soft);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--c-text-2);
  padding: 3px 7px;
  border-radius: 6px;
}
.example-card .tag.success{ background: var(--c-success-soft); color: #166534; }
.example-card .params{
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--c-text-3);
  font-weight: 500;
}
.example-card .params .p{ display: flex; align-items: center; gap: 4px; }

/* ============ HOW IT WORKS (Экран 2) ============ */
.section-title{
  margin-bottom: 10px;
}
.section-deck{
  margin-bottom: 24px;
}

.step{
  background: var(--c-card);
  border: 1px solid var(--c-divider);
  border-radius: 18px;
  padding: 18px 18px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
}
.step .num{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(47,123,255,0.25);
}
.step h3{
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.step p{
  margin: 0;
  font-size: 13.5px;
  color: var(--c-text-2);
  line-height: 1.5;
}

/* ============ KEY BENEFITS (без спама) ============ */
.benefits{
  background: linear-gradient(180deg, var(--c-bg-softer) 0%, var(--c-bg-soft) 100%);
  border-radius: 20px;
  padding: 20px 18px;
  margin: 28px 0 24px;
  border: 1px solid var(--c-divider);
}
.benefits-title{
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.benefit{
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--c-divider);
}
.benefit:first-of-type{ border-top: none; padding-top: 4px; }
.benefit .ico{
  width: 32px; height: 32px;
  background: var(--c-card);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--c-primary);
  box-shadow: 0 2px 6px rgba(20,40,90,0.05);
}
.benefit .t{
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 1px;
}
.benefit .d{
  font-size: 12.5px;
  color: var(--c-text-3);
  font-weight: 500;
}

/* ============ STICKY CTA on screen 2 ============ */
.cta-block{
  text-align: center;
  padding: 24px 0 0;
}

/* ============ SCREEN DIVIDER ============ */
.screen-divider{
  height: 24px;
  background: linear-gradient(180deg, var(--c-bg) 0%, transparent 100%);
}

/* ============ BUDGET ANCHOR LINE (one-liner) ============ */
.budget-line{
  display: block;
  padding: 0 0 4px;
  margin: -4px 0 22px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-text-3);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.budget-line b{
  color: var(--c-text);
  font-weight: 800;
}

/* ============ TRUST CARDS (3-in-row) ============ */
.trust-cards{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.trust-card{
  background: var(--c-card);
  border: 1px solid var(--c-divider);
  border-radius: var(--r-md);
  padding: 12px 8px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-card .ico{
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--c-success-soft);
  color: var(--c-success);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-card .t{
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-text);
  letter-spacing: -0.005em;
  text-wrap: balance;
}

/* Variant B — list with green checks (default style v1 stays available) */
body[data-style="b"] .trust-cards{ display: none; }
body[data-style="b"] .trust-list-v2{ display: grid; }
.trust-list-v2{ display: none; gap: 8px; margin-bottom: 24px; }
.trust-list-v2 .row{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--c-text);
  font-weight: 600;
  background: var(--c-card);
  padding: 11px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-divider);
}
.trust-list-v2 .check{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-success-soft);
  color: var(--c-success);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* Variant C — minimal one-line chips */
body[data-style="c"] .trust-cards{ display: none; }
body[data-style="c"] .trust-chips{ display: flex; }
.trust-chips{
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.trust-chips .chip{
  background: var(--c-card);
  border: 1px solid var(--c-divider);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text);
  display: flex; align-items: center; gap: 6px;
}
.trust-chips .chip svg{ color: var(--c-success); }

/* ============ MINI-SCREEN 1.5 (why convenient) ============ */
.why-list{
  display: grid;
  gap: 10px;
  margin-top: 22px;
  margin-bottom: 28px;
}
.why-row{
  background: var(--c-card);
  border: 1px solid var(--c-divider);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.why-row .num{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}
.why-row .t{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.35;
  text-wrap: pretty;
}

/* ============ STYLE B — soft pill accent ============ */
body[data-style="b"] .budget-line{
  display: inline-block;
  padding: 6px 12px;
  background: var(--c-primary-soft);
  color: var(--c-primary-dark);
  border-radius: var(--r-pill);
  font-size: 12.5px;
}
body[data-style="b"] .budget-line b{ color: var(--c-primary-dark); }

/* ============ STYLE C — same as default (flat one-liner) ============ */

/* ============================================================
   DESKTOP LAYOUT (≥1024px)
   ============================================================ */
.desktop-only{ display: none; }
.desktop-sticky-notice{ display: none; }
.desktop-hero-image{ display: none; }
.desktop-cta-banner{ display: none; }
.hero-ui-trust{ display: none; } /* буллиты-оверлей на фото — только на мобильном */

/* ============================================================
   ОБЩИЙ ФУТЕР САЙТА (оформлен как на сервисе bezz-agenta.ru)
   Виден на всех экранах: лендинги + юридические страницы.
   ============================================================ */
.site-footer{
  width: 100%;
  background: var(--c-card);
  border-top: 1px solid var(--c-divider);
  padding: 28px 20px;
}
.site-footer__inner{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.site-footer__links{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
}
.site-footer__links a{
  color: var(--c-text-2);
  text-decoration: none;
  transition: color .15s;
}
.site-footer__links a:hover{ color: var(--c-primary); }
.site-footer__dot{ color: var(--c-text-3); }
.site-footer__copy{
  font-size: 12.5px;
  color: var(--c-text-3);
  font-weight: 500;
}

/* ============================================================
   ЮРИДИЧЕСКИЕ СТРАНИЦЫ (privacy / terms)
   ============================================================ */
body.legal-page{
  display: block;
  background: var(--c-bg);
  padding: 0;
  gap: 0;
  align-items: stretch;
}
.legal-topbar{
  background: var(--c-card);
  border-bottom: 1px solid var(--c-divider);
}
.legal-topbar__inner{
  max-width: 840px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-back{
  color: var(--c-text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color .15s;
}
.legal-back:hover{ color: var(--c-primary); }
.legal-doc{
  max-width: 840px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}
.legal-doc h1{
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 8px;
}
.legal-doc .legal-meta{
  font-size: 13px;
  color: var(--c-text-3);
  font-weight: 600;
  margin-bottom: 28px;
}
.legal-doc h2{
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 800;
  margin: 32px 0 12px;
}
.legal-doc p{
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-2);
  margin-bottom: 14px;
}
.legal-doc ul{
  margin: 0 0 14px;
  padding-left: 22px;
}
.legal-doc li{
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text-2);
  margin-bottom: 8px;
}
.legal-doc a{ color: var(--c-primary); }
.legal-doc .legal-requisites{
  background: var(--c-card);
  border: 1px solid var(--c-divider);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-text);
}
@media (min-width: 768px){
  .legal-doc h1{ font-size: 34px; }
}

/* ============================================================
   HERO-ФОТО на мобильном/планшете (< 1024px):
   показываем под подзаголовком (на десктопе уезжает в правую колонку).
   ============================================================ */
@media (max-width: 1023px){
  .desktop-hero-image{
    display: block;
    position: relative;
    margin: 2px 0 22px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #EEE center/cover no-repeat;
    box-shadow: 0 16px 40px rgba(10,30,80,0.16), 0 4px 14px rgba(10,30,80,0.08);
  }
  .desktop-hero-image::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10,20,40,0.18) 100%);
    pointer-events: none;
  }
  .hero-ui-badge{
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--c-text);
    color: #fff;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: -0.005em;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 2;
  }
  .hero-ui-badge .pulse{
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--c-success);
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: pulse 2s infinite;
  }
  .hero-ui-card{
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 13px 14px;
    box-shadow: 0 12px 30px rgba(10,30,80,0.15);
    z-index: 2;
  }
  .hero-ui-card .label{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--c-primary);
    margin-bottom: 8px;
  }
  .hero-ui-card .label .dot{
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--c-success);
    box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
  }
  .hero-ui-card .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 0;
    border-top: 1px solid var(--c-divider);
    font-size: 12px;
    color: var(--c-text);
    font-weight: 600;
  }
  .hero-ui-card .row:first-of-type{ border-top: none; padding-top: 0; }
  .hero-ui-card .row .price{ font-weight: 800; white-space: nowrap; }
  .hero-ui-card .row .match{
    background: var(--c-success-soft);
    color: #166534;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
  }
  /* На мобильном карточку «Пример подборки» прячем, а на её место кладём буллиты доверия */
  .hero-ui-card{ display: none; }
  #screen1 .hero .trust-list-v2{ display: none; }
  .hero-ui-trust{
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 6px 14px;
    box-shadow: 0 12px 30px rgba(10,30,80,0.15);
    z-index: 2;
  }
  .hero-ui-trust .row{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
  }
  .hero-ui-trust .check{
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--c-success-soft);
    color: var(--c-success);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  @keyframes pulse{
    0%{ box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    70%{ box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  }
}

@media (min-width: 1024px){
  body{
    display: block;
    background: var(--c-bg);
    padding: 0;
    gap: 0;
  }

  .mobile-only{ display: none !important; }
  .desktop-only{ display: block; }

  /* Превращаем "телефоны" в обычные секции */
  .phone{
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--c-bg);
    overflow: visible;
  }

  /* Контейнер для секций */
  .phone > section{
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
  }

  /* === STICKY NOTICE сверху === */
  .desktop-sticky-notice{
    display: block;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-divider);
    padding: 14px 0;
  }
  .desktop-sticky-notice .inner{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: -0.005em;
  }
  .desktop-sticky-notice .ico{
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--c-primary-soft);
    color: var(--c-primary);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .desktop-sticky-notice b{
    color: var(--c-primary);
    font-weight: 800;
  }

  /* === HERO 50/50 === */
  #screen1{ background: var(--c-bg); }
  #screen1 .hero{
    background: none;
    padding-top: 64px;
    padding-bottom: 72px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  /* Левая текстовая колонка — JS оборачивает все non-image потомки в .hero-text-col */
  #screen1 .hero .hero-text-col{
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  /* Скрываем мобильную верхнюю плашку на десктопе (notice уходит внутрь .hero-text-col после JS-обёртки) */
  #screen1 .hero .notice{ display: none; }
  /* Левая колонка — текст и CTA */
  #screen1 .hero #heroH1{
    font-size: 40px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  #screen1 .hero #heroSub{
    height: auto !important;
    font-size: 18px;
    line-height: 1.5;
    color: var(--c-text-2);
    margin-bottom: 16px;
    max-width: 540px;
  }
  #screen1 .hero #budgetLine{
    height: auto !important;
    padding: 0 !important;
    margin: 0 0 28px;
    font-size: 14px;
    color: var(--c-text-3);
  }
  #screen1 .hero #budgetLine b{ color: var(--c-text); }
  /* На десктопе принудительно показываем крупные карточки доверия,
     даже если выбран стиль B (мобильный список) */
  #screen1 .hero .trust-cards{
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    max-width: 580px;
  }
  #screen1 .hero .trust-list-v2,
  #screen1 .hero .trust-chips{ display: none !important; }
  #screen1 .hero .trust-card{
    padding: 18px 14px 16px;
    border-radius: 16px;
  }
  #screen1 .hero .trust-card .ico{
    width: 40px; height: 40px;
    border-radius: 12px;
  }
  #screen1 .hero .trust-card .ico svg{ width: 20px; height: 20px; }
  #screen1 .hero .trust-card .t{
    font-size: 13px;
    margin-top: 4px;
  }
  #screen1 .hero #qSubmit{
    font-size: 16px;
    padding: 18px 28px;
    width: auto;
    min-width: 320px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  #screen1 .hero .under-cta{
    text-align: left;
    margin-top: 14px;
    font-size: 13px;
  }

  /* === Правая колонка — фото + UI-оверлей === */
  .desktop-hero-image{
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #EEE center/cover no-repeat;
    box-shadow: 0 24px 60px rgba(10,30,80,0.18), 0 8px 24px rgba(10,30,80,0.10);
    flex: 0 0 44%;
    align-self: stretch;
    max-height: 640px;
  }
  .desktop-hero-image::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,20,40,0.18) 100%);
    pointer-events: none;
  }
  /* UI-карточка поверх фото — пример подборки */
  .hero-ui-card{
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 12px 32px rgba(10,30,80,0.15);
    z-index: 2;
  }
  .hero-ui-card .label{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-primary);
    margin-bottom: 10px;
  }
  .hero-ui-card .label .dot{
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--c-success);
    box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
  }
  .hero-ui-card .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid var(--c-divider);
    font-size: 13px;
    color: var(--c-text);
    font-weight: 600;
  }
  .hero-ui-card .row:first-of-type{ border-top: none; padding-top: 0; }
  .hero-ui-card .row .price{
    font-weight: 800;
    color: var(--c-text);
  }
  .hero-ui-card .row .match{
    background: var(--c-success-soft);
    color: #166534;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
  }
  /* Плавающий бэдж поверх фото */
  .hero-ui-badge{
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--c-text);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: -0.005em;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-ui-badge .pulse{
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-success);
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: pulse 2s infinite;
  }
  @keyframes pulse{
    0%{ box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    70%{ box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  }

  /* === ЭКРАН 2 — How it works === */
  #screen2{ background: var(--c-card); }
  #screen2 .alt-soft{
    background: none !important;
    padding: 96px 0 !important;
    text-align: center;
  }
  #screen2 .eyebrow{ margin: 0 auto; }
  #screen2 .h-section{
    font-size: 44px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
    margin-top: 18px;
    margin-bottom: 12px;
  }
  #screen2 .section-deck{
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto 56px;
  }
  /* 3 шага в ряд */
  #screen2 .alt-soft > .step,
  #screen2 .alt-soft > .step + .step,
  #screen2 .alt-soft > .step + .step + .step{
    display: none; /* спрячем оригинальные мобильные шаги */
  }
  .desktop-steps{
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
    text-align: left;
  }
  .desktop-steps .step-card{
    background: var(--c-bg-softer);
    border: 1px solid var(--c-divider);
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
  }
  .desktop-steps .step-card .num{
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: var(--c-primary);
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    opacity: 0.9;
  }
  .desktop-steps .step-card h3{
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .desktop-steps .step-card p{
    font-size: 15px;
    line-height: 1.5;
    color: var(--c-text-2);
    margin: 0;
  }
  /* Скрываем мобильную CTA внутри screen2 */
  #screen2 .alt-soft > .btn-primary,
  #screen2 .alt-soft > .under-cta{ display: none; }

  /* === ЭКРАН 1.5 — Why it's convenient (теперь после steps) === */
  #screen15{ background: var(--c-bg); }
  #screen15 .alt-soft{
    background: none !important;
    padding: 96px 0 !important;
    text-align: center;
  }
  #screen15 .eyebrow{ margin: 0 auto; }
  #screen15 .h-section{
    font-size: 44px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
    margin-top: 18px;
    margin-bottom: 12px;
  }
  #screen15 .section-deck{
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto 56px;
  }
  /* 2×2 сетка */
  #screen15 .why-list{
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 auto 48px;
    max-width: 1000px;
    text-align: left;
  }
  #screen15 .why-row{
    padding: 28px 28px;
    border-radius: 20px;
    grid-template-columns: 44px 1fr;
    align-items: center;
  }
  #screen15 .why-row .num{
    width: 44px; height: 44px;
    font-size: 17px;
  }
  #screen15 .why-row .t{
    font-size: 17px;
    line-height: 1.4;
  }
  /* Скрываем мобильную CTA */
  #screen15 .alt-soft > .btn-primary,
  #screen15 .alt-soft > .under-cta{ display: none; }

  /* === ФИНАЛЬНЫЙ CTA-БАННЕР === */
  .desktop-cta-banner{
    display: block;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .desktop-cta-banner::before{
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
  }
  .desktop-cta-banner .inner{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
  }
  .desktop-cta-banner h2{
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 800;
    margin: 0 0 14px;
    text-wrap: balance;
  }
  .desktop-cta-banner p{
    font-size: 18px;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.5;
  }
  .desktop-cta-banner .cta{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--c-primary);
    font-family: inherit;
    font-weight: 800;
    font-size: 17px;
    border: none;
    padding: 20px 36px;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    letter-spacing: -0.005em;
    transition: transform .15s ease;
    text-decoration: none;
  }
  .desktop-cta-banner .cta:hover{ transform: translateY(-2px); }
  .desktop-cta-banner .micro{
    margin-top: 18px;
    font-size: 13.5px;
    opacity: 0.75;
  }

  /* === ОБЩИЙ ФУТЕР на десктопе === */
  .site-footer{ padding: 36px 80px; }
  .site-footer__inner{
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  /* Общий .btn-primary на десктопе — чуть крупнее */
  .btn-primary{
    font-size: 15px;
    padding: 16px 24px;
  }
}

@media (min-width: 1280px){
  .phone > section,
  .desktop-sticky-notice .inner,
  .desktop-cta-banner .inner,
  .site-footer{
    padding-left: 100px;
    padding-right: 100px;
  }
}
