:root {
    --main-text: #0d0c10;
    --second-text: #4071ff;     /* уже синий */
    --neutral-text: #4071ff;    /* было #808191 → теперь синий */
    --footer-bg: #1e293b;       /* было #1c1c1c → тёмно-синий slate */
    --sections-bg: #dbeafe;     /* было #cecccc → светлый голубоватый */
    --form-bg: #eff6ff;         /* было #eceff5 → очень светлый синий */
    --body-bg: #f8fafc;         /* было #fefcfb → почти белый с лёгким синим подтоном */
    --white: #ffffff;

    /* Основной акцент остался ярко-розовый */
    --accent: #ff91f7;
    --accent-light: #ffa5f9;
    --accent-dark: #ff70e8;

    /* Синие и голубые оттенки */
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --blue-dark: #2563eb;
    --cyan: #06b6d4;
    --teal: #14b8a6;
    --purple-accent: #a855f7;

    --accent-bg-info: #1e293b;       /* тёмно-синий вместо серого */
    --accent-mobile-steps: #ff91f7;
    --accent-opposite: #06b6d4;
    --accent-target: #3b82f6;
    --accent-tg: #039be5;

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

    /* Градиенты — оставил как было, но можно подкрутить под синий, если нужно */
    --range-head: linear-gradient(38.66deg, #2563eb 8.8%, #60a5fa 84.72%);
    --range-line: linear-gradient(90deg, #ff91f7 14%, #c084fc 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: #a855f7; border-color: #a855f7; }
.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;
}