/* Page-specific styles */
        .pricing-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            padding: 8rem 0 4rem;
            text-align: center;
        }

        .pricing-hero h1 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .pricing-hero h1 .highlight {
            color: var(--text-secondary);
        }

        .pricing-hero p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .trust-bar {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        .trust-item svg {
            width: 18px;
            height: 18px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Service Tabs */
        .service-tabs {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .service-tab {
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .service-tab:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .service-tab.active {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            color: #fff;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 4rem 0 6rem;
        }

        .service-content {
            display: none;
        }

        .service-content.active {
            display: block;
            animation: fadeIn 0.4s ease forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .service-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .service-header h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #fff !important;
        }

        .service-header p {
            color: #fff !important;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Pricing Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.2s ease;
        }

        .pricing-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }

        .pricing-card.popular {
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            color: #000;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .tier-name {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .tier-audience {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1.5rem;
        }

        .tier-price {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .tier-price .amount {
            font-family: 'Satoshi', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .tier-price .period {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        .tier-usage {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
        }

        .tier-setup {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.5rem;
        }

        .tier-overage {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tier-features {
            list-style: none;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .tier-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.5rem 0;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .tier-features li::before {
            content: '✓';
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
            flex-shrink: 0;
        }

        .tier-button {
            display: block;
            width: 100%;
            padding: 0.75rem 1.5rem;
            text-align: center;
            font-weight: 500;
            font-size: 0.875rem;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.15s ease;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        .tier-button:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .tier-button.primary {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(255, 255, 255, 1);
            color: #000;
        }

        .tier-button.primary:hover {
            background: #fff;
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
        }

        .faq-section h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-grid {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            padding: 1.25rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .faq-question:hover {
            color: #fff;
        }

        .faq-icon {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.5);
            transition: transform 0.2s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding-bottom: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* Final CTA */
        .final-cta {
            padding: 6rem 0;
            text-align: center;
        }

        .final-cta h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .final-cta p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .desktop-only {
                display: none !important;
            }

            .pricing-hero {
                padding: 7rem 0 3rem;
            }

            .service-tabs {
                flex-direction: column;
                align-items: stretch;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
