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

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

        /* 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;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 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-elevenlabs {
            height: 28px;
        }

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

        .trust-bar-logos .logo-calendly {
            height: 34px;
        }

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

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

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

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 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;
        }

        /* Demo Section */
        .demo-section {
            padding: 5rem 0;
        }

        .demo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .demo-card {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

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

        .demo-card .subtitle {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .audio-visualizer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            height: 40px;
            margin-bottom: 1rem;
        }

        .wave-bar {
            width: 4px;
            height: 20px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }

        .demo-card.playing .wave-bar {
            animation: wave 1s ease-in-out infinite;
        }

        .wave-bar:nth-child(1) { animation-delay: 0s; }
        .wave-bar:nth-child(2) { animation-delay: 0.1s; }
        .wave-bar:nth-child(3) { animation-delay: 0.2s; }
        .wave-bar:nth-child(4) { animation-delay: 0.3s; }
        .wave-bar:nth-child(5) { animation-delay: 0.4s; }

        @keyframes wave {
            0%, 100% { height: 20px; }
            50% { height: 35px; }
        }

        .play-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: #fff;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .play-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .demo-transcript {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            padding: 1.25rem;
            margin-top: 1.5rem;
            text-align: left;
            max-height: 200px;
            overflow-y: auto;
        }

        .demo-transcript p {
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.7);
        }

        .demo-transcript strong {
            color: #fff;
        }

        /* ROI Calculator */
        .roi-section {
            padding: 5rem 0;
        }

        .roi-calculator {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

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

        .input-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .input-group input[type="range"] {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.1);
            outline: none;
            -webkit-appearance: none;
            margin-bottom: 0.5rem;
        }

        .input-group input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #fff;
            cursor: pointer;
        }

        .input-group input[type="number"] {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 1rem;
        }

        .input-group input[type="number"]:focus {
            border-color: rgba(255, 255, 255, 0.3);
            outline: none;
        }

        .range-value {
            font-weight: 600;
            color: #fff;
            text-align: center;
            display: block;
        }

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

        .result-card {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
        }

        .result-card h4 {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .result-amount {
            font-family: 'Satoshi', sans-serif;
            font-size: 2rem;
            font-weight: 700;
        }

        .result-amount.lost { color: #f87171; }
        .result-amount.gained { color: #4ade80; }
        .result-amount.annual { color: #fff; }

        .roi-note {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 1.5rem;
        }

        .roi-note h4 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
        }

        .roi-note p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

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

        /* Enterprise Note */
        .enterprise-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;
        }

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

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            text-align: center;
        }

        .cta-section h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

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

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

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

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

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

            .calculator-inputs {
                grid-template-columns: 1fr;
            }

            .roi-results {
                grid-template-columns: 1fr;
            }
        }

        /* Login button - white with black text */
