/* ============================================================
   Riva Park — стили собственных секций (дополняют шаблон)
   ============================================================ */

/* Плавный скролл по якорям меню */
html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 95px;
}
/* ============================================================
   Шрифты старого сайта (подключены через /css/fonts.css):
   основной текст — TTWellingtonsMoon, заголовки — EuropeExtendedC
   ============================================================ */
:root {
    --font-helper: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --tg-body-font-family: "TTWellingtonsMoon", var(--font-helper);
    --tg-heading-font-family: "EuropeExtendedC", "TTWellingtonsMoon", var(--font-helper);
}

body {
    font-family: var(--tg-body-font-family);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
}

/* ============================================================
   Слайдер: компактные заголовки (было 150px / 120px — уменьшено
   более чем в 2 раза, адаптивно через clamp)
   ============================================================ */
.slider-content-two .title {
    font-size: clamp(32px, 3.6vw, 58px);
    line-height: 1.1;
    margin-bottom: 26px;
}

.slider-content-two .sub-title {
    font-size: clamp(14px, 1.2vw, 19px);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* --- Затемнение слайдов: чёрная заливка 30% --- */
.slider-bg-two::before {
    background: rgba(0, 0, 0, 0.4);
}

/* --- Мигающие кнопки «3D тур» / «Расположение» в слайдере --- */
.slider-links {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 14px;
}

.slider-tour-link,
.slider-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(6px);
    animation: tourBlink 1.8s ease-in-out infinite;
    transition: background .3s ease;
}

.slider-tour-link:hover,
.slider-tour-link:focus,
.slider-map-link:hover,
.slider-map-link:focus {
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
}

.slider-tour-link i,
.slider-map-link i {
    font-size: 16px;
    transition: transform .3s ease;
}

.slider-tour-link i {
    color: var(--tg-primary-color, #FF5203);
    animation: tourIconPulse 1.8s ease-in-out infinite;
}

.slider-map-link i {
    color: #9fdcff;
    animation: mapIconPulse 1.8s ease-in-out infinite;
}

.slider-map-link {
    animation-name: tourBlinkBlue;
}

@keyframes tourBlink {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 82, 3, .6);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(255, 82, 3, 0);
    }
}

@keyframes tourBlinkBlue {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(120, 190, 255, .55);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(120, 190, 255, 0);
    }
}

@keyframes tourIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.25);
        opacity: .75;
    }
}

@keyframes mapIconPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-3px);
        opacity: .75;
    }
}

@media (max-width: 575px) {
    .slider-links {
        bottom: 20px;
        gap: 10px;
    }

    /* Высота слайдера на телефонах больше: контент не пересекается с кнопками */
    .slider-bg-two {
        min-height: 100vh;
        min-height: 820px;
        padding: 180px 0 170px;
    }

    .slider-tour-link,
    .slider-map-link {
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 3px;
    }
}

/* --- Чек-лист преимуществ инвестирования --- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.check-list li {
    position: relative;
    padding: 8px 0 8px 34px;
    font-size: 16px;
    line-height: 1.6;
    color: #525867;
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #014695;
    color: #fff;
    font-size: 10px;
    line-height: 22px;
    text-align: center;
}

.check-list li b {
    color: #1c2030;
}

/* --- Планировки: сетка с зумом --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.plan-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(1, 70, 149, .12);
    transition: transform .3s ease, box-shadow .3s ease;
}

.plan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(1, 70, 149, .22);
}

.plan-item img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #f4f7fb;
}

.plan-item figcaption {
    padding: 12px 16px;
    font-weight: 600;
    color: #1c2030;
    text-align: center;
}

/* --- Фотогалерея --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.6);
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    background: rgba(1, 70, 149, .85);
    color: #fff;
    opacity: 0;
    transition: all .3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- Документы --- */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(1, 70, 149, .1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.doc-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(1, 70, 149, .2);
}

.doc-item .doc-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: rgba(1, 70, 149, .1);
    color: #014695;
    font-size: 22px;
    line-height: 54px;
    text-align: center;
}

.doc-item h3 {
    font-size: 17px;
    margin: 0 0 4px;
    color: #1c2030;
}

