:root {
      --bg: #05050a;
      --bg-card: #0c0c17;
      --primary: #ffd60b;
      --secondary: #25d366;
      --text: #e2e2ec;
      --text-muted: #8c96a8;
      --neon-pink: #ff4bed;
      --neon-blue: #00c8ff;
      --neon-purple: #b355ff;
      --royal-gold: #c9a84c;
    }

    * { 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; }
    .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: 55px; 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(--royal-gold) 0%, #b8952e 100%);
      text-decoration: none; 
      font-weight: 800; 
      padding: 10px 22px; 
      border-radius: 50px; 
      font-size: 0.95rem; 
      box-shadow: 0 0 15px rgba(201,168,76,0.2);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .header-tel-desktop:hover { transform: scale(1.02); box-shadow: 0 0 20px rgba(201,168,76,0.4); }
    .header-wa-mobile { display: none; background: var(--secondary); color: white; padding: 8px 16px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 0.9rem; }

    .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: 85px 0 45px; text-align: center; background: radial-gradient(circle at top, rgba(201,168,76,0.08) 0%, transparent 60%); }
    .hero-kicker { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: var(--royal-gold); letter-spacing: 2px; margin-bottom: 10px; }
    .hero h1 { font-size: 2.8rem; font-weight: 900; line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px; color: #fff; }
    .hero h1 .accent { color: var(--royal-gold); }
    .hero h1 .accent-purple { color: var(--neon-purple); }
    .hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 720px; margin: 0 auto 30px; 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-gold { background: linear-gradient(135deg, var(--royal-gold) 0%, #b8952e 100%); color: var(--bg); box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
    .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); }

    .banner-wrapper {
      margin: 30px auto;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.6);
      max-width: 800px;
      aspect-ratio: 2/1;
      border: 1px solid rgba(201,168,76,0.15);
    }
    .banner-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .section-header { text-align: center; margin-bottom: 40px; }
    .section-header h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; color: white; }
    .section-header .stripe { width: 40px; height: 4px; background: var(--royal-gold); margin: 0 auto 15px; border-radius: 2px; }
    .section-header p { color: var(--text-muted); font-size: 1rem; }

    .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; margin: 40px 0; }
    .feature-card { background: var(--bg-card); padding: 30px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.03); transition: transform 0.3s, border-color 0.3s; }
    .feature-card:hover { transform: translateY(-4px); border-color: var(--royal-gold); }
    .feature-icon { color: var(--royal-gold); font-size: 2rem; margin-bottom: 15px; display: block; }
    .feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: white; }
    .feature-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }
    .feature-card ul { list-style: none; padding: 0; margin-top: 15px; }
    .feature-card ul li { padding: 6px 0; color: var(--text-muted); font-size: 0.9rem; }
    .feature-card ul li::before { content: "✓ "; color: var(--royal-gold); font-weight: bold; }

    .price-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 20px 0; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
    .price-table th { background: rgba(201,168,76,0.12); color: var(--royal-gold); padding: 15px 20px; text-align: left; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; border-bottom: 2px solid var(--royal-gold); }
    .price-table td { padding: 15px 20px; border-top: 1px solid rgba(255,255,255,0.04); color: var(--text); }
    .price-table tbody tr:hover { background: rgba(201,168,76,0.03); }
    .price-table .highlight { color: var(--royal-gold); font-weight: bold; font-size: 1.05rem; }

    .seo-table-container { margin: 30px 0; overflow-x: auto; background: var(--bg-card); border-radius: 12px; border: 1px solid rgba(255,255,255,0.03); }
    .seo-table { width: 100%; border-collapse: collapse; text-align: left; min-width: 500px; }
    .seo-table th { background: rgba(201,168,76,0.05); color: var(--royal-gold); font-weight: 700; padding: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }
    .seo-table td { padding: 14px; border-bottom: 1px solid rgba(255,255,255,0.02); font-size: 0.88rem; color: #b8bdcc; }

    .seo-rich-text { color: #b8bdcc; font-size: 0.98rem; line-height: 1.9; }
    .seo-rich-text p { margin-bottom: 22px; text-align: justify; }
    .seo-rich-text h3 { color: #fff; font-size: 1.4rem; font-weight: 700; margin: 35px 0 15px; }
    .seo-rich-text a { color: #e5e9f5 !important; text-decoration: none !important; font-weight: 700 !important; border-bottom: 1px dotted rgba(201,168,76,0.4) !important; padding-bottom: 1px; transition: color 0.2s ease; }
    .seo-rich-text a:hover { color: var(--royal-gold) !important; border-bottom: 1px solid var(--royal-gold) !important; }

    .seo-accordion-item { background: var(--bg-card); border-radius: 12px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.02); overflow: hidden; }
    .seo-accordion-item summary { padding: 20px; color: var(--royal-gold); font-weight: 700; font-size: 1.15rem; cursor: pointer; outline: none; list-style: none; display: flex; justify-content: space-between; align-items: center; }
    .seo-accordion-item summary::-webkit-details-marker { display: none; }
    .seo-accordion-item summary::after { content: '＋'; color: var(--royal-gold); font-size: 1.1rem; }
    .seo-accordion-item[open] summary::after { content: '－'; }
    .seo-accordion-content { padding: 0 20px 20px 20px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; text-align: left; }

    .seo-horizontal-marquee { width: 100%; overflow: hidden; background: var(--bg-card); padding: 15px 0; margin-bottom: 30px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.02); }
    .marquee-inner { display: flex; gap: 35px; width: max-content; animation: scrollMarquee 60s linear infinite; }
    .marquee-inner span { color: var(--text-muted); font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
    .marquee-inner span strong { color: var(--royal-gold); }

    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin: 30px 0; }
    .review-card { background: var(--bg-card); padding: 25px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.03); }
    .review-card .stars { color: var(--royal-gold); font-size: 1.2rem; margin-bottom: 10px; }
    .review-card p { color: var(--text); font-size: 0.92rem; line-height: 1.6; margin-bottom: 10px; }
    .review-card .name { color: var(--text-muted); font-size: 0.82rem; }

    .faq-list { margin: 20px 0; }
    .faq-item { background: var(--bg-card); border-radius: 10px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,0.04); transition: 0.3s; }
    .faq-item[open] { border-color: var(--royal-gold); background: rgba(201,168,76,0.03); }
    .faq-item summary { padding: 16px 20px; cursor: pointer; color: #fff; font-weight: 600; font-size: 1rem; list-style: none; position: relative; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--royal-gold); font-size: 1.3rem; }
    .faq-item[open] summary::after { content: '−'; }
    .faq-item p { padding: 0 20px 20px; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.04); padding-top: 15px; margin: 0; line-height: 1.6; }

    .footer { background: #040409; border-top: 1px solid rgba(201,168,76,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: 120px; display: block; margin: 0 auto; opacity: 0.85; }
    .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; display: block; margin: 0 auto; }
    .footer p { line-height: 1.8; text-align: center; width: 100%; margin: 0 auto; color: #7a8194; font-size: 0.88rem; }
    .footer p a { color: var(--royal-gold); text-decoration: none; font-weight: 600; transition: color 0.2s; }
    .footer-nav { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: 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(201,168,76,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(--royal-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bg); font-weight: bold; font-size: 0.8rem; }
    .cb-meta { display: flex; flex-direction: column; }
    .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; }
    .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(--royal-gold); 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 scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @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); } }

    @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; }
      .header-wa-mobile, .floating-cta { display: flex; }
      .cb-wrap { bottom: 140px; right: 20px; }
      .hero h1 { font-size: 1.8rem; }
      .hero-cta { flex-direction: column; align-items: center; }
      .hero-cta .btn { width: 100%; max-width: 300px; }
    }
