:root {
    --main-text:     #0a1428;          /* был #0d0c10 → глубокий тёмно-синий */
    --second-text:   #1e2a44;          /* был #363636 → тёмно-синий серый */
    --neutral-text:  #5c7292;          /* был #808191 → средний холодный синий */
   
    --footer-bg:     #0f1a36;          /* был #1c1c1c → очень тёмный синий */
    --sections-bg:   #e0e8f5;          /* был #cecccc → светлый голубоватый */
    --form-bg:       #f0f4fc;          /* был #eceff5 → чуть холоднее и чище */
    --body-bg:       #f8faff;          /* был #fefcfb → почти белый с лёгким синим подтоном */
   
    --white:         #ffffff;
    --accent:        #e50914;          /* оставил красный из предыдущей версии */
    --accent-bg-info:#2c334f;          /* был #383647 → чуть синее */
    --accent-mobile-steps: #c62828;    /* красный остался */
    --accent-opposite: #b71c1c;        /* красный остался */
    --accent-target: #d81b60;          /* остался */
    --accent-tg:     #039be5;          /* телеграм синий — гармонирует, оставил */
   
    --header-h:      70px;
    --header-mob-h:  60px;
    
    --range-head: linear-gradient(38.66deg, #1e3a5f 8.8%, #3b6ea5 84.72%);
    /* было красное → теперь глубокий синий → более яркий синий */
    
    --range-line: linear-gradient(90deg, #e50914 14%, #f44336 70%);
    /* оставил красный градиент как был в последней версии */
}
/* ===== НОВЫЕ ГАЛОЧКИ SF ===== */
.sf-agree-main {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  margin-bottom: 4px;
  border-radius: 8px;
  cursor: pointer;
}
.sf-agree-main:hover { background: rgba(0,0,0,0.03); }
.sf-agree-main-text {
  font-size: 13px;
  font-weight: 500;
}

.sf-cb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 10px;
}
.sf-cb-row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 3px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s;
}
.sf-cb-row:hover { background: rgba(0,0,0,0.03); }
.sf-cb-row a,
.sf-cb-row span {
  font-size: 10.5px;
  line-height: 1.3;
  color: #999;
  text-decoration: none;
}
.sf-cb-row a:hover { text-decoration: underline; color: #666; }
.sf-cb-row.sf-full { grid-column: 1 / -1; }
.sf-cb-row.sf-full span { font-size: 10px; color: #bbb; }
.sf-cb-row.sf-optional a { color: #bbb; }

.sf-cb {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.sf-cb.on { background: #b71c1c; border-color: #b71c1c; }
.sf-cb.on::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 0;
  width: 6px;
  height: 3.5px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}
.sf-cb.sf-cb-opt.on { background: #ccc; border-color: #ccc; }

/* ===== АДАПТИВ ГАЛОЧЕК ===== */
@media (max-width: 480px) {
  .sf-agree-main {
    padding: 4px 6px;
    margin-bottom: 4px;
  }
  .sf-agree-main-text {
    font-size: 12px;
  }

  .sf-cb-grid {
    grid-template-columns: 1fr 1fr;
    max-height: 120px;
    overflow-y: auto;
    border: 0.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 8px;
  }
  .sf-cb-row {
    padding: 3px 4px;
  }
  .sf-cb-row a,
  .sf-cb-row span {
    font-size: 10px;
    line-height: 1.3;
  }
  .sf-cb-row.sf-full {
    grid-column: 1 / -1;
  }

  #sf-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
}
.information__cell._social,
.information__cell._mailing {
    visibility: hidden !important;
    pointer-events: none;
}