@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

        :root {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f8fafc;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            color: #0f172a;
            line-height: 1.6;
            font-weight: 400;
        }
        * {
            box-sizing: border-box;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.2;
            margin: 0;
        }
        h1 { font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); }
        h2 { font-weight: 700; font-size: clamp(1.75rem, 4vw, 2.5rem); }
        h3 { font-weight: 600; font-size: clamp(1.25rem, 3vw, 1.5rem); }
        h4 { font-weight: 600; font-size: clamp(1.1rem, 2.5vw, 1.25rem); }
        p {
            margin: 0 0 1rem 0;
            font-weight: 400;
        }
        .font-light { font-weight: 300; }
        .font-normal { font-weight: 400; }
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        .font-extrabold { font-weight: 800; }
        .font-black { font-weight: 900; }

        /* Accessibility - Skip Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: #e8713c;
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            z-index: 10000;
            transition: top 0.3s ease;
        }

        .skip-link:focus {
            top: 6px;
        }

        /* Focus styles for accessibility */
        *:focus {
            outline: 2px solid #e8713c;
            outline-offset: 2px;
        }

        button:focus,
        a:focus,
        input:focus,
        textarea:focus,
        select:focus {
            outline: 2px solid #e8713c;
            outline-offset: 2px;
        }

        /* High contrast focus for better visibility */
        .btn:focus,
        .cta-btn-primary:focus,
        .cta-btn-secondary:focus {
            outline: 3px solid #fff;
            outline-offset: 2px;
            box-shadow: 0 0 0 5px #e8713c;
        }

        /* Remove double borders on nav buttons */
        .nav-btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(232, 113, 60, 0.5);
        }

        /* Ensure minimum touch targets for mobile */
        button,
        .btn,
        .cta-btn-primary,
        .cta-btn-secondary,
        a[role="button"] {
            min-height: 44px;
            min-width: 44px;
        }

        /* Improve readability */
        @media (max-width: 768px) {
            body {
                font-size: 16px;
                line-height: 1.5;
            }

            .container {
                padding: 0 1rem;
            }
        }

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .features {
                background: #fff;
                border: 2px solid #000;
            }

            .feature-card {
                background: #fff;
                border: 2px solid #000;
            }
        }

        .pricing {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 30%, rgba(232, 113, 60, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }
        .pricing h2 {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #0f172a;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .pricing-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
            margin-bottom: 4rem;
        }
        .pricing-card {
            background: white;
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        .pricing-card.popular {
            background: linear-gradient(135deg, #e8713c 0%, #f97316 50%, #fb923c 100%);
            color: white;
            border: 2px solid #e8713c;
            box-shadow: 0 20px 40px rgba(232, 113, 60, 0.3);
            transform: scale(1.05);
        }
        .pricing-card.popular .pricing-features li {
            color: #e0f2fe;
        }
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        }
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(232, 113, 60, 0.15);
        }
        .pricing-card.popular:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 30px 60px rgba(232, 113, 60, 0.4);
        }
        .pricing-header {
            margin-bottom: 2rem;
        }
        .pricing-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            border: 2px solid #bfdbfe;
        }
        .pricing-card.popular .pricing-icon {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
        }
        .pricing-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #0f172a;
        }
        .pricing-card.popular h3 {
            color: white;
        }
        .pricing-price {
            margin-bottom: 1rem;
        }
        .currency {
            font-size: 1.5rem;
            font-weight: 600;
            color: #64748b;
        }
        .pricing-card.popular .currency {
            color: rgba(255, 255, 255, 0.8);
        }
        .amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: #0f172a;
        }
        .pricing-card.popular .amount {
            color: white;
        }
        .period {
            font-size: 1.125rem;
            color: #64748b;
            font-weight: 500;
        }
        .pricing-card.popular .period {
            color: rgba(255, 255, 255, 0.8);
        }
        .pricing-card p {
            color: #64748b;
            font-size: 1rem;
            margin-bottom: 0;
        }
        .pricing-card.popular p {
            color: rgba(255, 255, 255, 0.9);
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
        }
        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: #475569;
            font-size: 0.95rem;
        }
        .check {
            color: #10b981;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: -0.1rem;
        }
        .pricing-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: white;
            border: 2px solid #e5e7eb;
            color: #374151;
            border-radius: 1rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        .pricing-btn:hover {
            background: #f9fafb;
            border-color: #d1d5db;
            transform: translateY(-2px);
        }
        .pricing-btn.primary {
            background: white;
            border-color: white;
            color: #e8713c;
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }
        .pricing-btn.primary:hover {
            background: #fef7f3;
            border-color: #fef7f3;
        }
        .pricing-cta {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
        }
        .pricing-cta h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }
        .pricing-cta p {
            color: #cbd5e1;
            margin-bottom: 2rem;
            font-size: 1.125rem;
        }
        .trust-strip {
            padding: 3rem 0;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }
        .trust-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .trust-list li {
            font-weight: 500;
            color: #0f172a;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid #e5e7eb;
            border-radius: 1rem;
            padding: 0.75rem 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .trust-list li:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 13px;
        }
        .announcement-bar {
            background: #0f172a;
            color: white;
            padding: 0.625rem 1rem;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1001;
            transition: all 0.3s ease;
        }
        .announcement-content {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .announcement-text {
            font-size: 0.5625rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.075em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        @media (min-width: 768px) {
            .announcement-text {
                font-size: 0.75rem;
            }
        }
        header {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
            backdrop-filter: blur(20px);
            position: fixed;
            top: 49px;
            width: 100%;
            z-index: 999;
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 3rem 0;
            max-width: 1600px;
            margin: 0 auto;
        }
        .logo {
            display: flex;
            align-items: center;
        }
        .logo img {
            height: 50px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .logo img:hover {
            transform: scale(1.05);
        }
        .logo div {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e8713c 0%, #f97316 50%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Poppins', sans-serif;
            letter-spacing: -0.02em;
        }
        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2rem;
        }
        .nav-links li {
            position: relative;
            display: flex;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: #374151;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            min-height: 48px;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, rgba(232, 113, 60, 0.1), rgba(249, 115, 22, 0.1));
            color: #e8713c;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 113, 60, 0.15);
        }
        .nav-links a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #e8713c, #f97316);
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        .nav-links a:hover::before {
            width: 80%;
        }
        .mobile-menu-btn {
            display: none;
            padding: 1rem;
            background: linear-gradient(135deg, rgba(232, 113, 60, 0.1), rgba(249, 115, 22, 0.1));
            border: 1px solid rgba(232, 113, 60, 0.2);
            border-radius: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .mobile-menu-btn:hover {
            background: linear-gradient(135deg, rgba(232, 113, 60, 0.2), rgba(249, 115, 22, 0.2));
            transform: scale(1.05);
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: #e8713c;
        }
        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-left: 2rem;
        }
        .nav-btn {
            padding: 0.625rem 1.25rem;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .nav-btn-primary {
            background: linear-gradient(135deg, #e8713c, #f97316);
            color: white;
            box-shadow: 0 4px 12px rgba(232, 113, 60, 0.3);
        }
        .nav-btn-primary:hover {
            background: linear-gradient(135deg, #ea580c, #e8713c);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 113, 60, 0.4);
        }

        /* Store Menu Item Styling - Distinctive Design */
        .nav-store-item {
            position: relative;
        }

        .nav-store-item a {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white !important;
            padding: 0.75rem 1rem !important;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: store-pulse 3s ease-in-out infinite;
            min-height: 48px;
        }

        .nav-store-item a::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.6s;
        }

        .nav-store-item a:hover::before {
            left: 100%;
        }

        .nav-store-item a:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
            background: linear-gradient(135deg, #059669, #047857);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .store-badge {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #92400e;
            font-size: 0.65rem;
            font-weight: 900;
            padding: 4px 10px;
            border-radius: 12px;
            position: absolute;
            top: -10px;
            right: -10px;
            animation: badge-bounce 2s ease-in-out infinite;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.6);
            z-index: 20;
            border: 2px solid #ffffff;
            transform: rotate(-8deg);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-width: 40px;
            text-align: center;
        }

        .store-icon {
            flex-shrink: 0;
            animation: cart-wiggle 2s ease-in-out infinite;
        }

        .store-text {
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .store-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
            border-radius: inherit;
            animation: glow-pulse 2s ease-in-out infinite alternate;
            pointer-events: none;
        }

        .nav-store-item a svg {
            width: 16px;
            height: 16px;
            stroke-width: 2.5;
        }

        @keyframes store-pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(16, 185, 129, 0.6);
            }
        }

        @keyframes badge-bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-2px);
            }
        }

        @keyframes cart-wiggle {
            0%, 100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(-3deg);
            }
            75% {
                transform: rotate(3deg);
            }
        }

        @keyframes glow-pulse {
            from {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1);
            }
            to {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        .nav-btn-secondary {
            background: transparent;
            color: #e8713c;
            border-color: rgba(232, 113, 60, 0.3);
        }
        .nav-btn-secondary:hover {
            background: rgba(232, 113, 60, 0.1);
            border-color: #e8713c;
            transform: translateY(-1px);
        }
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .nav-buttons {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            nav {
                padding: 2.5rem 0;
            }
            .logo img {
                height: 40px;
                max-width: 160px;
            }
            .logo div {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            nav {
                padding: 2rem 0;
            }
            .logo img {
                height: 35px;
                max-width: 140px;
            }
            .logo div {
                font-size: 1.5rem;
            }
        }
        .hero {
            padding: 200px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            right: -50%;
            bottom: -50%;
            background: radial-gradient(ellipse at center, rgba(232, 113, 60, 0.08) 0%, rgba(249, 115, 22, 0.05) 50%, transparent 70%);
            animation: float 20s ease-in-out infinite;
            z-index: 0;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(1deg); }
            66% { transform: translateY(10px) rotate(-1deg); }
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(232, 113, 60, 0.2);
            background: linear-gradient(135deg, rgba(232, 113, 60, 0.1), rgba(249, 115, 22, 0.1));
            color: #e8713c;
            padding: 0.75rem 1.5rem;
            border-radius: 3rem;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 2.5rem;
            box-shadow: 0 4px 12px rgba(232, 113, 60, 0.15);
            backdrop-filter: blur(10px);
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: #0f172a;
            line-height: 1.50;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 3.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #475569;
            line-height: 1.6;
            font-weight: 500;
        }
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1.25rem 2.5rem;
            background: linear-gradient(135deg, #e8713c, #f97316);
            color: white;
            text-decoration: none;
            border-radius: 2.5rem;
            font-weight: 700;
            font-size: 1.125rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: none;
            box-shadow: 0 8px 25px rgba(232, 113, 60, 0.3);
        }
        .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.6s;
        }
        .btn:hover::before {
            left: 100%;
        }
        .btn:hover {
            background: linear-gradient(135deg, #ea580c, #e8713c);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 20px 40px rgba(232, 113, 60, 0.4);
        }
        .btn-secondary {
            background: white;
            border: 2px solid rgba(232, 113, 60, 0.2);
            color: #e8713c;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .btn-secondary:hover {
            background: #fef7f3;
            border-color: #e8713c;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 12px 30px rgba(232, 113, 60, 0.2);
        }
        .dashboard-preview {
            margin-top: 5rem;
            position: relative;
        }
        .dashboard-preview::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            border-radius: 2px;
        }
        .dashboard-image {
            max-width: 1400px;
            margin: 0 auto;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
        }
        .dashboard-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        .dashboard-image:hover::before {
            opacity: 1;
        }
        .dashboard-image:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 60px 120px rgba(37, 99, 235, 0.3), 0 0 0 1px rgba(37, 99, 235, 0.3);
        }
        .dashboard-image img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
        }
        .dashboard-image:hover img {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero {
                padding: 180px 0 60px;
            }
            .hero-badge {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }
            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            .hero p {
                font-size: 1rem;
                line-height: 1.5;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            .btn {
                width: 100%;
                max-width: 320px;
                padding: 1rem 2rem;
                font-size: 1rem;
            }
            .dashboard-preview {
                margin-top: 3rem;
            }
            .dashboard-image {
                border-radius: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .faq {
                padding: 80px 0;
            }
            .faq h2 {
                font-size: 2.5rem;
            }
            .faq-subtitle {
                font-size: 1rem;
                margin-bottom: 3rem;
            }
            .faq-question {
                padding: 1.5rem 2rem;
                font-size: 1.1rem;
            }
            .faq-icon {
                width: 1.75rem;
                height: 1.75rem;
            }
            .faq-icon svg {
                width: 0.875rem;
                height: 0.875rem;
            }
            .faq-answer {
                padding: 0 2rem 2rem;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero-badge {
                font-size: 0.6875rem;
            }
            .faq h2 {
                font-size: 2rem;
            }
            .faq-question {
                padding: 1.25rem 1.5rem;
                font-size: 1rem;
            }
            .faq-answer {
                padding: 0 1.5rem 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .pricing {
                padding: 80px 0;
            }
            .pricing h2 {
                font-size: 2.5rem;
            }
            .pricing-subtitle {
                font-size: 1rem;
                margin-bottom: 3rem;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 3rem;
            }
            .pricing-card {
                padding: 2rem 1.5rem;
            }
            .pricing-card.popular {
                transform: none;
            }
            .pricing-card.popular:hover {
                transform: translateY(-10px) scale(1);
            }
            .pricing-icon {
                width: 3rem;
                height: 3rem;
                font-size: 1.5rem;
            }
            .pricing-card h3 {
                font-size: 1.5rem;
            }
            .amount {
                font-size: 2.5rem;
            }
            .pricing-cta {
                padding: 2rem 1.5rem;
            }
            .pricing-cta h3 {
                font-size: 1.5rem;
            }
            .pricing-cta p {
                font-size: 1rem;
            }
            .trust-strip {
                padding: 2rem 0;
                margin-bottom: 1rem;
            }
            .trust-list {
                flex-direction: column;
                gap: 1rem;
            }
            .trust-list li {
                justify-content: center;
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }
        }
        /* SHARED vs PRIVATE ACCESS */
        .access-types {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .access-types::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(232, 113, 60, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .access-comparison {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .access-option {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 8px 32px rgba(232, 113, 60, 0.08);
            border: 1px solid rgba(232, 113, 60, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .access-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #e8713c, #f97316);
            border-radius: 20px 20px 0 0;
        }

        .shared-access::before {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .access-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(232, 113, 60, 0.15);
        }

        .access-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .access-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .access-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 1rem;
        }

        .access-price {
            font-size: 2rem;
            font-weight: 800;
            color: #e8713c;
            margin-bottom: 1rem;
        }

        .shared-access .access-price {
            color: #10b981;
        }

        .access-price span {
            font-size: 1rem;
            font-weight: 500;
            color: #64748b;
        }

        .access-features {
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

        .feature-check {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .shared-access .feature-check {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .private-access .feature-check {
            background: linear-gradient(135deg, #e8713c, #f97316);
        }

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

        .access-btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .shared-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .shared-btn:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }

        .private-btn {
            background: linear-gradient(135deg, #e8713c, #f97316);
            color: white;
        }

        .private-btn:hover {
            background: linear-gradient(135deg, #ea580c, #e8713c);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 113, 60, 0.3);
        }

        .vs-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
        }

        .vs-badge {
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            color: #64748b;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            border: 2px solid rgba(232, 113, 60, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .access-recommendation {
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }

        .recommendation-card {
            background: linear-gradient(135deg, #fef7f3 0%, #fed7aa 100%);
            border: 1px solid rgba(232, 113, 60, 0.2);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            box-shadow: 0 8px 24px rgba(232, 113, 60, 0.08);
        }

        .rec-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .rec-content h4 {
            color: #0f172a;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .rec-content p {
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .access-comparison {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .vs-divider {
                display: none;
            }

            .access-option {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .access-types {
                padding: 60px 0;
            }

            .access-option {
                padding: 2rem;
            }

            .access-price {
                font-size: 1.75rem;
            }

            .recommendation-card {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }

        .features {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 50%, #fed7aa 100%);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(232, 113, 60, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="features-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(232, 113, 60, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23features-dots)"/></svg>');
            pointer-events: none;
        }

        .features-hero {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, #fef7f3 0%, #fed7aa 100%);
            border: 1px solid rgba(232, 113, 60, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #e8713c;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }

        .features h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.6;
            font-weight: 500;
        }

        .hero-highlights {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(232, 113, 60, 0.1);
        }

        .highlight-icon {
            font-size: 1.5rem;
        }

        .highlight-text strong {
            display: block;
            color: #0f172a;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .highlight-text span {
            color: #64748b;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
            position: relative;
            z-index: 2;
        }

        .feature-card {
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(232, 113, 60, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(232, 113, 60, 0.08);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(232, 113, 60, 0.05), transparent);
            transition: left 0.5s;
            border-radius: inherit;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(232, 113, 60, 0.15);
            border-color: rgba(232, 113, 60, 0.2);
        }

        .feature-visual {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .feature-icon {
            width: 5rem;
            height: 5rem;
            background: linear-gradient(135deg, #e8713c, #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 24px rgba(232, 113, 60, 0.3);
        }

        .feature-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6rem;
            height: 6rem;
            background: radial-gradient(circle, rgba(232, 113, 60, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: glow 3s ease-in-out infinite alternate;
        }

        .feature-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 1rem;
            text-align: center;
        }

        .feature-content p {
            color: #64748b;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .feature-benefit {
            text-align: center;
        }

        .benefit-tag {
            display: inline-block;
            background: linear-gradient(135deg, #fef7f3 0%, #fed7aa 100%);
            color: #e8713c;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(232, 113, 60, 0.2);
        }

        .features-cta {
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(232, 113, 60, 0.1);
            border-radius: 20px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 3rem;
            align-items: center;
            box-shadow: 0 12px 40px rgba(232, 113, 60, 0.08);
            position: relative;
            z-index: 2;
        }

        .cta-content h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }

        .cta-content p {
            color: #64748b;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, #e8713c, #f97316);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 113, 60, 0.3);
        }

        .cta-btn-secondary {
            background: transparent;
            color: #e8713c;
            padding: 1rem 2rem;
            border: 2px solid rgba(232, 113, 60, 0.3);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-btn-secondary:hover {
            background: rgba(232, 113, 60, 0.1);
            border-color: #e8713c;
        }

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

        .saving-amount {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e8713c 0%, #f97316 50%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .saving-label {
            color: #64748b;
            font-weight: 600;
            font-size: 0.9rem;
        }

        @keyframes glow {
            from {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        @media (max-width: 768px) {
            .features h2 {
                font-size: 2.5rem;
            }

            .hero-highlights {
                flex-direction: column;
                gap: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .features-cta {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .cta-buttons {
                justify-content: center;
            }
        }
        .tools {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            border-top: 1px solid #e5e7eb;
            position: relative;
            overflow: hidden;
        }
        .tools::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
                        radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }
        .tools h2 {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #0f172a;
            position: relative;
            z-index: 2;
        }
        .tools .tools-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .tools-controls {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        @media (min-width: 1024px) {
            .tools-controls {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }
        .search-container {
            position: relative;
            width: 100%;
            max-width: 600px;
        }
        .search-icon {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1.5rem;
            height: 1.5rem;
            color: #9ca3af;
        }
        .search-input {
            width: 100%;
            padding: 1.5rem 2rem 1.5rem 4rem;
            border-radius: 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            outline: none;
            font-size: 1.125rem;
            font-weight: 500;
            color: #1f2937;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .search-input:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
        }
        .cat-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 1rem;
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: white;
            color: #4b5563;
            border: 1px solid #e5e7eb;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 0.3s;
        }
        .cat-btn.active {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }
        .cat-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 1.25rem;
        }
        @media (min-width: 640px) {
            .tools-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (min-width: 1024px) {
            .tools-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 1.5rem;
            }
        }
        @media (min-width: 1280px) {
            .tools-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 2rem;
            }
        }
        .tool-card {
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border-radius: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
            border: 1px solid #e2e8f0;
            height: 100%;
            display: flex;
            flex-direction: column;
            min-height: 480px;
            will-change: transform, box-shadow;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08);
        }
        .tool-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 32px 64px -12px rgba(232, 113, 60, 0.15), 0 8px 24px rgba(232, 113, 60, 0.1);
            border-color: rgba(232, 113, 60, 0.2);
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }
        .tool-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(circle at top right, rgba(232, 113, 60, 0.04), transparent 70%),
                        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.02), transparent 70%);
            pointer-events: none;
            opacity: 0.6;
        }
        .tool-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
            border-radius: 2rem 2rem 0 0;
            opacity: 0.8;
        }
        .tool-badges {
            position: absolute;
            top: 1.25rem;
            left: 1.25rem;
            right: 1.25rem;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .tool-rating, .tool-users {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(226, 232, 240, 0.8);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.05);
            color: #374151;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.375rem 0.75rem;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .tool-users {
            background: linear-gradient(135deg, rgba(254, 249, 195, 0.95) 0%, rgba(254, 240, 138, 0.95) 100%);
            color: #92400e;
            border-color: rgba(253, 230, 138, 0.8);
            font-weight: 700;
        }
        .tool-rating {
            background: linear-gradient(135deg, rgba(254, 249, 195, 0.95) 0%, rgba(254, 240, 138, 0.95) 100%);
            color: #92400e;
            border-color: rgba(253, 230, 138, 0.8);
        }
        .brand-viz-container {
            width: 140px;
            height: 140px;
            border-radius: 1.5rem;
            overflow: hidden;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            box-shadow: 0 12px 24px -8px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            position: relative;
        }
        .brand-viz-container::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
            z-index: -1;
        }
        @media (min-width: 1024px) {
            .brand-viz-container {
                width: 160px;
                height: 160px;
                border-radius: 2rem;
            }
        }
        .brand-viz-img {
            width: 160px;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s ease;
        }
        .tool-card:hover .brand-viz-img {
            transform: scale(1.1);
        }
        .tool-info {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .tool-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #0f172a;
            text-align: center;
        }
        .tool-price {
            color: #c2410c;
            font-weight: 800;
            font-size: 1.25rem;
            display: inline-block;
            background: linear-gradient(135deg, #fef7f3 0%, #fed7aa 100%);
            padding: 0.625rem 1.25rem;
            border-radius: 25px;
            border: 2px solid #fdba74;
            margin-bottom: 1rem;
            align-self: center;
            box-shadow: 0 2px 8px rgba(232, 113, 60, 0.15);
            position: relative;
        }
        .tool-price::before {
            content: '₹';
            font-weight: 600;
            color: #9a3412;
            margin-right: 0.25rem;
        }
        .tool-buy-btn {
            width: 100%;
            background: linear-gradient(135deg, #e8713c, #f97316);
            color: white;
            font-weight: 700;
            padding: 0.875rem 1.5rem;
            border-radius: 0.75rem;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(232, 113, 60, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 10;
        }
        .tool-buy-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        .tool-buy-btn:hover::before {
            left: 100%;
        }
        .tool-buy-btn:hover {
            background: linear-gradient(135deg, #ea580c, #e8713c);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 113, 60, 0.4);
        }
        .tool-label {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.25rem 0.5rem;
            background: #f0fdf4;
            color: #166534;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 0.5rem;
            align-self: center;
        }
        .more-tools {
            text-align: center;
            padding: 4rem 3rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 2.5rem;
            border: 2px solid #e5e7eb;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }
        .more-tools::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(135deg, #e8713c, #f97316, #fb923c);
            border-radius: 2.5rem 2.5rem 0 0;
        }
        .more-tools::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.05); }
        }
        .more-tools h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }
        .more-tools p {
            color: #64748b;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }
        .more-tools .btn {
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }
        .more-tools .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
        }
        .services {
            padding: 120px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 30%, rgba(232, 113, 60, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        .services h2 {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, #ffffff 0%, #fed7aa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .services .services-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
        }
        @media (max-width: 640px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #e8713c, #f97316);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(232, 113, 60, 0.25);
            border-color: rgba(232, 113, 60, 0.3);
        }
        .service-icon {
            width: 2rem;
            height: 2rem;
            background: linear-gradient(135deg, #fef7f3 0%, #fed7aa 100%);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            color: #e8713c;
            font-size: 2rem;
            border: 2px solid #fdba74;
            position: relative;
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(232, 113, 60, 0.3), rgba(249, 115, 22, 0.3));
            box-shadow: 0 10px 30px rgba(232, 113, 60, 0.3);
        }
        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
            line-height: 1.3;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
            text-align: center;
        }
        .service-card p {
            color: #e2e8f0;
            line-height: 1.6;
            font-size: 0.9rem;
            margin-bottom: 0;
            text-align: center;
        }
        .service-features {
            text-align: left;
            margin-top: 1rem;
            width: 100%;
            padding-left: 0;
        }
        .service-features li {
            position: relative;
            padding-left: 1.25rem;
            margin-bottom: 0.5rem;
            color: #cbd5e1;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        .service-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            color: #e8713c;
            font-weight: 700;
            font-size: 1.2rem;
            line-height: 1;
        }
        .service-cta {
            margin-top: 1.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #e8713c, #f97316);
            color: white;
            border: none;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
        }
        .service-cta:hover {
            background: linear-gradient(135deg, #ea580c, #e8713c);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 113, 60, 0.4);
        }
        .reseller {
            padding: 80px 0;
            background: #fef3c7;
            text-align: center;
        }
        .reseller h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #92400e;
            margin-bottom: 2rem;
        }
        .reseller p {
            font-size: 1.25rem;
            color: #78350f;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        .reseller-btn {
            background: #f59e0b;
            color: #92400e;
            padding: 1rem 2rem;
            border-radius: 2rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }
        .reseller-btn:hover {
            background: #d97706;
            transform: translateY(-2px);
        }
        .faq {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }
        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(232, 113, 60, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }
        .faq h2 {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #0f172a;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .faq .faq-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        @media (min-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
        .faq-item {
            background: white;
            border: 1px solid rgba(37, 99, 235, 0.1);
            border-radius: 2rem;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            position: relative;
        }
        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #e8713c, #f97316);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .faq-item:hover::before {
            transform: scaleX(1);
        }
        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(232, 113, 60, 0.15);
            border-color: rgba(232, 113, 60, 0.2);
        }
        .faq-item.active {
            background: linear-gradient(135deg, rgba(232, 113, 60, 0.02), rgba(249, 115, 22, 0.02));
            border-color: rgba(232, 113, 60, 0.3);
            box-shadow: 0 15px 35px rgba(232, 113, 60, 0.2);
        }
        .faq-item.active::before {
            transform: scaleX(1);
        }
        .faq-question {
            width: 100%;
            padding: 2rem 2.5rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
            position: relative;
        }
        .faq-answer {
            padding: 0 2.5rem 2.5rem;
            color: #475569;
            line-height: 1.7;
            font-size: 1rem;
            opacity: 1;
            transform: translateY(0);
        }
        .faq-answer.active {
            opacity: 1;
            transform: translateY(0);
        }
        .faq-answer p {
            margin: 0;
            font-weight: 500;
        }
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 50%, #fed7aa 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(232, 113, 60, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-testimonials" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(232, 113, 60, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-testimonials)"/></svg>');
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonials h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 500;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(232, 113, 60, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 8px 32px rgba(232, 113, 60, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(232, 113, 60, 0.05), transparent);
            transition: left 0.5s;
            border-radius: inherit;
        }

        .testimonial-card:hover::before {
            left: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(232, 113, 60, 0.15);
            border-color: rgba(232, 113, 60, 0.2);
        }

        .testimonial-quote {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 4rem;
            color: rgba(232, 113, 60, 0.2);
            font-family: 'Georgia', serif;
            line-height: 1;
        }

        .testimonial-text {
            color: #374151;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 500;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .author-avatar {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8713c, #f97316);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            margin-right: 1.25rem;
            box-shadow: 0 4px 12px rgba(232, 113, 60, 0.3);
        }

        .author-info h4 {
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        .author-info p {
            color: #6b7280;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .author-rating {
            margin-top: 0.5rem;
        }

        .stars {
            color: #fbbf24;
            font-size: 0.9rem;
            letter-spacing: 0.1rem;
        }

        .testimonial-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(232, 113, 60, 0.1);
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(232, 113, 60, 0.08);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e8713c 0%, #f97316 50%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #64748b;
            font-weight: 600;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .testimonials h2 {
                font-size: 2.25rem;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial-card {
                padding: 2rem;
            }

            .testimonial-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: #cbd5e1;
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(232, 113, 60, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(232, 113, 60, 0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
            pointer-events: none;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 2fr;
                gap: 4rem;
            }
        }

        .footer-brand {
            max-width: 400px;
        }

        .brand-logo {
            margin-bottom: 1.5rem;
        }

        .logo-text {
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e8713c 0%, #f97316 50%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .logo-accent {
            font-size: 1.75rem;
            font-weight: 800;
            color: #f1f5f9;
            display: block;
            margin-top: -0.25rem;
        }

        .brand-description {
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .footer-stats {
            display: flex;
            gap: 2rem;
        }

        .stat-mini {
            text-align: center;
        }

        .stat-mini .stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e8713c 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stat-mini .stat-label {
            font-size: 0.8rem;
            color: #64748b;
            font-weight: 600;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-column h4 {
            color: #f1f5f9;
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            position: relative;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 2rem;
            height: 2px;
            background: linear-gradient(135deg, #e8713c, #f97316);
            border-radius: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(135deg, #e8713c, #f97316);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #f1f5f9;
            transform: translateX(4px);
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .footer-newsletter {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(232, 113, 60, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .newsletter-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .newsletter-content {
                grid-template-columns: 1fr auto;
            }
        }

        .newsletter-text h4 {
            color: #f1f5f9;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .newsletter-text p {
            color: #94a3b8;
            font-size: 0.95rem;
            margin: 0;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            max-width: 400px;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.875rem 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(232, 113, 60, 0.2);
            border-radius: 8px 0 0 8px;
            color: #f1f5f9;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: #64748b;
        }

        .newsletter-input:focus {
            border-color: #e8713c;
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-btn {
            padding: 0.875rem 1.5rem;
            background: linear-gradient(135deg, #e8713c, #f97316);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .newsletter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ea580c, #e8713c);
            transition: left 0.3s ease;
        }

        .newsletter-btn:hover::before {
            left: 0;
        }

        .newsletter-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232, 113, 60, 0.3);
        }

        .footer-social {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
            width: 3rem;
            height: 3rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(232, 113, 60, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e8713c, #f97316);
            transition: left 0.3s ease;
            border-radius: inherit;
        }

        .social-link:hover::before {
            left: 0;
        }

        .social-link:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 113, 60, 0.3);
        }

        .social-link svg {
            position: relative;
            z-index: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(232, 113, 60, 0.1);
            padding-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .footer-bottom-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .footer-bottom-content {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-bottom p {
            color: #64748b;
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-badges {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .badge {
            background: rgba(232, 113, 60, 0.1);
            color: #e8713c;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(232, 113, 60, 0.2);
        }

        @media (max-width: 767px) {
            .footer-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-links-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

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

            .newsletter-form {
                max-width: none;
            }
        }

        /* WhatsApp Widget Styles */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: whatsapp-pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-btn svg {
            width: 28px;
            height: 28px;
        }

        @keyframes whatsapp-pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
            }
        }

        .whatsapp-chat {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 350px;
            height: 450px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            transform: translateY(20px) scale(0.95);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            overflow: hidden;
        }

        .whatsapp-chat.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            visibility: visible;
        }

        .chat-header {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chat-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-avatar svg {
            width: 20px;
            height: 20px;
        }

        .chat-info h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }

        .chat-info p {
            margin: 0;
            font-size: 12px;
            opacity: 0.9;
        }

        .close-chat {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 4px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .close-chat:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .chat-body {
            flex: 1;
            padding: 20px;
            background: #f8f9fa;
            overflow-y: auto;
        }

        .message {
            margin-bottom: 16px;
            max-width: 80%;
        }

        .message.received {
            margin-right: auto;
        }

        .message p {
            background: white;
            padding: 12px 16px;
            border-radius: 18px;
            margin: 0;
            font-size: 14px;
            line-height: 1.4;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .message.received p {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
        }

        .message-time {
            font-size: 11px;
            color: #666;
            margin-top: 4px;
            display: block;
        }

        .chat-footer {
            padding: 16px 20px;
            background: white;
            border-top: 1px solid #e9ecef;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .message-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #e9ecef;
            border-radius: 24px;
            outline: none;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }

        .message-input:focus {
            border-color: #25d366;
        }

        .send-btn {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .send-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        @media (max-width: 480px) {
            .whatsapp-chat {
                width: calc(100vw - 40px);
                right: 20px;
                bottom: 90px;
                height: 400px;
            }

            .whatsapp-btn {
                bottom: 20px;
                right: 20px;
            }
        }

        /* Mobile Menu Styles */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-content {
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            max-width: 85vw;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-overlay.active .mobile-menu-content {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            border-bottom: 1px solid rgba(232, 113, 60, 0.1);
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
        }

        .mobile-logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
        }

        .mobile-logo img {
            height: 32px;
            width: auto;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: #64748b;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: rgba(232, 113, 60, 0.1);
            color: #e8713c;
        }

        .mobile-nav {
            flex: 1;
            padding: 1.5rem;
        }

        .mobile-nav-buttons {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(232, 113, 60, 0.1);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-links li {
            margin-bottom: 0.5rem;
        }

        .mobile-nav-links a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .mobile-nav-links a:hover {
            background: rgba(232, 113, 60, 0.1);
            color: #e8713c;
            transform: translateX(4px);
        }

        .mobile-store-item a {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white !important;
            position: relative;
            overflow: hidden;
        }

        .mobile-store-item a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .mobile-store-item a:hover::before {
            left: 100%;
        }

        .mobile-store-item a:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateX(4px);
        }

        .mobile-store-badge {
            background: #fbbf24;
            color: #92400e;
            font-size: 0.6rem;
            font-weight: 800;
            padding: 2px 6px;
            border-radius: 6px;
            margin-right: 8px;
            animation: badge-bounce 2s ease-in-out infinite;
        }

        .mobile-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .mobile-nav-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-size: 1rem;
            box-sizing: border-box;
        }

        .mobile-nav-btn.primary {
            background: linear-gradient(135deg, #e8713c, #f97316);
            color: white;
        }

        .mobile-nav-btn.primary:hover {
            background: linear-gradient(135deg, #ea580c, #e8713c);
            transform: translateY(-2px);
        }

        .mobile-nav-btn.secondary {
            background: rgba(232, 113, 60, 0.1);
            color: #e8713c;
            border: 2px solid rgba(232, 113, 60, 0.2);
        }

        .mobile-nav-btn.secondary:hover {
            background: rgba(232, 113, 60, 0.2);
            border-color: #e8713c;
        }

        /* Mobile menu animations */
        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(100%);
            }
        }

        /* Prevent body scroll when mobile menu is open */
        body.mobile-menu-open {
            overflow: hidden;
        }

        /* Social Proof Toast Notifications */
        .toast-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 9999;
            pointer-events: none;
        }

        .toast-notification {
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(232, 113, 60, 0.2);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 12px;
            box-shadow: 0 8px 32px rgba(232, 113, 60, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 380px;
            transform: translateX(-400px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        .toast-notification::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #e8713c, #f97316);
            border-radius: 12px 0 0 12px;
        }

        .toast-notification.show {
            transform: translateX(0);
            opacity: 1;
        }

        .toast-notification.hide {
            transform: translateX(-400px);
            opacity: 0;
        }

        .toast-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8713c, #f97316);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }

        .toast-content {
            flex: 1;
            min-width: 0;
        }

        .toast-message {
            font-size: 14px;
            color: #0f172a;
            line-height: 1.4;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .toast-meta {
            font-size: 12px;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toast-country {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .toast-time {
            opacity: 0.7;
        }

        .toast-close {
            background: none;
            border: none;
            color: #64748b;
            cursor: pointer;
            padding: 4px;
            border-radius: 50%;
            transition: all 0.3s ease;
            flex-shrink: 0;
            pointer-events: auto;
        }

        .toast-close:hover {
            background: rgba(232, 113, 60, 0.1);
            color: #e8713c;
        }

        .toast-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #e8713c, #f97316);
            border-radius: 0 0 12px 12px;
            animation: toast-progress 5s linear forwards;
        }

        @keyframes toast-progress {
            from {
                width: 100%;
            }
            to {
                width: 0%;
            }
        }

        @media (max-width: 480px) {
            .toast-container {
                left: 10px;
                right: 10px;
                bottom: 10px;
            }

            .toast-notification {
                max-width: none;
                margin-bottom: 8px;
            }
        }
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
    
        /* RESELLER SECTION STYLES */
        .reseller {
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 50%, #fed7aa 100%);
            padding: 80px 0;
            color: #0f172a;
            position: relative;
            overflow: hidden;
        }

        .reseller::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(232, 113, 60, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(232, 113, 60, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            pointer-events: none;
        }

        .reseller-hero {
            text-align: center;
            margin-bottom: 60px;
        }

        .reseller-badge {
            display: inline-block;
            background: linear-gradient(135deg, #fef7f3 0%, #fed7aa 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(232, 113, 60, 0.2);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #e8713c;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 12px rgba(232, 113, 60, 0.1);
        }

        .reseller-hero h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .text-gradient {
            background: linear-gradient(135deg, #e8713c 0%, #f97316 50%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(232, 113, 60, 0.1);
        }

        .reseller-hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .reseller-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e8713c 0%, #f97316 50%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            font-weight: 500;
        }

        .reseller-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .benefit-card {
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(232, 113, 60, 0.1);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(232, 113, 60, 0.1);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(232, 113, 60, 0.08), transparent);
            transition: left 0.5s;
            border-radius: inherit;
        }

        .benefit-card:hover::before {
            left: 100%;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(232, 113, 60, 0.15);
            border-color: rgba(232, 113, 60, 0.3);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .benefit-card p {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .benefit-features {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .benefit-features li {
            padding: 5px 0;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .reseller-cta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(232, 113, 60, 0.1);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 12px 40px rgba(232, 113, 60, 0.08);
        }

        .cta-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-content p {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, #e8713c, #f97316);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-btn-primary:hover {
            background: linear-gradient(135deg, #ea580c, #e8713c);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(232, 113, 60, 0.3);
        }

        .cta-btn-secondary {
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            color: #e8713c;
            padding: 15px 30px;
            border: 2px solid rgba(232, 113, 60, 0.3);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(232, 113, 60, 0.1);
        }

        .cta-btn-secondary:hover {
            background: linear-gradient(135deg, #fef7f3 0%, #fed7aa 100%);
            border-color: rgba(249, 115, 22, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 113, 60, 0.15);
        }

        .earning-chart {
            display: flex;
            align-items: end;
            justify-content: center;
            gap: 20px;
            height: 200px;
            background: linear-gradient(135deg, #ffffff 0%, #fef7f3 100%);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(232, 113, 60, 0.1);
            box-shadow: 0 4px 16px rgba(232, 113, 60, 0.08);
        }

        .chart-bar {
            background: linear-gradient(135deg, #e8713c, #f97316);
            border-radius: 5px 5px 0 0;
            min-width: 60px;
            position: relative;
            display: flex;
            align-items: end;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(232, 113, 60, 0.3);
        }

        .chart-bar:hover {
            transform: scale(1.05);
        }

        .chart-label {
            text-align: center;
            margin-top: 15px;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        @media (max-width: 768px) {
            .reseller-hero h2 {
                font-size: 2.5rem;
            }

            .reseller-stats {
                flex-direction: column;
                gap: 20px;
            }

            .reseller-benefits {
                grid-template-columns: 1fr;
            }

            .reseller-cta {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .cta-buttons {
                justify-content: center;
            }

            .earning-chart {
                height: 150px;
            }

            .chart-bar {
                min-width: 50px;
                font-size: 0.8rem;
            }
        }
