/* Добавлено начертание 400 для обычного текста */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Главный контейнер блока */
.custom-header-section {
    font-family: 'Inter', Arial, sans-serif;
    background-color: transparent; /* Фон блока, если нужно */
    padding: 60px 0; /* Вертикальные отступы */
}

.custom-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Боковые отступы для мобильных устройств */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Включаем перенос для адаптивности */
    gap: 30px; /* Отступ между левой и правой частью */
}

/* Левая часть с текстом */
.header-content {
    flex: 1;
    min-width: 300px; /* Минимальная ширина, чтобы текст не сжимался */
}

.pre-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #27b6c9; /* Бирюзовый цвет */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pre-title svg {
    width: 20px;
    height: 20px;
}

/* Главный заголовок H2 */
.main-title {
    font-size: 52px;
    font-weight: 800;
    color: #212836; /* Темно-синий цвет */
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.description {
    font-size: 18px;
    font-weight: 400; /* Можно явно указать, но будет работать и без этого, т.к. это значение по умолчанию */
    color: #6c757d; /* Серый цвет текста */
    line-height: 1.6;
    max-width: 480px; /* Ограничиваем ширину, чтобы текст не был слишком длинным */
}

/* Правая часть с информационными плашками */
.info-widgets {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Позволяет плашкам переноситься на мобильных */
}

.widget {
    background-color: #e4f8f7; /* Светло-бирюзовый фон */
    border: 1px solid #d4f4f3;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.widget-icon {
    color: #27b6c9; /* Бирюзовый цвет иконки */
}

.widget-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.widget-label {
    font-size: 11px;
    font-weight: 500;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.widget-value {
    font-size: 20px;
    font-weight: 700;
    color: #212836;
    line-height: 1;
}

/* Адаптивная версия */
@media (max-width: 992px) {
    .custom-header-container {
        flex-direction: column; /* Ставим все в одну колонку */
        text-align: center; /* Центрируем текст */
    }

    .pre-title {
        justify-content: center; /* Центрируем подзаголовок */
    }

    .description {
        max-width: 100%; /* Убираем ограничение ширины текста */
        margin: 0 auto 20px; /* Добавим отступ снизу для разделения с плашками */
    }
    
    .info-widgets {
        justify-content: center; /* Центрируем плашки */
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 42px; /* Уменьшаем заголовок на планшетах */
    }
    .description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 34px; /* Уменьшаем заголовок на телефонах */
    }
    .widget {
        width: 100%; /* Делаем плашки на всю ширину */
        justify-content: center; /* И центрируем контент в них */
    }
}


/* --- стили карточки домов --- */
/* --- CSS ДЛЯ БЛОКА С ЦЕНАМИ (ВЕРСИЯ 2.3 - С ФИКСОМ ИКОНОК) --- */

.price-card {
    font-family: 'Inter', Arial, sans-serif;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    overflow: hidden; 
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
}

.price-card .c-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-top: 0;
    margin-bottom: 35px;
    text-align: center;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 20px;
}

.price-item:last-child {
    border-bottom: none;
}

.price-dates {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    min-width: 0; /* Фикс переноса длинных строк */
}

