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

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1E83D1;
            --primary-dark: #1669A8;
            --primary-light: #2A93E1;
            --secondary: #0F172A;
            --accent: #3B82F6;
            --dark: #0F0F0F;
            --darker: #080808;
            --light: #FFFFFF;
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-400: #94A3B8;
            --gray-500: #64748B;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1E293B;
            --gray-900: #0F172A;
            --blue-dark: #0D1B2F;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 400;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.6;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(8, 8, 8, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(30, 131, 209, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(8, 8, 8, 0.98);
            border-bottom-color: rgba(30, 131, 209, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--light);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            background: transparent;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        .logo-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            color: var(--gray-300);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            letter-spacing: -0.01em;
        }

        .nav-link:hover {
            color: var(--light);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--primary);
            color: var(--light);
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            letter-spacing: -0.01em;
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(30, 131, 209, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background:
                radial-gradient(ellipse at center, rgba(30, 131, 209, 0.08) 0%, rgba(30, 131, 209, 0.04) 50%, transparent 80%),
                rgba(13, 27, 47, 0.6);
            backdrop-filter: blur(2px);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(90deg, transparent 0%, rgba(30, 131, 209, 0.02) 50%, transparent 100%),
                linear-gradient(0deg, transparent 0%, rgba(30, 131, 209, 0.02) 50%, transparent 100%);
            background-size: 80px 80px;
            opacity: 0.5;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            min-height: 80vh;
        }

        .hero-content {
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(30, 131, 209, 0.1);
            border: 1px solid rgba(30, 131, 209, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 2rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--light);
            letter-spacing: -0.04em;
        }

        .hero-title-highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-400);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.6;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--light);
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: -0.01em;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(30, 131, 209, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--gray-300);
            border: 1px solid var(--gray-600);
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: -0.01em;
        }

        .btn-secondary:hover {
            color: var(--light);
            border-color: var(--gray-400);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: slideInRight 0.8s ease-out;
        }

        .hero-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
            animation: float 6s ease-in-out infinite;
        }

        .hero-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(30, 131, 209, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            animation: pulse 4s ease-in-out infinite;
        }

        /* Stats Section */
        .stats-section {
            position: absolute;
            bottom: 4rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 3rem;
            z-index: 10;
        }

        .stat-item {
            text-align: center;
            padding: 1rem 1.5rem;
            background: rgba(15, 15, 15, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(30, 131, 209, 0.2);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(30, 131, 209, 0.1);
            border-color: var(--primary);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

        /* Main Sections */
        .section {
            padding: 5rem 0;
            position: relative;
        }

        /* Hero & Pricing Special Background */
        .pricing-special {
            background:
                radial-gradient(ellipse at center, rgba(30, 131, 209, 0.08) 0%, rgba(30, 131, 209, 0.04) 50%, transparent 80%),
                rgba(13, 27, 47, 0.6) !important;
            backdrop-filter: blur(2px);
        }

        /* Alternating Section Backgrounds */
        .section:nth-child(even) {
            background:
                linear-gradient(180deg, rgba(30, 131, 209, 0.12) 0%, rgba(30, 131, 209, 0.08) 50%, rgba(30, 131, 209, 0.06) 100%),
                linear-gradient(90deg, rgba(30, 131, 209, 0.04) 0%, rgba(30, 131, 209, 0.08) 50%, rgba(30, 131, 209, 0.04) 100%),
                rgba(8, 8, 8, 0.95);
            border-top: 1px solid rgba(30, 131, 209, 0.15);
            border-bottom: 1px solid rgba(30, 131, 209, 0.15);
        }

        .section:nth-child(odd) {
            background: linear-gradient(180deg, rgba(15, 15, 15, 0.5) 0%, rgba(30, 131, 209, 0.02) 100%);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .section-title {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--light);
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(30, 131, 209, 0.03) 100%);
            border: 1px solid rgba(30, 131, 209, 0.25);
            box-shadow:
                0 0 0 1px rgba(30, 131, 209, 0.15),
                0 4px 20px rgba(30, 131, 209, 0.08);
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(30, 131, 209, 0.05), transparent);
            transition: left 0.6s;
        }

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

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(30, 131, 209, 0.5);
            box-shadow:
                0 0 0 1px rgba(30, 131, 209, 0.3),
                0 0 20px rgba(30, 131, 209, 0.15),
                0 20px 40px rgba(30, 131, 209, 0.1);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--light);
            letter-spacing: -0.01em;
        }

        .feature-description {
            color: var(--gray-400);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Pricing Card Wrapper for Badge */
        .pricing-card-wrapper {
            position: relative;
        }

        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--light);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(30, 131, 209, 0.3);
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
            border: 1px solid rgba(30, 131, 209, 0.15);
            border-radius: 16px;
            padding: 2rem 2rem;
            text-align: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(10px);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 450px;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(30, 131, 209, 0.08), transparent);
            transition: left 0.8s ease;
        }

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

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 30px 60px rgba(30, 131, 209, 0.2);
            background: linear-gradient(145deg, rgba(25, 25, 25, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
        }

        .pricing-card.featured::after {
            display: none;
        }

        .pricing-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: rgba(30, 131, 209, 0.4);
            box-shadow: 0 25px 50px rgba(30, 131, 209, 0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-12px);
            box-shadow: 0 35px 70px rgba(30, 131, 209, 0.25);
        }

        .pricing-header {
            margin-bottom: 1.5rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid rgba(30, 131, 209, 0.1);
        }

        .pricing-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--light);
            letter-spacing: -0.02em;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 0.5rem;
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .pricing-period {
            color: var(--gray-400);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
            padding: 0;
            flex-grow: 1;
        }

        .pricing-features li {
            padding: 0.6rem 0;
            color: var(--gray-300);
            font-size: 0.925rem;
            line-height: 1.5;
            border-bottom: 1px solid rgba(30, 131, 209, 0.05);
            transition: color 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
        }

        .pricing-features li::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--primary);
            border-radius: 50%;
            margin-top: 0.5rem;
            flex-shrink: 0;
        }

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

        .pricing-features li:hover {
            color: var(--light);
        }

        .pricing-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--light);
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: -0.01em;
            position: relative;
            overflow: hidden;
        }

        .pricing-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;
        }

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

        .pricing-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(30, 131, 209, 0.4);
        }



        /* Footer */
        .footer {
            background: var(--dark);
            border-top: 1px solid rgba(30, 131, 209, 0.1);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

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

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-logo-mark {
            width: 32px;
            height: 32px;
            background: transparent;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        .footer-logo-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0;
        }

        .footer-brand h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--light);
            letter-spacing: -0.01em;
        }

        .footer-description {
            color: var(--gray-400);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--light);
            letter-spacing: -0.01em;
        }

        .footer-section a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(30, 131, 209, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray-500);
            font-size: 0.875rem;
        }

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

        .footer-links a {
            color: var(--gray-500);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-title {
                font-size: 3rem;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                max-width: 400px;
            }

            .pricing-card.featured {
                transform: none;
                order: -1;
            }

            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem 1.5rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
            }

            .section-title {
                font-size: 2.25rem;
            }

            .stats-section {
                flex-direction: column;
                gap: 1rem;
                bottom: 2rem;
            }

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

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

        @media (min-width: 1025px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Icon System */
        .icon {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }