 :root {
            --primary: #7c3aed;
            --primary-dark: #6d28d9;
            --secondary: #10b981;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --gray-light: #f1f5f9;
            --starter: #10b981;
            --advanced: #3b82f6;
            --professional: #8b5cf6;
            --business: #f59e0b;
            --enterprise: #ef4444;
            --ultra: #1e293b;
            --card-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }

        body {
            background-color: #f8fafc;
            color: var(--dark);
            line-height: 1.6;
            padding-bottom: 20px;
        }

        .container {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Header Styles */
        header {
            background: white;
            color: var(--dark);
            padding: 16px 0;
            text-align: center;
            box-shadow: var(--card-shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--primary);
        }

        .logo i {
            font-size: 1.8rem;
        }

        /* Hero Section */
        .hero {
            padding: 24px 0;
            text-align: center;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            margin-bottom: 20px;
            border-radius: 0 0 20px 20px;
        }

        .hero h1 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--dark);
            font-weight: 700;
        }

        .hero p {
            color: var(--gray);
            font-size: 0.9rem;
            max-width: 90%;
            margin: 0 auto;
        }

        /* Plans Section */
        .plans-section {
            margin-bottom: 24px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.3rem;
            color: var(--dark);
            position: relative;
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 50%;
            transform: translateX(50%);
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .plans-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .plan-card {
            background: white;
            border-radius: 12px;
            padding: 16px;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            border-right: 4px solid;
            position: relative;
            overflow: hidden;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: inherit;
            border-color: inherit;
        }

        .plan-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--hover-shadow);
        }

        .plan-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .plan-name {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .plan-price {
            font-size: 1.3rem;
            font-weight: 800;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 16px;
        }

        .plan-features li {
            padding: 6px 0;
            border-bottom: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features i {
            color: var(--secondary);
            font-size: 0.8rem;
        }

        .plan-tag {
            display: inline-block;
            padding: 4px 10px;
            background: var(--gray-light);
            border-radius: 12px;
            font-size: 0.75rem;
            margin-top: 8px;
        }

        .btn {
            display: block;
            width: 100%;
            padding: 10px;
            text-align: center;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn:hover {
            background: var(--primary-dark);
        }

        /* Features Section */
        .features-section {
            margin-bottom: 24px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 16px;
            box-shadow: var(--card-shadow);
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-3px);
        }

        .feature-icon {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .feature-title {
            font-size: 0.9rem;
            margin-bottom: 6px;
            color: var(--dark);
            font-weight: 600;
        }

        .feature-desc {
            color: var(--gray);
            font-size: 0.8rem;
        }

              :root {
            --primary: #7c3aed;
            --primary-dark: #6d28d9;
            --secondary: #10b981;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --gray-light: #f1f5f9;
            --card-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }

        body {
            background-color: #f8fafc;
            color: var(--dark);
            line-height: 1.6;
            padding-bottom: 20px;
        }

        .container {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Locations Section */
        .locations-section {
            margin-bottom: 24px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.3rem;
            color: var(--dark);
            position: relative;
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 50%;
            transform: translateX(50%);
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .locations-container {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--card-shadow);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .locations-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .lottie-container {
            height: 180px;
            margin: 0 auto 20px;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .lottie-container iframe {
            border: none;
            border-radius: 8px;
        }

        .locations-description {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .locations-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
            background: var(--gray-light);
            padding: 12px;
            border-radius: 10px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--gray);
            margin-top: 4px;
        }

        .locations-subtitle {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark);
            text-align: right;
        }

        .locations-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .location-item {
            padding: 10px 12px;
            background: var(--gray-light);
            border-radius: 8px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border-right: 3px solid transparent;
        }

        .location-item:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            border-right-color: var(--secondary);
        }

        .location-item i {
            font-size: 0.9rem;
            color: var(--primary);
        }

        .location-item:hover i {
            color: white;
        }

        .locations-note {
            margin-top: 16px;
            padding: 12px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 8px;
            font-size: 0.8rem;
            color: var(--dark);
            border-right: 3px solid var(--primary);
        }

        .locations-note i {
            color: var(--primary);
            margin-left: 6px;
        }

        /* OS Section */
        .os-section {
            margin-bottom: 24px;
        }

        .os-container {
            background: white;
            border-radius: 12px;
            padding: 16px;
            box-shadow: var(--card-shadow);
        }

        .os-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 12px;
        }

        .os-item {
            text-align: center;
            padding: 12px 8px;
            background: var(--gray-light);
            border-radius: 8px;
            transition: transform 0.2s;
        }

        .os-item:hover {
            transform: scale(1.05);
        }

        .os-icon {
            font-size: 1.5rem;
            margin-bottom: 6px;
            color: var(--primary);
        }

        .os-name {
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: white;
            color: var(--dark);
            padding: 20px 0;
            text-align: center;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
        }

        .footer-logo {
            font-size: 1.3rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--primary);
        }

        .copyright {
            margin-top: 16px;
            font-size: 0.8rem;
            color: var(--gray);
        }

        /* Plan Colors */
        .starter { border-color: var(--starter); }
        .starter .plan-name { color: var(--starter); }
        .starter .plan-price { color: var(--starter); }

        .advanced { border-color: var(--advanced); }
        .advanced .plan-name { color: var(--advanced); }
        .advanced .plan-price { color: var(--advanced); }

        .professional { border-color: var(--professional); }
        .professional .plan-name { color: var(--professional); }
        .professional .plan-price { color: var(--professional); }

        .business { border-color: var(--business); }
        .business .plan-name { color: var(--business); }
        .business .plan-price { color: var(--business); }

        .enterprise { border-color: var(--enterprise); }
        .enterprise .plan-name { color: var(--enterprise); }
        .enterprise .plan-price { color: var(--enterprise); }

        .ultra { border-color: var(--ultra); }
        .ultra .plan-name { color: var(--ultra); }
        .ultra .plan-price { color: var(--ultra); }