/* ================================================
   НОВАЯ ГЛАВНАЯ СТРАНИЦА - Современный дизайн
   ================================================ */

/* Hero секция */
.hero-new {
    min-height: auto;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 50%, #312E81 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1.2rem 0 1rem;
}

/* Анимированный фон */
.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-content-new {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-new {
    font-size: 1.85rem;
    font-weight: 900 !important; /* Очень жирный шрифт */
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease 0.1s backwards;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    font-weight: 900 !important; /* Очень жирный шрифт */
}

.gradient-text {
    background: linear-gradient(90deg, #FFFFFF 0%, #E0E7FF 50%, #C7D2FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-subtitle-new {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.8rem 0;
    font-weight: 400;
    animation: fadeInUp 0.6s ease 0.2s backwards;
    line-height: 1.4;
}

/* Преимущества - переименовано в hero-features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin: 0 0 0.7rem 0;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.feature-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.25s ease;
    cursor: default;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    line-height: 1;
    width: 1.6rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.feature-title {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

/* Статистика */
.hero-stats-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin: 0 0 0.7rem 0;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 0.75rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.25s ease;
    cursor: default;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    flex-shrink: 0;
    width: 1.6rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-number-new {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin: 0;
    padding: 0;
    letter-spacing: -0.02em;
}

.stat-label-new {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

/* CTA кнопки */
.hero-cta {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

.btn-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary-new {
    background: white;
    color: #6366F1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-secondary-new {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Секция новинок */
.featured-section-new {
    padding: 1.2rem 0 0;
    margin-bottom: 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
}

.section-header-new {
    text-align: center;
    margin-bottom: 0.3rem;
    animation: fadeInUp 1s ease;
}

.section-title-new {
    font-size: 1.75rem;
    font-weight: 900;
    color: #1A202C;
    margin-bottom: 0.35rem;
    position: relative;
    display: inline-block;
}

.section-title-new::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6366F1, #8B5CF6);
    border-radius: 2px;
}

.section-desc-new {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
}

/* Секция поиска по городу */
.city-section-new {
    padding: 1.2rem 0 1rem;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 50%, #312E81 100%);
    position: relative;
}

.city-card-wrapper {
    max-width: 600px;
    margin: 0 auto;
    animation: scaleIn 0.8s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.city-card-inner {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    padding: 1.6rem 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
}

.city-card-inner:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.city-icon-large {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 0.75rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(147, 197, 253, 0.75));
    box-shadow: 0 18px 35px rgba(59, 130, 246, 0.35), inset 0 0 20px rgba(255, 255, 255, 0.22);
    overflow: hidden;
    animation: cityPulse 5s ease-in-out infinite;
}

.city-icon-large::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.55) 65%, rgba(15, 23, 42, 0.75) 100%);
}

.city-icon-large::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 14px;
    height: 34px;
    background:
        repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, 0.22) 0 3px,
            transparent 3px 6px
        ),
        linear-gradient(180deg, rgba(99, 102, 241, 0.85), rgba(59, 130, 246, 0.85));
    border-radius: 6px 6px 4px 4px;
    clip-path: polygon(10% 100%, 10% 35%, 22% 45%, 22% 25%, 33% 35%, 33% 18%, 48% 28%, 48% 0%, 62% 12%, 62% 35%, 75% 25%, 75% 50%, 88% 42%, 88% 100%);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
    animation: skylineGlow 4.5s ease-in-out infinite;
}

.city-icon-large::before {
    box-shadow:
        0 0 25px rgba(147, 197, 253, 0.45),
        inset 0 0 35px rgba(59, 130, 246, 0.55);
}

@keyframes skylineGlow {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(-18deg); }
}

@keyframes cityPulse {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 18px 35px rgba(59, 130, 246, 0.35), inset 0 0 20px rgba(255, 255, 255, 0.22); }
    50% { transform: translateY(-4px) scale(1.03); box-shadow: 0 24px 40px rgba(59, 130, 246, 0.4), inset 0 0 28px rgba(255, 255, 255, 0.3); }
}

.city-title-new {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.city-desc-new {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.btn-city-new {
    background: white;
    color: #6366F1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-city-new:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Секция приватки */
.privatka-section {
    position: relative;
    padding: 1.5rem 0 1.3rem;
    background: linear-gradient(135deg, #FDF2F8 0%, #E9D5FF 50%, #C7D2FE 100%);
    overflow: hidden;
}

.privatka-wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 26px;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 35px 80px rgba(99, 102, 241, 0.22);
    position: relative;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.privatka-aurora {
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 360px;
    pointer-events: none;
}

.privatka-aurora .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.45), rgba(99, 102, 241, 0));
    filter: blur(18px);
    opacity: 0.75;
    animation: auroraFloat 8s ease-in-out infinite;
}

.privatka-aurora .ring-2 {
    inset: 40px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.45), rgba(236, 72, 153, 0));
    animation-duration: 10s;
    animation-direction: reverse;
}