.doc-item span {
    font-size: 13px;
    color: #7a8095;
}

/* --- Форма заявки: согласие --- */
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0 22px;
    font-size: 13px;
    line-height: 1.5;
    color: #9aa1b5;
    cursor: pointer;
}

.consent-check input {
    margin-top: 3px;
    flex: 0 0 auto;
}

.form-message {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.form-message.ok {
    display: block;
    background: rgba(40, 167, 69, .12);
    color: #1e7e34;
    border: 1px solid rgba(40, 167, 69, .45);
}

.form-message.err {
    display: block;
    background: rgba(220, 53, 69, .1);
    color: #c9303c;
    border: 1px solid rgba(220, 53, 69, .4);
}

/* --- Объединённый блок «Вопросы + заявка» --- */
.faq-area .consultation-content {
    margin-right: 0;
}

@media (max-width: 991px) {
    .faq-area .col-lg-6 + .col-lg-6 {
        margin-top: 50px;
    }
}

/* --- Мобильное меню: кнопка звонка --- */
.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 25px;
}

.mobile-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    border-radius: 6px;
    background: #fff;
    border: 2px solid var(--tg-primary-color, #FF5203);
    color: var(--tg-heading-font-color, #22252F);
    font-size: 16px;
    font-weight: 700;
    transition: background .3s ease;
}

.mobile-order-btn:hover {
    background: rgba(255, 82, 3, .08);
}

.mobile-order-btn i {
    color: var(--tg-primary-color, #FF5203);
    font-size: 15px;
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    border-radius: 6px;
    background: var(--tg-primary-color, #FF5203);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: background .3s ease;
}

.mobile-call-btn:hover,
.mobile-call-btn:focus {
    color: #fff;
    background: #e04300;
}

.mobile-call-btn i {
    font-size: 15px;
}

/* --- 3D тур --- */
.tour3d-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0b315b;
    box-shadow: 0 24px 70px rgba(12, 40, 66, .18);
}

.tour3d-frame iframe {
    display: block;
    border: 0;
    width: 100%;
    height: 600px;
}

@media (max-width: 767px) {
    .tour3d-frame iframe {
        height: 420px;
    }
}

/* --- Счётчики: крупные светлые иконки --- */
.counter-area-two .counter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin-right: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .22);
}

.counter-area-two .counter-icon i {
    font-size: 40px;
    line-height: 1;
    color: rgba(255, 255, 255, .95);
    transition: transform .3s ease;
}

.counter-area-two .counter-item:hover .counter-icon i {
    transform: scale(1.12);
}

@media (max-width: 575px) {
    .counter-area-two .counter-icon {
        width: 64px;
        height: 64px;
        margin-right: 16px;
    }

    .counter-area-two .counter-icon i {
        font-size: 30px;
    }
}

/* --- Карта объекта --- */
.map-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #e8eef5;
    box-shadow: 0 24px 70px rgba(12, 40, 66, .18);
    min-height: 500px;
}

.map-frame iframe {
    display: block;
    width: 100% !important;
    border: 0;
}

@media (max-width: 767px) {
    .map-frame {
        min-height: 0;
    }

    .map-frame iframe {
        height: 380px !important;
    }
}

/* --- Модальное окно «Спасибо за заявку» --- */
.riva-thanks .modal-content {
    position: relative;
    border: 0;
    border-radius: 20px;
    padding: 48px 40px 40px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(10, 30, 60, .25);
}

.riva-thanks-close {
    position: absolute;
    top: 12px;
    right: 18px;
    border: 0;
    background: none;
    font-size: 32px;
    line-height: 1;
    color: #9aa3b5;
    cursor: pointer;
    transition: color .2s ease;
}

.riva-thanks-close:hover {
    color: #2b3547;
}

.riva-thanks-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34c77b, #1e9e5c);
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(30, 158, 92, .35);
    animation: rivaPop .45s cubic-bezier(.2, 1.2, .4, 1);
}

.riva-thanks h3 {
    font-size: 28px;
    color: #17233a;
    margin: 0 0 12px;
}

