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

        .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);
        }

        .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;
            position: relative;
            z-index: 1;
        }

        .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 (semantic <table>) */
        .comparison-table {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            display: grid;
            border-collapse: collapse;
        }

        .comparison-table thead,
        .comparison-table tbody {
            display: contents;
        }

        .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 th,
        .comparison-row td {
            text-align: left;
            padding: 0;
            border: none;
            font-size: inherit;
        }

        .comparison-row th {
            font-weight: 600;
        }

        .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-trial {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 0.75rem;
        }

        .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;
            position: relative;
            z-index: 1;
        }

        .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 .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 .cta-group { animation-delay: 0.4s; }

        @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;
        }

        /* Social Proof Bar */
        .social-proof-bar {
            padding: 2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .proof-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

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

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

        .proof-stat .label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Feature collapse for mobile only - show all on desktop */
        .feature-card.mobile-hidden {
            display: block;
        }

        .show-more-features {
            display: none;
            width: 100%;
            padding: 1rem 2rem;
            margin-top: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .show-more-features:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .show-more-features.expanded {
            display: none !important;
        }

        /* Sticky Mobile CTA */
        .sticky-mobile-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            background: #000;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            pointer-events: none;
        }

        .sticky-mobile-cta.visible {
            transform: translateY(0);
            pointer-events: auto;
        }

        .sticky-mobile-cta a {
            display: block;
            width: 100%;
            padding: 0.875rem 1.5rem;
            background: #fff;
            color: #000;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 8px;
            text-decoration: none;
        }

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

            .service-hero {
                min-height: 75vh;
                padding: 6rem 0 2rem;
            }

            .service-hero h1 {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }

            .service-hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .meta-badge {
                padding: 8px 14px;
                gap: 8px;
                margin-bottom: 1.5rem;
            }

            .meta-badge img {
                height: 22px;
            }

            .meta-badge span {
                font-size: 0.8rem;
            }

            .btn-large {
                padding: 0.875rem 2rem;
                font-size: 1rem;
                width: 100%;
                display: block;
            }

            .cta-note {
                margin-top: 1.5rem !important;
                font-size: 0.8rem;
            }

            /* Social proof mobile */
            .social-proof-bar {
                padding: 1.5rem 0;
            }

            .proof-stats {
                gap: 1.5rem;
            }

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

            .proof-stat .label {
                font-size: 0.75rem;
            }

            /* Sections - tighter padding */
            .content-section {
                padding: 3rem 0;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }

            /* Comparison table mobile - simplified */
            .comparison-row {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                font-size: 0.7rem;
                padding: 0.6rem 0.5rem;
            }

            .comparison-table {
                border-radius: 12px;
            }

            /* Hide less important comparison rows on mobile */
            .comparison-row.mobile-hide {
                display: none;
            }

            /* Feature grid mobile */
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .feature-card {
                padding: 1.25rem;
                border-radius: 12px;
            }

            .feature-card.mobile-hidden {
                display: none;
            }

            .feature-card.mobile-hidden.show {
                display: block;
            }

            .show-more-features {
                display: block;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 0.75rem;
            }

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

            .feature-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }

            .feature-card p {
                font-size: 0.875rem;
                line-height: 1.5;
            }

            /* Pricing mobile */
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .pricing-card {
                padding: 1.5rem;
            }

            .pricing-note {
                padding: 1.25rem;
                margin-top: 1.5rem;
            }

            .coupon-box {
                padding: 1rem;
            }

            .coupon-box code {
                font-size: 1.25rem;
                padding: 8px 16px;
            }

            /* FAQ mobile */
            .faq-section {
                padding: 3rem 0;
            }

            .faq-section h2 {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }

            .faq-question {
                font-size: 0.95rem;
                padding: 1rem 0;
            }

            /* Sticky CTA on mobile */
            .sticky-mobile-cta {
                display: block;
            }

            /* Add bottom padding to body for sticky CTA */
            body {
                padding-bottom: 80px;
            }

            /* Disable AOS on mobile for snappier feel */
            [data-aos] {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
                visibility: visible !important;
            }

            /* Ensure all sections are fully visible on mobile */
            .content-section,
            .social-proof-bar,
            .faq-section,
            .feature-card,
            .pricing-card,
            .comparison-table,
            .section-title,
            .section-subtitle {
                opacity: 1 !important;
                visibility: visible !important;
            }

            /* Integrations grid mobile */
            .integrations-grid {
                grid-template-columns: 1fr !important;
            }

            .integration-card {
                padding: 1.5rem !important;
            }

        }

        /* Market Intel Showcase */
        .market-intel-highlight {
            padding: 4rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .market-intel-showcase {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .new-tag {
            display: inline-block;
            background: #10B981;
            color: #000;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .market-intel-showcase h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #fff;
        }

        .showcase-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        .mosseri-quote {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 1.5rem 2rem;
            font-style: italic;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        .mosseri-quote cite {
            display: block;
            margin-top: 0.75rem;
            font-style: normal;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            .market-intel-highlight {
                padding: 2.5rem 0;
            }

            .mosseri-quote {
                padding: 1.25rem;
                font-size: 0.95rem;
            }
        }

        /* Login button - white with black text */
