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

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

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

        .meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 20px;
            background: rgba(10, 10, 10, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            margin-bottom: 2rem;
        }

        .meta-badge img {
            height: 28px;
            filter: brightness(0) invert(1);
        }

        .meta-badge span {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .stat-banner {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Satoshi', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            display: block;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 140px;
        }

        .cta-group {
            margin-top: 2rem;
        }

        .btn-large {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: rgba(255, 255, 255, 0.9);
            color: #000;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .btn-large:hover {
            background: #fff;
            transform: translateY(-2px);
        }

        .cta-note {
            margin-top: 2.5rem !important;
            padding-top: 0.25rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .coupon-code {
            color: #fff;
            font-weight: 700;
            background: rgba(255, 255, 255, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
        }

        .copy-btn {
            background: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
            padding: 4px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.8rem;
            margin-left: 8px;
            transition: all 0.2s ease;
        }

        .copy-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Section Styles */
        .content-section {
            padding: 5rem 0;
        }

        .section-title {
            font-family: 'Satoshi', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        /* Trust Bar - Tech Stack Logos */
        .trust-bar {
            padding: 3rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            z-index: 10;
            background: transparent;
        }

        .trust-bar-label {
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 2rem;
        }

        .trust-bar-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3.5rem;
            flex-wrap: wrap;
        }

        .trust-bar-logos img {
            height: 36px;
            width: auto;
            opacity: 0.9;
            transition: all 0.2s ease;
        }

        .trust-bar-logos img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .trust-bar-logos .logo-meta {
            height: 40px;
        }

        .trust-bar-logos .logo-openai {
            height: 32px;
            filter: brightness(0) invert(1);
        }

        .trust-bar-logos .logo-stripe {
            height: 40px;
        }

        .trust-bar-logos .logo-twilio {
            height: 38px;
        }

        .trust-bar-logos .logo-pusher {
            height: 36px;
            filter: brightness(0) invert(1);
        }

        .trust-bar-logos .logo-gcal {
            height: 38px;
        }

        @media (max-width: 768px) {
            .trust-bar {
                padding: 2.5rem 0;
            }
            .trust-bar-logos {
                gap: 2rem;
            }
            .trust-bar-logos img {
                height: 28px;
            }
            .trust-bar-logos .logo-stripe {
                height: 32px;
            }
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-card {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.2s ease;
        }

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

        .feature-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-icon svg {
            width: 32px;
            height: 32px;
        }

        .feature-card h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Comparison Table */
        .comparison-table {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            align-items: center;
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .comparison-row.header {
            background: rgba(255, 255, 255, 0.05);
            font-weight: 600;
        }

        .check { color: #4ade80; }
        .cross { color: #f87171; }

        /* 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: 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;
        }

        /* Pricing Note */
        .pricing-note {
            max-width: 800px;
            margin: 2rem auto 0;
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .pricing-note p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        .coupon-box {
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .coupon-box code {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            background: rgba(0, 0, 0, 0.4);
            padding: 10px 20px;
            border-radius: 8px;
            letter-spacing: 2px;
        }

        /* 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;
        }

        /* Hero animations - immediate load (not scroll-dependent) */
        .service-hero .meta-badge,
        .service-hero h1,
        .service-hero > .container > p,
        .service-hero .stat-banner,
        .service-hero .cta-group {
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeIn 0.8s ease-out forwards;
        }
        .service-hero .meta-badge { animation-delay: 0.1s; }
        .service-hero h1 { animation-delay: 0.2s; }
        .service-hero > .container > p { animation-delay: 0.3s; }
        .service-hero .stat-banner { animation-delay: 0.4s; }
        .service-hero .cta-group { animation-delay: 0.5s; }

        @keyframes heroFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Ensure AOS elements below hero are hidden initially */
        [data-aos] {
            pointer-events: none;
        }
        [data-aos].aos-animate {
            pointer-events: auto;
        }

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

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

            .stat-banner {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .comparison-row {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                font-size: 0.75rem;
                padding: 0.75rem;
            }

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

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

        /* Login button - white with black text */