.riva-thanks p {
    font-size: 15px;
    line-height: 1.65;
    color: #5c6474;
    margin: 0 0 28px;
}

.riva-thanks-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    text-align: center;
}

@keyframes rivaPop {
    from { transform: scale(.4); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Подсветка незаполненных обязательных полей */
#leadForm .is-error {
    border-bottom-color: #dc3545 !important;
}

/* Подсветка формы при переходе «Заказать звонок» */
#leadForm {
    border-radius: 12px;
}

#leadForm.lead-flash {
    animation: leadFlash 1.6s ease;
}

@keyframes leadFlash {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 82, 3, .45);
    }
    100% {
        box-shadow: 0 0 0 26px rgba(255, 82, 3, 0);
    }
}

/* --- Бейджи героя: крупнее + отступ сверху --- */
.hero-badge {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .6px;
    margin: 26px 8px 12px 0;
}

.hero-price {
    color: #ffb43a;
}

/* --- Навигация слайдера: стрелки влево/вправо + точки (только десктоп) --- */
.slider-active-two .slick-dots {
    display: none;
}

.slider-nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 6;
}

.slider-nav .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    z-index: 7;
    transition: background .3s ease, transform .3s ease;
}

.slider-nav .slick-arrow:hover {
    background: rgba(0, 0, 0, .62);
}

.slider-nav .slick-arrow:focus {
    outline: none;
}

.slider-nav .slick-prev {
    left: 30px;
}

.slider-nav .slick-next {
    right: 30px;
}

@media (max-width: 991px) {
    /* На мобильных и планшетах управление слайдером (стрелки и точки) убрано полностью */
    .slider-nav,
    .slider-nav .slick-arrow,
    .slider-active-two .slick-dots {
        display: none !important;
    }

    /* Выше слайдер на планшетах/телефонах, чтобы кнопки не накладывались на контент */
    .slider-bg-two {
        min-height: 100vh;
        padding: 200px 0 150px;
    }
}

@media (min-width: 992px) {
    .slider-active-two .slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .slider-active-two .slick-dots li {
        line-height: 1;
    }

    .slider-active-two .slick-dots li button {
        width: 9px;
        height: 9px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .7);
        border-radius: 50%;
        background: transparent;
        font-size: 0;
        text-indent: -9999px;
        cursor: pointer;
    }

    .slider-active-two .slick-dots li.slick-active button {
        background: #fff;
        border-color: #fff;
    }
}

/* --- Адаптив --- */
@media (max-width: 991px) {
    .plans-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .docs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .plans-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 210px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 18px;
    }
}

/* ============================================================
   Инфраструктура: квадратики-плюсы, парк, мини-галерея
   ============================================================ */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.infra-card {
    background: #fff;
    border-radius: 8px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(1, 70, 149, .1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(1, 70, 149, .22);
}

.infra-card .infra-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(1, 70, 149, .1);
    color: #014695;
    font-size: 24px;
    line-height: 64px;
    text-align: center;
}

.infra-card h3 {
    font-size: 17px;
    margin: 0 0 8px;
    color: #1c2030;
}

.infra-card p {
    font-size: 14px;
    line-height: 1.55;
    color: #7a8095;
    margin: 0;
}

/* --- Парк возле здания --- */
.infra-park {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 34px 38px;
    margin-bottom: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #014695 0%, #0b6fb6 100%);
    color: #fff;
    box-shadow: 0 14px 36px rgba(1, 70, 149, .28);
}

.infra-park-text {
    flex: 1;
}

.infra-park-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9fdcff;
    margin-bottom: 8px;
}

.infra-park-text h3 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #fff;
}

.infra-park-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .85);
}

