/* ==========================================================================
   ДИЗАЙН-СИСТЕМА: APPLE CLEAN LIGHT + FOREST GREEN (PREMIUM LIGHT MODE)
   ========================================================================== */
:root {
    --bg: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-header: rgba(250, 250, 250, 0.8);
    --primary: #2E6F1D;
    --primary-hover: #245716;
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(46, 111, 29, 0.3);
    
    --text: #1E293B;
    --text-secondary: #475569;
    --text-muted: #64748B;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1120px;
    --radius-card: 20px;
    --radius-btn: 12px;
    --transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 72px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.max-width-reader { max-width: 800px; }

/* ТИПОГРАФИКА */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; color: #0F172A; }
.section-center-header { text-align: center; max-width: 600px; margin: 0 auto 64px auto; }
.section-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); display: block; margin-bottom: 12px; }
.section-title { font-size: 38px; letter-spacing: -0.02em; color: #0F172A; }

/* КНОПКИ (ЖЕСТКАЯ ИЕРАРХИЯ) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-btn);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary { background-color: var(--primary); color: #FFFFFF; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(46, 111, 29, 0.15); }
.btn-secondary { background-color: #FFFFFF; color: var(--text); border: 1px solid var(--border); padding: 10px 20px; font-size: 13px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.btn-secondary:hover { background-color: #F8FAFC; border-color: rgba(0,0,0,0.15); }
.btn-large { padding: 18px 36px; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.btn-small { padding: 8px 16px; font-size: 12px; border-radius: 8px; }

/* ХЕДЕР */
.header { position: fixed; top: 0; left: 0; right: 0; height: 72px; background-color: var(--bg-header); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); z-index: 1000; }
.header-container { max-width: var(--max-width); height: 100%; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 900; letter-spacing: -0.02em; color: #0F172A; text-decoration: none; }
.logo-icon { width: 22px; height: 22px; color: var(--primary); }
.nav-status { display: flex; align-items: center; gap: 8px; background: rgba(46, 111, 29, 0.05); padding: 6px 14px; border-radius: 30px; border: 1px solid rgba(46, 111, 29, 0.12); }
.status-indicator { width: 6px; height: 6px; background-color: var(--primary); border-radius: 50%; box-shadow: 0 0 8px var(--primary); animation: pulse 2s infinite; }
.status-text { font-size: 12px; font-weight: 600; color: var(--primary); }

/* ЭКРАН 1: HERO */
.hero-section { padding: 100px 0; position: relative; border-bottom: 1px solid var(--border); background: radial-gradient(circle at 80% 20%, rgba(46, 111, 29, 0.03) 0%, transparent 50%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.badge { display: inline-block; padding: 6px 12px; background: #2E6F1D; border: 1px solid var(--border); border-radius: 30px; font-size: 12px; color: #FFF; font-weight: 500; margin-bottom: 24px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.hero-title { font-size: 58px; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em; color: #0F172A; }
.hero-subtitle { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.5; }

/* ФЛАГМАНСКАЯ КАРТОЧКА */
.hero-visual-container { display: flex; justify-content: center; }
.premium-product-card { background-color: var(--bg-card); border: 1px solid var(--border); border-radius: 32px; padding: 40px; width: 100%; max-width: 380px; position: relative; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.04); }
.card-glow { position: absolute; top: -20%; right: -20%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(46, 111, 29, 0.05) 0%, transparent 70%); }
.card-header-ui { display: flex; justify-content: space-between; align-items: start; margin-bottom: 48px; }
.card-tag { background: #E2E8F0; color: #334155; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 6px; letter-spacing: 0.03em; }
.seed-icon-wrapper { width: 48px; height: 48px; background: #F8FAFC; border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.seed-svg { width: 24px; height: 24px; }
.product-name { font-size: 26px; margin-bottom: 4px; color: #0F172A; }
.product-line { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.product-price-row { display: flex; justify-content: space-between; align-items: center; background: #F8FAFC; padding: 16px 20px; border-radius: 16px; border: 1px solid var(--border); }
.price-label { font-size: 11px; color: var(--text-muted); display: block; text-transform: uppercase; font-weight: 600; }
.price-value { font-size: 20px; font-weight: 900; color: #0F172A; }
.rating-block { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #D97706; }
.star-icon { width: 14px; height: 14px; }

/* БЛОК 2: BENEFITS */
.benefits-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 32px; transition: var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,0.01); }
.benefit-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.02); }
.benefit-icon { width: 44px; height: 44px; background: rgba(46, 111, 29, 0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 24px; }
.benefit-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.benefit-card h3 { font-size: 18px; margin-bottom: 12px; color: #0F172A; }
.benefit-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* БЛОК 3: ABOUT & METRICS */
.about-section { padding: 100px 0; border-bottom: 1px solid var(--border); background: #F8FAFC; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-desc { font-size: 15px; color: var(--text-secondary); margin: 16px 0 32px 0; }
.about-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: 14px; font-weight: 500; color: var(--text); }
.about-list li { display: flex; align-items: center; gap: 8px; }
.about-list li::before { content: "✓"; color: var(--primary); font-weight: 900; }
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.metric-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 1px 2px rgba(0,0,0,0.01); }
.metric-num { font-size: 36px; font-weight: 900; color: var(--primary); display: block; margin-bottom: 4px; }
.metric-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.05em; }

/* БЛОК 4: КАРУСЕЛЬ ВИТРИНЫ */
.products-section { padding: 100px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.products-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.carousel-hint { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.arrow-pulse { width: 16px; height: 16px; animation: pulse 1.5s infinite; }
.horizontal-scroll-container { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 24px; snap-type: x mandatory; }
.horizontal-scroll-container::-webkit-scrollbar { height: 4px; }
.horizontal-scroll-container::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 2px; }
/* Исправление отображения картинок в карусели */
.product-shelf-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-shelf-card .product-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    position: relative;
    background: #F1F5F9; /* Светлая подложка для пачки */
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    padding: 12px;
}

.product-shelf-card .product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Картинка больше не растягивается и не обрезается */
    mix-blend-mode: multiply; /* Убирает белый фон у картинки товара */
}

.product-shelf-card .shelf-item-desc {
    margin-bottom: 16px;
}
.product-img-box { height: 160px; background: #F1F5F9; position: relative; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.img-mock-placeholder { text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.vendor-tag { position: absolute; top: 12px; left: 12px; background: #FFFFFF; border: 1px solid var(--border); font-size: 9px; font-weight: 700; padding: 4px 8px; border-radius: 6px; text-transform: uppercase; color: var(--text-secondary); box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.shelf-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.shelf-item-title { font-size: 18px; margin-bottom: 4px; color: #0F172A; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shelf-item-desc { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.shelf-item-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 16px; }
.shelf-price-block .price-sub { font-size: 10px; color: var(--text-muted); display: block; text-transform: uppercase; }
.shelf-price-block .price-main { font-size: 15px; font-weight: 900; color: #0F172A; }

/* БЛОК 5: REVIEWS */
.reviews-section { padding: 100px 0; border-bottom: 1px solid var(--border); background: #F8FAFC; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 32px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 1px 2px rgba(0,0,0,0.01); }
.rating-stars { color: #D97706; font-size: 12px; margin-bottom: 16px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 32px; font-style: normal; }
.review-author-box { display: flex; align-items: center; gap: 12px; font-style: normal; }
.author-avatar { width: 36px; height: 36px; background: #F1F5F9; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--primary); }
.author-name { font-size: 13px; font-weight: 600; color: #0F172A; display: block; }
.author-label { font-size: 11px; color: var(--text-muted); }

/* БЛОК 6: STEPS */
.steps-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step-card { position: relative; }
.step-num { font-size: 48px; font-weight: 900; color: #E2E8F0; display: block; line-height: 1; margin-bottom: 12px; }
.step-card h3 { font-size: 16px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; color: #0F172A; }
.step-card p { font-size: 13px; color: var(--text-secondary); }

/* БЛОК 7: FAQ ACCORDION */
.faq-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; }
.faq-sticky-header { position: sticky; top: 120px; height: fit-content; }
.faq-accordion { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; background: none; border: none; font-family: var(--font-main); font-size: 16px; font-weight: 600; color: #0F172A; text-align: left; cursor: pointer; }
.accordion-icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.accordion-icon::before, .accordion-icon::after { content: ""; position: absolute; background-color: var(--text-secondary); transition: var(--transition); }
.accordion-icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.accordion-icon::after { left: 6px; top: 0; width: 2px; height: 14px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 300ms cubic-bezier(0.16, 1, 0.3, 1); }
.accordion-content p { padding-bottom: 24px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* БЛОК 8: STRIPED PREMIUM SEO ARTICLE */
.seo-article-section { padding: 80px 0; border-bottom: 1px solid var(--border); background: #F8FAFC; }
.premium-seo-flow { display: flex; flex-direction: column; gap: 48px; }
.seo-block h2 { font-size: 24px; margin-bottom: 16px; color: #0F172A; }
.seo-block p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.seo-ui-matrix-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 16px 0; }
.seo-matrix-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px; padding: 32px; box-shadow: 0 1px 2px rgba(0,0,0,0.01); }
.seo-matrix-card h3 { font-size: 16px; margin-bottom: 20px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.seo-matrix-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.seo-matrix-card li { font-size: 13px; color: var(--text-secondary); line-height: 1.5; padding-left: 16px; position: relative; }
.seo-matrix-card li::before { content: "•"; color: var(--primary); position: absolute; left: 0; font-weight: 900; }

/* БЛОК 9: FINAL CONVERSION */
.final-conversion-section { padding: 120px 0; }
.premium-cta-box { background: radial-gradient(circle at 50% 0%, rgba(46, 111, 29, 0.04) 0%, #FFFFFF 100%); border: 1px solid var(--border-hover); border-radius: 32px; padding: 80px 40px; text-align: center; max-width: 900px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.02); }
.final-cta-title { font-size: 42px; margin-bottom: 16px; letter-spacing: -0.02em; color: #0F172A; }
.final-cta-desc { font-size: 16px; color: var(--text-secondary); max-width: 540px; margin: 0 auto 40px auto; }

/* ПОДВАЛ */
.footer { border-top: 1px solid var(--border); padding: 40px 0; background-color: #FFFFFF; }
.footer-container { display: flex; justify-content: space-between; align-items: center; }
.footer-logo-text { font-size: 13px; font-weight: 900; letter-spacing: 0.05em; color: #0F172A; display: block; margin-bottom: 6px; }
.footer-legal { font-size: 11px; color: var(--text-muted); max-width: 440px; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 12px; color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-nav a:hover { color: var(--primary); }

/* СЛУЖЕБНЫЕ СИСТЕМНЫЕ УВЕДОМЛЕНИЯ (TOAST) */
.toast-notification { position: fixed; bottom: 24px; right: 24px; z-index: 1100; transform: translateY(100px); opacity: 0; transition: var(--transition); max-width: 360px; background: #FFFFFF; border: 2px solid var(--primary); border-radius: 16px; padding: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); display: flex; gap: 12px; }
.toast-notification.active { transform: translateY(0); opacity: 1; }
.toast-icon-box { color: var(--primary); flex-shrink: 0; }
.toast-svg { width: 20px; height: 20px; }
.toast-title { font-size: 14px; font-weight: 700; color: #0F172A; }
.toast-text { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* ==========================================================================
   КОМПОНЕНТЫ ПРЕМИУМ-КАРТОЧКИ (ВЫНЕСЕНО ИЗ HTML)
   ========================================================================== */

.card-header-ui-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-brand-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.product-image-wrapper {
    background: #F1F5F9;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.product-hero-img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: contain;
    border-radius: 12px;
    mix-blend-mode: multiply;
}

.product-line-hero {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Ограничиваем и аккуратно центрируем картинки внутри сеток товаров */
#products-carousel .aspect-\[4\/3\] img {
    object-fit: contain !important;
    max-height: 85% !important;
    width: auto !important;
    margin: auto;
}

.btn-hero-buy {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 20px;
}

.btn-hero-icon {
    margin-left: 8px;
    font-size: 13px;
}

@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: 0.6; } 100% { transform: scale(1); opacity: 1; } }

/* ==========================================================================
   MOBILE-FIRST RESPONSIVE ADAPTATION
   ========================================================================== */
@media (max-width: 960px) {
    body { padding-top: 60px; }
    .header { height: 60px; }
    .nav-status { display: none; }
    .hero-section { padding: 48px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-list { grid-template-columns: 1fr; }
    .metrics-grid { gap: 12px; }
    .metric-num { font-size: 28px; }
    .products-header-row { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .faq-sticky-header { position: relative; top: 0; }
    .seo-ui-matrix-row { grid-template-columns: 1fr; gap: 16px; }
    .final-cta-title { font-size: 28px; }
    .premium-cta-box { padding: 48px 20px; }
    .footer-container { flex-direction: column; text-align: center; gap: 24px; }
    .footer-nav { flex-direction: column; gap: 12px; }
}