        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #6366f1;
            --primary-light: #8b5cf6;
            --primary-dark: #4f46e5;
            --secondary: #22c55e;
            --accent: #f97316;
            --dark: #0a0c10;
            --gray-dark: #1e1f2a;
            --gray: #6c727f;
            --gray-light: #eef2ff;
            --white: #ffffff;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --border-radius: 12px;
            --border-radius-lg: 1.5rem;
            --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background-color: var(--white);
            color: var(--dark);
            line-height: 1.5;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 1.8rem);
        }

        p {
            margin-bottom: 1rem;
            color: var(--gray);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            text-align: center;
        }

        .btn--primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        }

        .btn--primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -8px rgba(99, 102, 241, 0.4);
        }

        .btn--secondary {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn--secondary:hover {
            background-color: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn--outline {
            background-color: transparent;
            border: 1.5px solid var(--gray-light);
            color: var(--dark);
        }

        .btn--outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .btn--cta {
            background: var(--white);
            color: var(--primary);
            padding: 0.875rem 2rem;
            font-size: 1rem;
            font-weight: 700;
        }

        .btn--cta:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(16px);
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .header__inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            text-decoration: none;
        }

        .logo__text {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }

        .logo__tagline {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gray);
            letter-spacing: 1px;
        }

        .nav__list {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav__link {
            text-decoration: none;
            font-weight: 500;
            color: var(--gray-dark);
            transition: var(--transition);
            position: relative;
        }

        .nav__link:hover {
            color: var(--primary);
        }

        .nav__link--active {
            color: var(--primary);
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 2.5rem;
            height: 2.5rem;
            position: relative;
            z-index: 1001;
            border-radius: 0.75rem;
            transition: var(--transition);
        }

        .mobile-menu-btn span {
            display: block;
            position: absolute;
            height: 2.5px;
            width: 1.5rem;
            background: var(--gray-dark);
            border-radius: 4px;
            left: 0.5rem;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn span:nth-child(1) {
            top: 0.75rem;
        }

        .mobile-menu-btn span:nth-child(2) {
            top: 1.2rem;
        }

        .mobile-menu-btn span:nth-child(3) {
            top: 1.65rem;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 1.2rem;
            background: var(--primary);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-8px);
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 1.2rem;
            background: var(--primary);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 6rem 2rem 2rem;
            transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            display: flex;
            flex-direction: column;
            border-left: 1px solid rgba(99, 102, 241, 0.2);
        }

        .mobile-nav.open {
            right: 0;
        }

        .mobile-nav__list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav__link {
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--gray-dark);
            padding: 0.5rem 0;
            display: inline-block;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }

        .mobile-nav__link:hover,
        .mobile-nav__link--active {
            color: var(--primary);
            border-bottom-color: var(--primary);
            transform: translateX(6px);
        }

        .mobile-nav__btn {
            margin-top: 2rem;
            display: inline-block;
            text-align: center;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .nav__list {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .container {
                padding: 0 1.5rem;
            }

            .header__inner {
                padding: 0.8rem 0;
            }
        }

        .page-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f8f5ff 0%, #fff 100%);
            position: relative;
            overflow: hidden;
        }

        .page-hero__content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .page-hero__badge {
            display: inline-block;
            background: rgba(99, 102, 241, 0.1);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1.25rem;
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 2rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .page-hero__title {
            margin-bottom: 20px;
        }

        .page-hero__description {
            font-size: 1.25rem;
            margin-bottom: 40px;
            color: var(--gray);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-hero__stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-badge {
            text-align: center;
        }

        .stat-badge__number {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .stat-badge__label {
            font-size: 14px;
            color: var(--gray);
            margin-top: 4px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header__title {
            margin-bottom: 16px;
        }

        .section-header__subtitle {
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
            color: var(--gray);
        }

        .section-header__label {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary);
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header__label--success {
            background: rgba(34, 197, 94, 0.1);
            color: var(--secondary);
        }
        .products-section {
            padding: 80px 0;
        }

        .products-section--alt {
            background: linear-gradient(to bottom, var(--white) 0%, #f8f5ff 100%);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
        }

        .product-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .product-card--featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .product-card__badge {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2;
        }

        .product-card__badge-text {
            background: var(--primary);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-card__image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .product-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-card__image img {
            transform: scale(1.05);
        }

        .product-card__content {
            padding: 30px;
        }

        .product-card__meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            font-size: 14px;
        }

        .product-card__category {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-card__status {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .product-card__status--live {
            background: rgba(34, 197, 94, 0.1);
            color: var(--secondary);
        }

        .product-card__status--pending {
            background: rgba(249, 115, 22, 0.1);
            color: var(--accent);
        }

        .product-card__title {
            margin-bottom: 12px;
            color: var(--dark);
        }

        .product-card__description {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .product-card__features {
            list-style: none;
            margin-bottom: 24px;
        }

        .product-card__features li {
            padding: 6px 0;
            padding-left: 24px;
            position: relative;
            color: var(--gray);
        }

        .product-card__features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .product-card__stats {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
        }

        .product-stat {
            text-align: center;
        }

        .product-stat__number {
            display: block;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .product-stat__label {
            font-size: 12px;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-card__actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .product-card__notice {
            background: rgba(0, 0, 0, 0.03);
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .product-card__notice p {
            margin: 0;
            font-size: 14px;
        }
        .cta-section {
            padding: 80px 0;
        }

        .cta {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 2rem;
            padding: 4rem;
            color: var(--white);
            text-align: center;
        }

        .cta__title {
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta__text {
            max-width: 600px;
            margin: 0 auto 32px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta__list {
            list-style: none;
            max-width: 500px;
            margin: 0 auto 32px;
            text-align: left;
            display: inline-block;
        }

        .cta__list li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta__list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--white);
            font-weight: bold;
        }

        .cta__actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }

        .footer__inner {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer__social {
            display: flex;
            gap: 12px;
            margin-top: 1.5rem;
        }

        .footer__social-link {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
            color: var(--white);
        }

        .footer__social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer__links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer__link {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .footer__link:hover {
            color: var(--primary);
        }

        .footer__bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer__copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade.show {
            opacity: 1;
            transform: translateY(0);
        }

        .tilt {
            transition: transform 0.3s ease;
        }
        
        @media (max-width: 1024px) {
            .product-card--featured {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .footer__inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer__links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .cta {
                padding: 2rem 1.5rem;
            }

            .footer__links {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer__bottom {
                flex-direction: column;
                text-align: center;
            }
        }