* { box-sizing: border-box; margin: 0; padding: 0; }
:root { --primary: #7ab51b; --primary-light: #8fd14f; --bg-dark: #070707; --bg-card: #171717; --bg-section: #111; --text: #fff; --border: #333; }
html { scroll-behavior: smooth; }
body { background: var(--bg-dark); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; cursor: none; }
@media (max-width: 768px) { body { cursor: auto; } .cursor, .cursor-follower { display: none; } }

.cursor { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transition: transform 0.1s; mix-blend-mode: difference; }
.cursor-follower { width: 40px; height: 40px; border: 2px solid var(--primary); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transition: transform 0.3s ease, width 0.3s, height 0.3s; transform: translate(-50%, -50%); }
.cursor-follower.hover { width: 60px; height: 60px; background: rgba(122, 181, 27, 0.1); }

#particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

.header { position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: rgba(7, 7, 7, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 100; border-bottom: 1px solid rgba(122, 181, 27, 0.2); transition: all 0.3s; }
.header.scrolled { padding: 10px 5%; background: rgba(7, 7, 7, 0.95); box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5); }
.logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 900; letter-spacing: 1px; }
.logo-icon { font-size: 28px; animation: logoPulse 2s ease-in-out infinite; }
@keyframes logoPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.btn { background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: bold; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; min-height: 44px; position: relative; overflow: hidden; transition: all 0.3s ease; border: none; cursor: none; }
@media (max-width: 768px) { .btn { cursor: pointer; } }
.btn-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s; }
.btn:hover .btn-shine { left: 100%; }
.btn:hover { background: var(--primary-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(122, 181, 27, 0.5); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn-large { padding: 16px 32px; font-size: 16px; }
.btn-outline { background: transparent; border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); }
.btn-glow { animation: glow 2s ease-in-out infinite; }
@keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(122, 181, 27, 0.4); } 50% { box-shadow: 0 0 40px rgba(122, 181, 27, 0.8); } }

/* ИСПРАВЛЕННЫЙ БАННЕР ЗДЕСЬ: правильный градиент + картинка */
.hero { min-height: 100vh; background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%), url('img/banner.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; padding: 120px 5% 60px; position: relative; overflow: hidden; }
.hero-bg-animation { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%, rgba(122, 181, 27, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(122, 181, 27, 0.1) 0%, transparent 50%); animation: bgMove 15s ease-in-out infinite; }
@keyframes bgMove { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.1) rotate(5deg); } }

.floating-shapes { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; background: var(--primary); opacity: 0.1; animation: float 20s ease-in-out infinite; }
.shape-1 { width: 300px; height: 300px; top: 10%; left: 10%; }
.shape-2 { width: 200px; height: 200px; top: 60%; right: 10%; animation-delay: -7s; }
.shape-3 { width: 150px; height: 150px; bottom: 10%; left: 30%; animation-delay: -14s; }
@keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(0, -100px) rotate(180deg); } }

.hero-content { max-width: 900px; text-align: center; position: relative; z-index: 2; }
.hero-badge { display: inline-block; padding: 8px 20px; background: rgba(122, 181, 27, 0.15); border: 1px solid var(--primary); border-radius: 20px; font-size: 12px; letter-spacing: 2px; margin-bottom: 20px; animation: fadeInDown 1s ease-out; }
h1 { font-size: clamp(2.5rem, 8vw, 6rem); margin-bottom: 20px; line-height: 1.1; font-weight: 900; animation: fadeInUp 1s ease-out 0.3s both; }
h1 .highlight { background: linear-gradient(135deg, var(--primary), var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; animation: shimmer 3s ease-in-out infinite; }
@keyframes shimmer { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.3); } }
.hero-text { font-size: clamp(1rem, 2.5vw, 1.3rem); margin-bottom: 30px; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.9rem; opacity: 0.7; margin-top: 5px; }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; animation: bounce 2s infinite; }
.mouse { width: 26px; height: 40px; border: 2px solid var(--primary); border-radius: 13px; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--primary); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scroll 1.5s infinite; }
@keyframes scroll { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 20px; } }
.scroll-text { font-size: 11px; letter-spacing: 1px; opacity: 0.6; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }

section { padding: 80px 5%; position: relative; z-index: 1; }
.dark { background: var(--bg-section); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; padding: 6px 16px; background: rgba(122, 181, 27, 0.15); border-radius: 15px; font-size: 12px; letter-spacing: 2px; color: var(--primary); margin-bottom: 15px; }
.section-title { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; margin-bottom: 15px; }
.section-title .highlight { color: var(--primary); }
.section-line { width: 60px; height: 3px; background: var(--primary); margin: 0 auto; border-radius: 2px; }

.grid { display: grid; gap: 25px; max-width: 1200px; margin: 0 auto; }
.products-grid, .locations-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.product-card, .feature-card, .location-card { background: var(--bg-card); border: 1px solid var(--border); padding: 35px; border-radius: 16px; position: relative; overflow: hidden; transition: all 0.4s ease; }
.product-card:hover, .feature-card:hover, .location-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 50px rgba(122, 181, 27, 0.2); }