.privatka-aurora .spark {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(236, 72, 153, 0.35);
    animation: sparkOrbit 12s linear infinite;
}

.privatka-aurora .spark-1 { top: 20%; left: 10%; }
.privatka-aurora .spark-2 { bottom: -10%; right: 15%; animation-duration: 9s; }

@keyframes auroraFloat {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.75; }
    50% { transform: scale(1.15) translateY(15px); opacity: 0.55; }
}

@keyframes sparkOrbit {
    0% { transform: rotate(0deg) translateX(10px); }
    100% { transform: rotate(360deg) translateX(10px); }
}

.privatka-title {
    font-size: 2rem;
    font-weight: 900;
    color: #9D174D;
    margin-bottom: 0.4rem;
}

.privatka-subtitle {
    font-size: 0.95rem;
    color: #6B21A8;
    margin-bottom: 0.8rem;
}

.privatka-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #312E81;
}

.privatka-list li::before {
    content: '♥';
    color: #F43F5E;
    margin-right: 0.5rem;
}

.privatka-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 22px 40px rgba(236, 72, 153, 0.22);
    margin-bottom: 1.35rem;
    border: 2px solid rgba(236, 72, 153, 0.15);
}

.privatka-carousel.large { border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 35px 65px rgba(236, 72, 153, 0.25); }

.carousel-track {
    display: flex;
    transition: transform .4s ease;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.privatka-carousel.large .carousel-slide img { height: 480px; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.6);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.35);
}

.carousel-btn svg { display: block; color: currentColor; }

.carousel-btn:hover { background: rgba(15, 23, 42, 0.85); transform: translateY(-50%) scale(1.08); box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45); }
.carousel-btn:active { transform: translateY(-50%) scale(0.95); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

.privatka-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(15, 23, 42, 0.12);
}

.privatka-btn {
    background: linear-gradient(90deg, #F43F5E, #EC4899);
    color: #fff;
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.35);
    margin-top: 0.25rem;
}

.privatka-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 28px 60px rgba(236, 72, 153, 0.45);
}

/* Страница приватки */
.privatka-page {
    padding: 3.5rem 0;
    background: radial-gradient(circle at top, rgba(236, 72, 153, 0.15), transparent 60%), #0F172A;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.privatka-card {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.75);
    border-radius: 28px;
    padding: 3rem;
    color: white;
    position: relative;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(22px);
}

.privatka-card-hearts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.privatka-page-title {
    font-size: 2.75rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.75rem;
}

.privatka-page-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

.privatka-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 1.75rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    color: #FDE68A;
}

.benefit-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.privatka-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-note {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.privatka-visual {
    position: relative;
    margin: 2rem 0;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(248, 250, 252, 0.18);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.45);
}

.privatka-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 10%, rgba(15, 23, 42, 0.65) 100%);
    pointer-events: none;
}

/* Адаптив */
@media (max-width: 768px) {
    .hero-new {
        padding: 1rem 0 0.8rem;
    }
    
    .hero-title-new {
        font-size: 1.6rem;
        font-weight: 900 !important; /* Сохраняем жирный шрифт в мобильной версии */
    }
    
    .title-line {
        font-weight: 900 !important; /* Сохраняем жирный шрифт в мобильной версии */
    }
    
    .hero-subtitle-new {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-card {
        padding: 0.7rem 0.6rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        width: 1.5rem;
    }
    
    .feature-title {
        font-size: 0.675rem;
    }
    
    .hero-stats-new {
        gap: 0.5rem;
        margin-bottom: 0.6rem;
    }
    
    .stat-card {
        padding: 0.7rem 0.6rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        width: 1.5rem;
    }
    
    .stat-number-new {
        font-size: 1.3rem;
    }
    
    .stat-label-new {
        font-size: 0.675rem;
    }
    
    .hero-cta {
        gap: 0.5rem;
    }
    
    .btn-new {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title-new {
        font-size: 2rem;
    }
    
    .city-title-new {
        font-size: 1.5rem;
    }

    .privatka-wrapper {
        padding: 2rem 1.5rem;
    }

    .carousel-slide img { height: 300px; }
    .privatka-carousel.large .carousel-slide img { height: 340px; }
    .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }

    .privatka-visual img { height: 300px; }
}

