/* LUNCH PRO - ПРЕМИАЛЬНЫЙ СТИЛЬ 2026 
   Основные принципы: Bento Grid, Glassmorphism, Адаптивность
*/

:root {
    --accent: #FF5F1F;         /* Насыщенный оранжевый */
    --accent-soft: #fff5ed;    /* Кремовый для подложек */
    --dark: #0f172a;           /* Глубокий темный */
    --gray: #64748b;           /* Спокойный серый */
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --radius-lg: 32px;
    --radius-md: 20px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- ДЕКОРАТИВНЫЕ ПЯТНА --- */
.blob-1, .blob-2 {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,95,31,0.06) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    filter: blur(80px);
}
.blob-1 { top: -150px; right: -150px; }
.blob-2 { bottom: -150px; left: -150px; }

/* --- ОБЩИЕ КОМПОНЕНТЫ --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.badge {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}
.acc-icon {
    width: 22px;
    height: 22px;
    color: var(--accent) !important; /* Насильно возвращаем оранжевый */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn {
    background: var(--accent);
    padding: 18px 36px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary { background: var(--accent); color: white; }
.btn-secondary { background: #f1f5f9; color: var(--dark); }
.btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(255, 95, 31, 0.2); }

/* --- НАВИГАЦИЯ --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
}

.nav-container {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 24px; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--accent); }

.nav-menu { display: flex; align-items: center; }
.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    margin-left: 25px;
    font-size: 14px;
    transition: 0.3s;
}
.nav-menu a:hover { color: var(--accent); }

.nav-btn {
    background: var(--dark);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 14px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}

/* --- HERO --- */
.hero { padding: 160px 0 80px; min-height: 90vh; display: flex; align-items: center; }
.hero-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-content { flex: 1.2; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.1; font-weight: 800; letter-spacing: -3px; margin-bottom: 24px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 18px; color: var(--gray); margin-bottom: 40px; max-width: 500px; }
.hero-btns { display: flex; gap: 15px; }
.hero-image { flex: 1; position: relative; }
.hero-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(2deg); }

/* --- СТАТИСТИКА --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--dark);
    padding: 50px;
    border-radius: var(--radius-lg);
    color: white;
    text-align: center;
    margin-bottom: 100px;
}
.stat-number { display: block; font-size: 42px; font-weight: 800; color: var(--accent); margin-bottom: 5px; }
.stat-item p { font-size: 14px; opacity: 0.7; }

/* --- BENTO MENU --- */
.section-header { margin-bottom: 50px; text-align: left; }
.section-header h2 { font-size: 42px; font-weight: 800; letter-spacing: -1.5px; }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    gap: 24px;
    margin-bottom: 100px;
}
.bento-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid #f1f1f1;
}
.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item:not(.large) { grid-column: span 2; }
.bento-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: 0.6s;
}
.bento-item:hover .bento-img { transform: scale(1.05); }
.bento-info {
    position: relative; z-index: 1;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    margin: 15px; padding: 20px; border-radius: 20px;
}
.day-label { color: var(--accent); font-weight: 800; font-size: 11px; text-transform: uppercase; }
.bento-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; }
.btn-buy { background: var(--dark); color: white; padding: 8px 16px; border-radius: 10px; text-decoration: none; font-size: 14px; }