.special-badge {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #b71c1c;
    margin-top: 4px;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Стили для информационных блоков */
.price-note {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background-color: #f7f7f7;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    margin-top: 20px;
}
.price-note.info-note {
    background-color: #eef7ff;
    margin-top: 10px;
}

/* --- НОВЫЙ БЛОК: СТИЛИ ДЛЯ ИКОНОК --- */
.price-note svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

/* Цвет для иконки в сером блоке */
.price-note:not(.info-note) svg {
    fill: #555555; 
}

/* Цвет для иконки в синем блоке */
.price-note.info-note svg {
    fill: #1976d2;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 640px) {
    .price-card {
        padding: 25px 20px;
    }
    .price-card .c-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .price-value {
        font-size: 18px;
        text-align: left;
    }
    .price-note {
        font-size: 14px;
    }
}

/* --- СТИЛИ ДЛЯ БЛОКА "ДЛЯ ПРОЖИВАЮЩИХ БЕСПЛАТНО" (ВЕРСИЯ 2.1 - С ОГРАНИЧИТЕЛЕМ ШИРИНЫ) --- */

/* 
    НОВЫЙ БЛОК: ОГРАНИЧИТЕЛЬ ШИРИНЫ (КОНТЕЙНЕР)
    Этот блок заставляет секцию вести себя как стандартный 12-колоночный блок Тильды.
*/
.c-section {
    font-family: 'Inter', Arial, sans-serif;
    max-width: 960px; /* Стандартная ширина контента для читаемости */
    margin-left: auto;
    margin-right: auto;
    /* Добавляем боковые отступы для мобильных, чтобы текст не прилипал к краям */
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box; /* Важно, чтобы padding не увеличивал ширину */
}


/* 
   ЗАГОЛОВОК
   Стили для заголовка остаются прежними.
*/
.c-section .c-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}


/* СТИЛИ СПИСКА С ГАЛОЧКАМИ */

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

.c-list-tick.c-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.c-list-tick li {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.c-list-tick li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0; 
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300a86b' d='M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M10,17l-5-5l1.4-1.4l3.6,3.6l7.6-7.6L19,8L10,17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* АДАПТИВНОСТЬ */

@media (max-width: 640px) {
    .c-section .c-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .c-list-tick.c-grid-2col {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .c-list-tick li {
        font-size: 15px;
    }
}

/* --- СТИЛИ ДЛЯ БЛОКА ХАРАКТЕРИСТИК НОМЕРА (ВЕРСИЯ 1.0) --- */

.room-spec-section {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #f7f7f7; /* Фон, как на скриншоте */
    border-radius: 24px;
    padding: 30px;
    max-width: 1200px;
    margin: 40px auto; /* Центрирование и внешние отступы */
    box-sizing: border-box;
}


/* 1. СЕТКА КАРТОЧЕК */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки на десктопе */
    gap: 15px;
    margin-bottom: 30px;
}

/* 2. СТИЛЬ КАРТОЧКИ */
.spec-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.spec-value-wrapper {
    display: flex;
    align-items: baseline; /* Выравнивает число и "м²" */
    justify-content: center;
    height: 50px; /* Фиксированная высота для выравнивания */
    margin-bottom: 8px;
}

/* 3. СТИЛИ ТЕКСТА ВНУТРИ КАРТОЧЕК */
.spec-number {
    font-size: 42px;
    font-weight: 600;
    color: #5083a7; /* Приглушенный бирюзово-серый, как на фото */
    line-height: 1;
}

.spec-unit {
    font-size: 16px;
    font-weight: 500;
    color: #5083a7;
    margin-left: 6px;
}

.spec-icon {
    width: 40px;
    height: 40px;
    fill: #5083a7;
}

.spec-description {
    font-size: 11px;
    font-weight: 600;
    color: #8a9998;
    text-transform: uppercase;
    letter-spacing:;
    line-height: 1.4;
}

/* 4. СТИЛИ ПОДРОБНОГО ОПИСАНИЯ */
.room-details {
    padding: 0 10px; /* Небольшие внутренние отступы */
}

.room-intro-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 25px 0;
}

.details-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

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

.details-list li {
    font-size: 15px;
    color: #555;
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.5;
}

.details-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 6px;
    color: #6a7c7b; /* Цвет маркера в тон карточкам */
    font-size: 20px;
    line-height: 1;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 960px) {
    /* На планшетах делаем 2 колонки */
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .room-spec-section {
        padding: 20px;
    }
    .spec-grid {
        gap: 10px;
    }
    .spec-card {
        min-height: 110px;
    }
    .spec-number {
        font-size: 36px;
    }
}
/* --- ДОПОЛНЕНИЕ ДЛЯ НОВОГО ДИЗАЙНА КАРТОЧЕК --- */

