:root {
    --yellow: #FCD34D;
    --yellow-dark: #F59E0B;
    --yellow-light: #FEF3C7;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --white: #FFFFFF;
    --shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, var(--yellow) 0%, #FBBF24 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page {
    width: 100%;
    padding: 40px 0;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.header__title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #111827, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header__subtitle {
    font-size: 1.3rem;
    color: #374151;
    font-weight: 400;
}

.hero__inner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 48px;
    padding: 48px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out;
    text-align: center; /* Центрируем всё внутри */
}

/* Отменяем центрирование для блоков с текстом, который должен читаться слева */
.features, .info-grid, .cities {
    text-align: left;
}

.hero__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.hero__description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto; /* Центрируем описание */
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.feature {
    background: var(--yellow-light);
    padding: 28px 24px;
    border-radius: 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.2);
    text-align: left;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.15);
}

.feature__emoji {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}

.feature__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #92400E;
}

.feature__text {
    color: #6B4E1E;
    font-size: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.info-block {
    background: var(--white);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: left;
}

.info-block__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.info-block__list {
    list-style: none;
}

.info-block__list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #374151;
    text-align: left;
}

.info-block__list li::before {
    content: "✓";
    color: #10B981;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

.cities {
    margin: 48px 0 32px;
    padding: 32px;
    background: var(--white);
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: left;
}

.cities__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
    text-align: left;
}

.cities__intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    text-align: left;
}

.cities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px 30px;
    margin-bottom: 20px;
}

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

.cities__list li {
    padding: 8px 0;
    border-bottom: 1px dashed #E5E7EB;
    font-size: 1rem;
    color: #374151;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cities__list li:last-child {
    border-bottom: none;
}

.cities__note {
    font-size: 1rem;
    color: var(--yellow-dark);
    font-weight: 600;
    background: var(--yellow-light);
    padding: 16px 24px;
    border-radius: 40px;
    text-align: center;
    margin-top: 24px;
}

.action {
    text-align: center;
    margin-top: 24px;
}

.cta-button {
    background: var(--yellow-dark);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    padding: 24px 56px;
    border: none;
    border-radius: 80px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    letter-spacing: -0.01em;
    width: 100%;
    max-width: 500px;
    animation: pulse 2.5s infinite;
}

.cta-button:hover {
    background: #D97706;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.5);
}

.action__note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #6B7280;
}

.footer {
    text-align: center;
    margin-top: 40px;
    color: #374151;
    font-size: 0.9rem;
}

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.cities__list_hidden {
    display: none;
}

.cities__list_hidden.show {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.cities__spoiler-btn {
    background: none;
    border: none;
    color: var(--yellow-dark);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    padding: 12px 24px;
    border-radius: 40px;
    transition: all 0.2s ease;
    text-decoration: underline;
}

.cities__spoiler-btn:hover {
    color: #D97706;
    background: var(--yellow-light);
}

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

@media (max-width: 768px) {
    .header__title {
        font-size: 2rem;
    }
    .hero__inner {
        padding: 32px 20px;
    }
    .hero__title {
        font-size: 1.8rem;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .cities__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px 20px;
    }
    .cities__list li {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    .cta-button {
        font-size: 1.4rem;
        padding: 20px 32px;
        max-width: 100%;
    }
    .feature {
        padding: 24px 20px;
    }
}