/* --- ПРОЦЕСС --- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding: 60px 0; }
.step { text-align: center; }
.step-icon { width: 70px; height: 70px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; border-radius: 20px; margin: 0 auto 20px; }

/* --- КОРПОРАТИВНОЕ ПИТАНИЕ (B2B) --- */
.corporate-section { padding: 80px 0; }
.corporate-card { background: var(--dark); border-radius: var(--radius-lg); display: flex; overflow: hidden; color: white; }
.corporate-content { flex: 1.2; padding: 60px; }
.corporate-content h2 { font-size: 40px; margin-bottom: 20px; }
.corporate-list { list-style: none; margin: 30px 0; }
.corporate-list li { display: flex; gap: 15px; margin-bottom: 20px; }
.corporate-list i { color: var(--accent); flex-shrink: 0; }
.corporate-visual { flex: 1; position: relative; background: #1e293b; }
.corporate-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.glass-stat { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 20px; border-radius: 20px; text-align: center; border: 1px solid rgba(255,255,255,0.1); }

/* --- FAQ / АККОРДЕОН --- */
.accordion { max-width: 800px; margin: 40px auto; }
.accordion-item { border-bottom: 1px solid #f1f1f1; }
.accordion-header { width: 100%; padding: 20px 0; background: none; border: none; display: flex; justify-content: space-between; cursor: pointer; font-size: 18px; font-weight: 700; text-align: left; }
.accordion-header span { display: flex; align-items: center; gap: 15px; }
.accordion-content { max-height: 0; overflow: hidden; transition: 0.3s; color: var(--gray); padding-left: 37px; }
.accordion-item.active .accordion-content { max-height: 200px; padding-bottom: 20px; }
.accordion-item.active .arrow-icon { transform: rotate(180deg); color: var(--accent); }

/* --- ОТЗЫВЫ --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.review-card { background: var(--white); padding: 30px; border-radius: var(--radius-lg); border: 1px solid #f1f1f1; box-shadow: var(--shadow); transition: 0.3s; }
.review-card:hover { transform: translateY(-10px); }
.review-card.featured { background: var(--dark); color: white; }
.review-user { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background-size: cover; border: 2px solid var(--accent); }
.user-tag { font-size: 11px; text-transform: uppercase; color: var(--accent); font-weight: 800; }
.star-icon { width: 16px; height: 16px; fill: #FFD700; color: #FFD700; }

/* --- ФОРМА ЗАКАЗА --- */
.order-card { background: var(--dark); padding: 60px; border-radius: var(--radius-lg); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 80px 0; }
.order-form input { width: 100%; padding: 18px; margin-bottom: 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: white; }

/* --- КОНТАКТЫ --- */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #f8fafc; border-radius: var(--radius-lg); padding: 50px; margin-bottom: 100px}
.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; text-decoration: none; color: inherit; }
.c-icon { width: 50px; height: 50px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.messenger-pills { display: flex; gap: 10px; }
.pill { padding: 10px 20px; border-radius: 50px; color: white; text-decoration: none; font-size: 14px; font-weight: 600; }
.pill.tg { background: #0088cc; }
.pill.wa { background: #25d366; }
.contacts-map { border-radius: 20px; overflow: hidden; min-height: 300px; }
.contacts-map img { width: 100%; height: 100%; object-fit: cover; }

/* --- FOOTER --- */
.final-footer { padding: 40px 0; border-top: 1px solid #eee; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }

/* ==========================================================================
   МЕДИА-ЗАПРОСЫ (АДАПТАЦИЯ)
   ========================================================================== */

@media (max-width: 992px) {
    .nav-menu { display: none; } /* Скрываем обычное меню */
    .mobile-menu-btn { display: block; }
    
    /* Стили для активного мобильного меню (управляется через JS) */
    .nav-menu.active {
        display: flex; flex-direction: column; position: fixed; top: 0; left: 0; 
        width: 100%; background: white; z-index: 999; 
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .nav-menu.active a {
    display: flex;
    align-items: center;
    gap: 12px; /* Расстояние между иконкой и текстом */
    color: var(--dark);
    justify-content: center;
}

.nav-menu.active a i {
    width: 20px;
    height: 20px;
    color: var(--accent); /* Оранжевый цвет для иконок в меню */
    stroke-width: 2.5px;
}

/* Убедимся, что кнопка закрытия (крестик) видна */
.mobile-menu-btn {
    position: relative;
    z-index: 1001; /* Выше чем само меню */
}

.mobile-menu-btn i {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero p { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
    .hero-image img { max-width: 300px; }

    .corporate-card, .order-card, .contacts-grid { grid-template-columns: 1fr; }
    .corporate-visual { height: 250px; order: -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 30px; }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-item.large, .bento-item:not(.large) { grid-column: span 1; min-height: 350px; }
    
    .section-header h2 { font-size: 30px; }
    .hero h1 { font-size: 38px; }
    
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}