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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #000;
            color: #fff;
            line-height: 1.6;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(234, 88, 12, 0.2);
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
        }

        .logo-safe {
            color: #EA580C;
        }

        .logo-class {
            color: #fff;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav a, nav button {
            color: #fff;
            text-decoration: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: color 0.3s;
        }

        nav a:hover, nav button:hover {
            color: #EA580C;
        }

        .btn-primary {
            background-color: #EA580C;
            color: #fff;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: #C2410C;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Main Content */
        .main-content {
            padding-top: 8rem;
            padding-bottom: 5rem;
        }

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

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #9CA3AF;
            text-decoration: none;
            margin-bottom: 2rem;
            transition: color 0.3s;
        }

        .back-button:hover {
            color: #fff;
        }

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

        .page-title {
            font-size: 3.75rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .highlight {
            color: #EA580C;
        }

        .page-subtitle {
            font-size: 1.25rem;
            color: #9CA3AF;
            max-width: 48rem;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .pricing-card {
            background-color: #111827;
            border-radius: 1rem;
            padding: 2rem;
            border: 2px solid #1F2937;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            transform: scale(1.05);
        }

        .pricing-card.featured {
            background-color: #EA580C;
            border: 4px solid #C2410C;
            box-shadow: 0 20px 60px rgba(234, 88, 12, 0.5);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.08);
        }

        .popular-badge {
            text-align: center;
            margin-bottom: 1rem;
        }

        .popular-badge span {
            background-color: #000;
            color: #fff;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: bold;
        }

        .plan-name {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .plan-description {
            margin-bottom: 1.5rem;
        }

        .pricing-card.featured .plan-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-card:not(.featured) .plan-description {
            color: #9CA3AF;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .plan-price span {
            font-size: 1.25rem;
        }

        .pricing-card.featured .plan-price span {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-card:not(.featured) .plan-price span {
            color: #9CA3AF;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .features-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .check-icon {
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .pricing-card:not(.featured) .check-icon {
            color: #EA580C;
        }

        .pricing-card.featured .features-list li {
            color: #fff;
        }

        .pricing-card:not(.featured) .features-list li {
            color: #D1D5DB;
        }

        .btn-plan {
            width: 100%;
            padding: 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .pricing-card.featured .btn-plan {
            background-color: #fff;
            color: #EA580C;
        }

        .pricing-card.featured .btn-plan:hover {
            background-color: #F3F4F6;
        }

        .pricing-card:not(.featured) .btn-plan {
            background-color: #EA580C;
            color: #fff;
        }

        .pricing-card:not(.featured) .btn-plan:hover {
            background-color: #C2410C;
        }

        .faq-section {
            background-color: #111827;
            border-radius: 1rem;
            padding: 3rem 2rem;
            border: 1px solid rgba(234, 88, 12, 0.2);
        }

        .faq-title {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 2rem;
        }

        .faq-content {
            max-width: 48rem;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
        }

        .faq-question {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .faq-answer {
            color: #9CA3AF;
        }

        .contact-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .contact-cta p {
            color: #9CA3AF;
            margin-bottom: 1rem;
        }

        .contact-cta button {
            background-color: #EA580C;
            color: #fff;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .contact-cta button:hover {
            background-color: #C2410C;
        }

        /* Footer */
        footer {
            background-color: #000;
            border-top: 1px solid rgba(234, 88, 12, 0.2);
            padding: 3rem 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #9CA3AF;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #EA580C;
        }

        .footer-bottom {
            border-top: 1px solid #1F2937;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: #9CA3AF;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #EA580C;
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: scale(1.02);
            }

            nav {
                display: none;
            }

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