/* Настраиваем сетку на 3 колонки, как на изображении */
.spec-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Убираем верхний регистр и меняем цвет, чтобы соответствовать изображению */
.spec-description {
    text-transform: none; /* Убираем CAPS LOCK */
    color: #888;          /* Делаем текст подзаголовка серым */
    font-size: 14px;       /* Немного увеличиваем для читаемости */
    font-weight: 400;
}

/* Стиль для главного заголовка в карточке */
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0; /* Отступ между заголовком и подзаголовком */
}

/* Обертка для иконки, как на изображении (кружок) */
.spec-icon-wrapper {
    /* Оставляем только отступ и центрирование */
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.spec-icon {
    /* Задаем точный размер для изображения */
    width: 60px;
    height: 60px;
    /* Гарантирует, что изображение не исказится, если оно не квадратное */
    object-fit: contain; 
}

/* Адаптивность для мобильных */
@media (max-width: 960px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшете */
    }
}
@media (max-width: 600px) {
    .spec-grid {
        grid-template-columns: 1fr; /* 1 колонка на мобильном */
    }
}

/* характеристики в стиле эпл */

/* Подключаем шрифт Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* ГЛАВНЫЙ СЕРЫЙ КОНТЕЙНЕР (РОВНО 1200px) */
.apple-benefits-container {
    background-color: #f5f5f7;
    border-radius: 28px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    
    /* Жестко задаем ширину 1200px и центрируем */
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto 40px auto !important;
    
    /* Внутренние отступы */
    padding: 60px 50px;
}

