
<!-- LEON GROUP · стили страницы 1С:Фреш. Вставлять первым блоком T123 (или в Настройки сайта → Ещё → HTML-код в ) -->


  * { box-sizing: border-box; margin: 0; padding: 0; }
  /* Тильда подключает свой сброс (content-box) — перебиваем его для наших блоков */
  .lg, .lg *, .lg *::before, .lg *::after { box-sizing: border-box !important; }
  .lg { overflow-x: clip; }
  .lg img { max-width: 100%; }
  html { scroll-behavior: smooth; scroll-padding-top: calc(var(--lg-header-h, 77px) + 12px); }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0F0F14;
    background: #FAFAFA;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  /* === LAYOUT === */
  .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 60px;
  }
  section { padding: 100px 0; }
  section.tight { padding: 60px 0; }

  /* === TYPOGRAPHY === */
  h1 { font-size: 68px; font-weight: 800; letter-spacing: -2px; line-height: 1.05; }
  h2 { font-size: 44px; font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 20px; }
  h3 { font-size: 22px; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }

  .section-desc { font-size: 18px; color: #4A4A55; max-width: 680px; margin-bottom: 48px; }

  .highlight { background: #FFD700; padding: 0 8px; border-radius: 4px; }

  /* === HERO === */
  .hero-wrap {
    padding: 64px 0 80px;
  }
  .hero {
    max-width: 860px;
  }
  .hero h1 { font-size: 76px; }
  .hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  .hero-cta-primary {
    display: inline-flex;
    align-items: center;
    background: #0F0F14;
    color: #fff;
    padding: 18px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.15s;
  }
  .hero-cta-primary:hover { transform: translateY(-1px); }
  .hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: #FFD700;
    color: #0F0F14;
    padding: 18px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.15s;
  }
  .hero-cta-secondary:hover { transform: translateY(-1px); background: #FFE94A; }
  .pre-headline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0F0F14;
    color: #FFD700;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .pre-headline .dot {
    width: 8px; height: 8px; background: #FFD700; border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
  }
  .hero h1 { margin-bottom: 32px; }

  .cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #0F0F14;
    border: 1.5px solid #0F0F14;
    padding: 12px 20px; border-radius: 100px;
    font-weight: 600; font-size: 14px;
    text-decoration: none; transition: all 0.2s;
    cursor: pointer;
  }
  .cta-secondary:hover { background: #0F0F14; color: #fff; }

  /* === TRUST STRIP === */
  .trust-strip {
    background: #fff;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
  }
  .trust-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4A4A55;
    font-weight: 500;
  }
  .trust-strip-item .check {
    width: 20px; height: 20px;
    background: #0F7A3F; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 11px; font-weight: 900;
  }

  /* === CALCULATOR === */
  .calc-shell {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: start;
    margin-top: 24px;
  }
  .calc-wrapper { max-width: 520px; }
  .calc-side {
    display: grid;
    gap: 20px;
    align-content: start;
    padding-top: 0;
  }
  .calc-intro h2 { margin-bottom: 12px; }
  .calc-intro .section-desc { margin-bottom: 8px; }
  .calc-side-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border: 1.5px solid #EAEAEA;
    border-radius: 16px;
  }
  .calc-side-ico {
    width: 44px; height: 44px;
    background: #FFF4B8;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .calc-side-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .calc-side-desc {
    font-size: 14px;
    color: #4A4A55;
    line-height: 1.5;
  }
  .partner-label {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px; font-size: 14px; color: #4A4A55;
  }
  .partner-badge {
    background: #FFECEC; color: #E30613;
    padding: 4px 10px; border-radius: 6px;
    font-weight: 700; font-size: 12px;
  }
  .calculator {
    background: #fff; border-radius: 24px; padding: 28px;
    border: 1.5px solid #EAEAEA; position: relative; overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 15, 20, 0.06);
  }
  .ribbon {
    position: absolute; top: 0; left: 0; right: 0;
    background: #0F0F14; color: #FFD700;
    padding: 10px 20px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.4px; text-transform: uppercase;
    display: flex; align-items: center; justify-content: space-between;
  }
  .ribbon-highlight {
    background: #FFD700; color: #0F0F14;
    padding: 3px 10px; border-radius: 100px; font-size: 12px;
  }
  .calc-body { padding-top: 42px; }
  .calc-label {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: #7A7A85; margin-bottom: 10px;
  }
  .select-box {
    background: #F5F5F5; padding: 16px 20px; border-radius: 14px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 16px; font-weight: 600;
    margin-bottom: 22px; cursor: pointer;
  }
  .select-arrow { color: #999; }
  .users-row {
    display: flex; justify-content: space-between;
    align-items: baseline; margin-bottom: 10px;
  }
  .users-count { font-size: 22px; font-weight: 700; }
  .users-count small { font-size: 13px; color: #4A4A55; font-weight: 500; margin-left: 4px; }
  .slider {
    position: relative; height: 6px; background: #EAEAEA;
    border-radius: 100px; margin: 16px 0 8px;
  }
  .slider-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 8%; background: #FFD700; border-radius: 100px;
  }
  .slider-handle {
    position: absolute; left: 8%; top: 50%;
    transform: translate(-50%, -50%);
    width: 22px; height: 22px;
    background: #0F0F14; border: 3px solid #FFD700;
    border-radius: 50%;
  }
  .slider-marks {
    display: flex; justify-content: space-between;
    font-size: 11px; color: #999; margin-bottom: 22px; padding: 0 2px;
  }

  .price-block {
    background: #FFF9D9; padding: 22px; border-radius: 16px;
    margin-bottom: 20px; border: 1.5px solid #FFE94A;
  }
  .price-per-day {
    font-size: 14px; color: #4A4A55; margin-bottom: 4px;
    font-weight: 500;
  }
  .price-per-day b { color: #0F0F14; font-weight: 800; }
  .price-month-big {
    font-size: 44px; font-weight: 800; letter-spacing: -1.2px;
    line-height: 1.05; margin-bottom: 8px; color: #0F0F14;
  }
  .price-month-big .unit { font-size: 20px; color: #4A4A55; font-weight: 500; }
  .price-year-small {
    font-size: 13px; color: #4A4A55;
    padding-top: 10px; margin-top: 8px;
    border-top: 1px dashed #FFE94A;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .price-year-small b { font-weight: 700; color: #0F0F14; }
  .payment-badge {
    background: #0F0F14; color: #FFD700;
    padding: 3px 8px; border-radius: 6px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.3px;
  }
  .free-trial-note {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #0F7A3F;
    margin-top: 12px; font-weight: 600;
  }

  .cta-primary {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; width: 100%;
    background: #0F0F14; color: #fff;
    padding: 18px; border-radius: 14px;
    font-size: 16px; font-weight: 700;
    border: none; cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s;
  }
  .cta-primary:hover { transform: translateY(-1px); }
  .cta-subline {
    text-align: center; margin-top: 12px;
    font-size: 13px; color: #4A4A55; line-height: 1.5;
  }
  .cta-subline .sep { color: #C8C8C8; margin: 0 8px; }
  .calc-link {
    text-align: center; margin-top: 16px;
    display: block; color: #4A4A55;
    text-decoration: none; font-size: 14px; font-weight: 500;
  }
  .calc-link:hover { color: #0F0F14; }

  /* === СЕКЦИЯ: СРАВНИТЕЛЬНАЯ ТАБЛИЦА === */
  .compare-table {
    background: #fff;
    border: 1.5px solid #EAEAEA;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 24px;
  }
  .ct-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    border-bottom: 1px solid #F0F0F0;
  }
  .ct-cell {
    padding: 18px 24px;
    font-size: 15px;
    line-height: 1.35;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ct-cell small {
    display: block;
    font-size: 12px;
    color: #7A7A85;
    font-weight: 400;
    margin-top: 3px;
  }
  .ct-param {
    font-weight: 600;
    color: #0F0F14;
  }
  .ct-local {
    color: #4A4A55;
    background: #FAFAFA;
    border-left: 1px solid #F0F0F0;
    border-right: 1px solid #F0F0F0;
  }
  .ct-fresh {
    background: #FFF9D9;
    color: #0F0F14;
    font-weight: 600;
    position: relative;
  }
  .ct-fresh b {
    font-weight: 800;
    color: #0F0F14;
  }
  .ct-head .ct-cell {
    background: #0F0F14;
    color: #B8B8C0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 24px;
    border: none;
  }
  .ct-head .ct-param { color: #7A7A85; }
  .ct-head .ct-fresh {
    background: #FFD700;
    color: #0F0F14;
    font-weight: 900;
    letter-spacing: 0.8px;
  }
  .ct-head .ct-cell small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: none;
    color: #7A7A85;
    margin-top: 4px;
  }
  .ct-head .ct-local small { color: #7A7A85; }
  .ct-head .ct-fresh small { color: #2A2A30; }
  .ct-total .ct-param,
  .ct-total .ct-local,
  .ct-total .ct-fresh {
    font-size: 17px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 700;
  }
  .ct-total .ct-fresh b { font-size: 20px; }
  .ct-savings {
    background: linear-gradient(135deg, #FFD700 0%, #FFE94A 100%);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 2px solid #0F0F14;
    flex-wrap: wrap;
  }
  .ct-savings-label {
    font-size: 18px;
    font-weight: 800;
    color: #0F0F14;
  }
  .ct-savings-value {
    font-size: 32px;
    font-weight: 900;
    color: #0F0F14;
    letter-spacing: -1px;
  }
  .ct-cta {
    margin-top: 28px;
    text-align: center;
  }
  .ct-cta-btn {
    display: inline-flex;
    width: auto;
    padding: 18px 32px;
  }
  .ct-note {
    margin-top: 16px;
    font-size: 13px;
    color: #7A7A85;
    line-height: 1.5;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  /* === СЕКЦИЯ: ЧТО ВХОДИТ === */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .feature-card {
    background: #fff;
    border: 1.5px solid #EAEAEA;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.2s;
  }
  .feature-card:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
  }
  .feature-icon {
    width: 52px; height: 52px;
    background: #FFF4B8;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .feature-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .feature-desc {
    font-size: 14px;
    color: #4A4A55;
    line-height: 1.5;
  }

  /* === СЕКЦИЯ: КОНФИГУРАЦИИ === */
  .configs-section {
    background: #0F0F14;
    color: #fff;
    border-radius: 32px;
    padding: 60px;
  }
  .configs-section h2 { color: #fff; }
  .configs-section .section-desc { color: #B8B8C0; }
  .configs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
  .config-group h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #FFD700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  }
  .config-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .config-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #E8E8E8;
    line-height: 1.4;
  }
  .config-list li::before {
    content: '›';
    color: #FFD700;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    margin-top: 1px;
  }
  .configs-note {
    margin-top: 36px;
    padding: 20px 24px;
    background: rgba(255, 215, 0, 0.08);
    border-left: 3px solid #FFD700;
    border-radius: 8px;
    font-size: 15px;
    color: #E8E8E8;
    line-height: 1.5;
  }
  .configs-note b { color: #fff; }
  .configs-cta {
    margin-top: 32px;
    text-align: center;
  }
  .configs-cta-btn {
    display: inline-flex;
    width: auto;
    padding: 18px 32px;
    background: #FFD700;
    color: #0F0F14;
  }
  .configs-cta-btn:hover { background: #FFE94A; }
  .configs-cta-note {
    margin-top: 14px;
    font-size: 13px;
    color: #B8B8C0;
  }

  /* === СЕКЦИЯ: FAQ ВЕРХНЕГО УРОВНЯ === */
  .quick-faq {
    background: #FFF9D9;
    border-radius: 32px;
    padding: 60px;
  }
  .quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .quick-faq-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  }
  .qfi-icon {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .qfi-q {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .qfi-a {
    font-size: 14px;
    color: #4A4A55;
    line-height: 1.5;
  }
  .qfi-a .yes { color: #0F7A3F; font-weight: 700; }
  .qfi-a .no { color: #E30613; font-weight: 700; }

  /* === СЕКЦИЯ: ДЛЯ КОГО === */
  .segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
  }
  .segment-card {
    background: #fff;
    border: 1.5px solid #EAEAEA;
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
  }
  .segment-card:hover {
    border-color: #0F0F14;
    transform: translateY(-2px);
  }
  .segment-badge {
    display: inline-block;
    background: #FFD700;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #0F0F14;
    margin-bottom: 20px;
  }
  .segment-emoji { font-size: 44px; margin-bottom: 16px; display: block; }
  .segment-title { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
  .segment-desc { font-size: 15px; color: #4A4A55; line-height: 1.5; margin-bottom: 20px; }
  .segment-configs {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding-top: 20px; border-top: 1px dashed #EAEAEA;
  }
  .segment-configs span {
    background: #F5F5F5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #4A4A55;
  }
  .segments-footer {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: #F5F5F5;
    border-radius: 16px;
    font-size: 16px;
    color: #4A4A55;
  }
  .segments-footer b { color: #0F0F14; font-weight: 700; }

  /* === СЕКЦИЯ: АКЦИИ === */
  .promos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
  }
  .promo-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1.5px solid #EAEAEA;
    position: relative;
    overflow: hidden;
  }
  .promo-card.hot {
    background: linear-gradient(135deg, #FFF9D9 0%, #FFD700 100%);
    border-color: #FFD700;
  }
  .promo-tag {
    position: absolute;
    top: 24px; right: 24px;
    background: #E30613;
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .promo-label {
    display: inline-block;
    background: #0F0F14;
    color: #FFD700;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .promo-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .promo-title .amt {
    background: #0F0F14;
    color: #FFD700;
    padding: 2px 10px;
    border-radius: 8px;
    display: inline-block;
  }
  .promo-desc {
    font-size: 15px;
    color: #4A4A55;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .promo-card.hot .promo-desc { color: #2A2A30; }
  .promo-until {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4A4A55;
    margin-bottom: 24px;
  }
  .promo-until .clock { font-size: 16px; }

  /* === СЕКЦИЯ: ПОЧЕМУ LEON === */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
  }
  .why-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1.5px solid #EAEAEA;
    text-align: left;
  }
  .why-num {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .why-num small {
    font-size: 24px;
    font-weight: 700;
    color: #0F0F14;
    -webkit-text-fill-color: #0F0F14;
    margin-left: 2px;
  }
  .why-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .why-desc {
    font-size: 14px;
    color: #4A4A55;
    line-height: 1.5;
  }

  /* === СЕКЦИЯ: КАК НАЧАТЬ === */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
    position: relative;
  }
  .step {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1.5px solid #EAEAEA;
    position: relative;
  }
  .step-num {
    width: 40px; height: 40px;
    background: #FFD700;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 900;
    margin-bottom: 20px;
  }
  .step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
  .step-desc { font-size: 14px; color: #4A4A55; line-height: 1.5; }
  .step-time {
    display: inline-block;
    margin-top: 14px;
    background: #F5F5F5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #4A4A55;
  }

  /* === СЕКЦИЯ: ФИНАЛЬНЫЙ CTA + МАРАТ === */
  .final-cta {
    background: #0F0F14;
    border-radius: 32px;
    padding: 60px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .final-cta h2 { color: #fff; margin-bottom: 20px; }
  .final-cta p { color: #B8B8C0; font-size: 17px; margin-bottom: 32px; line-height: 1.5; }
  .form-block {
    background: #1A1A22;
    border-radius: 24px;
    padding: 32px;
  }
  .form-block .form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .form-field {
    margin-bottom: 16px;
  }
  .form-field label {
    display: block;
    font-size: 12px;
    color: #B8B8C0;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .form-field input,
  .form-field select {
    width: 100%;
    background: #0F0F14;
    border: 1.5px solid #333340;
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
  }
  .form-field input:focus,
  .form-field select:focus { border-color: #FFD700; }
  .form-field input::placeholder { color: #666; }
  .messenger-chips {
    display: flex;
    gap: 8px;
    margin-top: 8px;
  }
  .chip {
    background: #0F0F14;
    border: 1.5px solid #333340;
    color: #B8B8C0;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
  }
  .chip:hover, .chip.active {
    border-color: #FFD700;
    color: #FFD700;
  }
  .form-cta {
    width: 100%;
    background: #FFD700;
    color: #0F0F14;
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.15s;
  }
  .form-cta:hover { transform: translateY(-1px); }
  .form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: #7A7A85;
    line-height: 1.5;
  }

  .marat-card {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    margin-top: 32px;
  }
  .marat-photo {
    width: 88px; height: 88px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #FFD700;
    flex-shrink: 0;
  }
  .marat-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .marat-role {
    font-size: 13px;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .marat-quote {
    font-size: 14px;
    color: #B8B8C0;
    line-height: 1.5;
    font-style: italic;
  }

  /* === СЕКЦИЯ: ПОЛНЫЙ FAQ === */
  .faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: #fff;
    border: 1.5px solid #EAEAEA;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.15s;
  }
  .faq-item:hover { border-color: #FFD700; }
  .faq-item[open] { border-color: #0F0F14; }
  .faq-item summary {
    padding: 22px 28px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: #999;
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .faq-item[open] summary::after {
    content: '−';
    color: #0F0F14;
  }
  .faq-answer {
    padding: 0 28px 24px;
    font-size: 15px;
    color: #4A4A55;
    line-height: 1.6;
  }
  .faq-answer p { margin-bottom: 10px; }
  .faq-answer p:last-child { margin-bottom: 0; }

  /* === АДАПТИВ === */
  @media (max-width: 1200px) {
    .features-grid, .quick-faq-grid, .why-grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .configs-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .container { padding: 0 20px; }
    section { padding: 48px 0; }
    h1 { font-size: 38px; letter-spacing: -1px; }
    h2 { font-size: 26px; letter-spacing: -0.5px; }
    .hero-wrap { padding: 24px 0 32px; }
    .calc-wrapper { max-width: 100%; }
    .promos-grid, .final-cta { grid-template-columns: 1fr; gap: 20px; }
    .final-cta > *, .form-block, .form-field input, .form-field select { min-width: 0; }
    .features-grid, .why-grid, .steps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .quick-faq-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .segments-grid { grid-template-columns: 1fr; gap: 16px; }
    .configs-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .calc-shell { grid-template-columns: 1fr; gap: 24px; }
    .calc-side { display: contents; }
    .calc-intro { order: 0; }
    .calc-wrapper { order: 1; margin-bottom: 8px; }
    .calc-side-item { order: 2; margin-top: -12px; }
    .calc-side { padding-top: 0; gap: 12px; }
    .calc-side-item { padding: 16px; }
    .calc-side-title { font-size: 15px; }
    .calc-side-desc { font-size: 13px; }
    .hero h1 { font-size: 38px; }
    .hero-cta-primary, .hero-cta-secondary { padding: 14px 20px; font-size: 15px; width: 100%; justify-content: center; }
    .hero-ctas { flex-direction: column; }
    .trust-strip-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 16px;
      padding: 16px 0;
    }
    .trust-strip-item { font-size: 13px; }
    /* Мобильная версия таблицы сравнения */
    .compare-table { border-radius: 16px; }
    .ct-head { display: none; }
    .ct-row {
      grid-template-columns: 1fr 1fr;
      grid-template-areas: "param param" "local fresh";
      padding: 14px 16px;
      gap: 8px 12px;
    }
    .ct-cell { padding: 0; font-size: 14px; }
    .ct-cell small { font-size: 11px; margin-top: 1px; }
    .ct-param {
      grid-area: param;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: #7A7A85;
      font-weight: 700;
      margin-bottom: 2px;
    }
    .ct-local {
      grid-area: local;
      background: transparent;
      border: none;
      color: #7A7A85;
      font-size: 13px;
      text-decoration: line-through;
      text-decoration-color: #C8C8C8;
    }
    .ct-local small { text-decoration: none; display: inline; margin-top: 0; }
    .ct-fresh {
      grid-area: fresh;
      background: transparent;
      color: #0F0F14;
      font-weight: 700;
      padding: 0;
      position: relative;
    }
    .ct-fresh::before {
      content: '✓';
      color: #0F7A3F;
      font-weight: 900;
      margin-right: 6px;
    }
    .ct-total .ct-param,
    .ct-total .ct-local,
    .ct-total .ct-fresh { font-size: 14px; padding: 0; }
    .ct-total .ct-fresh b { font-size: 16px; }
    .ct-savings {
      padding: 20px;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }
    .ct-savings-label { font-size: 15px; }
    .ct-savings-value { font-size: 26px; }
    .section-desc { font-size: 15px; margin-bottom: 24px; }
    .pre-headline { font-size: 11px; padding: 8px 14px; }
    .marat-card {
      flex-direction: column;
      text-align: center;
      gap: 16px;
      padding: 20px;
    }
    .form-block { padding: 24px; }
    .final-cta p { font-size: 15px; margin-bottom: 24px; }
    .promo-card { padding: 28px; }
    .promo-title { font-size: 22px; }
    .promo-tag { top: 18px; right: 18px; font-size: 11px; padding: 5px 12px; }
    .feature-card { padding: 18px; }
    .feature-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 14px; border-radius: 12px; }
    .feature-title { font-size: 15px; }
    .feature-desc { font-size: 13px; }
    .why-card { padding: 20px; }
    .why-num { font-size: 36px; margin-bottom: 8px; }
    .why-num small { font-size: 20px; }
    .why-title { font-size: 15px; }
    .why-desc { font-size: 13px; }
    .step { padding: 20px; }
    .step-num { width: 34px; height: 34px; font-size: 15px; margin-bottom: 14px; border-radius: 10px; }
    .step-title { font-size: 15px; }
    .step-desc { font-size: 13px; }
    .step-time { font-size: 11px; padding: 3px 8px; }
    .quick-faq-item { padding: 18px; }
    .qfi-icon { font-size: 24px; margin-bottom: 10px; }
    .qfi-q { font-size: 14px; }
    .qfi-a { font-size: 13px; }
    .segment-card { padding: 24px; }
    .segment-title { font-size: 20px; }
    .segment-desc { font-size: 14px; }
    .cta-secondary { padding: 10px 16px; font-size: 13px; }
    .configs-section { padding: 32px 20px; border-radius: 24px; }
    .configs-section h2 { font-size: 24px; }
    .config-group h4 { font-size: 12px; margin-bottom: 12px; }
    .config-list li { font-size: 14px; }
    .configs-note { font-size: 14px; padding: 16px 20px; }
    .quick-faq { padding: 32px 20px; border-radius: 24px; }
    .final-cta { padding: 32px 20px; border-radius: 24px; }
    .faq-item summary { padding: 18px 20px; font-size: 15px; gap: 12px; }
    .faq-answer { padding: 0 20px 20px; font-size: 14px; }
    .calculator { padding: 22px; }
    .price-month-big { font-size: 36px; }
    .calc-body { padding-top: 38px; }
    .ribbon { padding: 8px 14px; font-size: 11px; }
    .ribbon-highlight { font-size: 10px; padding: 2px 8px; }
    .ct-cta-btn, .configs-cta-btn { width: 100%; padding: 16px 20px; font-size: 15px; }
    .ct-note { font-size: 12px; margin-top: 12px; padding: 0 4px; }
    .configs-cta { margin-top: 24px; }
    .configs-cta-note { font-size: 12px; }
    .ct-total { background: #FAFAFA; }
    .ct-total .ct-fresh { font-size: 15px; }
    .compare-table { overflow-x: hidden; }
  }
  @media (max-width: 480px) {
    h1 { font-size: 30px; }
    h2 { font-size: 22px; }
    .container { padding: 0 16px; }
    .hero h1 { margin-bottom: 20px; }
    .partner-label { font-size: 13px; flex-wrap: wrap; }
    .price-month-big { font-size: 30px; }
    .price-month-big .unit { font-size: 15px; }
    .ct-cell { font-size: 13px; }
    .ct-total .ct-fresh b { font-size: 15px; }
    .ct-savings-value { font-size: 22px; }
    .configs-grid { grid-template-columns: 1fr; }
    .quick-faq-grid { grid-template-columns: 1fr; }
  }

  /* === HERO v2 === */



  /* === HEADER === */
  .hv2 .site-header {
    background: #fff;
    border-bottom: 1px solid #EAEAEA;
    padding: 18px 0;
  }
  .hv2 .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hv2 .logo { font-weight: 800; font-size: 20px; letter-spacing: -0.5px; }
  .hv2 .logo span { color: #C87A00; }
  .hv2 .nav-menu { display: flex; gap: 32px; }
  .hv2 .nav-menu a {
    color: #0F0F14;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
  }
  .hv2 .nav-menu a:hover { color: #C87A00; }
  .hv2 .header-cta {
    background: #FFD700;
    color: #0F0F14;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
  }

  /* === HERO === */
  .hv2 .hv2-hero {
    padding: 60px 0 80px;
  }
  .hv2 .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hv2 .pre-headline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0F0F14;
    color: #FFD700;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hv2 .pre-headline .dot {
    width: 8px; height: 8px; background: #FFD700; border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
  }

  .hv2 h1 {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .hv2 .highlight {
    background: #FFD700;
    padding: 0 10px;
    border-radius: 6px;
    display: inline-block;
  }

  .hv2 .hero-sub {
    font-size: 19px;
    color: #4A4A55;
    line-height: 1.5;
    margin-bottom: 36px;
    max-width: 560px;
  }
  .hv2 .hero-sub b { color: #0F0F14; font-weight: 600; }

  /* CTA buttons */
  .hv2 .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .hv2 .btn-primary, .hv2 .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    font-family: inherit;
  }
  .hv2 .btn-primary {
    background: #FFD700;
    color: #0F0F14;
    box-shadow: 0 4px 0 #C87A00;
  }
  .hv2 .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #C87A00;
  }
  .hv2 .btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #C87A00;
  }
  .hv2 .btn-secondary {
    background: transparent;
    color: #0F0F14;
    border: 2px solid #0F0F14;
    padding: 16px 30px;
  }
  .hv2 .btn-secondary:hover {
    background: #0F0F14;
    color: #fff;
  }

  .hv2 .cta-microcopy {
    margin-bottom: 40px !important;
    font-size: 13px;
    color: #4A4A55;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hv2 .cta-microcopy b { color: #0F0F14; }

  .hv2 .price-anchor {
    font-size: 14px;
    color: #4A4A55;
    margin-bottom: 40px;
  }
  .hv2 .price-anchor b { color: #0F0F14; font-weight: 700; }

  /* Trust — переделан под страхи */
  .hv2 .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    padding-top: 24px;
    border-top: 1px solid #EAEAEA;
  }
  .hv2 .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #0F0F14;
    line-height: 1.4;
  }
  .hv2 .trust-item .check {
    width: 20px; height: 20px;
    background: #16A34A;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .hv2 .trust-item b { font-weight: 700; }

  /* === RIGHT: Visual anchor === */
  .hv2 .visual {
    position: relative;
    padding-top: 8px;
  }

  /* Hero photo */
  .hv2 .hero-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 15, 20, 0.15), 0 4px 12px rgba(15, 15, 20, 0.05);
    aspect-ratio: 3 / 4;
  }
  .hv2 .hero-photo img {
    object-position: center 30%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Floating quote card */
  .hv2 .quote-float {
    position: absolute;
    bottom: -32px;
    left: -32px;
    right: 40px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 15px 40px rgba(15, 15, 20, 0.15);
    z-index: 3;
  }
  .hv2 .quote-float-text {
    font-size: 15px;
    color: #0F0F14;
    line-height: 1.45;
    margin-bottom: 14px;
    font-weight: 500;
  }
  .hv2 .quote-float-mark {
    color: #FFD700;
    font-size: 32px;
    font-weight: 900;
    line-height: 0;
    vertical-align: -6px;
    margin-right: 4px;
  }
  .hv2 .quote-float-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #F0F0F0;
  }
  .hv2 .quote-float-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #FFD700, #C87A00);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .hv2 .quote-float-author b {
    display: block;
    font-size: 14px;
    color: #0F0F14;
  }
  .hv2 .quote-float-author small {
    color: #4A4A55;
    font-size: 12px;
  }

  /* Floating trial badge */
  .hv2 .trial-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #FFD700;
    color: #0F0F14;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    transform: rotate(4deg);
    font-weight: 800;
    text-align: center;
    z-index: 2;
  }
  .hv2 .trial-badge-big {
    font-size: 26px;
    letter-spacing: -1px;
    line-height: 1;
  }
  .hv2 .trial-badge-small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 700;
  }

  /* === RESPONSIVE === */
  @media (max-width: 1024px) {
    .hv2 .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hv2 h1 { font-size: 44px; }
    .hv2 .visual { max-width: 560px; margin: 0 auto 60px; }
  }
  @media (max-width: 640px) {
    .hv2 .container { padding: 0 20px; }
    .hv2 .hv2-hero { padding: 40px 0 60px; }
    .hv2 h1 { font-size: 32px; letter-spacing: -1px; }
    .hv2 .hero-sub { font-size: 16px; }
    .hv2 .hero-buttons { flex-direction: column; }
    .hv2 .btn-primary, .hv2 .btn-secondary { width: 100%; }
    .hv2 .trust-row { grid-template-columns: 1fr; }
    .hv2 .nav-menu { display: none; }
    .hv2 .trial-badge { top: -8px; right: -8px; padding: 10px 14px; }
    .hv2 .trial-badge-big { font-size: 20px; }
    .hv2 .quote-float { left: -8px; right: -8px; bottom: -24px; padding: 16px 18px; }
    .hv2 .quote-float-text { font-size: 13px; }
  }


  /* === КАЛЬКУЛЯТОР (рабочий) === */

  #lngrp-calc * { box-sizing: border-box; margin: 0; padding: 0; }
  #lngrp-calc {
    font-family: inherit;
    color: #383838;
    max-width: 100%;
  }
  #lngrp-calc .lc-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  }
  #lngrp-calc h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: #383838; }
  #lngrp-calc .lc-sub { color: #667085; margin-bottom: 24px; font-size: 14px; }
  #lngrp-calc .lc-field { margin-bottom: 20px; }
  #lngrp-calc .lc-label {
    display: block; font-size: 13px; font-weight: 600; color: #383838;
    margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
  }
  #lngrp-calc select {
    width: 100%; padding: 14px 16px; border: 1.5px solid #eaecf0;
    border-radius: 10px; font-size: 15px; background: #fff; color: #383838;
    cursor: pointer; font-family: inherit;
  }
  #lngrp-calc select:focus { outline: none; border-color: #ffde3b; }

  #lngrp-calc .lc-users {
    display: flex; align-items: center; gap: 12px; background: #f7f7f7;
    border-radius: 10px; padding: 8px;
  }
  #lngrp-calc .lc-btn {
    width: 44px; height: 44px; border: none; border-radius: 8px; background: #fff;
    font-size: 22px; font-weight: 700; cursor: pointer; color: #383838;
    font-family: inherit; transition: all 0.15s;
  }
  #lngrp-calc .lc-btn:hover:not(:disabled) { background: #ffde3b; }
  #lngrp-calc .lc-btn:disabled { opacity: 0.4; cursor: not-allowed; }
  #lngrp-calc input[type=number] {
    flex: 1; text-align: center; border: none; background: transparent;
    font-size: 20px; font-weight: 700; color: #383838; outline: none;
    font-family: inherit; -moz-appearance: textfield;
  }
  #lngrp-calc input[type=number]::-webkit-outer-spin-button,
  #lngrp-calc input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
  }

  #lngrp-calc .lc-tabs {
    display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap;
  }
  #lngrp-calc .lc-tab {
    padding: 10px 18px; border: 1.5px solid #eaecf0; border-radius: 8px;
    background: #fff; cursor: pointer; font-size: 13px; font-weight: 600;
    color: #667085; transition: all 0.15s; font-family: inherit;
    text-transform: uppercase; letter-spacing: 0.3px;
  }
  #lngrp-calc .lc-tab:hover { border-color: #ffde3b; color: #383838; }
  #lngrp-calc .lc-tab.active { border-color: #f4a631; background: #fff8ec; color: #383838; }

  #lngrp-calc .lc-result {
    background: linear-gradient(135deg, #fff8ec 0%, #fff 100%);
    border: 2px solid #ffde3b; border-radius: 14px; padding: 24px;
  }
  #lngrp-calc .lc-tariff-name {
    font-size: 14px; color: #667085; margin-bottom: 4px;
    text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
  }
  #lngrp-calc .lc-tariff-desc { font-size: 13px; color: #667085; margin-bottom: 16px; line-height: 1.5; }
  #lngrp-calc .lc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; font-size: 14px; color: #667085;
  }
  #lngrp-calc .lc-row-total {
    border-top: 1px solid #eaecf0; margin-top: 12px; padding-top: 16px;
    font-size: 18px; color: #383838; font-weight: 700;
  }
  #lngrp-calc .lc-price { font-size: 32px; font-weight: 800; color: #383838; }
  #lngrp-calc .lc-price small { font-size: 14px; color: #667085; font-weight: 500; }
  #lngrp-calc .lc-note {
    font-size: 12px; color: #667085; margin-top: 8px; text-align: right;
    font-style: italic;
  }

  #lngrp-calc .lc-cta {
    display: block; width: 100%; padding: 16px 24px; background: #ffde3b;
    color: #383838; border: none; border-radius: 10px; font-size: 16px;
    font-weight: 700; cursor: pointer; margin-top: 20px; text-align: center;
    text-decoration: none; transition: all 0.15s; font-family: inherit;
  }
  #lngrp-calc .lc-cta:hover { background: #f4a631; transform: translateY(-1px); }

  #lngrp-calc .lc-empty {
    text-align: center; padding: 40px 20px; color: #b0b0b0; font-size: 14px;
    background: #f7f7f7; border-radius: 12px;
  }
  #lngrp-calc .lc-warn {
    padding: 12px 16px; background: #fff4e5; border: 1px solid #ffcc80;
    border-radius: 8px; color: #7a4a00; font-size: 13px; margin-bottom: 16px;
  }

  @media (max-width: 640px) {
    #lngrp-calc .lc-box { padding: 20px; }
    #lngrp-calc h2 { font-size: 20px; }
    #lngrp-calc .lc-price { font-size: 26px; }
  }

  /* === ШАПКА: логотип и контакты === */
  .hv2 .logo { display: inline-flex; align-items: center; gap: 10px; color: #0F0F14; text-decoration: none; }
  .hv2 .logo .logo-text { color: #0F0F14; }
  .hv2 .logo .logo-text > span { color: #C87A00; }
  .logo-img { height: 30px; width: auto; display: block; }
  .hv2 .header-contacts { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.3; margin-left: auto; margin-right: 20px; }
  .hv2 .header-phone { font-weight: 800; font-size: 16px; color: #0F0F14; text-decoration: none; white-space: nowrap; }
  .hv2 .header-mail { font-size: 13px; color: #4A4A55; text-decoration: none; }
  .hv2 .header-phone:hover, .hv2 .header-mail:hover { color: #C87A00; }
  .hv2 .nav-menu { margin-left: 40px; }
  @media (max-width: 1200px) { .hv2 .nav-menu { gap: 20px; margin-left: 24px; } }
  @media (max-width: 1024px) { .hv2 .nav-menu { display: none; } }
  @media (max-width: 640px) {
    .hv2 .header-mail, .hv2 .header-cta { display: none; }
    .hv2 .header-contacts { margin-right: 0; }
    .hv2 .header-phone { font-size: 15px; }
    .hv2 .logo { font-size: 17px; gap: 8px; }
    .logo-img { height: 24px; }
  }

  /* === ПОДВАЛ === */
  .site-footer { background: #0F0F14; color: #B8B8C0; padding: 48px 0; font-size: 14px; line-height: 1.6; }
  .footer-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 40px; align-items: start; }
  .footer-logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 20px; letter-spacing: -0.5px; text-decoration: none; margin-bottom: 14px; }
  .footer-logo .logo-text > span { color: #FFD700; }
  .footer-logo .logo-text { color: #fff; }
  .footer-copy { font-size: 13px; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 12px 32px; flex-wrap: wrap;
    margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-legal { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 13px; }
  .footer-legal a { color: #B8B8C0; text-decoration: underline; text-decoration-color: rgba(184, 184, 192, 0.4); text-underline-offset: 3px; }
  .footer-legal a:hover { color: #FFD700; text-decoration-color: #FFD700; }
  @media (max-width: 900px) { .footer-bottom { flex-direction: column; align-items: flex-start; } .footer-legal { flex-direction: column; } }
  .footer-req b { color: #fff; }
  .footer-contacts { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
  .footer-contacts a { color: #B8B8C0; text-decoration: none; }
  .footer-contacts a:hover { color: #FFD700; }
  .footer-contacts .footer-phone { color: #fff; font-weight: 800; font-size: 20px; }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-contacts { align-items: flex-start; }
  }

  /* === СРАВНЕНИЕ: ФРЕШ vs ЛОКАЛЬНАЯ === */
  .cmp-title { text-align: center; margin-bottom: 48px; }
  .cmp { max-width: 1080px; margin: 0 auto; }
  .cmp-row {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr;
    align-items: stretch; border-radius: 14px;
  }
  .cmp-row:nth-child(even):not(.cmp-foot) { background: #FFF4B8; }
  .cmp-row > div {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 20px 24px; font-size: 16px; text-align: center;
  }
  .cmp-row > .cmp-param { justify-content: flex-start; text-align: left; font-weight: 600; color: #0F0F14; }
  .cmp-local { color: #4A4A55; }
  .cmp-fresh { background: #0F0F14; color: #fff; font-weight: 700; }
  .cmp-row:nth-child(even) .cmp-fresh { background: #1C1C24; }
  .cmp-head .cmp-fresh, .cmp-head .cmp-local { flex-direction: column; gap: 2px; padding-top: 28px; }
  .cmp-head .cmp-fresh { border-radius: 20px 20px 0 0; }
  .cmp-name { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; }
  .cmp-head .cmp-fresh .cmp-name { color: #FFD700; }
  .cmp-head .cmp-local .cmp-name { color: #0F0F14; }
  .cmp-head small { font-size: 13px; font-weight: 500; color: #7A7A85; }
  .cmp-head .cmp-fresh small { color: #B8B8C0; }
  .cmp-foot .cmp-fresh { border-radius: 0 0 20px 20px; padding: 24px; }
  .cmp-foot .cmp-local { padding: 24px; }
  .cmp-yes, .cmp-no {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 900;
  }
  .cmp-yes { background: #FFD700; color: #0F0F14; }
  .cmp-no { background: #E4E4E8; color: #7A7A85; }
  .cmp-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100%; padding: 15px 20px; border-radius: 12px;
    font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.15s;
  }
  .cmp-btn-main { background: #FFD700; color: #0F0F14; }
  .cmp-btn-main:hover { background: #FFE94A; transform: translateY(-1px); }
  .cmp-btn-ghost { border: 1.5px solid #0F0F14; color: #0F0F14; }
  .cmp-btn-ghost:hover { background: #0F0F14; color: #fff; }
  @media (max-width: 700px) {
    .cmp-title { margin-bottom: 24px; text-align: left; }
    .cmp { background: #fff; border: 1px solid #EAEAEA; border-radius: 20px; overflow: hidden; }
    .cmp-row { grid-template-columns: 1fr 1fr; border-radius: 0; }
    .cmp-row:nth-child(even):not(.cmp-foot) { background: none; }
    .cmp-row + .cmp-row:not(.cmp-foot) { border-top: 1px solid #F0F0F2; }
    .cmp-row > div { padding: 2px 16px 14px; font-size: 15px; justify-content: flex-start; text-align: left; gap: 6px; }
    .cmp-row > .cmp-param { grid-column: 1 / -1; padding: 14px 16px 4px; font-size: 13px; font-weight: 500; color: #7A7A85; }
    .cmp-row > .cmp-fresh, .cmp-row:nth-child(even) > .cmp-fresh { background: none; color: #0F0F14; }
    .cmp-row > .cmp-local { color: #7A7A85; }
    .cmp-head > .cmp-param, .cmp-foot > .cmp-param, .cmp-head small { display: none; }
    .cmp-head > .cmp-fresh, .cmp-head > .cmp-local { padding: 14px 16px; border-radius: 0; }
    .cmp-head > .cmp-fresh { background: #0F0F14; }
    .cmp-head > .cmp-local { background: #F5F5F7; }
    .cmp-name { font-size: 16px; }
    .cmp-yes, .cmp-no { width: 18px; height: 18px; font-size: 10px; }
    .cmp-foot { grid-template-columns: 1fr; gap: 10px; padding: 16px; border-top: 1px solid #F0F0F2; }
    .cmp-foot > .cmp-fresh, .cmp-foot > .cmp-local { padding: 0; border-radius: 0; }
    .cmp-foot .btn-trial { white-space: normal; }
    .cmp-btn { font-size: 15px; }
  }

  /* === КАЛЬКУЛЯТОР: подсветка выбора продукта === */
  #lngrp-calc .lc-label-accent { color: #0F0F14; }
  #lngrp-calc #lc-product {
    border: 2px solid #FFD700; background-color: #FFF9D9; font-weight: 700; font-size: 16px;
    padding: 15px 44px 15px 16px; appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%230F0F14' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.25);
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  #lngrp-calc #lc-product:hover, #lngrp-calc #lc-product:focus { border-color: #F4A631; box-shadow: 0 0 0 5px rgba(244, 166, 49, 0.3); outline: none; }

  /* === Кнопка «Начать 30 дней бесплатно» — как на первом экране === */
  .btn-trial, #lngrp-calc .btn-trial {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 18px 32px; border-radius: 14px; border: none;
    background: #FFD700; color: #0F0F14; box-shadow: 0 4px 0 #C87A00;
    font-family: inherit; font-weight: 700; font-size: 16px; line-height: 1.3;
    text-align: center; text-decoration: none; cursor: pointer; transition: all 0.15s;
  }
  .btn-trial:hover, #lngrp-calc .btn-trial:hover { transform: translateY(-1px); box-shadow: 0 5px 0 #C87A00; background: #FFD700; }
  .btn-trial:active, #lngrp-calc .btn-trial:active { transform: translateY(3px); box-shadow: 0 1px 0 #C87A00; }
  #lngrp-calc .lc-trial { margin-top: 20px; }
  .cmp-foot .btn-trial { padding: 16px 12px; font-size: 15px; white-space: nowrap; }
  #lngrp-calc .lc-row > span:last-child { white-space: nowrap; }
  @media (max-width: 640px) {
    #lngrp-calc .lc-result { padding: 18px 16px; }
    #lngrp-calc .btn-trial { padding: 16px 10px; font-size: 15px; white-space: nowrap; }
  }
  @media (max-width: 360px) { #lngrp-calc .btn-trial { font-size: 14px; } }
  .form-trial { margin-top: 12px; }
  @media (max-width: 700px) { .btn-trial, #lngrp-calc .btn-trial { padding: 16px 20px; font-size: 15px; } }

  /* === Закреплённая шапка === */
  .hv2 .site-header.is-fixed {
    position: fixed; top: 0; left: 0; right: 0; z-index: 990;
    transition: box-shadow 0.2s, padding 0.2s;
  }
  .hv2 .site-header.is-fixed.is-scrolled { padding: 12px 0; box-shadow: 0 6px 24px rgba(15, 15, 20, 0.08); }
  .lg-header-spacer { height: 77px; }
</style>
