:root {
    --main-text:      #3d2b1f;          /* глубокий тёплый шоколадно-коричневый */
    --second-text:    #6b4e31;          /* тёплый коричневый, хорошо читается */
    --neutral-text:   #b38b00;          /* насыщенный золотисто-жёлтый */

    --footer-bg:      #8b5a2b;          /* тёплый терракотово-коричневый */
    --sections-bg:    #fff4d4;          /* светлый кремово-жёлтый */
    --form-bg:        #fff9e6;          /* очень светлый тёплый крем */
    --body-bg:        #fffdf4;          /* мягкий тёплый кремовый фон */

    --white:          #ffffff;

    /* Акценты — тёплая жёлто-оранжевая гамма */
    --accent:         #ffcc00;          /* основной яркий золотисто-жёлтый */
    --accent-bg-info: #8b5a2b;          /* тёмный фон под инфо-блоки */
    --accent-mobile-steps: #ffdd33;     /* светлый солнечный жёлтый */
    --accent-opposite: #ff8c00;         /* тёплый оранжевый */
    --accent-target:  #ffaa00;          /* насыщенный жёлто-оранжевый */
    --accent-tg:      #ffaa00;          /* для Telegram-цвета */

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

    /* Градиенты — тёплые солнечные */
    --range-head: linear-gradient(38.66deg, #ffaa00 8.8%, #ffe066 84.72%);
    --range-line: linear-gradient(90deg, #ffaa00 14%, #ffcc00 70%);
}

/* ===== НОВЫЕ ГАЛОЧКИ — ТЁПЛАЯ ТЕМА ===== */
.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(255, 204, 0, 0.08); }
.sf-agree-main-text {
  font-size: 13px;
  font-weight: 500;
}

.sf-cb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  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(255, 204, 0, 0.08); }
.sf-cb-row a,
.sf-cb-row span {
  font-size: 10.5px;
  line-height: 1.3;
  color: #a67f4d;
  text-decoration: none;
}
.sf-cb-row a:hover { text-decoration: underline; color: #8b5a2b; }
.sf-cb-row.sf-full { grid-column: 1 / -1; }
.sf-cb-row.sf-full span { font-size: 10px; color: #c9a66b; }
.sf-cb-row.sf-optional a { color: #c9a66b; }

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

/* ===== АДАПТИВ ===== */
@media (max-width: 480px) {
  .sf-cb-grid {
    grid-template-columns: 1fr 1fr;
    max-height: 130px;
    overflow-y: auto;
    border: 0.5px solid #f0e0b0;
    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-agree-main {
    padding: 4px 6px;
    margin-bottom: 4px;
  }

  .sf-agree-main-text {
    font-size: 12px;
  }
}
/* ===== УВЕЛИЧЕНИЕ ЛОГОТИПА В HEADER ===== */

.header__logo-img {
    height: 75px !important;
    max-height: none !important;
    width: auto !important;
}

.header__logo {
    height: auto !important;
    max-height: none !important;
}

.header,
.header__content {
    height: 70px !important;
    min-height: 70px !important;
}
@media (max-width: 768px) {
    .header__logo-img {
        height: 60px !important;
    }

    .header,
    .header__content {
        height: 75px !important;
        min-height: 75px !important;
    }
}
.information__cell._social,
.information__cell._mailing {
    visibility: hidden !important;
    pointer-events: none;
}