:root {
    --main-text:      #0d0c10;
    --second-text:    #363636;
    --neutral-text:   #808191;
   
    --footer-bg:      #1c1c1c;
    --sections-bg:    #cecccc;
    --form-bg:        #eceff5;
    --body-bg:        #fefcfb;
   
    --white:          #fff;

    /* Персиковый вместо оранжевого */
    --accent:           #ff9a70;       /* основной персиковый (замена #f60) */
    --accent-light:     #ffae8f;       /* светлее — для hover */
    --accent-dark:      #ff865c;       /* темнее — для active/pressed */

    --accent-bg-info:   #383647;       /* оставил как было, не оранжевый */
    --accent-mobile-steps: #ff8a82;    /* чуть мягче и персиковее, чем было #f37e82 */
    --accent-opposite:  #47bebb;       /* бирюза осталась без изменений */
    --accent-target:    #ff6b9d;       /* розоватый, чтобы не конфликтовал с персиком */
    --accent-tg:        #039be5;       /* telegram-синий без изменений */

    --header-h:         70px;
    --header-mob-h:     60px;

    /* Градиенты — заменил оранжевый на персиковый */
    --range-head: linear-gradient(38.66deg, #449098 8.8%, #7ac7c4 84.72%);           /* оставил как был (бирюзовый) */
    --range-line: linear-gradient(90deg, #ff9a70 14%, #ffc5a8 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: #ff865c; border-color: #ff865c; }
.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;
}