/* Tailwind utilities missing from tailwind.min.css (generated by CDN on homepage) */
.h-9 { height: 2.25rem; }
.p-3 { padding: 0.75rem; }
.mt-0\.5 { margin-top: 0.125rem; }
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
}

        :root {
            --bg: #0A0B0F;
            --panel: #0F1419;
            --panelAlt: #0C0E14;
            --ink: #E8EAF0;
            --muted: #9CA3B4;
            --accent: #C9A961;
            --accent-2: #E6C679;
            --accent-blue: #4A90E2;
            --border: #1A1E2E;
            --ring: #2A3A66;
            --success: #12B76A;
            --warn: #F79009;
            --enterprise-purple: #8B5CF6;
            --r-xs: 8px;
            --r-sm: 12px;
            --r-md: 16px;
            --r-lg: 20px;
        }

        html, body {
            background: var(--bg);
            color: var(--ink);
            font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            scroll-behavior: smooth;
        }

        .serif { font-family: 'Playfair Display', Georgia, serif; }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
        .container-wide { max-width: 1440px; margin: 0 auto; padding: 0 1.5rem; }

        /* Typography Scale */
        .step--2 { font-size: clamp(12px, 1.1vw, 14px); line-height: 1.65; }
        .step--1 { font-size: clamp(14px, 1.2vw, 16px); line-height: 1.65; }
        .step-0 { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.65; }
        .step-1 { font-size: clamp(20px, 2vw, 24px); line-height: 1.4; }
        .step-2 { font-size: clamp(28px, 3vw, 36px); line-height: 1.2; }
        .step-3 { font-size: clamp(40px, 5vw, 56px); line-height: 1.05; }
        .step-4 { font-size: clamp(36px, 6vw, 72px); line-height: 1.0; }

        /* Glass Morphism */
        .glass {
            background: rgba(15, 20, 25, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        /* Card Styles - Glassmorphism */
        .card-enterprise {
            background: linear-gradient(135deg, rgba(15, 20, 25, 0.8), rgba(15, 20, 25, 0.6));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(201, 169, 97, 0.1);
            border-radius: var(--r-md);
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card-enterprise::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card-enterprise::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(201, 169, 97, 0.08), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        @media (hover: hover) {
            .card-enterprise:hover {
                transform: translateY(-8px) scale(1.02);
                border-color: rgba(201, 169, 97, 0.6);
                box-shadow:
                    0 30px 60px rgba(0, 0, 0, 0.6),
                    0 0 100px rgba(201, 169, 97, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.05);
                background: linear-gradient(135deg, rgba(20, 25, 30, 0.9), rgba(15, 20, 25, 0.7));
            }

            .card-enterprise:hover::before {
                opacity: 1;
            }

            .card-enterprise:hover::after {
                opacity: 1;
            }

            .card-enterprise:hover h3 {
                color: var(--accent);
            }
        }

        .card-enterprise h3 {
            transition: color 0.3s ease;
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            color: var(--bg);
            border-radius: var(--r-xs);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s ease-out;
            min-height: 48px;
            box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 12px 40px rgba(201, 169, 97, 0.5);
        }

        .btn-primary:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border: 1px solid var(--border);
            color: var(--ink);
            border-radius: var(--r-xs);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-height: 48px;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--panelAlt);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .btn-secondary:hover::before {
            opacity: 1;
        }

        .btn-enterprise {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--enterprise-purple), #7C3AED);
            color: white;
            border-radius: var(--r-xs);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s ease-out;
            min-height: 48px;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
        }

        .btn-enterprise:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
        }

        /* Navigation */
        .nav-link {
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s ease;
            font-weight: 500;
            padding: 0.5rem 0;
        }

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

        /* Sections */
        .section-padding { padding: 5rem 0; }
        @media (min-width: 768px) { .section-padding { padding: 7rem 0; } }

        /* Grids */
        .grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        .grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        .grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
        @media (min-width: 480px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }

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

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease-out forwards;
        }

        .fade-up-delay-1 { animation-delay: 0.1s; }
        .fade-up-delay-2 { animation-delay: 0.2s; }
        .fade-up-delay-3 { animation-delay: 0.3s; }

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

        /* Counter Animation */
        .counter { font-variant-numeric: tabular-nums; }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: shimmer 3s ease-in-out infinite;
        }

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

        /* Animated Background Orbs */
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(10px, -20px) scale(1.05); }
            50% { transform: translate(-5px, 10px) scale(0.95); }
            75% { transform: translate(-15px, -10px) scale(1.02); }
        }

        @keyframes pulse-glow {
            0%, 100% { opacity: 0.4; filter: blur(60px); }
            50% { opacity: 0.6; filter: blur(80px); }
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            will-change: transform, opacity;
        }

        .orb-gold {
            background: radial-gradient(circle, rgba(201, 169, 97, 0.4) 0%, rgba(201, 169, 97, 0) 70%);
            animation: float 20s ease-in-out infinite, pulse-glow 8s ease-in-out infinite;
        }

        .orb-blue {
            background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, rgba(74, 144, 226, 0) 70%);
            animation: float 25s ease-in-out infinite reverse, pulse-glow 10s ease-in-out infinite;
        }

        .orb-purple {
            background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0) 70%);
            animation: float 30s ease-in-out infinite, pulse-glow 12s ease-in-out infinite;
        }

        /* Badge */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            background: rgba(201, 169, 97, 0.1);
            border: 1px solid rgba(201, 169, 97, 0.3);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent-2);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .badge-enterprise {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.3);
            color: #A78BFA;
        }

        .badge-success {
            background: rgba(18, 183, 106, 0.1);
            border-color: rgba(18, 183, 106, 0.3);
            color: var(--success);
        }

        /* Logo Cloud */
        .logo-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            opacity: 0.6;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .logo-cloud:hover {
            opacity: 0.8;
            filter: grayscale(50%);
        }

        /* Stats Grid */
        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }

        .stat-number {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 40px rgba(201, 169, 97, 0.3);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
        }

        .stat-item:hover .stat-label {
            color: var(--accent);
        }

        .stat-item {
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

        /* Testimonial */
        .testimonial-card {
            background: var(--panelAlt);
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            padding: 2rem;
            position: relative;
        }

        .testimonial-card::before {
            content: """;
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 4rem;
            line-height: 1;
            color: var(--accent);
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        /* Pricing Table */
        .pricing-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.featured {
            border-color: var(--accent);
            box-shadow: 0 0 60px rgba(201, 169, 97, 0.15);
            transform: scale(1.02);
        }

        .pricing-card.featured:hover {
            transform: scale(1.02) translateY(-4px);
            box-shadow: 0 0 80px rgba(201, 169, 97, 0.25), 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            color: var(--bg);
            padding: 0.35rem 1.25rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
        }

        /* Trust Badges */
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(18, 183, 106, 0.1);
            border: 1px solid rgba(18, 183, 106, 0.2);
            border-radius: var(--r-xs);
            font-size: 0.875rem;
            color: var(--success);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg);
            z-index: 100;
            padding: 6rem 2rem 2rem;
            flex-direction: column;
            gap: 0.5rem;
            overflow-y: auto;
        }

        .mobile-menu.active { display: flex; }

        .mobile-menu a.text-xl {
            padding: 0.75rem 0;
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        /* Background Effects */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at top left, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .relative { position: relative; z-index: 1; }

        /* Eyebrow */
        .eyebrow {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Divider */
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus States */
        a:focus-visible, button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
