        /* --- VARIABLES & RESET (YELLOW THEME) --- */
        
         :root {
            /* Yellow/Gold Palette */
            --primary: #fbbf24;
            /* Bright Amber */
            --primary-dark: #d97706;
            /* Darker Orange/Gold */
            --primary-light: #fef3c7;
            /* Light Cream */
            --primary-glow: rgba(251, 191, 36, 0.4);
            --accent: #1f2937;
            /* Dark Grey/Black for contrast */
            --bg-color: #ffffff;
            /* Pure White Background */
            --white: #ffffff;
            --text-main: #111827;
            --text-sub: #6b7280;
            --shadow-soft: 0 4px 10px -1px rgba(251, 191, 36, 0.1);
            --shadow-hover: 0 10px 25px -3px rgba(217, 119, 6, 0.2);
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-pill: 9999px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .color-primary {
            color: var(--primary);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            animation: fadeIn 0.6s ease-out;
        }
        /* Grid background that fades out */
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 100vh;
            background-image: linear-gradient(rgba(251, 191, 36, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 191, 36, 0.08) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
            -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
            pointer-events: none;
            z-index: 0;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        /* --- GLOWING YELLOW ORB --- */
        
        .glowing-orb {
            position: fixed;
            top: -300px;
            right: -200px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(60px);
            pointer-events: none;
            animation: pulseOrb 10s infinite alternate;
        }
        
        .glowing-orb-2 {
            position: fixed;
            bottom: -200px;
            left: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(253, 224, 71, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(60px);
            pointer-events: none;
        }
        
        @keyframes pulseOrb {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.1);
                opacity: 1;
            }
        }
        
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        /* --- PROMO BAR --- */
        
        .promo-bar {
            background: linear-gradient(90deg, #dc2626 0%, #ea580c 50%, #dc2626 100%);
            background-size: 200% 100%;
            animation: fireGradient 3s ease infinite;
            color: white;
            text-align: center;
            padding: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #fbbf24;
            box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        @keyframes fireGradient {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        .promo-bar-content {
            position: relative;
            z-index: 2;
        }
        
        .fire-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
            gap: 10px;
            padding: 0 20px;
            align-items: center;
            opacity: 0.15;
            z-index: 1;
            pointer-events: none;
        }
        
        .fire-icon {
            font-size: 1.2rem;
            animation: fireFlicker 2s ease-in-out infinite;
            transform-origin: center;
        }
        
        .fire-icon:nth-child(1) {
            animation-delay: 0s;
        }
        
        .fire-icon:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .fire-icon:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        .fire-icon:nth-child(4) {
            animation-delay: 0.6s;
        }
        
        .fire-icon:nth-child(5) {
            animation-delay: 0.8s;
        }
        
        .fire-icon:nth-child(6) {
            animation-delay: 1s;
        }
        
        .fire-icon:nth-child(7) {
            animation-delay: 1.2s;
        }
        
        .fire-icon:nth-child(8) {
            animation-delay: 1.4s;
        }
        
        .fire-icon:nth-child(9) {
            animation-delay: 1.6s;
        }
        
        .fire-icon:nth-child(10) {
            animation-delay: 1.8s;
        }
        
        @keyframes fireFlicker {
            0%,
            100% {
                transform: scale(1) rotate(0deg) translateY(0);
                opacity: 0.15;
            }
            25% {
                transform: scale(1.3) rotate(-10deg) translateY(-3px);
                opacity: 0.25;
            }
            50% {
                transform: scale(1.1) rotate(5deg) translateY(-5px);
                opacity: 0.2;
            }
            75% {
                transform: scale(1.2) rotate(-5deg) translateY(-2px);
                opacity: 0.18;
            }
        }
        /* --- NAVBAR --- */
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 4%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(251, 191, 36, 0.2);
            min-height: 60px;
        }
        
        .logo {
            font-size: 1.3rem;
            font-weight: 900;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 6px;
            letter-spacing: -0.5px;
            flex-shrink: 0;
        }
        
        .logo i {
            color: var(--primary-dark);
            font-size: 1.2rem;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        
        .mobile-menu-btn:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
        }
        
        .mobile-menu-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
            transition: left 0.3s ease;
            z-index: 9999;
            overflow-y: auto;
        }
        
        .mobile-menu-sidebar.open {
            left: 0;
        }
        
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 9998;
        }
        
        .mobile-menu-overlay.show {
            display: block;
        }
        
        .mobile-menu-header {
            padding: 20px;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-menu-header h3 {
            color: var(--accent);
            font-size: 1.2rem;
            font-weight: 700;
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-sub);
            cursor: pointer;
            padding: 5px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        
        .mobile-menu-close:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
        }
        
        .mobile-menu-content {
            padding: 20px;
        }
        
        .mobile-nav-item {
            margin-bottom: 15px;
        }
        
        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            border-radius: var(--radius-md);
            text-decoration: none;
            color: var(--accent);
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        
        .mobile-nav-link:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }
        
        .mobile-nav-link i {
            font-size: 1.2rem;
            color: var(--primary-dark);
        }
        
        .mobile-dropdown {
            background: var(--primary-light);
            border-radius: var(--radius-md);
            margin-top: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-dropdown-item {
            display: block;
            /* background-color: #ffffff; */
            /* background-color: #d9770600; */
            background-color: #fbfbfb61;
            padding: 12px 20px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .mobile-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .mobile-dropdown-item:hover {
            background: var(--primary);
            color: white;
        }
        
        .nav-menu {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .nav-dropdown {
            position: relative;
        }
        
        .nav-link {
            color: var(--text-sub);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            padding: 10px 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .nav-link i.fa-chevron-down {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-dark);
            background: var(--primary-light);
        }
        
        .nav-dropdown:hover .nav-link i.fa-chevron-down {
            transform: rotate(180deg);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 12px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 2px solid var(--primary-light);
            margin-top: 8px;
        }
        
        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            padding: 10px 14px;
            color: var(--text-main);
            text-decoration: none;
            display: block;
            border-radius: 8px;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
        }
        
        .dropdown-item:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
            transform: translateX(5px);
        }
        
        .nav-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .nav-contact {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: transparent;
            border: 2px solid #e5e7eb;
            border-radius: var(--radius-pill);
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .nav-contact:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            background: var(--primary-light);
            transform: translateY(-2px);
        }
        
        .nav-contact i {
            font-size: 1rem;
        }
        
        @media (max-width: 768px) {
            .nav-contact {
                display: none;
            }
        }
        
        .btn {
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }
        
        .btn-outline {
            background: transparent;
            color: var(--accent);
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }
        
        .btn-primary {
            background: var(--primary);
            color: var(--accent);
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
        }
        
        .btn-primary span {
            position: relative;
            z-index: 1;
        }
        
        .btn-cart {
            background: transparent;
            color: var(--accent);
            border: 2px solid #e5e7eb;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn-cart:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }
        
        .btn-cart i {
            font-size: 1.1rem;
        }
        
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ef4444;
            color: white;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 2px 6px;
            border-radius: 10px;
            min-width: 18px;
            text-align: center;
            animation: badgePop 0.3s ease;
        }
        
        @keyframes badgePop {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .cart-badge.hidden {
            display: none;
        }
        /* --- CART SIDEBAR --- */
        
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            max-width: 100vw;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        
        @media (max-width: 768px) {
            .cart-sidebar {
                width: 100vw;
                right: -100vw;
            }
        }
        
        .cart-sidebar.open {
            right: 0;
        }
        
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .cart-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .cart-header {
            padding: 24px;
            border-bottom: 2px solid var(--primary-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cart-header h2 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
            margin: 0;
        }
        
        .cart-close {
            background: transparent;
            border: none;
            font-size: 1.5rem;
            color: var(--text-sub);
            cursor: pointer;
            transition: all 0.3s ease;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }
        
        .cart-close:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
            transform: rotate(90deg);
        }
        
        .cart-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .cart-footer {
            padding: 20px 24px;
            border-top: 2px solid var(--primary-light);
            background: #fffbf0;
        }
        
        .cart-empty {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-sub);
        }
        
        .cart-empty i {
            font-size: 4rem;
            color: var(--primary-light);
            margin-bottom: 20px;
        }
        
        .cart-empty p {
            font-size: 1.1rem;
            font-weight: 600;
        }
        /* --- HERO SECTION --- */
        
        .hero-bg {
            background: linear-gradient(180deg, #fff7e6 0%, #ffffff 60%);
            /* max-width: 1800px; */
        }
        
        .hero {
            /* background: linear-gradient(180deg, #fff7e6 0%, #ffffff 60%); */
            padding: 60px 90px;
            max-width: 1800px;
            margin: 0 auto;
            animation: slideUp 0.8s ease-out;
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .hero-content {
            text-align: left;
        }
        
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-image img {
            max-width: 120%;
            height: auto;
            /* animation: float 6s ease-in-out infinite; */
        }
        
        @keyframes float {
            0%,
            100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .verified-badges {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-top: 30px;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }
        
        .verified-badges img {
            max-width: 180px;
            height: auto;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 24px;
            color: var(--accent);
            line-height: 1.1;
            letter-spacing: -2px;
            animation: titlePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
        }
        
        @keyframes titlePop {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .hero h1 {
            /* margin-top: -70px; */
            max-width: 500px;
            line-height: 1.2;
        }
        
        .hero h1 .highlight {
            color: var(--primary-dark);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: glow 2s ease-in-out infinite alternate;
            position: relative;
        }
        /* .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 8px;
            background: var(--primary);
            opacity: 0.3;
            border-radius: 4px;
            z-index: -1;
        } */
        
        @keyframes glow {
            from {
                filter: brightness(1);
            }
            to {
                filter: brightness(1.2);
            }
        }
        
        .hero-sub {
            color: var(--text-sub);
            font-size: 1.25rem;
            margin-bottom: 40px;
            font-weight: 500;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
            line-height: 1.6;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Hero CTA Buttons */
        
        .hero-cta-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 35px;
            animation: fadeInUp 0.8s ease-out 0.5s backwards;
            padding: 100px 100px 10px 0px;
        }
        
        .hero-cta-primary {
            padding: 14px 28px;
            background: var(--primary);
            color: var(--accent);
            border: none;
            border-radius: var(--radius-pill);
            font-weight: 800;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .hero-cta-primary:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(217, 119, 6, 0.5);
        }
        
        .hero-cta-secondary {
            padding: 14px 28px;
            background: transparent;
            color: var(--primary-dark);
            border: 3px solid var(--primary);
            border-radius: var(--radius-pill);
            font-weight: 800;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .hero-cta-secondary:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }
        /* Hero Features */
        
        .hero-features {
            display: flex;
            gap: 40px;
            align-items: center;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
            flex-wrap: wrap;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-main);
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .hero-feature i {
            color: #10b981;
            font-size: 1.2rem;
        }
        /* Announcement Banner */
        
        .announcement-banner {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease-out 0.3s backwards;
            border: 2px solid var(--primary-light);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .announcement-banner:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
            border-color: var(--primary);
        }
        
        .announcement-icon {
            font-size: 1.2rem;
        }
        
        .announcement-text {
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 0.85rem;
        }
        
        .announcement-link {
            color: #3b82f6;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: gap 0.3s ease;
        }
        
        .announcement-banner:hover .announcement-link {
            gap: 8px;
        }
        /* --- PLATFORM TABS --- */
        
        .platform-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }
        
        .p-tab {
            background: var(--white);
            border: 2px solid #f3f4f6;
            padding: 14px 24px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            color: var(--text-sub);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .p-tab::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--primary-light);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: 0;
        }
        
        .p-tab:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .p-tab i {
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        
        .p-tab:hover i {
            transform: scale(1.3) rotate(10deg);
            animation: iconWiggle 0.5s ease;
        }
        
        @keyframes iconWiggle {
            0%,
            100% {
                transform: scale(1.3) rotate(10deg);
            }
            25% {
                transform: scale(1.4) rotate(-10deg);
            }
            50% {
                transform: scale(1.3) rotate(10deg);
            }
            75% {
                transform: scale(1.4) rotate(-5deg);
            }
        }
        
        .p-tab span {
            position: relative;
            z-index: 1;
            white-space: nowrap;
        }
        
        .p-tab:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            transform: translateY(-6px) scale(1.08);
            background: var(--primary-light);
            box-shadow: 0 12px 28px rgba(251, 191, 36, 0.4);
        }
        
        .p-tab.active {
            background: var(--primary);
            color: var(--accent);
            border-color: var(--primary);
            box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
            transform: translateY(-2px);
            animation: tabPulse 0.5s ease;
        }
        
        .p-tab.active i {
            animation: iconBounce 0.6s ease;
        }
        
        @keyframes tabPulse {
            0%,
            100% {
                transform: translateY(-2px) scale(1);
            }
            50% {
                transform: translateY(-2px) scale(1.05);
            }
        }
        
        @keyframes iconBounce {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2) rotate(5deg);
            }
        }
        /* --- SERVICE LIST (ACCORDION) --- */
        
        .service-list {
            max-width: 1200px;
            margin: 0 auto 60px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            animation: fadeInUp 0.8s ease-out 0.8s backwards;
        }
        
        .service-category {
            background: var(--white);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(251, 191, 36, 0.3);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            animation: slideInLeft 0.6s ease-out forwards;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .service-category:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .service-category:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .service-category:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .service-category:nth-child(4) {
            animation-delay: 0.4s;
        }
        
        .service-category:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
            transform: translateX(5px) scale(1.01);
        }
        /* Category Header */
        
        .cat-header {
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            user-select: none;
            background: var(--white);
            transition: background 0.3s ease;
        }
        
        .cat-header:hover {
            background: var(--primary-light);
        }
        
        .cat-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .cat-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-dark);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .cat-header:hover .cat-icon {
            transform: rotate(10deg) scale(1.1);
            background: var(--primary);
            color: var(--accent);
        }
        
        .cat-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent);
            transition: color 0.3s ease;
        }
        
        .cat-header:hover .cat-title {
            color: var(--primary-dark);
        }
        
        .cat-chevron {
            color: var(--primary);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .cat-header:hover .cat-chevron {
            transform: translateY(3px);
        }
        /* Active State */
        
        .service-category.active {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 8px 30px rgba(251, 191, 36, 0.2);
        }
        
        .service-category.active .cat-chevron {
            transform: rotate(180deg);
        }
        
        .service-category.active .cat-icon {
            background: var(--primary);
            color: var(--accent);
            animation: iconBounce 0.6s ease;
        }
        
        @keyframes iconBounce {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2) rotate(10deg);
            }
        }
        /* Expanded Content */
        
        .cat-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: #fffbf0;
            border-top: 1px solid transparent;
            opacity: 0;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        }
        
        .service-category.active .cat-content {
            border-top-color: rgba(251, 191, 36, 0.3);
            opacity: 1;
        }
        /* --- REGION SELECTOR --- */
        
        .region-selector {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .region-option {
            background: #f9fafb;
            border: 3px solid #e5e7eb;
            border-radius: 16px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
        }
        
        .region-option:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .region-option.active {
            background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
            border-color: #3b82f6;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
        }
        
        .region-option.german-option.active {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-color: #fbbf24;
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
        }
        
        .region-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }
        
        .region-info {
            flex: 1;
        }
        
        .region-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 8px;
        }
        
        .region-features {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .region-feature {
            font-size: 0.85rem;
            color: var(--text-sub);
            font-weight: 600;
        }
        
        .region-check {
            width: 28px;
            height: 28px;
            border: 3px solid #d1d5db;
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .region-option.active .region-check {
            background: #3b82f6;
            border-color: #3b82f6;
        }
        
        .region-option.active .region-check::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: 900;
            font-size: 1.1rem;
        }
        /* Hide inactive region content */
        
        .region-content {
            display: none;
        }
        
        .region-content.active {
            display: block;
        }
        
        @media (max-width: 768px) {
            .region-selector {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 15px;
            }
            .region-option {
                padding: 15px;
            }
            .region-icon {
                font-size: 2rem;
            }
            .region-title {
                font-size: 1rem;
            }
            .region-feature {
                font-size: 0.8rem;
            }
        }
        /* --- SPLIT CONTAINER STYLE --- */
        
        .split-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            padding: 20px;
        }
        
        .sub-container {
            background: var(--white);
            border: 2px dashed var(--primary-light);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .sub-header {
            text-align: center;
            font-weight: 800;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            border-bottom: 2px solid var(--primary-light);
            padding-bottom: 10px;
        }
        
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
        }
        /* Option Card Styling */
        
        .option-card {
            background: #fff;
            border: 1px solid #f3f4f6;
            border-radius: 8px;
            padding: 15px 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            min-height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .option-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .option-card:hover::before {
            left: 100%;
        }
        
        .option-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 12px 24px rgba(251, 191, 36, 0.3);
        }
        
        .option-qty {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 4px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            line-height: 1.3;
        }
        
        .option-price {
            font-size: 0.9rem;
            color: var(--text-sub);
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .bonus-tag {
            color: #10b981;
            font-size: 0.75rem;
            font-weight: 700;
            background: #ecfdf5;
            padding: 2px 6px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 12px;
            word-wrap: break-word;
            max-width: 100%;
        }
        /* YELLOW BUY BUTTON */
        
        .btn-buy {
            width: 100%;
            padding: 10px 0;
            background: var(--primary);
            color: #1f2937;
            border: none;
            border-radius: 6px;
            font-weight: 800;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-transform: uppercase;
            box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-buy::after {
            content: '→';
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .btn-buy:hover::after {
            right: 15px;
            opacity: 1;
        }
        
        .btn-buy:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 16px rgba(217, 119, 6, 0.5);
            padding-right: 30px;
        }
        
        .btn-buy:active {
            transform: translateY(0) scale(0.98);
        }
        /* Standard non-split grid for Likes/Views */
        
        .standard-grid {
            padding: 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
        }
        /* Unified grid for region selector (German/Premium) */
        
        .unified-grid {
            padding: 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
        }
        
        @media (max-width: 768px) {
            .standard-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 12px;
                padding: 16px;
            }
            .unified-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 12px;
                padding: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .standard-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .unified-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .option-card {
                padding: 12px 8px;
                min-height: 140px;
            }
            .option-qty {
                font-size: 0.95rem;
            }
            .option-price {
                font-size: 0.85rem;
            }
            .btn-buy {
                font-size: 0.75rem;
                padding: 8px 0;
            }
        }
        /* --- NEW SECTION: WHY US --- */
        
        .section-container {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 40px;
        }
        /* --- NEW WHY SECTION STYLE --- */
        
        .why-grid-new {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 50px auto 0;
        }
        
        .why-card-new {
            background: var(--white);
            padding: 40px 35px;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid #f3f4f6;
            opacity: 0;
            animation: fadeInScale 0.6s ease-out forwards;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .why-card-new:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .why-card-new:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .why-card-new:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .why-card-new:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 12px 35px rgba(251, 191, 36, 0.2);
        }
        
        .why-icon-new {
            width: 100%;
            height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            background: #f9fafb;
        }
        
        .why-icon-new img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }
        
        .why-card-new:hover .why-icon-new {
            transform: scale(1.02);
        }
        
        .why-card-new:hover .why-icon-new img {
            transform: scale(1.05);
        }
        
        .why-title-new {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--accent);
            margin: 0;
        }
        
        .why-text-new {
            color: var(--text-sub);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }
        /* Custom Support Icon */
        
        .support-icon-container {
            width: 100%;
            height: 240px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .support-icon-container::before {
            content: '🔥';
            position: absolute;
            font-size: 2.5rem;
            top: 20px;
            left: 20px;
            animation: fireFloat 3s ease-in-out infinite;
        }
        
        .support-icon-container::after {
            content: '🔥';
            position: absolute;
            font-size: 2.2rem;
            bottom: 25px;
            right: 25px;
            animation: fireFloat 3s ease-in-out infinite 1.5s;
        }
        
        @keyframes fireFloat {
            0%,
            100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-10px) rotate(10deg);
                opacity: 1;
            }
        }
        
        .support-main-icon {
            font-size: 6rem;
            z-index: 2;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }
        
        .fire-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 10px;
            padding: 20px;
            opacity: 0.3;
            z-index: 1;
        }
        
        .fire-grid span {
            font-size: 1.5rem;
            animation: fireFlicker 2s ease-in-out infinite;
        }
        
        .fire-grid span:nth-child(1) {
            animation-delay: 0s;
        }
        
        .fire-grid span:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .fire-grid span:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        .fire-grid span:nth-child(4) {
            animation-delay: 0.6s;
        }
        
        .fire-grid span:nth-child(5) {
            animation-delay: 0.8s;
        }
        
        .fire-grid span:nth-child(6) {
            animation-delay: 1s;
        }
        
        .fire-grid span:nth-child(7) {
            animation-delay: 1.2s;
        }
        
        .fire-grid span:nth-child(8) {
            animation-delay: 1.4s;
        }
        
        .fire-grid span:nth-child(9) {
            animation-delay: 1.6s;
        }
        
        .fire-grid span:nth-child(10) {
            animation-delay: 1.8s;
        }
        
        .fire-grid span:nth-child(11) {
            animation-delay: 2s;
        }
        
        .fire-grid span:nth-child(12) {
            animation-delay: 2.2s;
        }
        
        @keyframes fireFlicker {
            0%,
            100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.2);
            }
        }
        
        @media (max-width: 768px) {
            .why-grid-new {
                grid-template-columns: 1fr;
                gap: 0px;
                margin: 0px;
            }
        }
        /* --- NEW SECTION: REVIEWS CAROUSEL --- */
        
        .reviews-section {
            background: #fff;
            padding: 60px 20px;
            margin-top: 40px;
            overflow: hidden;
        }
        
        .reviews-carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }
        
        .reviews-carousel {
            display: flex;
            gap: 24px;
            animation: scrollLeft 40s linear infinite;
            width: fit-content;
        }
        
        .reviews-carousel:hover {
            animation-play-state: paused;
        }
        
        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        /* Duplicate reviews for seamless loop */
        
        .reviews-carousel::after {
            content: '';
            display: flex;
            gap: 24px;
        }
        
        .review-card {
            background: #fff;
            padding: 24px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(251, 191, 36, 0.2);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            min-width: 350px;
            max-width: 350px;
            flex-shrink: 0;
        }
        
        .review-card:hover {
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
            border-color: var(--primary);
            transform: translateY(-8px) scale(1.02);
        }
        
        .stars {
            color: var(--primary-dark);
            margin-bottom: 12px;
            font-size: 0.9rem;
            text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
        }
        
        .review-text {
            font-style: italic;
            color: var(--accent);
            margin-bottom: 16px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .reviewer-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ddd;
            object-fit: cover;
            border: 2px solid var(--primary);
        }
        
        .reviewer-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--accent);
        }
        
        .verified {
            font-size: 0.7rem;
            color: var(--primary-dark);
            display: block;
            font-weight: 600;
        }
        /* --- MINI FAQ SECTION --- */
        
        .faq-mini-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .faq-mini-item {
            background: #f9fafb;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid rgba(251, 191, 36, 0.2);
            transition: all 0.3s ease;
        }
        
        .faq-mini-item:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
        }
        
        .faq-mini-question {
            padding: 18px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background 0.3s ease;
        }
        
        .faq-mini-question:hover {
            background: var(--primary-light);
        }
        
        .faq-mini-question h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent);
            margin: 0;
        }
        
        .faq-mini-question i {
            color: var(--primary-dark);
            transition: transform 0.3s ease;
        }
        
        .faq-mini-item.active .faq-mini-question i {
            transform: rotate(180deg);
        }
        
        .faq-mini-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: white;
        }
        
        .faq-mini-item.active .faq-mini-answer {
            max-height: 1000px;
        }
        
        .faq-mini-answer p {
            color: var(--text-main);
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
            padding: 20px;
        }
        /* --- FOOTER / PAYMENT --- */
        
        .payment-section {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border-top: 3px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        .payment-section>* {
            position: relative;
            z-index: 1;
        }
        
        .payment-section h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 800;
        }
        
        .payment-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            font-size: 2.5rem;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        
        .payment-icons i {
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }
        
        .payment-icons i:hover {
            transform: translateY(-5px) scale(1.1);
            filter: drop-shadow(0 8px 16px rgba(251, 191, 36, 0.4));
        }
        
        @media (max-width: 768px) {
            .payment-icons {
                font-size: 1.8rem;
                gap: 15px;
                margin: 20px 0;
            }
        }
        
        @media (max-width: 480px) {
            .payment-icons {
                font-size: 1.5rem;
                gap: 10px;
                margin: 15px 0;
            }
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .trust-badge {
            background: white;
            padding: 15px 25px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            opacity: 0;
            animation: fadeInScale 0.6s ease-out forwards;
        }
        
        .trust-badge:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .trust-badge:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .trust-badge:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .trust-badge:nth-child(4) {
            animation-delay: 0.4s;
        }
        
        .trust-badge:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
        }
        
        .trust-badge i {
            font-size: 1.5rem;
            color: var(--primary-dark);
        }
        
        .trust-badge-text {
            text-align: left;
        }
        
        .trust-badge-title {
            font-weight: 700;
            color: var(--accent);
            font-size: 0.9rem;
        }
        
        .trust-badge-sub {
            font-size: 0.75rem;
            color: var(--text-sub);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--text-sub);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }
        
        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-dark);
        }
        
        .footer-links a:hover::after {
            width: 100%;
        }
        
        .footer-links .separator {
            color: var(--text-sub);
            opacity: 0.5;
        }
        /* --- TOAST --- */
        
        .modern-toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: white;
            color: var(--accent);
            padding: 18px 24px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            transform: translateX(400px);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 10000;
            font-weight: 600;
            border: 2px solid #e5e7eb;
            min-width: 300px;
            max-width: calc(100vw - 40px);
        }
        
        .modern-toast.show {
            transform: translateX(0);
        }
        
        .modern-toast.success {
            border-color: #10b981;
            background: linear-gradient(135deg, #ecfdf5 0%, white 100%);
        }
        
        .modern-toast.error {
            border-color: #ef4444;
            background: linear-gradient(135deg, #fee2e2 0%, white 100%);
        }
        
        .modern-toast span {
            flex: 1;
            color: var(--accent);
        }
        
        @media (max-width: 768px) {
            .modern-toast {
                bottom: 80px;
                right: 10px;
                left: 10px;
                min-width: auto;
                max-width: none;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                left: 3%;
                z-index: 10;
            }
            .nav-menu {
                display: none;
            }
            .nav-actions {
                gap: 6px;
                flex-shrink: 0;
            }
            .navbar {
                padding: 10px 3%;
                min-height: 56px;
                justify-content: center;
                position: relative;
            }
            .logo {
                font-size: 1.1rem;
                gap: 4px;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }
            .nav-actions {
                position: absolute;
                right: 3%;
            }
            .logo i {
                font-size: 1rem;
            }
            /* Hero adjustments */
            .hero-container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 40px 4%;
            }
            .hero {
                padding: 30px 20px;
            }
            .hero-content {
                text-align: center;
            }
            .hero-image {
                display: none;
            }
            .hero-cta-buttons {
                max-width: 300px;
                margin: 20px auto;
                padding: unset;
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.15;
                margin-bottom: 15px;
            }
            .hero-sub {
                font-size: 0.95rem;
                line-height: 1.5;
            }
            .verified-badges {
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
            }
            .verified-badge {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
            /* Platform tabs */
            .platform-tabs {
                gap: 6px;
                padding: 0 3%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                flex-direction: column;
                align-items: stretch;
            }
            .platform-tabs::-webkit-scrollbar {
                display: none;
            }
            .p-tab {
                padding: 12px 16px;
                font-size: 0.9rem;
                white-space: nowrap;
                flex-shrink: 0;
                width: 100%;
                justify-content: center;
            }
            .p-tab i {
                font-size: 1rem;
            }
            /* Service list */
            .split-wrapper {
                grid-template-columns: 1fr;
                padding: 0 3%;
            }
            .standard-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 10px;
            }
            /* Why section */
            .why-grid-new {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            /* Reviews */
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            /* FAQ mini */
            .faq-mini-question h3 {
                font-size: 0.9rem;
            }
            /* Footer */
            .payment-section>div>div:first-child {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }
            .payment-icons {
                font-size: 2rem !important;
                gap: 15px !important;
            }
            /* Buttons */
            .btn {
                padding: 8px 14px;
                font-size: 0.85rem;
            }
            .btn-primary {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
            /* Cart badge */
            #cart-count {
                width: 18px;
                height: 18px;
                font-size: 0.7rem;
            }
            /* Sections */
            .section {
                padding: 40px 3%;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .why-card-new {
                scale: 0.9;
            }
        }
        
        @media (max-width: 480px) {
            .navbar {
                padding: 8px 3%;
            }
            .logo {
                font-size: 1rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero-sub {
                font-size: 0.9rem;
            }
            .platform-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                flex-direction: column;
                align-items: stretch;
            }
            .p-tab {
                padding: 10px 14px;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }
            .options-grid {
                grid-template-columns: 1fr !important;
            }
            .standard-grid {
                grid-template-columns: 1fr !important;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .btn {
                padding: 8px 12px;
                font-size: 0.8rem;
            }
            /* Cart popup */
            #cart-sidebar {
                width: 100% !important;
                max-width: 100% !important;
            }
            .cart-sidebar-header h2 {
                font-size: 1.2rem;
            }
            .cart-item-title {
                font-size: 0.9rem;
            }
            .cart-item-price {
                font-size: 1rem;
            }
        }