.infra-park-fact {
    flex: 0 0 auto;
    text-align: center;
    padding: 18px 26px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.infra-park-fact .fact-value {
    display: block;
    font-family: var(--tg-heading-font-family);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffb43a;
}

.infra-park-fact .fact-label {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
}

/* --- Мини-галерея инфраструктуры --- */
.infra-gallery {
    margin-top: 0;
}

/* --- Адаптив инфраструктуры --- */
@media (max-width: 991px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .infra-park {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 28px 22px;
    }

    .infra-park-text .infra-park-kicker {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Планировки номеров: динамические PDF-карточки
   ============================================================ */
.nomera-section {
    margin-top: 54px;
    padding: 38px;
    border: 1px solid rgba(1, 70, 149, .1);
    border-radius: 20px;
    background: linear-gradient(145deg, #f4f8fc 0%, #fff 55%, #f8fafc 100%);
    box-shadow: 0 18px 50px rgba(16, 43, 73, .08);
}
.nomera-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.nomera-heading-icon {
    flex: 0 0 58px; width: 58px; height: 58px; display: inline-flex;
    align-items: center; justify-content: center; border-radius: 16px;
    color: #fff; font-size: 23px; background: linear-gradient(135deg, #014695, #0b76bd);
    box-shadow: 0 10px 22px rgba(1, 70, 149, .24);
}
.nomera-heading h3 { margin: 0 0 7px; color: #172236; font-size: clamp(20px, 2vw, 28px); line-height: 1.25; }
.nomera-heading p { margin: 0; color: #69758a; font-size: 15px; line-height: 1.5; }
.nomera-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.nomera-grid .nomer-card {
    position: relative; display: flex; flex-direction: column; min-width: 0; overflow: hidden;
    border: 1px solid #e0e8f0; border-radius: 16px; background: #fff; color: #263348;
    text-decoration: none; box-shadow: 0 8px 24px rgba(18, 49, 82, .08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.nomera-grid .nomer-card:hover, .nomera-grid .nomer-card:focus-visible {
    color: #263348; border-color: rgba(255, 82, 3, .5); transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(18, 49, 82, .16);
}
.nomer-card-thumb {
    position: relative; display: flex; align-items: center; justify-content: center; height: 190px;
    overflow: hidden; color: rgba(255, 255, 255, .92); font-size: 58px;
    background: linear-gradient(145deg, #014695, #073761);
}
.nomer-card-img {
    position: absolute; inset: 0; display: block; background-position: center;
    background-repeat: no-repeat; background-size: cover; transition: transform .45s ease;
}
.nomer-card:hover .nomer-card-img { transform: scale(1.045); }
.nomer-card-cam { position: absolute; margin: 50px 0 0 72px; font-size: 23px; color: #ffb43a; }
.nomer-card-pdf {
    position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 11px; border-radius: 8px; color: #fff; background: #e23b35;
    font-size: 12px; font-weight: 700; letter-spacing: .8px; line-height: 1;
    box-shadow: 0 5px 14px rgba(100, 15, 10, .25);
}
.nomer-card-info { display: flex; flex: 1; flex-direction: column; padding: 22px 52px 22px 22px; }
.nomer-card-title {
    display: block; margin-bottom: 7px; color: #172236; font-family: var(--tg-heading-font-family);
    font-size: 19px; font-weight: 700; line-height: 1.25;
}
.nomer-card-sub { display: block; margin-bottom: 17px; color: #707c8f; font-size: 14px; line-height: 1.45; }
.nomer-card-meta {
    display: inline-flex; align-items: center; gap: 7px; margin-top: auto;
    color: #e23b35; font-size: 13px; font-weight: 600;
}
.nomer-card-open {
    position: absolute; right: 18px; bottom: 20px; width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
    color: #014695; background: #edf5fc; font-size: 13px;
    transition: color .3s ease, background .3s ease, transform .3s ease;
}
.nomer-card:hover .nomer-card-open { color: #fff; background: #ff5203; transform: translate(2px, -2px); }
@media (max-width: 991px) { .nomera-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575px) {
    .nomera-section { margin-top: 38px; padding: 24px 16px; border-radius: 15px; }
    .nomera-heading { align-items: flex-start; gap: 13px; margin-bottom: 22px; }
    .nomera-heading-icon { flex-basis: 46px; width: 46px; height: 46px; border-radius: 12px; font-size: 18px; }
    .nomera-heading p { font-size: 13px; }
    .nomera-grid { grid-template-columns: 1fr; gap: 16px; }
    .nomer-card-thumb { height: 180px; }
}
