        :root {
            --primary-dark: #140c3a;
            --primary-color: #140c3a;
            --secondary-color: #f9bd06;
            --accent-color: #445375;
        }

        @media(min-width:700px) {
            .side-menu__item { color: #fff !important; }
        }

        /* ========== ULTRA MODERN HERO SECTION ========== */
        .reseller-hero {
            background: linear-gradient(135deg, #0f0828 0%, #140c3a 40%, #1a1050 70%, #251a55 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
            min-height: 650px;
            display: flex;
            align-items: center;
        }

        /* Animated Mesh Gradient */
        .reseller-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 900px;
            height: 900px;
            background: 
                radial-gradient(circle at 30% 30%, rgba(249, 189, 6, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
            border-radius: 50%;
            animation: meshFloat 25s ease-in-out infinite;
            filter: blur(80px);
        }

        .reseller-hero::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -20%;
            width: 800px;
            height: 800px;
            background: 
                radial-gradient(circle at 60% 40%, rgba(68, 83, 117, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(249, 189, 6, 0.1) 0%, transparent 50%);
            border-radius: 50%;
            animation: meshFloat 20s ease-in-out infinite reverse;
            filter: blur(60px);
        }

        @keyframes meshFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            33% { transform: translate(40px, -30px) rotate(5deg) scale(1.1); }
            66% { transform: translate(-30px, 40px) rotate(-5deg) scale(0.95); }
        }

        /* Grid Pattern */
        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(249, 189, 6, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(249, 189, 6, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
        }

        /* Floating Particles */
        .hero-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: #f9bd06;
            border-radius: 50%;
            opacity: 0.4;
        }

        .particle:nth-child(1) { width: 6px; height: 6px; top: 15%; left: 10%; animation: particleDrift 12s ease-in-out infinite; }
        .particle:nth-child(2) { width: 4px; height: 4px; top: 25%; left: 85%; animation: particleDrift 15s ease-in-out infinite 1s; }
        .particle:nth-child(3) { width: 8px; height: 8px; top: 60%; left: 5%; animation: particleDrift 18s ease-in-out infinite 2s; }
        .particle:nth-child(4) { width: 5px; height: 5px; top: 80%; left: 90%; animation: particleDrift 14s ease-in-out infinite 0.5s; }
        .particle:nth-child(5) { width: 3px; height: 3px; top: 40%; left: 50%; animation: particleDrift 16s ease-in-out infinite 1.5s; }

        @keyframes particleDrift {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
            50% { transform: translate(30px, -40px) scale(1.5); opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            animation: contentFadeIn 1s ease-out;
        }

        @keyframes contentFadeIn {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(249, 189, 6, 0.12);
            border: 1px solid rgba(249, 189, 6, 0.25);
            padding: 12px 28px;
            border-radius: 100px;
            color: #f9bd06;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(249, 189, 6, 0.2), transparent);
            animation: badgeShine 4s ease-in-out infinite;
        }

        @keyframes badgeShine {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .hero-badge i {
            animation: rocketPulse 2s ease-in-out infinite;
        }

        @keyframes rocketPulse {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(3px); }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #f9bd06 0%, #ffd84d 50%, #f9bd06 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 4s ease infinite;
            display: inline-block;
            position: relative;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #f9bd06, #ffd84d);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            animation: underlineGrow 1s ease 0.5s forwards;
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        @keyframes underlineGrow {
            to { transform: scaleX(1); }
        }

        .hero-desc {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.75);
            max-width: 520px;
            line-height: 1.8;
            margin-bottom: 36px;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 36px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(10px);
            padding: 14px 22px;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-feature:hover {
            background: rgba(249, 189, 6, 0.12);
            border-color: rgba(249, 189, 6, 0.3);
            transform: translateY(-4px);
        }

        .hero-feature i {
            color: #f9bd06;
            font-size: 1.1rem;
            filter: drop-shadow(0 0 6px rgba(249, 189, 6, 0.5));
        }

        .hero-feature span {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #f9bd06, #ffd84d);
            color: #140c3a;
            padding: 18px 40px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(249, 189, 6, 0.35);
            position: relative;
            overflow: hidden;
        }

        .hero-btn::before {
            content: '';
            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 ease;
        }

        .hero-btn:hover::before {
            left: 100%;
        }

        .hero-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(249, 189, 6, 0.45);
            color: #140c3a;
        }

        /* ========== 3D VISUAL SYSTEM ========== */
        .hero-visual {
            position: relative;
            z-index: 10;
            perspective: 1000px;
            animation: visualSlideIn 1s ease-out 0.3s backwards;
        }

        @keyframes visualSlideIn {
            from { opacity: 0; transform: translateX(80px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .visual-container {
            position: relative;
            transform-style: preserve-3d;
        }

        /* Glowing Orb Behind */
        .glow-orb {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(249, 189, 6, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            animation: orbPulse 4s ease-in-out infinite;
        }

        @keyframes orbPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            position: relative;
        }

        .stat-card {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #f9bd06, transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(249, 189, 6, 0.08), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card:hover {
            border-color: rgba(249, 189, 6, 0.4);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(249, 189, 6, 0.1);
        }

        .stat-card:hover::before,
        .stat-card:hover::after {
            opacity: 1;
        }

        /* Stagger Animation */
        .stat-card:nth-child(1) { animation: cardFloat 6s ease-in-out infinite; animation-delay: 0s; }
        .stat-card:nth-child(2) { animation: cardFloat 6s ease-in-out infinite; animation-delay: 0.5s; }
        .stat-card:nth-child(3) { animation: cardFloat 6s ease-in-out infinite; animation-delay: 1s; }
        .stat-card:nth-child(4) { animation: cardFloat 6s ease-in-out infinite; animation-delay: 1.5s; }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .stat-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(145deg, #f9bd06, #ffd84d);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            position: relative;
            z-index: 1;
            box-shadow: 
                0 8px 25px rgba(249, 189, 6, 0.35),
                inset 0 1px 0 rgba(255,255,255,0.3);
            transition: all 0.4s ease;
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 
                0 12px 35px rgba(249, 189, 6, 0.45),
                inset 0 1px 0 rgba(255,255,255,0.3);
        }

        .stat-icon i {
            font-size: 1.6rem;
            color: #140c3a;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        /* Connection Lines */
        .connection-lines {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .connection-lines svg {
            width: 100%;
            height: 100%;
        }

        .connection-line {
            stroke: rgba(249, 189, 6, 0.15);
            stroke-width: 1;
            fill: none;
            stroke-dasharray: 5 5;
            animation: lineDash 20s linear infinite;
        }

        @keyframes lineDash {
            to { stroke-dashoffset: -100; }
        }

        /* Floating Badge */
        .floating-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: #fff;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
            animation: badgeBounce 3s ease-in-out infinite;
            z-index: 20;
        }

        @keyframes badgeBounce {
            0%, 100% { transform: translateY(0) rotate(-3deg); }
            50% { transform: translateY(-10px) rotate(3deg); }
        }

        /* ========== PACKAGES SECTION ========== */
        .packages-section {
            padding: 100px 0;
            background: #fafbfc;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: #f9bd06;
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 13px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #140c3a;
            margin-bottom: 16px;
        }

        .section-desc {
            color: #64748b;
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Package Cards */
        .package-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            padding: 36px;
            transition: all 0.4s ease;
            height: 100%;
        }

        .package-card:hover {
            border-color: #f9bd06;
            box-shadow: 0 20px 50px rgba(249, 189, 6, 0.12);
            transform: translateY(-8px);
        }

        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .package-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #140c3a;
        }

        .package-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #f9bd06, #ffd84d);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .package-card:hover .package-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .package-icon i {
            font-size: 1.4rem;
            color: #140c3a;
        }

        .package-desc {
            color: #64748b;
            font-size: 0.9rem;
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .package-price {
            margin-bottom: 28px;
        }

        .price-value {
            font-size: 2.8rem;
            font-weight: 800;
            color: #140c3a;
        }

        .price-currency {
            font-size: 1.4rem;
            color: #140c3a;
            margin-right: 2px;
        }

        .price-period {
            font-size: 0.95rem;
            color: #94a3b8;
        }

        .price-billing {
            font-size: 0.8rem;
            color: #94a3b8;
            margin-top: 4px;
        }

        .package-features {
            list-style: none;
            padding: 0;
            margin: 0 0 28px 0;
        }

        .package-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
            font-size: 0.9rem;
            color: #475569;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li i {
            color: #22c55e;
            font-size: 1rem;
        }

        .package-features li strong {
            color: #140c3a;
            font-weight: 600;
        }

        .package-btn {
            display: block;
            width: 100%;
            padding: 16px;
            background: #140c3a;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .package-btn:hover {
            background: #f9bd06;
            color: #140c3a;
            transform: translateY(-2px);
        }

        /* ========== FEATURES SECTION ========== */
        .features-section {
            padding: 100px 0;
            background: #fff;
        }

        .feature-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: #f8fafc;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(249, 189, 6, 0.1), rgba(249, 189, 6, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, #f9bd06, #ffd84d);
        }

        .feature-icon i {
            font-size: 2rem;
            color: #140c3a;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon i {
            color: #140c3a;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #140c3a;
            margin-bottom: 12px;
        }

        .feature-desc {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #140c3a 0%, #1f1654 100%);
        }

        .cta-content {
            text-align: center;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .cta-desc {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 32px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            .reseller-hero { padding: 80px 0 60px; min-height: auto; }
            .stats-grid { margin-top: 40px; }
            .section-title { font-size: 2rem; }
        }

        @media (max-width: 576px) {
            .hero-title { font-size: 2rem; }
            .hero-features { flex-direction: column; }
            .stats-grid { grid-template-columns: 1fr; }
            .package-card { padding: 28px; }
            .price-value { font-size: 2.2rem; }
        }
