*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; }
        body {
            font-family: 'Aptos', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #fff;
            background: #0a0a0f;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* Header */
        .header {
            position: fixed; top: 0; left: 0; right: 0;
            background: rgba(10,10,15,0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            z-index: 1000;
        }
        .header-inner {
            display: flex; align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .logo {
            display: flex; align-items: center; gap: 10px;
            font-size: 28px; font-weight: 800;
            background: linear-gradient(135deg, #00e676, #00bcd4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo img { height: 40px; -webkit-text-fill-color: initial; }
        .nav { display: flex; align-items: center; gap: 18px; }
        .nav a {
            font-size: 13px; font-weight: 500;
            color: rgba(255,255,255,0.7);
            transition: color 0.2s;
            white-space: nowrap;
        }
        .nav a:hover { color: #00e676; }
        
        
        .lang-link:hover { color: #00e676; }
        
        .nav-cta {
            padding: 8px 18px;
            background: linear-gradient(135deg, #00e676, #00bcd4);
            border-radius: 8px;
            color: #000 !important;
            font-weight: 600;
            font-size: 13px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(0,230,118,0.3);
            color: #000 !important;
        }
        .menu-toggle {
            display: none; flex-direction: column; gap: 5px;
            background: none; border: none; cursor: pointer; padding: 4px;
        }
        .menu-toggle span {
            width: 24px; height: 2px;
            background: #fff; border-radius: 2px;
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
            background: rgba(10,10,15,0.98);
            backdrop-filter: blur(20px);
            flex-direction: column; align-items: center; justify-content: center;
            gap: 24px; z-index: 999;
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a { font-size: 20px; }

        /* Hero */
        .hero {
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(0,230,118,0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0,230,118,0.1);
            border: 1px solid rgba(0,230,118,0.2);
            border-radius: 100px;
            font-size: 13px; font-weight: 500;
            color: #00e676;
            margin-bottom: 24px;
        }
        .hero h1 {
            font-size: clamp(40px, 6vw, 68px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #00e676, #00bcd4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 18px; color: rgba(255,255,255,0.6);
            max-width: 640px; margin: 0 auto 40px;
        }
        .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn-primary {
            padding: 14px 32px;
            background: linear-gradient(135deg, #00e676, #00bcd4);
            border-radius: 10px;
            color: #000; font-weight: 600; font-size: 15px;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0,230,118,0.3);
        }
        .btn-secondary {
            padding: 14px 32px;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            color: #fff; font-weight: 500; font-size: 15px;
            transition: background 0.2s;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-secondary:hover { background: rgba(255,255,255,0.06); }

        /* Brands carousel */
        .brands { padding: 20px 0 30px; overflow: hidden; }
        .brands-track { display: flex; gap: 64px; width: max-content; }
        .brands-track img { height: 100px; width: auto; min-width: 100px; opacity: 1; transition: all 0.3s ease; border-radius: 12px; border: 2px solid rgba(0,230,118,0.4); padding: 8px; background: rgba(255,255,255,0.08); image-rendering: auto; }
        .brands-track img:hover { opacity: 1; transform: scale(1.15); border-color: #00e676; box-shadow: 0 0 25px rgba(0,230,118,0.5); }
        @keyframes titleZoom { 0% { transform:scale(1); } 50% { transform:scale(1.06); } 100% { transform:scale(1); } }
        .brands-label {
            text-align: center;
            font-size: 24px; font-weight: 700;
            color: #ffffff;
            text-transform: none; letter-spacing: 2px;
            margin-bottom: 32px;
        }

        /* Section */
        .section { padding: 100px 0; }
        .section-label {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0,230,118,0.1);
            border: 1px solid rgba(0,230,118,0.2);
            border-radius: 100px;
            font-size: 13px; font-weight: 500;
            color: #00e676;
            margin-bottom: 16px;
        }
        .section-title {
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 800;
            margin-bottom: 16px;
        }
        .section-sub {
            font-size: 17px; color: rgba(255,255,255,0.5);
            max-width: 600px;
        }
        .section-center { text-align: center; }
        .section-center .section-sub { margin: 0 auto; }

        /* Tabs */
        .tabs {
            display: flex; gap: 16px; justify-content: center; margin: 40px 0;
        }
        .tab {
            display: flex; flex-direction: column; align-items: center; gap: 6px;
            padding: 20px 32px; border-radius: 16px;
            border: 2px solid rgba(255,255,255,0.08);
            cursor: pointer; transition: all 0.3s ease;
            background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.5);
            flex: 1; max-width: 280px; min-width: 180px;
            position: relative; overflow: hidden;
        }
        .tab:hover { border-color: rgba(0,230,118,0.3); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
        .tab.active {
            border-color: #00e676; color: #00e676;
            background: rgba(0,230,118,0.06);
            box-shadow: 0 0 40px rgba(0,230,118,0.1), inset 0 0 20px rgba(0,230,118,0.03);
        }
        .tab-icon {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(0,230,118,0.1);
            border: 1px solid rgba(0,230,118,0.15);
            display: flex; align-items: center; justify-content: center;
            font-size: 14px; font-weight: 800; color: #00e676;
            line-height: 1;
        }
        .tab-label { font-size: 18px; font-weight: 700; }
        .tab.active .tab-label { background: linear-gradient(135deg, #00e676, #00bcd4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .tab-sub { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.3); }
        .tab.active .tab-sub { color: rgba(0,230,118,0.6); }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .pricing-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 32px;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            position: relative;
        }
        .pricing-card:hover {
            transform: translateY(-6px) scale(1.03);
            border-color: #00e676;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,230,118,0.15);
        }
        .price-box {
            padding: 12px; background: rgba(255,255,255,0.03);
            border-radius: 8px; text-align: center;
            border: 1px solid rgba(0,230,118,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            cursor: default;
        }
        .price-box:hover {
            transform: translateY(-4px) scale(1.08);
            border-color: #00e676;
            box-shadow: 0 8px 24px rgba(0,230,118,0.3), 0 0 40px rgba(0,230,118,0.1);
            background: rgba(0,230,118,0.06);
        }
        .pricing-card.best {
            border: 2px solid #00e676;
            background: linear-gradient(145deg, rgba(0,230,118,0.15) 0%, rgba(0,188,212,0.08) 50%, transparent 100%);
            box-shadow: 0 0 60px rgba(0,230,118,0.15), 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(0,230,118,0.2);
            position: relative;
            overflow: hidden;
            transform: scale(1.05);
            z-index: 2;
            animation: bestPulse 2.5s ease-in-out infinite;
        }
        .pricing-card.best:hover {
            transform: scale(1.07);
            border-color: #00e676;
            box-shadow: 0 0 80px rgba(0,230,118,0.25), 0 0 40px rgba(0,230,118,0.3), 0 20px 60px rgba(0,0,0,0.5);
        }
        @keyframes bestPulse {
            0%, 100% { border-color: #00e676; box-shadow: 0 0 60px rgba(0,230,118,0.15), 0 20px 60px rgba(0,0,0,0.5); }
            50% { border-color: #00e6b0; box-shadow: 0 0 80px rgba(0,230,118,0.25), 0 0 40px rgba(0,188,212,0.15), 0 20px 60px rgba(0,0,0,0.5); }
        }
        .pricing-badge {
            position: absolute; top: -12px; right: 24px;
            padding: 8px 22px;
            background: linear-gradient(135deg, #ff1744, #ff6d00, #ffa000);
            border-radius: 100px;
            color: #fff; font-size: 14px; font-weight: 800;
            text-transform: uppercase; letter-spacing: 1px;
            box-shadow: 0 4px 20px rgba(255,23,68,0.4);
            z-index: 2;
            animation: badgeGlow 1.5s ease-in-out infinite;
        }
        @keyframes badgeGlow {
            0%, 100% { box-shadow: 0 4px 20px rgba(255,23,68,0.4); }
            50% { box-shadow: 0 4px 30px rgba(255,109,0,0.6), 0 0 20px rgba(255,160,0,0.3); }
        }
        .pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
        .pricing-card.best .pricing-name { font-size: 22px; color: #fff; }
        .pricing-card.best .pricing-desc { font-size: 14px; color: rgba(0,230,118,0.7); font-weight: 500; }
        .pricing-desc { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
        .pricing-price {
            font-size: 36px; font-weight: 800;
            color: #00e676;
            margin-bottom: 4px;
        }
        .pricing-card.best .pricing-price {
            font-size: 48px; font-weight: 900;
            background: linear-gradient(135deg, #00e676 0%, #00e6b0 40%, #00bcd4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 20px rgba(0,230,118,0.3));
        }
        .pricing-price span { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.4); }
        .pricing-original {
            font-size: 14px; color: rgba(255,255,255,0.3);
            margin-bottom: 8px;
        }
        .pricing-original s { color: #ef4444; }
        .pricing-per {
            font-size: 13px; color: rgba(255,255,255,0.3);
            margin-bottom: 24px;
        }
        .pricing-card.best .pricing-per { font-size: 14px; color: rgba(0,230,118,0.5); font-weight: 500; }
        .pricing-card.best .pricing-features li { color: rgba(255,255,255,0.8); font-size: 14px; }

        /* German flag bar animation */
        .german-flag-bar {
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 12px;
            background: linear-gradient(90deg, #000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffce00 66.66%);
            z-index: 5;
            animation: germanWave 2s ease-in-out infinite;
            border-radius: 16px 16px 0 0;
            box-shadow: 0 0 20px rgba(255,206,0,0.3);
        }
        @keyframes germanWave {
            0%, 100% { transform: scaleX(1); opacity: 1; }
            50% { transform: scaleX(1.08); opacity: 0.9; box-shadow: 0 0 30px rgba(255,206,0,0.5); }
        }
        .kaiser-spotlight-inner {
            position: relative;
            overflow: hidden;
        }
        .kaiser-spotlight-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(255,206,0,0.06) 0%, rgba(221,0,0,0.03) 40%, transparent 70%);
            pointer-events: none;
            z-index: 0;
            animation: germanBgPulse 3s ease-in-out infinite;
        }
        @keyframes germanBgPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        .kaiser-spotlight-inner > * { position: relative; z-index: 1; }
        .german-badge {
            position: absolute;
            top: 40px; left: 50%;
            transform: translateX(-50%);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,206,0,0.3);
            border-radius: 100px;
            color: #ffce00;
            font-size: 11px;
            font-weight: 700;
            z-index: 3;
            white-space: nowrap;
            letter-spacing: 0.5px;
            animation: germanGlow 2s ease-in-out infinite;
        }
        @keyframes germanGlow {
            0%, 100% { border-color: rgba(255,206,0,0.3); box-shadow: 0 0 10px rgba(255,206,0,0.1); }
            50% { border-color: rgba(255,206,0,0.6); box-shadow: 0 0 20px rgba(255,206,0,0.2); }
        }
        .pricing-features { margin-bottom: 28px; }
        .pricing-features li {
            padding: 8px 0;
            font-size: 14px; color: rgba(255,255,255,0.7);
            display: flex; align-items: center; gap: 10px;
        }
        .pricing-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            min-width: 6px;
            background: #00e676;
            border-radius: 50%;
            display: inline-block;
        }
        .pricing-btn {
            display: block; text-align: center;
            padding: 14px;
            border-radius: 10px;
            font-weight: 600; font-size: 14px;
            font-family: inherit;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            transition: 0.2s;
            cursor: pointer;
            color: #fff;
            text-decoration: none;
        }
        .pricing-btn:hover { background: rgba(0,230,118,0.1); border-color: #00e676; }
        .pricing-card.best .pricing-btn {
            background: linear-gradient(135deg, #00e676, #00bcd4);
            color: #000; border: none;
        }
        .pricing-card.best .pricing-btn:hover {
            box-shadow: 0 8px 24px rgba(0,230,118,0.3);
        }
        .pricing-tab-content { display: none; }
        .pricing-tab-content.active { display: block; }

        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }
        .feature-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 32px;
            transition: 0.3s;
        }
        .feature-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
        .feature-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(0,230,118,0.15), rgba(0,188,212,0.1));
            border: 1px solid rgba(0,230,118,0.2);
            display: flex; align-items: center; justify-content: center;
            font-size: 15px; font-weight: 800; color: #00e676;
            margin-bottom: 16px;
        }
        .feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
        .feature-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-top: 48px;
        }
        .about-text h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
        .about-text p { color: rgba(255,255,255,0.5); margin-bottom: 16px; font-size: 15px; }

        /* FAQ */
        .faq-list { max-width: 720px; margin: 48px auto 0; }
        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.06);
            padding: 20px 0;
        }
        .faq-question {
            display: flex; justify-content: space-between; align-items: center;
            font-size: 16px; font-weight: 600;
            cursor: pointer;
            background: none; border: none; color: #fff;
            width: 100%; text-align: left; padding: 0;
        }
        .faq-question::after {
            content: '+';
            font-size: 22px; font-weight: 300;
            color: rgba(255,255,255,0.3);
            transition: transform 0.3s;
        }
        .faq-item.open .faq-question::after { transform: rotate(45deg); }
        .faq-answer {
            max-height: 0; overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: rgba(255,255,255,0.5);
            font-size: 14px;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-top: 16px;
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: minmax(auto, 520px);
            justify-content: center;
            gap: 32px;
            margin-top: 48px;
        }
        .contact-info h3 { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
        .contact-info p { color: rgba(255,255,255,0.5); margin-bottom: 24px; font-size: 15px; }
        .contact-item {
            display: flex; align-items: center; gap: 16px;
            padding: 16px;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px;
            margin-bottom: 12px;
        }
        .contact-item-icon {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0,230,118,0.15), rgba(0,188,212,0.1));
            border: 1px solid rgba(0,230,118,0.2);
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; font-weight: 800; color: #00e676;
            flex-shrink: 0;
        }
        .contact-item-label { font-size: 12px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; }
        .contact-item-value { font-size: 15px; font-weight: 500; }
        .contact-form { display: flex; flex-direction: column; gap: 16px; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease; max-height: 0; overflow: hidden; pointer-events: none; }
        .contact-form.revealed { opacity: 1; transform: translateY(0); max-height: 500px; pointer-events: auto; }
        .contact-form input,
        .contact-form textarea {
            padding: 14px 16px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            font-family: inherit; font-size: 15px;
            color: #fff;
            outline: none;
            transition: border-color 0.2s;
        }
        .contact-form input:focus,
        .contact-form textarea:focus { border-color: #00e676; }
        .contact-form textarea { min-height: 140px; resize: vertical; }
        .contact-form button {
            padding: 14px;
            background: linear-gradient(135deg, #00e676, #00bcd4);
            border: none; border-radius: 10px;
            color: #000; font-weight: 600; font-size: 15px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .contact-form button:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(0,230,118,0.3);
        }

        /* Guarantee banner */
        .guarantee {
            text-align: center;
            padding: 32px;
            background: rgba(0,230,118,0.04);
            border: 1px solid rgba(0,230,118,0.1);
            border-radius: 16px;
            margin-top: 48px;
        }
        .guarantee h3 { font-size: 20px; margin-bottom: 8px; }
        .guarantee p { color: rgba(255,255,255,0.5); font-size: 14px; }

        /* Footer */
        .footer {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 60px 0 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand .logo { margin-bottom: 16px; }
        .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); }
        .footer h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
        .footer a { display: block; font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 10px; transition: color 0.2s; }
        .footer a:hover { color: #00e676; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 24px;
            text-align: center;
            font-size: 13px;
            color: rgba(255,255,255,0.3);
        }
        .footer-payments {
            display: flex; justify-content: center; gap: 12px; margin-bottom: 16px;
        }
        .payment-method {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 20px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,0.6);
        }
        .payment-method img { height: 24px; width: 24px; object-fit: contain; border-radius: 4px; }
        .footer-payments-section { text-align: center; padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.06); }
        .footer-payments-section h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }

        .nav-badge {
            font-size: 10px; padding: 3px 10px;
            background: rgba(0,230,118,0.1);
            border: 1px solid rgba(0,230,118,0.2);
            border-radius: 100px;
            color: #00e676;
            white-space: nowrap;
        }
        .payment-methods-bar { text-align: center; padding: 24px; background: rgba(0,230,118,0.03); border: 1px solid rgba(0,230,118,0.08); border-radius: 12px; margin: 32px 0; }
        .payment-methods-bar h4 { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
        .payment-methods-list { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
        .payment-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); }
        .payment-chip img { height: 24px; width: 24px; object-fit: contain; border-radius: 4px; }
        .payment-contact { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 8px; }

        /* Toast notification */
        @keyframes toastIn {
            from { opacity: 0; transform: translateX(-50%) translateY(-24px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
        .toast {
            position: fixed; top: 90px; left: 50%; transform: translateX(-50%);
            z-index: 99999; max-width: 480px; width: calc(100% - 32px);
            padding: 20px 24px; border-radius: 14px;
            font-size: 14px; line-height: 1.6;
            box-shadow: 0 16px 48px rgba(0,0,0,0.5);
            display: none; opacity: 0;
            pointer-events: none;
        }
        .toast.show {
            display: block; opacity: 1; pointer-events: auto;
            animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .toast-success {
            background: #0d1f12; border: 1px solid rgba(0,230,118,0.25);
            color: #fff;
        }
        .toast-success .toast-icon {
            display: inline-flex; align-items: center; justify-content: center;
            width: 28px; height: 28px; border-radius: 50%;
            background: #00e676; color: #000; font-weight: 800; font-size: 14px;
            margin-right: 12px; flex-shrink: 0;
        }
        .toast-success .toast-title { font-weight: 700; font-size: 15px; color: #00e676; margin-bottom: 4px; }
        .toast-success .toast-body { color: rgba(255,255,255,0.7); font-size: 13px; }
        .toast-success .toast-spam { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 6px; padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.06); }
        .toast-close {
            position: absolute; top: 12px; right: 14px;
            background: none; border: none; color: rgba(255,255,255,0.3);
            font-size: 18px; cursor: pointer; padding: 4px;
        }
        .toast-close:hover { color: #fff; }

        /* Hero Video Background */
        .hero { position: relative; }
        .hero-video {
            position: absolute; inset: 0;
            overflow: hidden;
            z-index: 0;
        }
        .hero-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        .hero-video-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(10,10,15,0.8) 0%, rgba(10,10,15,0.4) 50%, rgba(10,10,15,0.85) 100%);
            z-index: 1;
        }
        .hero .container { position: relative; z-index: 2; }

        /* Streaming Carousel */
        .streaming-carousel-section { padding: 60px 0; overflow: hidden; background: rgba(255,255,255,0.01); }
        .streaming-carousel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
        .streaming-carousel-header h2 { font-size: 24px; font-weight: 700; }
        .vod-carousel-section .section-center h2 { font-size: 24px; font-weight: 700; }
        .carousel-track-wrapper { overflow: hidden; }
        .carousel-track { display: flex; gap: 16px; width: max-content; }
        .movie-card {
            flex: 0 0 180px; border-radius: 12px; overflow: hidden;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
        }
        .movie-card:hover { transform: translateY(-8px) scale(1.08); box-shadow: 0 0 30px rgba(0,230,118,0.4); border-color: #00e676; }
        .movie-card-poster { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; background: #1a1a2e; }
        .movie-card-info { padding: 12px; }
        .movie-card-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .movie-card-meta { font-size: 11px; color: rgba(255,255,255,0.4); display: flex; gap: 8px; }
        .movie-card-badge { font-size: 10px; padding: 2px 8px; border-radius: 4px; background: rgba(0,230,118,0.15); color: #00e676; font-weight: 600; }

        /* KAISER Spotlight */
        .kaiser-spotlight {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .kaiser-spotlight::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(0,230,118,0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .kaiser-spotlight-inner {
            text-align: center;
            padding: 60px 40px;
            background: rgba(255,255,255,0.02);
            border: 2px solid rgba(0,230,118,0.15);
            border-radius: 24px;
            position: relative;
        }
        .kaiser-spotlight-badge {
            display: inline-block;
            padding: 6px 20px;
            background: linear-gradient(135deg, #00e676, #00bcd4);
            border-radius: 100px;
            color: #000;
            font-size: 13px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .kaiser-spotlight-title {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 900;
            background: linear-gradient(90deg, #000 0%, #000 25%, #dd0000 25%, #dd0000 50%, #ffce00 50%, #ffce00 75%, #dd0000 75%, #dd0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 100%;
            animation: kaiserFlagWave 8s ease-in-out infinite;
            margin-bottom: 8px;
        }
        @keyframes kaiserFlagWave {
            0% { background-position: 0% 0%; filter: drop-shadow(0 0 8px rgba(255,206,0,0.2)); }
            50% { background-position: 100% 0%; filter: drop-shadow(0 0 25px rgba(255,206,0,0.5)); }
            100% { background-position: 0% 0%; filter: drop-shadow(0 0 8px rgba(255,206,0,0.2)); }
        }
        .kaiser-spotlight-sub {
            font-size: 17px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 24px;
        }
        .kaiser-spotlight-price-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .kaiser-spotlight-price {
            font-size: 56px;
            font-weight: 900;
            color: #00e676;
            display: inline-block;
            animation: priceZoom 1.5s ease-in-out infinite;
        }
        @keyframes priceZoom {
            0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(0,230,118,0.3)); }
            50% { transform: scale(1.15); filter: drop-shadow(0 0 30px rgba(0,230,118,0.6)); }
        }
        .kaiser-spotlight-per {
            font-size: 20px;
            color: rgba(255,255,255,0.5);
        }
        .kaiser-spotlight-month {
            font-size: 15px;
            padding: 6px 16px;
            background: rgba(0,230,118,0.1);
            border: 1px solid rgba(0,230,118,0.2);
            border-radius: 100px;
            color: #00e676;
        }
        .kaiser-spotlight-features {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin-bottom: 32px;
        }
        .kaiser-spotlight-features li {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .feat-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .kaiser-spotlight-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .kaiser-spotlight-alt {
            font-size: 13px;
            color: rgba(255,255,255,0.3);
        }

        /* VOD Carousel */
        .vod-carousel-section { padding: 60px 0; overflow: hidden; background: rgba(255,255,255,0.01); }
        .vod-carousel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
        .vod-carousel-header h2 { font-size: 22px; font-weight: 700; }
        .vod-carousel-wrapper { overflow: hidden; }
        .vod-carousel-track { display: flex; gap: 16px; width: max-content; }
        .vod-card {
            flex: 0 0 180px; border-radius: 12px; overflow: hidden;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
        }
        .vod-card:hover { transform: translateY(-8px) scale(1.08); box-shadow: 0 0 30px rgba(0,230,118,0.4); border-color: #00e676; }
        .vod-card-poster { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; background: #1a1a2e; }
        .vod-card-body { padding: 12px; }
        .vod-card-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .vod-card-desc { font-size: 11px; color: rgba(255,255,255,0.4); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .vod-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
        .vod-card-quality { font-size: 10px; padding: 2px 8px; border-radius: 4px; background: rgba(0,188,212,0.15); color: #00bcd4; font-weight: 600; }
        .vod-card-year { font-size: 11px; color: rgba(255,255,255,0.3); }

        /* Scrolling Banner - Enhanced */
        .scrolling-banner { padding: 12px 0; overflow: hidden; background: rgba(0,230,118,0.04); border-top: 1px solid rgba(0,230,118,0.08); border-bottom: 1px solid rgba(0,230,118,0.08); position: relative; animation: bannerEnter 0.9s cubic-bezier(0.16,1,0.3,1) both; }
        @keyframes bannerEnter { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
        .scrolling-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(0,230,118,0.04) 50%, transparent 100%); animation: breatheGlow 4s ease-in-out infinite; pointer-events: none; }
        .scrolling-banner::after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: linear-gradient(90deg, #0a0a0f 0%, transparent 8%, transparent 92%, #0a0a0f 100%); pointer-events: none; z-index: 2; }
        @keyframes breatheGlow { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
        .scrolling-banner-track { display: flex; gap: 20px; width: max-content; }
        .scrolling-banner-track img { height: 80px; width: auto; min-width: 80px; opacity: 0.9; transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275); border-radius: 12px; border: 2px solid rgba(0,230,118,0.2); padding: 8px; background: transparent; mix-blend-mode: multiply; filter: brightness(1.5) saturate(1.2); will-change: transform; }
        .scrolling-banner-track img:hover { opacity: 1; transform: scale(1.15) translateY(-4px); border-color: #00e676; box-shadow: 0 8px 30px rgba(0,230,118,0.4), 0 0 60px rgba(0,230,118,0.15); }

        @media (hover: none) and (pointer: coarse) {
            .pricing-card:hover {
                transform: translateY(-6px) scale(1.03);
                border-color: #00e676;
                box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,230,118,0.15);
            }
            .pricing-card:active {
                transform: translateY(-2px) scale(1.01);
                border-color: #00e676;
                box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(0,230,118,0.1);
            }
        }
        /* Floating Telegram Button */
        .float-telegram {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            background: linear-gradient(135deg, #0088cc, #00aced);
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
            font-size: 12px;
            text-decoration: none;
            box-shadow: 0 4px 24px rgba(0,136,204,0.4);
            transition: transform 0.3s, box-shadow 0.3s;
            animation: floatPulse 2s ease-in-out infinite;
        }
        .float-telegram:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(0,136,204,0.5);
            color: #fff;
        }
        @keyframes floatPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        .float-telegram-icon { font-size: 16px; line-height: 1; }
        .float-telegram-text { line-height: 1; }
        .float-whatsapp {
            position: fixed;
            bottom: 76px;
            right: 24px;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
            font-size: 12px;
            text-decoration: none;
            box-shadow: 0 4px 24px rgba(37,211,102,0.4);
            transition: transform 0.3s, box-shadow 0.3s;
            animation: floatPulse 2s ease-in-out infinite;
        }
        .float-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(37,211,102,0.5);
            color: #fff;
        }
        .float-whatsapp-icon { font-size: 22px; line-height: 1; }
        .float-whatsapp-text { line-height: 1; }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }
        .testimonial-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 28px;
            transition: transform 0.3s, border-color 0.3s;
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0,230,118,0.3);
        }
        .testimonial-stars {
            color: #ffb400;
            font-size: 16px;
            margin-bottom: 12px;
        }
        .testimonial-text {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00e676, #00bcd4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            color: #000;
        }
        .testimonial-name {
            font-size: 14px;
            font-weight: 600;
        }
        .testimonial-role {
            font-size: 12px;
            color: rgba(255,255,255,0.4);
        }
        /* Payment Modal */
        .modal-overlay {
            display: none; position: fixed; inset: 0; z-index: 9999;
            background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
            align-items: center; justify-content: center; padding: 20px;
        }
        .modal-overlay.active { display: flex; }
        .modal {
            background: #0f0f1a; border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px; padding: 32px; max-width: 480px; width: 100%;
            max-height: 90vh; overflow-y: auto; animation: modalIn 0.3s ease;
        }
        @keyframes modalIn {
            from { transform: scale(0.9) translateY(20px); opacity: 0; }
            to { transform: scale(1) translateY(0); opacity: 1; }
        }
        .modal-close {
            float: right; background: none; border: none; color: rgba(255,255,255,0.4);
            font-size: 24px; cursor: pointer; padding: 4px; line-height: 1;
        }
        .modal-close:hover { color: #fff; }
        .modal-badge {
            display: inline-block; padding: 4px 12px;
            background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.2);
            border-radius: 100px; font-size: 12px; font-weight: 600; color: #00e676;
            margin-bottom: 12px;
        }
        .modal-plan-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
        .modal-plan-desc { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
        .modal-plan-price { font-size: 36px; font-weight: 900; color: #00e676; margin-bottom: 24px; }
        .modal-chips { display: flex; gap: 12px; margin-bottom: 24px; }
        .modal-chip {
            flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
            padding: 14px 20px; border-radius: 12px; font-weight: 700; font-size: 14px;
            text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
        }
        .modal-chip:hover { transform: translateY(-2px); }
        .modal-chip-wa {
            background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
            color: #25d366;
        }
        .modal-chip-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.2); }
        .modal-chip-tg {
            background: rgba(0,136,204,0.1); border: 1px solid rgba(0,136,204,0.3);
            color: #0088cc;
        }
        .modal-chip-tg:hover { box-shadow: 0 8px 24px rgba(0,136,204,0.2); }
        .modal-divider {
            text-align: center; font-size: 12px; color: rgba(255,255,255,0.3);
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
            position: relative;
        }
        .modal-divider::before,
        .modal-divider::after {
            content: ''; position: absolute; top: 50%; width: calc(50% - 20px);
            height: 1px; background: rgba(255,255,255,0.08);
        }
        .modal-divider::before { left: 0; }
        .modal-divider::after { right: 0; }
        .modal-form { display: flex; flex-direction: column; gap: 12px; }
        .modal-form input,
        .modal-form textarea {
            padding: 12px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.04); color: #fff; font-size: 14px;
            font-family: inherit; transition: border-color 0.2s;
        }
        .modal-form input:focus,
        .modal-form textarea:focus {
            outline: none; border-color: #00e676;
        }
        .modal-form textarea { min-height: 100px; resize: vertical; }
        .modal-form button {
            padding: 14px; border: none; border-radius: 10px;
            background: linear-gradient(135deg, #00e676, #00bcd4);
            color: #000; font-weight: 700; font-size: 15px; cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .modal-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,230,118,0.3);
        }

        .live-counter {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(0,230,118,0.08);
            border: 1px solid rgba(0,230,118,0.15);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: #00e676;
            animation: livePulse 2s ease-in-out infinite;
        }
        .live-counter-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #00e676;
            animation: dotPulse 1.5s ease-in-out infinite;
        }
        @keyframes dotPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.3); }
        }
        @keyframes livePulse {
            0%, 100% { border-color: rgba(0,230,118,0.15); }
            50% { border-color: rgba(0,230,118,0.4); }
        }
        @media (max-width: 768px) {
            .float-telegram { padding: 8px 14px; font-size: 11px; bottom: 16px; right: 16px; }
            .float-telegram-text { display: none; }
            .float-whatsapp { padding: 8px 14px; font-size: 11px; bottom: 62px; right: 16px; }
            .float-whatsapp-text { display: none; }
            .testimonials-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .nav { display: none; }
            .menu-toggle { display: flex; }
            .hero { padding: 120px 0 50px; }
            .hero h1 { font-size: clamp(28px, 7vw, 44px); }
            .hero p { font-size: 15px; }
            .section-title { font-size: clamp(24px, 5vw, 32px); }
            .about-grid,
            .contact-grid { gap: 24px; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
            .tabs { flex-wrap: wrap; gap: 10px; flex-direction: column; align-items: stretch; }
            .tab { padding: 16px 20px; max-width: none; min-width: 0; flex-direction: row; gap: 12px; }
            .tab-icon { font-size: 24px; }
            .tab-label { font-size: 16px; }
            .tab-sub { display: none; }
            .features-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .pricing-card.best { transform: scale(1); padding: 28px; }
            .pricing-card.best:hover { transform: scale(1.02); }
            .pricing-card.best .pricing-price { font-size: 36px; }
            .movie-card { flex: 0 0 140px; }
            .vod-card { flex: 0 0 140px; }
            .streaming-carousel-header { flex-direction: column; gap: 8px; text-align: center; }
            .vod-carousel-header { flex-direction: column; gap: 8px; text-align: center; }
            .kaiser-spotlight-inner { padding: 40px 24px; }
            .kaiser-spotlight-title { font-size: clamp(28px, 6vw, 36px); }
            .kaiser-spotlight-price { font-size: 42px; }
            .kaiser-spotlight-features { gap: 16px; }
            .kaiser-spotlight-features li { font-size: 13px; }
            .about-text h3 { font-size: 20px; }
            .contact-info h3 { font-size: 18px; }
            .faq-question { font-size: 15px; }
            .guarantee h3 { font-size: 18px; }
            .section-subtitle { font-size: 14px; }
            .payment-methods-list { gap: 8px; }
            .payment-chip { padding: 6px 14px; font-size: 12px; }
            .payment-chip img { height: 20px; width: 20px; }
        }
        @media (max-width: 480px) {
            .header-inner { height: 60px; }
            .logo { font-size: 22px; }
            .hero { padding: 100px 0 40px; }
            .hero-badge { font-size: 10px; padding: 4px 12px; }
            .live-counter { font-size: 11px; padding: 6px 14px; }
            .hero h1 { font-size: 26px; }
            .pricing-card { padding: 24px; }
            .pricing-name { font-size: 16px; }
            .pricing-price { font-size: 30px; }
            .pricing-card.best .pricing-price { font-size: 30px; }
            .pricing-card.best { padding: 24px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
            .footer-brand { text-align: center; }
            .footer-brand .logo { justify-content: center; }
            .footer-payments { flex-direction: column; align-items: center; gap: 8px; }
            .mobile-nav { top: 60px; }
            .kaiser-spotlight-inner { padding: 32px 16px; border-radius: 16px; }
            .kaiser-spotlight-price { font-size: 36px; }
            .kaiser-spotlight-per { font-size: 16px; }
            .feature-card { padding: 24px; }
            .contact-item { flex-direction: column; text-align: center; }
            .section-subtitle { font-size: 13px; }
            .container { padding: 0 16px; }
        }
    
