:root {
            --bg: #05050a; --bg-card: #0c0c17; --primary: #ffd60b; --secondary: #25d366;
            --text: #e2e2ec; --text-muted: #8c96a8; --neon-pink: #ff4bed; --neon-blue: #00c8ff; --neon-purple: #b355ff; --neon-orange: #ff6b35;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg); color: var(--text); font-family: system-ui, -apple-system, sans-serif; overflow-x: hidden; -webkit-font-smoothing: antialiased; line-height: 1.7; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        header { background: rgba(12,12,23,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.03); padding: 16px 0; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; position: relative; }
        .logo-img { height: 60px; width: auto; object-fit: contain; }
        header nav { display: flex; align-items: center; }
        header nav a { color: var(--text); text-decoration: none; font-weight: 600; margin: 0 14px; font-size: 0.92rem; transition: color 0.3s; }
        header nav a:hover, header nav a.active { color: var(--primary); }
        .header-tel-desktop { display: inline-flex; align-items: center; gap: 8px; color: var(--bg); background: linear-gradient(135deg, var(--primary) 0%, #ffb900 100%); text-decoration: none; font-weight: 800; padding: 10px 22px; border-radius: 50px; font-size: 0.95rem; box-shadow: 0 0 15px rgba(255,214,11,0.2); transition: transform 0.3s, box-shadow 0.3s; }
        .header-tel-desktop:hover { transform: scale(1.02); box-shadow: 0 0 20px rgba(255,214,11,0.4); }
        .menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.8rem; cursor: pointer; padding: 5px; z-index: 1001; transition: color 0.3s; }
        .menu-toggle:hover { color: var(--primary); }

        .hero { position: relative; padding: 70px 0 40px; text-align: center; background: radial-gradient(circle at top, rgba(255,107,53,0.08) 0%, transparent 60%); }
        .hero-kicker { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: var(--neon-orange); letter-spacing: 2px; margin-bottom: 10px; }
        .hero h1 { font-size: 2.6rem; font-weight: 900; line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px; color: #fff; }
        .hero h1 .accent { color: var(--neon-orange); text-shadow: 0 0 20px rgba(255,107,53,0.4); }
        .hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 720px; margin: 0 auto 25px; line-height: 1.6; }
        .hero-cta { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: transform 0.3s, box-shadow 0.3s; }
        .btn-wa { background: var(--secondary); color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
        .btn-tel { background: white; color: var(--bg); box-shadow: 0 4px 20px rgba(255,255,255,0.08); }
        .btn:hover { transform: translateY(-2px); }
        .hero-proof { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 25px; }
        .hero-proof-dot { width: 6px; height: 6px; background: var(--secondary); border-radius: 50%; box-shadow: 0 0 8px var(--secondary); }

        .shake-img-wrapper { display: inline-block; margin: 20px auto 25px; max-width: 550px; width: 100%; }
        .shake-img-wrapper a { display: block; }
        .shake-img-wrapper img { width: 100%; height: auto; border-radius: 14px; border: 2px solid var(--neon-orange); box-shadow: 0 0 25px rgba(255,107,53,0.25); transition: box-shadow 0.3s; cursor: pointer; display: block; }
        .shake-img-wrapper img:hover { animation: shakeImage 0.5s ease-in-out; box-shadow: 0 0 40px rgba(255,107,53,0.5); border-color: var(--primary); }

        .slider-section { background: rgba(12,12,23,0.4); padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); margin-bottom: 20px; }
        .slider-label { text-align: center; font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 15px; font-weight: 600; }
        .slider-wrapper { width: 100%; overflow: hidden; position: relative; }
        .slider-track { display: flex; gap: 15px; width: max-content; animation: scrollSlider 100s linear infinite; }
        .slider-track img { width: 200px; height: 130px; object-fit: cover; border-radius: 10px; filter: brightness(0.8); border: 1px solid rgba(255,107,53,0.2); }

        .content-section { padding: 50px 0; }
        .content-box { background: var(--bg-card); border-radius: 18px; padding: 35px 30px; margin-bottom: 35px; border: 1px solid rgba(255,107,53,0.15); box-shadow: 0 10px 35px rgba(0,0,0,0.3); position: relative; overflow: hidden; }
        .content-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, transparent, rgba(255,107,53,0.02), transparent); pointer-events: none; }
        .content-box h2 { color: var(--neon-orange); font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,107,53,0.2); text-shadow: 0 0 15px rgba(255,107,53,0.3); }
        .content-box h3 { color: var(--primary); font-size: 1.35rem; font-weight: 700; margin: 25px 0 14px; }
        .content-box p { color: var(--text-muted); font-size: 1rem; margin-bottom: 18px; line-height: 1.9; }
        .content-box a { color: var(--primary); text-decoration: none; font-weight: 700; border-bottom: 1px dotted rgba(255,214,11,0.4); padding-bottom: 1px; transition: color 0.2s, border-bottom 0.2s; }
        .content-box a:hover { color: var(--neon-orange); border-bottom-color: var(--neon-orange); }
        .content-box ul, .content-box ol { color: var(--text-muted); font-size: 1rem; margin: 15px 0 20px 20px; line-height: 1.9; }
        .content-box ul li, .content-box ol li { margin-bottom: 8px; }

        .flex-row { display: flex; gap: 25px; align-items: flex-start; flex-wrap: wrap; margin: 22px 0; }
        .flex-img { flex: 0 0 300px; min-width: 240px; }
        .flex-img img { width: 100%; border-radius: 14px; border: 2px solid var(--neon-orange); box-shadow: 0 0 20px rgba(255,107,53,0.2); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
        .flex-img img:hover { animation: shakeImage 0.5s ease-in-out; box-shadow: 0 0 30px rgba(255,107,53,0.5); border-color: var(--primary); }
        .flex-text { flex: 1; min-width: 240px; }

        .highlight-box { background: rgba(255,107,53,0.05); border: 1px solid rgba(255,107,53,0.2); border-radius: 14px; padding: 22px 25px; margin: 25px 0; }
        .highlight-box h4 { color: var(--neon-orange); margin: 0 0 10px; }

        .table-responsive { overflow-x: auto; margin: 25px 0; border-radius: 14px; }
        .price-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.012); min-width: 500px; border-radius: 14px; overflow: hidden; }
        .price-table th { background: rgba(255,107,53,0.08); color: var(--primary); padding: 15px 18px; text-align: left; font-weight: 800; font-size: 0.95rem; }
        .price-table td { padding: 15px 18px; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text-muted); font-size: 0.95rem; }
        .price-table tr:last-child td { border-bottom: none; }
        .price-tag { color: var(--neon-pink) !important; font-weight: 800; font-size: 1.05rem; }

        .catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin: 25px 0; }
        .catalog-card { background: rgba(255,107,53,0.03); border: 2px solid var(--neon-orange); border-radius: 16px; overflow: hidden; transition: all 0.4s; text-align: center; }
        .catalog-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(255,107,53,0.3); border-color: var(--neon-pink); }
        .catalog-card img { width: 100%; height: 280px; object-fit: cover; border-bottom: 3px solid var(--neon-orange); }
        .catalog-card-body { padding: 18px; }
        .catalog-card-body h4 { font-size: 1.4rem; color: var(--neon-pink); margin: 0 0 6px; font-weight: 800; }
        .catalog-card-body .stats { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 6px; }
        .catalog-card-body .price { color: var(--primary); font-size: 1.15rem; font-weight: 800; margin: 10px 0; text-shadow: 0 0 8px rgba(255,214,11,0.3); }
        .catalog-card-actions { padding: 0 18px 18px; }
        .catalog-card-actions .btn { width: 100%; padding: 10px; font-size: 0.85rem; }

        .inline-img { display: block; margin: 20px auto; width: 100%; max-width: 400px; border-radius: 12px; border: 1px solid rgba(255,107,53,0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s; }
        .inline-img:hover { box-shadow: 0 6px 20px rgba(255,107,53,0.3); transform: scale(1.02); }
        .img-left { float: left; margin: 5px 20px 15px 0; max-width: 200px; border-radius: 10px; border: 2px solid var(--neon-orange); }
        .img-right { float: right; margin: 5px 0 15px 20px; max-width: 200px; border-radius: 10px; border: 2px solid var(--neon-orange); }
        .clearfix::after { content: ""; clear: both; display: table; }

        .faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
        @media (min-width: 768px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
        .faq details { background: rgba(255,255,255,0.015); border: 1px solid rgba(255,107,53,0.2); border-radius: 10px; padding: 18px 22px; transition: all 0.3s; cursor: pointer; }
        .faq details:hover { border-color: var(--neon-orange); background: rgba(255,107,53,0.04); }
        .faq details[open] { border-color: var(--primary); background: rgba(255,107,53,0.03); }
        .faq summary { font-weight: 700; font-size: 1rem; color: var(--neon-orange); list-style: none; position: relative; padding-right: 30px; outline: none; }
        .faq summary::-webkit-details-marker { display: none; }
        .faq summary::after { content: '＋'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--neon-orange); font-size: 1.2rem; transition: transform 0.3s; }
        .faq details[open] summary::after { content: '－'; transform: translateY(-50%) rotate(180deg); }
        .faq details p { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
        .faq-img { margin-top: 12px; border-radius: 10px; width: 100%; max-width: 300px; border: 1px solid rgba(255,107,53,0.2); }

        .footer { background: #040409; border-top: 1px solid rgba(255,107,53,0.08); padding: 60px 0 50px; font-size: 0.9rem; color: #9aa1b3; text-align: center; }
        .footer-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 25px; max-width: 950px; margin: 0 auto; }
        .footer .logo img { height: auto; max-width: 180px; display: block; margin: 0 auto; opacity: 0.95; }
        .footer .triple { display: flex; gap: 25px; justify-content: center; align-items: center; margin: 5px auto; flex-wrap: wrap; width: 100%; }
        .footer .triple img { width: 110px; height: 72px; object-fit: contain; border-radius: 8px; transition: transform 0.3s; }
        .footer .triple img:hover { animation: shakeImage 0.5s ease-in-out; }
        .footer p { line-height: 1.8; text-align: center; width: 100%; color: #7a8194; font-size: 0.88rem; }
        .footer p a { color: var(--primary); text-decoration: none; font-weight: 600; }
        .footer-nav { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; margin: 10px auto; width: 100%; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.03); }
        .footer-nav a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
        .footer-legal-notice { font-size: 0.82rem !important; color: #5f6575 !important; max-width: 850px; margin: 0 auto; text-align: justify !important; text-align-last: center !important; }

        .floating-cta { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 999; display: none; gap: 10px; width: calc(100% - 40px); max-width: 400px; }
        .floating-cta .btn { flex: 1; padding: 12px; font-size: 0.95rem; border-radius: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .floating-cta.shake { animation: shakeBtn 0.6s ease-in-out; }
        .cb-wrap { position: fixed; bottom: 90px; right: 30px; z-index: 998; display: none; opacity: 0; transform: translateY(10px); transition: 0.4s; max-width: 300px; }
        .cb-wrap.cb-open { display: block; opacity: 1; transform: translateY(0); }
        .cb-box { background: var(--bg-card); border-radius: 14px; border: 1px solid rgba(255,107,53,0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.4); overflow: hidden; }
        .cb-head { background: #111126; padding: 12px 15px; display: flex; align-items: center; gap: 10px; position: relative; }
        .cb-av { width: 34px; height: 34px; background: var(--neon-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bg); font-weight: bold; font-size: 0.8rem; }
        .cb-meta strong { color: white; font-size: 0.85rem; } .cb-meta span { color: var(--secondary); font-size: 0.7rem; }
        .cb-x { position: absolute; right: 15px; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; }
        .cb-body { padding: 18px; } .cb-msg { font-size: 0.85rem; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
        .cb-cta { display: flex; align-items: center; justify-content: center; background: var(--secondary); color: white; text-decoration: none; padding: 8px 12px; border-radius: 6px; font-weight: bold; font-size: 0.8rem; }
        .scroll-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: #111126; border-top: 2px solid var(--neon-orange); padding: 12px; z-index: 1001; display: flex; align-items: center; justify-content: center; gap: 12px; transform: translateY(100%); transition: 0.4s; flex-wrap: wrap; }
        .scroll-bar.sb-show { transform: translateY(0); }
        .sb-text { font-size: 0.9rem; color: white; font-weight: 600; } .sb-btn { background: var(--secondary); color: white; text-decoration: none; padding: 5px 14px; border-radius: 50px; font-weight: bold; font-size: 0.8rem; }
        .sb-x { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; margin-left: 5px; }

        @keyframes scrollSlider { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 7.5px)); } }
        @keyframes shakeBtn { 0%,100%{transform:translateX(-50%) scale(1)}10%,30%,50%,70%,90%{transform:translateX(-51%) scale(1.01)}20%,40%,60%,80%{transform:translateX(-49%) scale(1.01)} }
        @keyframes shakeImage { 0%,100%{transform:translate(0,0) rotate(0deg)}10%{transform:translate(-3px,-2px) rotate(-1deg)}20%{transform:translate(3px,1px) rotate(1deg)}30%{transform:translate(-2px,-1px) rotate(-.5deg)}40%{transform:translate(2px,2px) rotate(.5deg)}50%{transform:translate(-1px,-1px) rotate(-.5deg)}60%{transform:translate(1px,1px) rotate(.5deg)}70%{transform:translate(-2px,0) rotate(-.5deg)}80%{transform:translate(2px,-1px) rotate(.5deg)}90%{transform:translate(-1px,1px) rotate(-.5deg)} }

        @media (max-width: 992px) {
            .menu-toggle { display: block; }
            header nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(12,12,23,0.98); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-top: 1px solid rgba(255,255,255,0.05); z-index: 999; }
            header nav.open { display: flex; }
            header nav a { margin: 12px 0; font-size: 1.1rem; width: 100%; text-align: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.02); }
            header nav a:last-child { border-bottom: none; }
            .header-tel-desktop { display: none; } .floating-cta { display: flex; }
            .cb-wrap { bottom: 140px; right: 20px; } .hero h1 { font-size: 1.8rem; }
            .flex-row { flex-direction: column; } .flex-img { flex: 0 0 auto; max-width: 100%; }
        }
        @media (max-width: 576px) {
            .hero-cta { flex-direction: column; align-items: center; } .hero-cta .btn { width: 100%; max-width: 300px; }
            .content-box { padding: 25px 18px; } .content-box h2 { font-size: 1.4rem; }
        }
