/* Extracted CSS for pages/ai-receptionist/index.html */
:root {
            --ai-bg: #0a0a0c;
            --ai-alt: #121217;
            --ai-panel: #17171e;
            --ai-line: rgba(255, 255, 255, .12);
            --ai-muted: #a7a7b3;
            --ai-purple: #5e0ed7;
            --ai-purple-bright: #8b4bea;
            --ai-purple-glow: rgba(94, 14, 215, .32);
        }

        body {
            background: var(--ai-bg);
            color: #f7f7fb;
            font-family: Inter, sans-serif;
        }

        .hero-section,
        .ghl-feature-section,
        .ghl-cta-section {
            min-height: 0;
        }

        .ai-hero {
            padding: 150px 0 92px;
            background: var(--ai-bg);
        }

        .ai-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
            gap: 72px;
            align-items: center;
        }

        .ai-hero .sub-hero-eyebrow,
        .ai-section-eyebrow {
            color: var(--ai-purple-bright);
        }

        .ai-hero .sub-hero-eyebrow::before,
        .ai-section-eyebrow::before {
            background: var(--ai-purple);
        }

        .ai-hero .hero-title {
            display: block;
            max-width: 740px;
            font-size: clamp(3.1rem, 6.5vw, 6.7rem);
            line-height: .94;
            letter-spacing: -.045em;
        }

        .word-line,
        .word-inner {
            display: block;
        }

        .ai-accent {
            color: var(--ai-purple-bright);
        }

        .ai-hero .sub-hero-description {
            max-width: 600px;
            color: var(--ai-muted);
        }

        .ai-hero .hero-actions {
            margin-bottom: 34px;
        }

        .ai-hero .btn-primary,
        .ai-cta .btn-primary {
            background: var(--ai-purple);
            border-radius: 3px;
            box-shadow: 0 12px 32px var(--ai-purple-glow);
        }

        .ai-hero .btn-primary:hover,
        .ai-cta .btn-primary:hover {
            background: var(--ai-purple-bright);
        }

        .ai-hero .btn-secondary {
            border-color: var(--ai-line);
            border-radius: 3px;
        }

        .ai-hero .btn-secondary:hover {
            border-color: var(--ai-purple-bright);
            background: rgba(94, 14, 215, .08);
        }

        .ai-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .ai-stats .stat-card {
            background: transparent;
            border: 0;
            border-top: 1px solid var(--ai-line);
            border-radius: 0;
            padding: 16px 0;
        }

        .ai-stats .stat-value {
            color: var(--ai-purple-bright);
            font-size: 24px;
        }

        .ai-stats .stat-label {
            color: var(--ai-muted);
        }

        .call-simulation {
            position: relative;
            background: var(--ai-panel);
            border: 1px solid var(--ai-line);
            padding: 24px;
            box-shadow: 24px 24px 0 rgba(94, 14, 215, .1);
        }

        .call-simulation::before {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            right: -40px;
            top: -40px;
            border: 1px solid rgba(139, 75, 234, .35);
            border-radius: 50%;
            pointer-events: none;
        }

        .sim-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--ai-line);
            padding-bottom: 18px;
        }

        .sim-label,
        .sim-status {
            font-size: 11px;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .sim-label {
            color: var(--ai-muted);
        }

        .sim-status {
            color: #bff7d0;
        }

        .sim-status::before {
            content: '';
            display: inline-block;
            width: 7px;
            height: 7px;
            margin-right: 7px;
            background: #4ade80;
            border-radius: 50%;
        }

        .sim-person {
            display: flex;
            gap: 14px;
            align-items: center;
            padding: 24px 0 18px;
        }

        .sim-avatar {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            color: rgba(255, 255, 255, .65);
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 50%;
        }

        .sim-person strong {
            display: block;
            font-size: 15px;
        }

        .sim-person span {
            color: var(--ai-muted);
            font-size: 12px;
        }

        .waveform {
            height: 48px;
            display: flex;
            gap: 4px;
            align-items: center;
            padding: 0 10px;
            border-left: 1px solid var(--ai-line);
            border-right: 1px solid var(--ai-line);
        }

        .waveform i {
            width: 3px;
            height: 18px;
            background: var(--ai-purple-bright);
            animation: ai-wave 1s ease-in-out infinite alternate;
        }

        .waveform i:nth-child(2n) {
            height: 32px;
            animation-delay: .12s;
        }

        .waveform i:nth-child(3n) {
            height: 12px;
            animation-delay: .23s;
        }

        .waveform i:nth-child(4n) {
            height: 25px;
            animation-delay: .34s;
        }

        @keyframes ai-wave {
            to {
                transform: scaleY(.35);
                opacity: .55;
            }
        }

        .sim-chat {
            display: grid;
            gap: 10px;
            padding-top: 20px;
        }

        .chat-bubble {
            max-width: 82%;
            padding: 11px 13px;
            font-size: 12px;
            line-height: 1.45;
        }

        .chat-ai {
            background: #22222b;
            justify-self: start;
        }

        .chat-caller {
            background: var(--ai-purple);
            justify-self: end;
        }

        .sim-booking {
            margin-top: 18px;
            padding: 13px;
            border-left: 2px solid #4ade80;
            background: rgba(74, 222, 128, .07);
            color: #bff7d0;
            font-size: 12px;
        }

        .ai-section {
            padding: 110px 0;
            background: var(--ai-bg);
        }

        .ai-section.alt {
            background: var(--ai-alt);
        }

        .ai-section-header {
            margin-bottom: 52px;
            max-width: 780px;
        }

        .ai-section-eyebrow {
            display: block;
            margin-bottom: 16px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        .ai-section-title {
            font-size: clamp(2.25rem, 4.7vw, 4.7rem);
            line-height: .98;
            letter-spacing: -.04em;
            text-transform: uppercase;
        }

        .ai-flow {
            --flow-progress: 0;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            position: relative;
        }

        .ai-flow::before {
            content: '';
            position: absolute;
            top: 29px;
            left: 5%;
            right: 5%;
            height: 1px;
            background: var(--ai-line);
            transform: scaleX(var(--flow-progress));
            transform-origin: left center;
        }

        .flow-node {
            position: relative;
            z-index: 1;
            padding-right: 24px;
        }

        .flow-dot {
            width: 58px;
            height: 58px;
            display: grid;
            place-items: center;
            margin-bottom: 20px;
            background: var(--ai-bg);
            border: 1px solid var(--ai-purple);
            color: var(--ai-purple-bright);
            font-weight: 700;
        }

        .flow-node h3 {
            max-width: 150px;
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.25;
        }

        .flow-node p {
            max-width: 170px;
            color: var(--ai-muted);
            font-size: 12px;
            line-height: 1.5;
        }

        .ai-capabilities {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--ai-line);
            border: 1px solid var(--ai-line);
        }

        .ai-capability {
            min-height: 220px;
            padding: 28px;
            background: var(--ai-alt);
            transition: background .25s, transform .25s;
        }

        .ai-capability:hover {
            background: #1a1722;
            transform: translateY(-4px);
        }

        .cap-index {
            display: block;
            color: var(--ai-purple-bright);
            font-size: 12px;
            margin-bottom: 44px;
        }

        .ai-capability h3 {
            margin-bottom: 10px;
            font-size: 18px;
        }

        .ai-capability p {
            color: var(--ai-muted);
            font-size: 13px;
            line-height: 1.6;
        }

        .industry-list {
            border-top: 1px solid var(--ai-line);
        }

        .industry-row {
            display: grid;
            grid-template-columns: 72px 1fr 1.4fr 24px;
            gap: 24px;
            align-items: center;
            padding: 22px 0;
            border-bottom: 1px solid var(--ai-line);
            transition: padding .25s, color .25s;
        }

        .industry-row:hover {
            padding-left: 12px;
            color: var(--ai-purple-bright);
        }

        .industry-number {
            color: var(--ai-purple-bright);
            font-size: 12px;
        }

        .industry-name {
            font-size: 20px;
            text-transform: uppercase;
        }

        .industry-detail {
            color: var(--ai-muted);
            font-size: 13px;
        }

        .industry-arrow {
            color: var(--ai-purple-bright);
        }

        .ai-cta {
            text-align: center;
            padding: 120px 0;
            background: var(--ai-alt);
        }

        .ai-cta .ai-section-title {
            max-width: 720px;
            margin: 0 auto 18px;
        }

        .ai-cta p {
            max-width: 560px;
            margin: 0 auto 30px;
            color: var(--ai-muted);
            line-height: 1.6;
        }

        @media (max-width:900px) {
            .ai-hero-grid {
                grid-template-columns: 1fr;
                gap: 52px;
            }

            .ai-flow {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .ai-flow::before {
                top: 0;
                bottom: 0;
                left: 29px;
                width: 1px;
                height: auto;
                transform: scaleY(var(--flow-progress));
                transform-origin: top center;
            }

            .flow-node {
                display: grid;
                grid-template-columns: 58px 1fr;
                column-gap: 18px;
                padding: 0;
            }

            .flow-dot {
                grid-row: span 2;
                margin: 0;
            }

            .flow-node h3,
            .flow-node p {
                max-width: none;
            }

            .ai-capabilities {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:600px) {
            .ai-hero {
                padding-top: 120px;
            }

            .ai-stats,
            .ai-capabilities {
                grid-template-columns: 1fr;
            }

            .industry-row {
                grid-template-columns: 36px 1fr 20px;
                gap: 10px;
            }

            .industry-detail {
                grid-column: 2/4;
            }

            .call-simulation {
                padding: 18px;
            }
        }