/* GENERAL STYLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg-color: #0b0b0c; --card-bg: rgba(22, 22, 24, 0.4);
    --accent-color: #f4811f; --accent-hover: #ff983e;
    --text-color: #ffffff; --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
html { scroll-behavior: smooth; }
body { background-color: var(--bg-color); color: var(--text-color); font-family: var(--font-family); line-height: 1.6; overflow-x: hidden; position: relative; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ДВИЖУЩАЯСЯ СЕТКА (GRID BACKGROUND) */
.grid-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -3; overflow: hidden; perspective: 1000px; background: var(--bg-color); }
.grid-moving {
    position: absolute; top: 0; left: -50%; width: 200%; height: 150%;
    background-image: linear-gradient(rgba(244, 129, 31, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 129, 31, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(60deg) translateY(0);
    animation: gridAnimation 10s linear infinite;
    transform-origin: top center;
}
@keyframes gridAnimation { 0% { transform: rotateX(60deg) translateY(0); } 100% { transform: rotateX(60deg) translateY(50px); } }
.grid-fade { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 50% 20%, transparent 0%, var(--bg-color) 70%); z-index: -2; }

/* СВЕЧЕНИЯ */
.bg-glow { position: absolute; border-radius: 50%; filter: blur(120px); z-index: -1; opacity: 0.15; pointer-events: none; }
.bg-glow-1 { top: -10%; left: -5%; width: 600px; height: 600px; background: var(--accent-color); }
.bg-glow-2 { bottom: 20%; right: -10%; width: 500px; height: 500px; background: #ffaa55; }

/* SCROLL REVEAL (Плавное появление) */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; font-size: 16px; font-weight: 600; border-radius: 12px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-sm { padding: 8px 16px; font-size: 14px; border-radius: 8px; }
.btn-primary { background-color: var(--accent-color); color: #ffffff; }
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-3px); }
.btn-glow { box-shadow: 0 8px 25px rgba(244, 129, 31, 0.3); }
.btn-glow:hover { box-shadow: 0 12px 35px rgba(244, 129, 31, 0.45); }
.btn-secondary, .btn-outline { background-color: rgba(255,255,255,0.05); color: #ffffff; border: 1px solid var(--border-color); backdrop-filter: blur(10px); }
.btn-secondary:hover, .btn-outline:hover { background-color: rgba(255,255,255,0.1); border-color: var(--accent-color); color: var(--accent-color); transform: translateY(-3px); }

/* HEADER */
.header { background: rgba(11, 11, 12, 0.7); backdrop-filter: blur(16px); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; border-bottom: 1px solid var(--border-color); }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-size: 20px; font-weight: 800; display: flex; align-items: center; gap: 10px; color: #ffffff; }
.logo-icon { color: var(--accent-color); display: flex; align-items: center; }
.nav { display: flex; gap: 32px; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: #ffffff; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.lang-switcher { display: flex; background-color: rgba(255,255,255,0.03); padding: 4px; border-radius: 10px; border: 1px solid var(--border-color); }
.lang-btn { background: none; border: none; color: var(--text-muted); padding: 6px 12px; font-size: 13px; font-weight: 600; border-radius: 8px; cursor: pointer; transition: 0.2s; }
.lang-btn.active { background-color: var(--accent-color); color: #ffffff; }

@media (max-width: 968px) { .nav { display: none; } }

/* HERO */
.hero { padding-top: 160px; padding-bottom: 80px; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
@media (max-width: 968px) { .hero-container { grid-template-columns: 1fr; text-align: center; } .hero-actions { justify-content: center; } }
.hero-content h1 { font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-subtitle { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; }

/* SLIDER IN MOCKUP */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-badge-container { display: flex; justify-content: center; position: relative; }
.app-preview-card { background: var(--card-bg); backdrop-filter: blur(20px); border: 1px solid var(--border-color); border-radius: 24px; padding: 32px; width: 100%; max-width: 420px; box-shadow: 0 30px 60px rgba(0,0,0,0.6); position: relative; overflow: hidden; }
.floating-main { animation: float 6s ease-in-out infinite; z-index: 2; min-height: 300px;}
.floating-bg { position: absolute; top: 30px; right: -30px; width: 100%; height: 100%; background: rgba(30, 30, 32, 0.3); z-index: 1; transform: scale(0.95); animation: float 7s ease-in-out infinite reverse; }

.mockup-slide { position: absolute; top: 32px; left: 32px; right: 32px; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.mockup-slide.active { opacity: 1; pointer-events: auto; }
.preview-header { font-size: 18px; font-weight: 700; margin-bottom: 24px; border-left: 4px solid var(--accent-color); padding-left: 12px; }
.search-bar-mock { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 16px; display: flex; justify-content: space-between; color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.result-card-mock { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 16px; display: flex; gap: 16px; align-items: center; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.02); }
.mock-avatar { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.05); }
.mock-lines { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.mock-lines .line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.mock-lines .short { width: 40%; }
.mock-lines .long { width: 80%; }
.mock-price { font-weight: bold; color: var(--accent-color); }
.btn-mock { background: var(--accent-color); text-align: center; padding: 10px; border-radius: 10px; font-weight: bold; }
.preview-tag { position: absolute; bottom: 32px; left: 32px; display: inline-flex; background: rgba(244,129,31,0.15); color: var(--accent-color); padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; border: 1px solid rgba(244,129,31,0.2); }

/* MARQUEE */
.marquee-container { width: 100%; overflow: hidden; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 16px 0; margin: 40px 0; white-space: nowrap; }
.marquee-content { display: inline-block; animation: marquee 25s linear infinite; color: var(--text-muted); font-weight: 700; font-size: 18px; letter-spacing: 2px; }
.marquee-content span { color: #fff; margin: 0 15px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FEATURES & STORES */
.features { padding: 80px 0; }
.section-title { font-size: 38px; font-weight: 800; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.feature-card { background: var(--card-bg); backdrop-filter: blur(12px); border: 1px solid var(--border-color); padding: 40px 32px; border-radius: 24px; transition: 0.4s; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(244, 129, 31, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.feature-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: rgba(244, 129, 31, 0.1); border-radius: 16px; font-size: 28px; margin-bottom: 24px; border: 1px solid rgba(244, 129, 31, 0.2); }
.feature-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }

.for-stores { padding: 100px 0; }
.stores-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
@media (max-width: 968px) { .stores-container { grid-template-columns: 1fr; text-align: center; } .stores-list { text-align: left; display: inline-block; } }
.stores-content p { color: var(--text-muted); margin-bottom: 32px; }
.stores-list { list-style: none; margin-bottom: 40px; }
.stores-list li { margin-bottom: 16px; color: #e5e5ea; display: flex; align-items: center; gap: 10px; }
.store-box-mock { background: var(--card-bg); backdrop-filter: blur(20px); border: 1px solid var(--border-color); border-radius: 24px; padding: 40px; position: relative; overflow: hidden; }
.store-box-mock::before { content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: var(--accent-color); }
.store-header { font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.status-dot { width: 10px; height: 10px; background: #30d158; border-radius: 50%; box-shadow: 0 0 10px #30d158; }
.store-price { font-size: 42px; font-weight: 800; margin-bottom: 24px; }
.store-badge { background: rgba(48, 209, 88, 0.15); color: #30d158; padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 700; display: inline-block; }

/* FAQ ACCORDION */
.faq { padding: 80px 0 120px 0; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: 0.3s; }
.faq-item.active { border-color: var(--accent-color); }
.faq-question { padding: 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 18px; font-weight: 600; }
.faq-toggle { font-size: 24px; color: var(--accent-color); transition: 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; padding: 0 24px; opacity: 0; transition: all 0.4s ease; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 24px; opacity: 1; }

/* ==========================================================================
   MODERN PREMIUM FOOTER 2026
   ========================================================================== */
.footer { 
    background: #050505; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding: 80px 0 30px 0; 
    position: relative; 
    z-index: 10;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
@media (max-width: 968px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .brand-col .logo { justify-content: center; }
    .social-links { justify-content: center; }
}

.footer-col { display: flex; flex-direction: column; gap: 16px; }
.brand-col .logo { font-size: 24px; margin-bottom: 8px; }
.footer-desc { color: var(--text-muted); font-size: 15px; max-width: 280px; line-height: 1.6; }

/* Иконки соцсетей */
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-icon { 
    width: 44px; height: 44px; 
    border-radius: 12px; 
    background: rgba(255,255,255,0.05); 
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-icon:hover { 
    background: var(--accent-color); 
    color: #fff; 
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(244, 129, 31, 0.3);
}

.footer-col h4 { font-size: 18px; color: #fff; margin-bottom: 8px; font-weight: 700; letter-spacing: -0.3px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 15px; transition: 0.2s; display: inline-block; }
.footer-col a:hover { color: var(--accent-color); transform: translateX(4px); }
@media (max-width: 600px) { .footer-col a:hover { transform: translateY(-3px); translateX(0); } }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted); font-size: 14px;
}
@media (max-width: 600px) {
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
.footer-made { font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; }

/* MODALS */
.modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.3s; }
.modal.active { opacity: 1; pointer-events: auto; }
.modal-content { background: #161618; border: 1px solid var(--border-color); border-radius: 20px; padding: 40px; width: 100%; max-width: 400px; position: relative; transform: translateY(20px); transition: 0.3s; }
.modal.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 28px; color: var(--text-muted); cursor: pointer; }
.modal h3 { margin-bottom: 10px; font-size: 24px; }
.modal p { color: var(--text-muted); margin-bottom: 24px; }
.qr-placeholder { background: #fff; color: #000; padding: 40px; border-radius: 12px; font-weight: bold; font-size: 20px; }
.form-input { width: 100%; padding: 14px; margin-bottom: 16px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); color: #fff; border-radius: 10px; outline: none; }
.form-input:focus { border-color: var(--accent-color); }

/* --- Добавьте это в ваш style.css --- */

/* STATS BAR */
.stats { padding: 40px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); background: rgba(0,0,0,0.2); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 40px; }
.stat-number { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 8px; background: linear-gradient(to bottom, #fff, #8e8e93); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* REFINED BUTTONS (Градиентные рамки) */
.btn-primary { 
    background: linear-gradient(135deg, var(--accent-color), #d96f16); 
    position: relative; overflow: hidden;
}
.btn-primary::before { 
    content: ''; position: absolute; top:0; left:0; width: 100%; height: 100%; 
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent); opacity: 0; transition: 0.3s; 
}
.btn-primary:hover::before { opacity: 1; }

/* REFINED CARDS */
.feature-card { 
    background: var(--card-bg); 
    border: 1px solid transparent; /* Прозрачная граница для градиента */
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border-radius: 24px; transition: 0.4s;
    border: 1px solid var(--border-color);
}
.feature-card:hover { border-color: var(--accent-color); box-shadow: 0 0 30px rgba(244, 129, 31, 0.15); }

/* IMPROVED MARQUEE */
.marquee-container { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 20px 0; }
/* --- НОВЫЕ АНИМАЦИИ И ЛОГОТИПЫ --- */

/* Логотипы в бегущей строке */
.marquee-content {
    display: inline-flex;
    align-items: center;
}
.brand-logo {
    height: 40px; /* Высота логотипов */
    margin: 0 50px;
    object-fit: contain;
    /* Делаем их стильными, полупрозрачными и белыми */
    filter: grayscale(100%) brightness(200%) opacity(0.4);
    transition: all 0.4s ease;
    cursor: pointer;
}
.brand-logo:hover {
    /* При наведении возвращаем оригинальный цвет и яркость */
    filter: grayscale(0%) brightness(100%) opacity(1);
    transform: scale(1.1);
}

/* Пульсация для бейджа доставки */
.preview-tag {
    animation: pulse-glow 2.5s infinite;
}
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(244, 129, 31, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(244, 129, 31, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 129, 31, 0); }
}

/* Пробегающий блик для главных кнопок */
.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: btn-shine 4s infinite;
}
@keyframes btn-shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
/* ==========================================================================
   TRENDS 2026: HOW IT WORKS, BENTO SHOWCASE & TRUST CARDS
   ========================================================================== */

/* 1. TIMELINE (Как это работает) */
.how-it-works { padding: 100px 0; position: relative; }
.timeline-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; margin-top: 40px; }
@media (max-width: 968px) { .timeline-container { grid-template-columns: 1fr; gap: 40px; } .timeline-line { display: none; } }

.timeline-line { position: absolute; top: 30px; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.05); z-index: 1; }
.timeline-progress { width: 0%; height: 100%; background: linear-gradient(90deg, var(--accent-color), #ffaa55); transition: width 1.5s ease; }
.how-it-works.active .timeline-progress { width: 100%; }

.timeline-step { position: relative; z-index: 2; }
.step-number { width: 60px; height: 60px; background: #111113; border: 2px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--accent-color); margin-bottom: 24px; transition: all 0.4s ease; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.how-it-works.active .timeline-step:hover .step-number { border-color: var(--accent-color); box-shadow: 0 0 20px rgba(244,129,31,0.4); transform: scale(1.05); }

.step-card { background: var(--card-bg); backdrop-filter: blur(12px); border: 1px solid var(--border-color); padding: 32px 24px; border-radius: 20px; transition: 0.3s; }
.step-card h3 { font-size: 20px; margin-bottom: 12px; font-weight: 700; }
.step-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* 2. BENTO SHOWCASE (Внутри приложения) */
.app-showcase { padding: 100px 0; }
.bento-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 968px) { .bento-gallery { grid-template-columns: 1fr; } .grid-wide { grid-column: span 1 !important; } }

.bento-item { background: var(--card-bg); backdrop-filter: blur(20px); border: 1px solid var(--border-color); border-radius: 24px; padding: 40px; overflow: hidden; position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 280px; transition: border-color 0.3s, transform 0.3s; }
.bento-item:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.grid-wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 40px; }
@media (max-width: 640px) { .grid-wide { flex-direction: column; align-items: flex-start; } }

.bento-text h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.bento-text p { color: var(--text-muted); font-size: 15px; max-width: 320px; }

/* Внутренние фишки Bento */
.bento-image-mock { background: #000; border-radius: 16px; padding: 20px; border: 1px solid var(--border-color); min-width: 240px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.spec-screen .spec-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; }
.spec-screen .spec-row span { color: var(--text-muted); }
.spec-screen .spec-row strong { color: #fff; font-family: monospace; }

.bento-price-tag { font-size: 48px; font-weight: 900; color: var(--accent-color); background: linear-gradient(135deg, #f4811f, #ffaa55); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-top: 20px; text-align: right; font-family: monospace; }
.bento-basket-mock { font-size: 72px; align-self: flex-end; opacity: 0.15; filter: grayscale(1); margin-top: 20px; transition: opacity 0.3s; }
.bento-item:hover .bento-basket-mock { opacity: 0.8; filter: grayscale(0); }

/* 3. TRUST & SAFETY (Безопасность и Гарантии) */
.trust-safety { padding: 100px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 968px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-card-modern {
    background: rgba(22, 22, 24, 0.2); backdrop-filter: blur(20px);
    border: 1px solid var(--border-color); border-radius: 24px; padding: 40px;
    position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Эффект светящегося контура 2026 */
.trust-glow-edge { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; border-radius: 24px; border: 1px solid transparent; transition: 0.4s; }
.trust-card-modern:hover { transform: translateY(-6px); background: rgba(22, 22, 24, 0.5); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.trust-card-modern:hover .trust-glow-edge { border-color: rgba(244,129,31,0.3); box-shadow: inset 0 0 15px rgba(244,129,31,0.05); }

.trust-icon-wrapper { width: 52px; height: 52px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--accent-color); margin-bottom: 28px; transition: 0.3s; }
.trust-card-modern:hover .trust-icon-wrapper { background: var(--accent-color); color: #fff; box-shadow: 0 0 15px rgba(244,129,31,0.4); transform: scale(1.05); }

.trust-card-modern h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px; }
.trust-card-modern p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }   
/* ==========================================================================
   PREMIUM BENTO SHOWCASE (Внутри приложения)
   ========================================================================== */
.app-showcase { padding: 120px 0; }
.bento-premium-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-top: 50px;
}
@media (max-width: 968px) {
    .bento-premium-grid { grid-template-columns: 1fr; }
}

/* Общий стиль карточек Bento */
.bento-card {
    background: rgba(22, 22, 24, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.bento-card:hover {
    border-color: rgba(244, 129, 31, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

/* Расположение на сетке */
.bento-large { grid-row: span 2; }
.bento-action { justify-content: space-between; }

/* Текст внутри Bento */
.bento-text { position: relative; z-index: 2; margin-bottom: 40px; }
.bento-text h3 { font-size: 26px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.bento-text p { color: var(--text-muted); font-size: 16px; max-width: 90%; line-height: 1.6; }

/* Декоративный фон-сетка для левой карточки (как в приложении) */
.bento-bg-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px; z-index: 0; opacity: 0.5;
}

/* ================== ИМИТАЦИЯ UI ПРИЛОЖЕНИЯ ================== */

/* 1. Таблица характеристик (yar3.png) */
.ui-mockup-specs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; overflow: hidden; position: relative; z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.spec-cell { background: #161618; padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.spec-label { font-size: 11px; color: #666; font-weight: 700; letter-spacing: 1px; }
.spec-value { font-size: 20px; font-weight: 800; font-family: 'Courier New', Courier, monospace; color: #fff; }

/* 2. Блок магазина (yar4.png) */
.ui-mockup-store {
    background: linear-gradient(145deg, #1e1e20, #161618);
    border: 1px solid rgba(244, 129, 31, 0.15);
    border-radius: 24px; padding: 24px; position: relative; z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.store-top { display: flex; align-items: center; gap: 16px; }
.store-avatar-circle { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(45deg, #2a2a2e, #1a1a1c); box-shadow: inset 0 2px 4px rgba(255,255,255,0.05); }
.store-name-block { flex: 1; }
.store-name-block .name { font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 6px; }
.store-name-block .dot { width: 6px; height: 6px; background: var(--accent-color); border-radius: 50%; }
.store-name-block .rating { font-size: 12px; color: var(--accent-color); font-weight: 700; margin-top: 4px; }
.store-price-block { text-align: right; }
.store-price-block .price { font-size: 24px; font-weight: 800; color: #fff; }
.store-price-block small { font-size: 12px; color: var(--text-muted); }
.store-price-block .badge { font-size: 10px; color: var(--accent-color); border: 1px solid var(--accent-color); border-radius: 6px; padding: 2px 6px; margin-top: 4px; display: inline-block; font-weight: 700; }

/* 3. Кнопка корзины (Свечение и UI) */
.bento-glow-bg {
    position: absolute; bottom: -50px; right: -50px; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(244,129,31,0.2) 0%, transparent 70%); z-index: 0;
}
.ui-mockup-action { position: relative; z-index: 2; display: flex; justify-content: flex-end; }
.app-btn-sebete {
    background: var(--accent-color); color: #000; font-weight: 800; font-size: 16px;
    padding: 16px 32px; border-radius: 30px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 10px 25px rgba(244, 129, 31, 0.4); cursor: pointer; transition: 0.3s;
}
.app-btn-sebete:hover { transform: scale(1.05); box-shadow: 0 15px 35px rgba(244, 129, 31, 0.5); }
/* ==========================================================================
   FINAL CTA BLOCK (Финальный призыв)
   ========================================================================== */
.final-cta { padding: 60px 0 120px 0; position: relative; z-index: 10; }

.cta-box {
    position: relative;
    background: linear-gradient(135deg, #1a1a1c, #111112);
    border: 1px solid rgba(244, 129, 31, 0.2);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Внутреннее свечение бокса */
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(244, 129, 31, 0.15) 0%, transparent 60%);
    z-index: 0; pointer-events: none;
}

.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }

.cta-content h2 { 
    font-size: 46px; 
    font-weight: 800; 
    margin-bottom: 24px; 
    letter-spacing: -1px; 
    background: linear-gradient(to right, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p { 
    color: var(--text-muted); 
    font-size: 18px; 
    margin-bottom: 40px; 
    line-height: 1.6; 
}

.cta-subtext { 
    margin-top: 20px !important; 
    font-size: 13px !important; 
    color: #666 !important; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

@media (max-width: 768px) {
    .cta-box { padding: 50px 20px; border-radius: 28px; }
    .cta-content h2 { font-size: 32px; }
}

/* ==========================================================================
   ФИНАЛЬНЫЕ ШТРИХИ: СКРОЛЛБАР, UX И МОБИЛЬНОЕ МЕНЮ
   ========================================================================== */

/* Кастомный скроллбар для Windows/Linux */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

/* Исправление отступа при клике на якорные ссылки меню */
html { scroll-padding-top: 100px; }

/* Пауза бегущей строки при наведении (удобно рассматривать логотипы) */
.marquee-content:hover { animation-play-state: paused; }

/* Отступ между магазинами в блоке Showcase */
.ui-mockup-store .store-top + .store-top { margin-top: 16px; padding-top: 16px; border-top: 1px dashed rgba(255,255,255,0.1); }

/* Мобильный бургер */
.burger-menu {
    display: none; flex-direction: column; justify-content: space-between;
    width: 24px; height: 18px; background: transparent; border: none; cursor: pointer; z-index: 2000; margin-left: 10px;
}
.burger-menu span { width: 100%; height: 2px; background: #fff; transition: 0.3s; border-radius: 2px; }

@media (max-width: 968px) {
    .burger-menu { display: flex; }
    /* Стили для выезжающего меню */
    .nav {
        position: fixed; top: 0; right: -100%; width: 100vw; height: 100vh;
        background: rgba(11, 11, 12, 0.95); backdrop-filter: blur(15px);
        flex-direction: column; justify-content: center; align-items: center; gap: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1500;
    }
    .nav.active { right: 0; }
    .nav a { font-size: 24px; font-weight: 700; color: #fff; }
    /* Анимация крестика бургера */
    .burger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.active span:nth-child(2) { opacity: 0; }
    .burger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
/* ==========================================================================
   МАКСИМАЛЬНАЯ АДАПТАЦИЯ (MOBILE & TABLET)
   ========================================================================== */

/* Планшеты и большие телефоны (до 768px) */
@media (max-width: 768px) {
    /* 1. Типографика и отступы */
    .hero { padding-top: 120px; padding-bottom: 60px; }
    .hero-content h1 { font-size: 34px; margin-bottom: 16px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 30px; }
    .section-title { font-size: 28px; margin-bottom: 40px; }
    
    /* Уменьшаем отступы между секциями, чтобы экономить место на экране */
    .features, .how-it-works, .app-showcase, .trust-safety, .for-stores, .faq { padding: 60px 0; }
    
    /* 2. Кнопки в первом экране (удобно для пальца) */
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    /* 3. Статистика (в один столбик) */
    .stats { padding: 30px 0; }
    .stats-grid { grid-template-columns: 1fr; gap: 24px; }
    .stat-number { font-size: 36px; }

    /* 4. Вертикальный Таймлайн ("Как это работает") */
    .timeline-container { 
        display: flex; 
        flex-direction: column; 
        gap: 30px; 
        border-left: 2px solid rgba(244,129,31,0.3); /* Оранжевая линия слева */
        padding-left: 24px; 
        margin-left: 16px; 
        margin-top: 20px;
    }
    .timeline-step { position: relative; }
    .step-number { 
        width: 36px; height: 36px; 
        font-size: 14px; 
        position: absolute; 
        left: -44px; /* Сдвигаем кружок на линию */
        top: 0; 
        margin-bottom: 0; 
        z-index: 2;
        background: var(--bg-color);
    }
    .step-card { padding: 20px 16px; margin-top: 16px; }

    /* 5. Bento-карточки (интерфейс приложения) */
    .bento-card { padding: 24px; border-radius: 24px; }
    .ui-mockup-specs { grid-template-columns: 1fr; /* Характеристики в один столбик */ }
    .spec-cell { padding: 16px; }
    .store-top { flex-direction: column; align-items: flex-start; text-align: left; }
    .store-price-block { text-align: left; margin-top: 8px; }
    
    /* 6. Финальный CTA и Модальные окна */
    .cta-box { padding: 40px 20px; border-radius: 24px; }
    .cta-content h2 { font-size: 26px; }
    .modal-content { width: 92%; padding: 30px 20px; }
}

/* Маленькие телефоны (до 480px) */
@media (max-width: 480px) {
    /* Адаптация шапки */
    .logo { font-size: 16px; gap: 6px; }
    .logo-icon svg { width: 20px; height: 20px; }
    
    .lang-btn { padding: 4px 8px; font-size: 11px; }
    .btn-sm { padding: 6px 10px; font-size: 12px; }
    
    /* Уменьшение мокапов */
    .app-preview-card { padding: 20px; border-radius: 20px; }
    .preview-header { font-size: 16px; margin-bottom: 16px; }
    .search-bar-mock { padding: 12px; font-size: 12px; }
    
    /* Отступы карточек */
    .feature-card { padding: 30px 20px; }
    .trust-card-modern { padding: 30px 20px; }
    .faq-question { padding: 16px; font-size: 16px; }
    .faq-answer { padding: 0 16px; }
}