.card-glow { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(122, 181, 27, 0.15), transparent 50%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.product-card:hover .card-glow { opacity: 1; }

.card-icon { font-size: 4rem; margin-bottom: 15px; animation: iconFloat 3s ease-in-out infinite; }
@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.card-badge { position: absolute; top: 20px; right: 20px; padding: 5px 12px; background: var(--primary); border-radius: 12px; font-size: 11px; font-weight: bold; letter-spacing: 1px; animation: badgePulse 2s infinite; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(122, 181, 27, 0.7); } 50% { box-shadow: 0 0 0 10px rgba(122, 181, 27, 0); } }

.product-card h3, .location-card h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--primary); }
.product-name { color: #aaa; margin-bottom: 15px; font-size: 0.95rem; }
.price { margin: 20px 0; display: flex; align-items: baseline; gap: 5px; }
.price-value { font-size: 2.5rem; font-weight: 900; color: var(--primary); }
.price-currency { font-size: 1.5rem; color: var(--primary); }
.features-list { list-style: none; margin-bottom: 20px; text-align: left; }
.features-list li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; opacity: 0.9; }
.features-list li:last-child { border-bottom: none; }
.btn-card { width: 100%; }

.feature-card { text-align: center; }
.feature-icon-wrapper { position: relative; display: inline-block; margin-bottom: 20px; }
.feature-icon { font-size: 3.5rem; position: relative; z-index: 2; }
.icon-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border: 2px solid var(--primary); border-radius: 50%; animation: ringPulse 2s ease-out infinite; }
@keyframes ringPulse { 0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; } }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--primary); }
.feature-card p { opacity: 0.8; font-size: 0.95rem; }
.feature-number { position: absolute; bottom: 15px; right: 20px; font-size: 3rem; font-weight: 900; opacity: 0.1; color: var(--primary); }

.location-card { text-align: center; }
.location-glow { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--primary), transparent); transform: scaleX(0); transition: transform 0.4s; }
.location-card:hover .location-glow { transform: scaleX(1); }
.location-icon { font-size: 2.5rem; margin-bottom: 15px; }
.location-address { opacity: 0.8; margin-bottom: 20px; }
.location-contact { padding-top: 20px; border-top: 1px solid var(--border); }
.contact-name { font-weight: bold; margin-bottom: 5px; }
.phone-link { display: inline-block; color: var(--primary); text-decoration: none; font-size: 1.1rem; font-weight: bold; padding: 8px; transition: all 0.3s; }
.phone-link:hover { color: var(--primary-light); transform: scale(1.05); }

.review-card { background: var(--bg-card); padding: 40px; border-radius: 16px; max-width: 700px; margin: 0 auto 30px; text-align: center; position: relative; border: 1px solid var(--border); transition: all 0.4s; }
.review-card:hover { border-color: var(--primary); transform: scale(1.02); }
.review-quote { font-size: 5rem; color: var(--primary); opacity: 0.3; line-height: 1; margin-bottom: -20px; }
.stars { color: #ffd700; font-size: 1.8rem; margin-bottom: 15px; animation: starGlow 2s infinite; }
@keyframes starGlow { 0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); } 50% { text-shadow: 0 0 25px rgba(255, 215, 0, 0.9); } }
.review-text { font-size: 1.1rem; font-style: italic; margin-bottom: 15px; opacity: 0.95; }
.review-author { opacity: 0.6; font-size: 0.9rem; }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); margin-bottom: 15px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.faq-item:hover { border-color: var(--primary); }
.faq-question { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: none; transition: background 0.3s; }
@media (max-width: 768px) { .faq-question { cursor: pointer; } }
.faq-question:hover { background: rgba(122, 181, 27, 0.05); }
.faq-question h3 { color: var(--primary); font-size: 1.1rem; font-weight: 600; }
.faq-toggle { font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; font-weight: 300; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s; padding: 0 25px; }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 25px 20px; }
.faq-answer p { opacity: 0.9; }

footer { padding: 40px 5%; background: #000; border-top: 1px solid var(--border); text-align: center; }
.footer-logo { font-size: 1.5rem; font-weight: 900; margin-bottom: 10px; }
.footer-text { opacity: 0.6; margin-bottom: 20px; font-size: 0.9rem; }
.footer-links { margin-bottom: 20px; }
.footer-link { color: var(--primary); text-decoration: none; font-weight: bold; transition: color 0.3s; }
.footer-link:hover { color: var(--primary-light); }
.copyright { opacity: 0.4; font-size: 0.85rem; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .header { padding: 12px 4%; }
    .logo { font-size: 20px; }
    .btn { padding: 10px 16px; font-size: 13px; }
    section { padding: 60px 4%; }
    .hero { padding: 100px 4% 50px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 2rem; }
    .product-card, .feature-card, .location-card { padding: 25px; }
    .review-card { padding: 30px 20px; }
}
@media (max-width: 480px) {
    .header { flex-direction: column; gap: 10px; }
    .logo { font-size: 18px; }
    .btn { width: 100%; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 15px; }
    h1 { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .price-value { font-size: 2rem; }
}
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 100px 5% 40px; }
    .scroll-indicator { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}