/* ══════════════════════════════════════════
   HERO SECTION — CENTERED LAYOUT
   ══════════════════════════════════════════ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
    background: transparent;
    color: var(--text-color);
}

/* Декоративные блобы */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}
.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: #3e6d26;
    top: -200px;
    right: -100px;
}
.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: #3e6d26;
    bottom: -150px;
    left: -80px;
    opacity: 0.08;
}
[data-theme="dark"] .hero-blob {
    opacity: 0.10;
}

/* Контейнер — центрированная колонка */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Бейдж */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 999px;
    background: color-mix(in srgb, #3e6d26 12%, transparent);
    border: 1px solid color-mix(in srgb, #3e6d26 30%, transparent);
    color: #3e6d26;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
/* Curfew notice block */
.hero-curfew-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(62,109,38,0.08);
    border-left: 3px solid #3e6d26;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    max-width: 500px;
    margin: 0 auto;
}
.hero-curfew-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.hero-curfew-notice strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #3e6d26;
    margin-bottom: 3px;
}
.hero-curfew-notice p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-light, #666);
}
[data-theme="dark"] .hero-curfew-notice {
    background: rgba(95,168,77,0.08);
    border-left-color: #7bc554;
}
[data-theme="dark"] .hero-curfew-notice strong {
    color: #7bc554;
}
.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3e6d26;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.65); }
}

/* Заголовок */
.hero-container h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.12;
    margin: 0;
    color: var(--text-color);
    letter-spacing: -0.03em;
}
.hero-accent {
    color: #3e6d26;
}

/* Описание */
.hero-description {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-light, #666);
    line-height: 1.65;
    margin: 0;
    max-width: 620px;
}

/* CTA кнопки */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-btn-call,
.hero-btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    cursor: pointer;
    min-width: 190px;
}
.hero-btn-call {
    box-shadow: 0 4px 24px color-mix(in srgb, #3e6d26 35%, transparent);
}
.hero-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px color-mix(in srgb, #3e6d26 45%, transparent);
}
.hero-btn-order {
    background: transparent;
    color: #3e6d26;
    border: 2px solid #3e6d26;
    box-shadow: none;
}
.hero-btn-order:hover {
    background: #3e6d26;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px color-mix(in srgb, #3e6d26 35%, transparent);
}
[data-theme="dark"] .hero-btn-order {
    color: #7bc554;
    border-color: #7bc554;
}
[data-theme="dark"] .hero-btn-order:hover {
    background: #5fa84d;
    color: #fff;
    border-color: #5fa84d;
}

/* Stat-карточки */
.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
}
.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #e9ecef);
    border-radius: 16px;
    padding: 16px 20px;
    flex: 1 1 180px;
    max-width: 220px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hero-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}
[data-theme="dark"] .hero-stat-card {
    background: var(--card-bg, #1e1e1e);
    border-color: var(--border-color, #333);
}
.hero-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: color-mix(in srgb, #3e6d26 12%, transparent);
    color: #3e6d26;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-stat-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: var(--text-light, #888);
    font-weight: 500;
    margin-top: 2px;
}

/* Блок приложений */
.hero-app-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-app-label {
    font-size: 0.78rem;
    color: var(--text-light, #888);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-app-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-app-link img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.2s, opacity 0.2s;
    background: transparent !important;
}
.hero-app-link:hover img {
    transform: translateY(-2px);
    opacity: 0.88;
}

/* ── Адаптивность ──────────────────────── */
@media (max-width: 600px) {
    .hero-section { min-height: 70vh; padding: 80px 0 48px; }
    .hero-container { gap: 28px; }
    .hero-stat-card { flex: 1 1 140px; max-width: none; padding: 13px 14px; }
    .hero-stat-num { font-size: 0.92rem; }
}

.hero-section {
    background: var(--bg-color);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

[data-theme='dark'] .hero-section {
    background: var(--bg-color);
    color: var(--text-color);
}

/* Базовые стили для кнопок hero блока */
.hero-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-theme='dark'] .hero-section .btn:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Стили для наложения изображений в темной теме */
.hero-section .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[data-theme='dark'] .hero-section .dark-overlay {
    opacity: 1;
}

/* hero_section.css — заглушка для устранения 404 */ 
/* Grid layouts */
.grid {
    display: grid;
    gap: 32px;
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card styles */
.card {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
}

.card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.card img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}