/* Утилита для градиентного текста */
.apple-text-gradient {
    background: linear-gradient(90deg, #215ee2 0%, #ff8562 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: normal;
    margin: 0;
}

/* --- СТИЛИ ДЛЯ ВЕРХНЕГО ТЕКСТА --- */
.apple-intro-section { 
    margin-bottom: 50px;
    width: 100%;
}

.apple-main-title {
    font-size: 2.2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.apple-lead-text {
    font-size: 16px;
    color: #1d1d1f; 
    line-height: 1.6;
    margin: 0 0 15px 0;
}

/* Списки основного текста (без линии, прижаты влево) */
.apple-feature-list {
    list-style: none !important;
    padding: 0 !important; 
    margin: 0 0 20px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apple-feature-list li {
    font-size: 1.05rem;
    color: #1d1d1f;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* --- СТИЛИ ДЛЯ СЕТКИ СИНИХ ТЕКСТОВ --- */
.apple-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.apple-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.apple-list {
    list-style: none !important;
    padding: 0 !important; 
    margin: 0 0 20px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apple-list li {
    font-size: 1rem;
    color: #6e6e73;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.apple-list-icon {
    flex-shrink: 0;
    width: 24px;
    display: inline-block;
}

.apple-bottom-text { font-size: 1rem; color: #6e6e73; line-height: 1.4; margin: 0; }
.apple-tagline {
    font-size: 1.1rem;
    color: #1d1d1f;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid #e5e5ea;
}

/* --- СТИЛИ ДЛЯ НИЖНИХ ЦИФР (КОТОРЫЕ РАЗВАЛИЛИСЬ) --- */
.apple-text-grid + .apple-benefits-grid {
    border-top: 1px solid #e5e5ea;
    padding-top: 50px;
    margin-top: 50px;
}

.apple-benefits-grid {
    display: flex;
    justify-content: space-between; /* Выстраивает элементы в ровную линию */
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 40px;
}

.apple-benefit-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.apple-benefit-title {
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    display: inline-block;
}

.apple-benefit-unit {
    font-size: 1.2rem;
    margin-left: 4px;
}

.apple-benefit-desc {
    font-size: 0.85rem;
    color: #6e6e73;
    font-weight: normal;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* --- АДАПТИВНОСТЬ ДЛЯ ПЛАНШЕТОВ И МОБИЛЬНЫХ --- */
@media (max-width: 960px) {
    .apple-benefits-grid {
        justify-content: flex-start;
        column-gap: 50px;
    }
}
@media (max-width: 768px) {
    .apple-benefits-container {
        padding: 40px 25px;
        border-radius: 20px;
        width: calc(100% - 20px) !important;
    }
    .apple-text-grid { grid-template-columns: 1fr; gap: 30px; }
    .apple-main-title { font-size: 1.8rem; }
    .apple-benefit-title { font-size: 2rem; }
    .apple-benefits-grid {
        flex-direction: column;
        row-gap: 30px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Inter:wght@400;500;600&display=swap');

.apple-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #f5f5f7;
  border-radius: 24px;
}

.apple-section__title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #212836;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.apple-section__subtitle {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 48px 0;
  line-height: 1.5;
}

.apple-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.apple-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.apple-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.apple-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.apple-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
}

.apple-notice {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.apple-notice__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.apple-notice__text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
}

.apple-notice__text a {
  color: #0071e3;
  text-decoration: none;
  font-weight: 600;
}

.apple-notice__text a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .apple-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apple-section__title {
    font-size: 38px;
  }
}

@media (max-width: 540px) {
  .apple-section {
    padding: 40px 16px;
    border-radius: 16px;
  }
  .apple-section__title {
    font-size: 30px;
  }
  .apple-section__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .apple-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .apple-card {
    padding: 20px 16px;
  }
  .apple-card__icon {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .apple-card__label {
    font-size: 16px;
  }
  .apple-notice {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .apple-notice__text {
    font-size: 16px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Inter:wght@400;500;600&display=swap');

.aframe-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #f5f5f7;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
}

.aframe-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.aframe-stat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aframe-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.aframe-stat-card__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #212836;
  line-height: 1;
  margin-bottom: 2px;
}

.aframe-stat-card__unit {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #212836;
  margin-bottom: 8px;
}

.aframe-stat-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6e6e73;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.aframe-stat-card__top {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.aframe-stat-card__icon {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}

.aframe-stat-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
}

.aframe-stat-card__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6e6e73;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.aframe-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.aframe-desc-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aframe-desc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.aframe-desc-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #212836;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.aframe-desc-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.aframe-floors {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aframe-floor-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aframe-floor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.aframe-floor-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #212836;
  margin: 0 0 16px 0;
}

.aframe-floor-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aframe-floor-card__list li {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.aframe-floor-card__list li::before {
  content: '✦';
  color: #0071e3;
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .aframe-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .aframe-bottom {
    grid-template-columns: 1fr;
  }
  .aframe-stat-card__number {
    font-size: 44px;
  }
}

@media (max-width: 540px) {
  .aframe-section {
    padding: 40px 16px;
    border-radius: 16px;
  }
  .aframe-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .aframe-bottom {
    gap: 12px;
    margin-top: 12px;
  }
  .aframe-floors {
    gap: 12px;
  }
  .aframe-stat-card {
    padding: 22px 18px;
  }
  .aframe-stat-card__number {
    font-size: 36px;
  }
  .aframe-stat-card__unit {
    font-size: 16px;
  }
  .aframe-stat-card__label {
    font-size: 11px;
  }
  .aframe-stat-card__title {
    font-size: 16px;
  }
  .aframe-stat-card__icon {
    font-size: 28px;
  }
  .aframe-desc-card {
    padding: 22px 20px;
  }
  .aframe-desc-card__title {
    font-size: 18px;
  }
  .aframe-desc-card__text {
    font-size: 16px;
  }
  .aframe-floor-card {
    padding: 22px 20px;
  }
  .aframe-floor-card__title {
    font-size: 17px;
  }
  .aframe-floor-card__list li {
    font-size: 16px;
  }
}