
        :root {
            --primary-color: #0071dc;
            --secondary-color: #fe5616;
            --primary-light: #4da3ff;
            --secondary-light: #ff8a5c;
            --neutral-100: #f8fafc;
            --neutral-200: #e2e8f0;
            --neutral-300: #cbd5e1;
            --neutral-600: #475569;
            --neutral-800: #1e293b;
            --neutral-900: #0f172a;
        }

       

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 113, 220, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(254, 86, 22, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 113, 220, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }

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

        .hero-section {
            text-align: center;
            padding: 4rem 0 3rem;
            color: var(--neutral-900);
            background: linear-gradient(135deg, var(--neutral-100) 0%, #ffffff 100%);
            border-radius: 0 0 48px 48px;
            box-shadow: 0 4px 20px rgba(0, 113, 220, 0.08);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.8;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            color: var(--neutral-600);
        }

        .plans-container {
            padding: 2rem 0 4rem;
        }

        .plan-card {
            background: #ffffff;
            border: 2px solid var(--neutral-200);
            border-radius: 24px;
            padding: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            height: 100%;
            box-shadow: 
                0 8px 25px rgba(0, 113, 220, 0.08),
                0 4px 10px rgba(0, 0, 0, 0.04);
        }

        .plan-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 20px 40px rgba(0, 113, 220, 0.15),
                0 0 0 2px var(--primary-color);
            border-color: var(--primary-color);
        }

        .plan-card.featured {
            border: 2px solid var(--secondary-color);
            position: relative;
        }

        .plan-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
        }

        .featured-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(254, 86, 22, 0.3);
        }

        .plan-header {
            padding: 2.5rem 2rem 1.5rem;
            text-align: center;
            position: relative;
        }

        .plan-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .essential-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        }

        .standard-icon {
            background: linear-gradient(135deg, var(--primary-color), #2563eb);
        }

        .enterprise-icon {
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
        }

        .plan-name {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--neutral-900);
            margin-bottom: 0.5rem;
        }

        .plan-description {
            color: var(--neutral-600);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .price-container {
            margin-bottom: 2rem;
        }

        .price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--neutral-900);
            line-height: 1;
        }

        .price-currency {
            font-size: 1.5rem;
            vertical-align: top;
            margin-right: 0.25rem;
        }

        .price-period {
            font-size: 1rem;
            color: #6b7280;
            font-weight: 400;
        }

        .plan-body {
            padding: 0 2rem 2.5rem;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-icon {
            color: var(--primary-green);
            margin-right: 1rem;
            margin-top: 0.125rem;
            font-size: 1rem;
        }

        .feature-text {
            color: var(--neutral-800);
            font-size: 0.95rem;
            line-height: 1.5;
            flex: 1;
        }

        .plan-stats {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .stat-item {
            flex: 1;
            text-align: center;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--neutral-900);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .sla-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .sla-included {
            background: #dcfce7;
            color: #166534;
        }

        .sla-not-included {
            background: #fef3c7;
            color: #92400e;
        }

        .select-btn {
            width: 100%;
            padding: 1rem 2rem;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-essential {
            background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
            color: white;
        }

        .btn-standard {
            background: linear-gradient(135deg, var(--primary-green), #10b981);
            color: white;
        }

        .btn-enterprise {
            background: linear-gradient(135deg, var(--primary-purple), #8b5cf6);
            color: white;
        }

        .select-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }

        .comparison-section {
            margin-top: 4rem;
            padding: 3rem 0;
        }

        .comparison-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .comparison-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--neutral-900);
            margin-bottom: 3rem;
        }

        .table {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        .table thead th {
            background: var(--neutral-900);
            color: white;
            font-weight: 600;
            border: none;
            padding: 1.25rem;
        }

        .table tbody td {
            padding: 1.25rem;
            border-color: #e5e7eb;
            vertical-align: middle;
        }

        .table tbody tr:hover {
            background-color: #f8fafc;
        }

        .check-icon {
            color: var(--primary-green);
            font-size: 1.25rem;
        }

        .cross-icon {
            color: #dc2626;
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .plan-card {
                margin-bottom: 2rem;
            }
            
            .price {
                font-size: 2.5rem;
            }
            
            .comparison-card {
                padding: 2rem 1rem;
            }
        }
