﻿:root {
    /* Дофаминовая палитра */
    --accent-neon: #a855f7;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --bg-pure: #ffffff;
    --bg-soft: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Сетки и скругления */
    --radius-widget: 32px;
    --radius-pill: 100px;
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 8px 12px -6px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 25px 50px -12px rgba(168, 85, 247, 0.15);

    /* Типографика */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Дополнительные цвета */
    --bg-pure-soft: rgba(255, 255, 255, 0.05);
    /* Анимации */
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* --- ОСНОВЫ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-pure);
    /* Легкий дофаминовый фон, не мешающий чистоте */
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.03), transparent),
        radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.03), transparent);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

main {
    min-height: 60vh;
    display: flow-root;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}


a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-container__wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- ЧИСТАЯ НАВИГАЦИЯ --- */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.site-header__content {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__logo img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-link {
    font-weight: 600;
    margin-left: 32px;
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0.7;
}

.nav-link:hover {
    color: var(--accent-neon);
    opacity: 1;
}

/* --- BURGER & MOBILE MENU --- */
.header-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.header-burger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-pure);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 32px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.is-active {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.mobile-menu__close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 0;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.mobile-menu__footer {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .site-header__nav {
        display: none;
    }

    .header-burger {
        display: flex;
    }

    .stat-item {
        gap: 12px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-value {
        font-size: 1.8rem;
    }
}

/* Навигация (Breadcrumbs) */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    margin-bottom: 32px;
    font-size: 0.88rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1000;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs-link {
    color: var(--accent-neon);
    text-decoration: none;
    transition: var(--transition-smooth);
    opacity: 0.8;
    display: inline-block;
    padding: 4px 6px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.breadcrumbs-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumbs-separator {
    opacity: 0.3;
    font-size: 0.7rem;
}

.breadcrumbs-current {
    opacity: 0.5;
    pointer-events: none;
}

/* --- ГЛАВНЫЕ ЭКРАНЫ --- */
.hero-section {
    padding: 140px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5rem);
    line-height: 1.05;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-large {
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 48px;
    font-weight: 400;
}

/* --- BENTO GRID & WIDGETS --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    margin-bottom: 100px;
}

.widget {
    background: var(--bg-soft);
    border-radius: var(--radius-widget);
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: var(--shadow-soft);
}

.widget:hover {
    transform: translateY(-10px);
    background: var(--bg-pure);
    box-shadow: var(--shadow-hover);
    border-color: rgba(168, 85, 247, 0.1);
}

.widget--large {
    grid-column: span 8;
}

.widget--half {
    grid-column: span 6;
}

.widget--medium {
    grid-column: span 4;
}

.widget--small {
    grid-column: span 3;
}

.widget--full {
    grid-column: span 12;
}

.widget--fluid-center {
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.widget--round {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.widget--accent {
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-cyan));
    color: white;
    border: none;
}

.widget--accent .widget-title,
.widget--accent p {
    color: white;
}

.widget--accent:hover {
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-cyan));
    color: white;
    box-shadow: 0 30px 60px -12px rgba(168, 85, 247, 0.4);
}

.widget-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.widget-title span {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- КАРТОЧКИ ОБЪЕКТОВ --- */
.item-chip {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--bg-pure);
    border-radius: var(--radius-pill);
    margin: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.item-chip:hover {
    background: var(--accent-neon);
    color: white;
    transform: scale(1.05);
    border-color: transparent;
}

.brand-chip-accent {
    background: var(--accent-neon);
    color: white;
}

.brand-chip-white {
    background: white;
    color: var(--accent-neon);
    border: none;
}

.brand-chip-soft {
    background: var(--bg-soft);
    color: var(--text-muted);
}

.btn-copied {
    background: #10b981;
    color: white;
    border-color: transparent;
}

/* Алфавитный указатель (Cities Hub) */
.alphabet-group {
    margin-bottom: 48px;
}

.alphabet-letter {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-neon);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: -20px;
}

/* --- FOOTER --- */
.site-footer {
    padding: 80px 0 40px;
}

.site-footer .widget {
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- АНИМАЦИИ ВЕБ-ФЛОУ --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Вспомогательные классы (Utilities) --- */
.flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.gap-32 {
    gap: 32px;
}

.text-muted {
    color: var(--text-muted);
}

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

.text-right {
    text-align: right;
}

.font-bold {
    font-weight: 700;
}

.font-extra-bold {
    font-weight: 800;
}

.mt-8 {
    margin-top: 8px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-neg-32 {
    margin-top: -32px;
}

.mt-neg-60 {
    margin-top: -60px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-100 {
    padding-bottom: 100px;
}

.w-full {
    width: 100%;
}

.m-0 {
    margin: 0;
}

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.pointer {
    cursor: pointer;
}

.flex-1 {
    flex: 1;
}

.min-w-200 {
    min-width: 200px;
}

.min-w-280 {
    min-width: 280px;
}

.min-w-300 {
    min-width: 300px;
}

.opacity-9 {
    opacity: 0.9;
}

.opacity-8 {
    opacity: 0.8;
}

.bg-soft {
    background: var(--bg-soft);
}

.bg-pure {
    background: var(--bg-pure);
}

.opacity-5 {
    opacity: 0.5;
}

.opacity-2 {
    opacity: 0.2;
}

.font-small {
    font-size: 0.85rem;
}

.font-14 {
    font-size: 14px;
}

.font-11-rem {
    font-size: 1.1rem;
}

.font-12-rem {
    font-size: 1.2rem;
}

.font-3rem {
    font-size: 3rem;
}

.min-h-250 {
    min-height: 250px;
}

.max-w-400 {
    max-width: 400px;
}

.max-w-600 {
    max-width: 600px;
}

/* --- Компоненты --- */

/* Промокоды */
.promocode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.widget--promocodes-gradient {
    background: linear-gradient(135deg, #FFF0F5, #E6E6FA);
}

/* Бренды */
.brand-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.brand-items-grid--limited .brand-card:nth-child(n+11) {
    display: none;
}

.brand-card {
    padding: 30px;
    text-decoration: none;
    text-align: center;
    background: var(--bg-pure);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-card-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.brand-card-action {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.brand-card--hidden {
    display: none;
}

.show-all-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.show-all-btn {
    padding: 12px 24px;
    background: var(--bg-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-neon);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.show-all-btn:hover {
    background: var(--accent-neon);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.2);
}

/* Ритейлеры и спец-блоки */
.brand-hero-padding {
    padding: 100px 0 60px;
}

.brand-logo-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--bg-soft);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.brand-card:hover .brand-logo-wrapper {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.15);
}

.brand-logo-img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.brand-logo-wrapper-large {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    overflow: hidden;
    background: var(--bg-pure);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.brand-logo-img-large {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.mb-16 {
    margin-bottom: 16px;
}

.info-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
}

.info-content p {
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-main);
}


.brand-btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.debug-info-box {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 12px;
    color: #c53030;
}

.brand-info-block {
    background: var(--bg-pure);
    padding: 24px;
    border-radius: 20px;
}

.brand-promocode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.brand-promocode-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-promocode-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.faq-item {
    background: var(--bg-pure);
    padding: 24px;
    border-radius: 20px;
}

.promocode-card {
    background: var(--bg-pure);
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.promocode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.promocode-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--accent-pink);
    margin-bottom: 4px;
}

/* FAQ */
.faq-details {
    background: var(--bg-pure);
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.faq-details:hover {
    border-color: var(--accent-neon);
}

.faq-summary {
    font-weight: 600;
    list-style: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-neon);
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Навигация городов */
.city-nav {
    margin-top: 20px;
}

/* Футер */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-logo {
    margin-bottom: 12px;
    filter: grayscale(1);
    opacity: 0.5;
}

/* --- СТРАНИЦА ОШИБКИ 404 --- */
.error-visual {
    font-size: clamp(5rem, 15vw, 150px);
    line-height: 1;
    margin-bottom: 2rem;
}

.debug-info-box {
    background: rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 16px;
    font-family: monospace;
    font-size: 0.85rem;
    margin-top: 40px !important;
    text-align: left;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

/* Модификаторы для логотипов */
.brand-logo-wrapper-large--service {
    background-color: #fff !important;
    padding: 15px !important;
}

.yandex-metrika-noscript {
    position: absolute;
    left: -9999px;
}

/* --- МОБИЛЬНАЯ АДАПТАЦИЯ --- */
@media (max-width: 1024px) {

    .widget--large,
    .widget--half,
    .widget--medium {
        grid-column: span 12;
    }

    .widget--small {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        gap: 16px;
    }

    .widget {
        padding: 30px;
    }

    .widget--small {
        grid-column: span 12;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .site-header__nav {
        display: none;
    }

    .item-chip {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* --- СПЕЦ-ЭФФЕКТЫ 2026 --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.dopamine-dot {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-neon);
    filter: blur(100px);
    opacity: 0.05;
    z-index: -1;
    border-radius: 50%;
}

.dopamine-dot--top-right {
    top: -50px;
    right: -50px;
}

/* --- ТИПОГРАФИКА КОНТЕНТА (Списки) --- */
.seo-text-layout ul,
.seo-text-layout ol,
.faq-item ul,
.faq-item ol,
.faq-answer ul,
.faq-answer ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-muted);
}

.seo-text-layout li,
.faq-item li,
.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}

.seo-text-layout ul,
.faq-item ul,
.faq-answer ul {
    list-style: none;
    /* Убираем дефолтные маркеры */
}

/* Кастомные маркеры для UL */
.seo-text-layout ul li::before,
.faq-item ul li::before,
.faq-answer ul li::before {
    content: "•";
    color: var(--accent-neon);
    /* Цвет маркера */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.seo-text-layout ol,
.faq-item ol,
.faq-answer ol {
    list-style-type: decimal;
    /* Оставляем цифры для OL */
}

.seo-text-layout li ul,
.seo-text-layout li ol,
.faq-item li ul,
.faq-item li ol,
.faq-answer li ul,
.faq-answer li ol {
    margin: 8px 0;
}

/* Стили для ссылок в тексте */
.seo-text-layout a,
.faq-item a,
.faq-answer a {
    color: var(--accent-neon);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: opacity 0.2s;
}

.seo-text-layout a:hover,
.faq-item a:hover,
.faq-answer a:hover {
    opacity: 0.8;
    border-bottom-color: var(--accent-neon);
}

/* CTA Button Styles */
.btn-cta-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
}

.btn-cta {
    position: relative;
    padding: 18px 24px;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-pink));
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px -5px rgba(168, 85, 247, 0.4);
    overflow: hidden;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(168, 85, 247, 0.6);
    color: white;
}

.btn-cta:hover::before {
    left: 100%;
}

/* --- ПЕРЕЛИНКОВКА (GRID CITIES) --- */
.grid-cities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.city-card {
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 12px;
}

.city-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(168, 85, 247, 0.2);
}

.card-hover-effect {
    /* Доп. класс для ховера, если нужен отдельно */
}

.decoration-none {
    text-decoration: none;
}

.text-dark {
    color: var(--text-main);
}

.border-radius-8 {
    border-radius: 8px;
}

.object-contain {
    object-fit: contain;
}

.bg-white {
    background-color: white;
}

.bg-light {
    background-color: var(--bg-soft);
}

.p-12 {
    padding: 12px;
}

.w-32 {
    width: 32px;
}

.h-32 {
    height: 32px;
}

.grid-cities--limited .city-card:nth-child(n+9),
.brand-items-grid--limited .brand-card:nth-child(n+9) {
    display: none !important;
}

/* Home Page Styles */
.hero-section--home {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.1), transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bg-soft);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-neon);
    border: 1px solid rgba(168, 85, 247, 0.1);
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-bottom: 48px;
}

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

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-main), var(--accent-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.city-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-pure);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.city-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-neon);
}

.city-pill__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.city-pill__arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
    color: var(--accent-neon);
}

.city-pill:hover .city-pill__arrow {
    opacity: 1;
    transform: translateX(0);
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 20px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.feature-text {
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-chip {
    padding: 10px 20px;
    background: var(--accent-neon);
    color: white;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.btn-chip:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    color: white;
}

.bg-dark {
    background-color: #0f172a !important;
}

.text-white {
    color: white !important;
}

.grayscale {
    filter: grayscale(1);
}

.opacity-4 {
    opacity: 0.4;
}

.opacity-9 {
    opacity: 0.9;
}

.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.mb-64 {
    margin-bottom: 64px !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.widget--accent {
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-cyan));
    color: white;
    border: none;
}

.widget--accent .widget-title,
.widget--accent .text-muted {
    color: white;
}

/* --- Поиск и современные инпуты --- */
.input-modern {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.input-modern:focus {
    border-color: var(--primary-color, #007bff);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    background: #fff;
}

.scroll-offset-header {
    scroll-margin-top: 100px;
}