/* Extracted inline styles from /pricing.html (H5) */
body {
            background: #1a1d23;
            color: #ffffff;
            font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        /* Pricing Tabs */
        .pricing-tabs {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .pricing-tabs [role="tab"] {
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.05);
            color: #9ca3af;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .pricing-tabs [role="tab"]:hover {
            border-color: rgba(255,255,255,0.25);
            color: #fff;
        }
        .pricing-tabs [role="tab"][aria-selected="true"] {
            border-color: #3b82f6;
            background: rgba(59, 130, 246, 0.15);
            color: #fff;
        }
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .gradient-text {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section { padding: 5rem 0; position: relative; z-index: 1; }
        .section-alt { background: rgba(255, 255, 255, 0.02); }

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

        /* Hero */
        .hero {
            padding-top: 10rem;
            padding-bottom: 4rem;
            text-align: center;
            position: relative;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }
        .hero .subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: #60a5fa;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.5;
            font-weight: 600;
        }
        .hero p { font-size: 1.1rem; color: #9ca3af; max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }

        /* Section Headers */
        .section-header { text-align: center; margin-bottom: 3rem; }
        .section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
        .section-header p { color: #9ca3af; max-width: 600px; margin: 0 auto; }

        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; } }

        .pricing-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.3);
        }
        .pricing-card.featured {
            background: linear-gradient(180deg, rgba(59,130,246,0.1) 0%, rgba(29,78,216,0.05) 100%);
            border: 2px solid rgba(59, 130, 246, 0.5);
            transform: scale(1.02);
        }
        .pricing-card.featured:hover {
            transform: scale(1.02) translateY(-5px);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.375rem 1rem;
            border-radius: 9999px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-card h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
        .pricing-card .tier-desc { color: #9ca3af; font-size: 0.9rem; margin-bottom: 1.5rem; }

        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        .pricing-card.featured .price-amount {
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .price-period { color: #6b7280; font-size: 0.9rem; margin-bottom: 1.5rem; }

        .feature-list { list-style: none; padding: 0; margin: 0 0 2rem; }
        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.625rem 0;
            color: #d1d5db;
            font-size: 0.9rem;
        }
        .feature-list li i { color: #10b981; margin-top: 0.125rem; }
        .feature-list li.disabled { color: #4b5563; }
        .feature-list li.disabled i { color: #4b5563; }

        .cta-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            text-decoration: none;
            transition: all 0.2s;
        }
        .cta-btn-primary {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: #fff;
        }
        .cta-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
        }
        .cta-btn-secondary {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
        }
        .cta-btn-secondary:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }
        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 0.5rem;
            color: #9ca3af;
            font-size: 0.8rem;
        }
        .trust-badge i { color: #10b981; }

        /* Comparison Table */
        .comparison-wrapper {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 2rem;
            overflow-x: auto;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .comparison-table th:first-child,
        .comparison-table td:first-child { text-align: left; }
        .comparison-table thead th {
            background: rgba(255,255,255,0.02);
            font-weight: 600;
            color: #e5e7eb;
        }
        .comparison-table .highlight-col { background: rgba(59, 130, 246, 0.08); }
        .comparison-table tbody td { color: #9ca3af; }
        .comparison-table .check { color: #10b981; }
        .comparison-table .dash { color: #4b5563; }

        /* FAQ */
        .faq-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 1rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            background: transparent;
            border: none;
            color: #3b82f6;
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: background 0.2s;
        }
        .faq-question:hover { background: rgba(255,255,255,0.02); }
        .faq-question i { color: #6b7280; transition: transform 0.3s; }
        .faq-item.open .faq-question i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .faq-item.open .faq-answer { max-height: 300px; }
        .faq-answer-inner { padding: 0 1.5rem 1.5rem; color: #9ca3af; line-height: 1.7; }

        /* CTA Box */
        .cta-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.1));
            border: 1px solid rgba(59, 130, 246, 0.4);
            border-radius: 1.5rem;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .cta-box h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
        .cta-box p { color: #9ca3af; margin-bottom: 2rem; font-size: 1.1rem; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        .footnote {
            max-width: 800px;
            margin: 2rem auto 0;
            padding: 0 1.5rem;
            font-size: 0.8rem;
            color: #6b7280;
            text-align: center;
        }
