/* =====================================================
   АГЕНТСТВО 403 — ПОЛЬЗОВАТЕЛЬСКИЕ СТИЛИ
   Вставь в: Tilda → Настройки сайта → CSS
===================================================== */

/* Цитата */
.pull-quote {
  margin: 60px 0;
  padding: 40px 50px;
  background: #F8F9F9;
  border-left: 4px solid #A87932;
  position: relative;
}

.pull-quote p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  color: #162128;
  line-height: 1.4;
}

.pull-quote__author {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A87932;
}

/* Выделенный блок с цифрой */
.highlight-number {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  margin: 50px 0;
  padding: 30px;
  background: #162128;
  color: #F4F5F4;
}

.highlight-number__num {
  font-family: Georgia, serif;
  font-size: 60px;
  color: #EACB83;
  line-height: 1;
}

.highlight-number__content h3 {
  margin: 0 0 12px;
  color: #F4F5F4;
  font-size: 20px;
  font-weight: 600;
}

.highlight-number__content p {
  margin: 0;
  color: #68747A;
  font-size: 13px;
  line-height: 1.6;
}

/* Инфоблок */
.info-block {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  padding: 20px;
  background: #F8F9F9;
  border: 1px solid #D7DDDE;
}

.info-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #EACB83;
  color: #162128;
  font-size: 18px;
  flex-shrink: 0;
}

.info-block__content h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #162128;
}

.info-block__content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #68747A;
}

/* Статистика */
.stat-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0;
  padding: 40px;
  background: #162128;
}

.stat-block__item {
  text-align: center;
}

.stat-block__value {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 48px;
  color: #EACB83;
  line-height: 1;
}

.stat-block__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #68747A;
}

/* Разделитель */
.section-divider {
  margin: 60px 0;
  border: 0;
  height: 1px;
  background: #D7DDDE;
}

/* Сноска */
.footnote {
  color: #A87932;
  font-size: 0.75em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
}

/* Блок со сносками */
.footnotes {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #D7DDDE;
}

.footnotes__title {
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A87932;
}

.footnotes__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footnotes__list li {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #68747A;
}

.footnotes__list li::before {
  content: counter(footnote) ". ";
  counter-increment: footnote;
  color: #A87932;
  font-weight: 600;
  margin-right: 6px;
}

/* Список */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.styled-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.styled-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #A87932;
  font-size: 18px;
  line-height: 1.4;
}

/* Кнопка */
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid #162128;
  background: #162128;
  color: #F4F5F4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #A87932;
  border-color: #A87932;
  color: #162128;
}

/* Сетка 2 колонки */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

/* Сетка 3 колонки */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

/* Адаптив */
@media (max-width: 768px) {
  .stat-block {
    grid-template-columns: 1fr;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .highlight-number {
    grid-template-columns: 1fr;
  }
}