/* Extracted CSS for pages/ai-receptionist/appointment-booking/index.html */
.sp-hero {
            padding: 140px 0 80px;
            background: #0a0a0c;
            position: relative;
            overflow: hidden;
        }

        .sp-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 50% at 65% 25%, rgba(94, 14, 215, .18) 0%, transparent 70%), radial-gradient(ellipse 40% 30% at 15% 85%, rgba(94, 14, 215, .1) 0%, transparent 60%);
            pointer-events: none;
        }

        .sp-hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .sp-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: #5E0ED7;
            margin-bottom: 1.5rem;
        }

        .sp-eyebrow::before {
            content: "";
            display: block;
            width: 20px;
            height: 1.5px;
            background: #5E0ED7;
            border-radius: 2px;
        }

        .sp-h1 {
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            font-weight: 800;
            line-height: .95;
            letter-spacing: -.04em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .sp-h1 .accent {
            color: #5E0ED7;
        }

        .sp-desc {
            color: rgba(255, 255, 255, .6);
            font-size: 1.05rem;
            line-height: 1.75;
            margin-bottom: 2rem;
            max-width: 480px;
        }

        .sp-cta-group {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: .75rem;
        }

        .btn-sp-primary {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .85rem 1.75rem;
            background: #5E0ED7;
            color: #fff;
            font-size: .9rem;
            font-weight: 700;
            letter-spacing: .04em;
            border-radius: 8px;
            text-decoration: none;
            transition: background .25s, transform .2s;
        }

        .btn-sp-primary:hover {
            background: #7a2ef0;
            transform: translateY(-2px);
        }

        .sp-btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            font-size: .82rem;
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .45);
            text-decoration: none;
            transition: color .2s;
        }

        .sp-btn-ghost:hover {
            color: #fff;
        }

        .sp-cta-sub {
            font-size: .78rem;
            color: rgba(255, 255, 255, .4);
            letter-spacing: .05em;
        }

        .sp-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 2.5rem;
        }

        .sp-stat {
            background: #121217;
            padding: 1.5rem 1.25rem;
            text-align: center;
        }

        .sp-stat-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #5E0ED7;
            letter-spacing: -.03em;
            line-height: 1;
            margin-bottom: .35rem;
        }

        .sp-stat-label {
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
        }

        .sp-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 480px;
        }

        .sp-glow {
            position: absolute;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(94, 14, 215, .25) 0%, transparent 70%);
            pointer-events: none;
        }

        .sp-card {
            position: relative;
            z-index: 2;
            width: 300px;
            background: rgba(18, 18, 23, .92);
            border: 1px solid rgba(94, 14, 215, .4);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .07);
            transform: perspective(900px) rotateY(-10deg) rotateX(3deg);
        }

        .sp-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            margin-bottom: 16px;
        }

        .sp-card-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
        }

        .sp-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #4ade80;
        }

        .sp-live::before {
            content: "";
            width: 6px;
            height: 6px;
            background: #4ade80;
            border-radius: 50%;
            box-shadow: 0 0 8px #4ade80;
            animation: plive 1.8s infinite;
        }

        @keyframes plive {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.5);
                opacity: .5;
            }
        }

        .sp-cal-slots {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 14px;
        }

        .sp-slot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 12px;
            border-radius: 8px;
            font-size: 11px;
            border: 1px solid rgba(255, 255, 255, .07);
            background: rgba(255, 255, 255, .03);
            color: rgba(255, 255, 255, .6);
        }

        .sp-slot.selected {
            background: rgba(94, 14, 215, .15);
            border-color: rgba(94, 14, 215, .4);
            color: #fff;
        }

        .sp-slot .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .2);
        }

        .sp-slot.selected .dot {
            background: #4ade80;
            box-shadow: 0 0 6px #4ade80;
        }

        .sp-booking-confirm {
            padding: 10px 12px;
            background: rgba(74, 222, 128, .07);
            border-left: 2px solid #4ade80;
            font-size: 11px;
            color: #bff7d0;
            border-radius: 0 6px 6px 0;
        }

        .sp-chip {
            position: absolute;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(18, 18, 23, .95);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 50px;
            padding: 8px 14px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: #fff;
            white-space: nowrap;
            z-index: 5;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
        }

        .sp-chip-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .sp-chip-dot.g {
            background: #4ade80;
            box-shadow: 0 0 8px #4ade80;
        }

        .sp-chip-dot.p {
            background: #5E0ED7;
            box-shadow: 0 0 8px #5E0ED7;
        }

        .sp-chip-1 {
            top: 30px;
            left: -40px;
        }

        .sp-chip-2 {
            bottom: 50px;
            right: -50px;
        }

        .sp-section {
            padding: clamp(5rem, 10vh, 8rem) 0;
            background: #0a0a0c;
        }

        .sp-section.alt {
            background: #121217;
        }

        .sp-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .sp-eyebrow-sm {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: #5E0ED7;
            margin-bottom: 1.25rem;
        }

        .sp-eyebrow-sm::before {
            content: "";
            display: block;
            width: 20px;
            height: 1.5px;
            background: #5E0ED7;
            border-radius: 2px;
        }

        .sp-h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -.04em;
            text-transform: uppercase;
            color: #fff;
        }

        .sp-h2 .accent {
            color: #5E0ED7;
        }

        .sp-feature-list {
            display: flex;
            flex-direction: column;
            max-width: 860px;
            margin: 0 auto;
        }

        .sp-feature-item {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 2rem;
            padding: 2.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, .08);
            transition: border-color .3s, padding-left .3s;
        }

        .sp-feature-item:last-child {
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .sp-feature-item:hover {
            border-top-color: #5E0ED7;
            padding-left: 1rem;
        }

        .sp-feat-num {
            font-size: .8rem;
            font-weight: 700;
            color: #5E0ED7;
            letter-spacing: .05em;
            margin-top: .2rem;
        }

        .sp-feat-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .5rem;
            text-transform: uppercase;
            letter-spacing: .04em;
        }

        .sp-feat-desc {
            font-size: .88rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, .55);
            max-width: 600px;
        }

        .sp-cap-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 12px;
            overflow: hidden;
        }

        .sp-cap-card {
            background: #0a0a0c;
            padding: 2rem 1.75rem;
            transition: background .25s;
        }

        .sp-cap-card:hover {
            background: #121217;
        }

        .sp-cap-num {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: #5E0ED7;
            margin-bottom: 1rem;
        }

        .sp-cap-title {
            font-size: .95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .5rem;
        }

        .sp-cap-desc {
            font-size: .82rem;
            color: rgba(255, 255, 255, .5);
            line-height: 1.6;
        }

        .sp-faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 860px;
            margin: 0 auto;
        }

        .sp-faq-card {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 2rem;
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 12px;
            padding: 2rem;
            align-items: flex-start;
        }

        .sp-faq-q {
            font-size: 2rem;
            font-weight: 800;
            color: #5E0ED7;
            line-height: 1;
        }

        .sp-faq-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .5rem;
            text-transform: uppercase;
            letter-spacing: .04em;
        }

        .sp-faq-desc {
            font-size: .88rem;
            color: rgba(255, 255, 255, .55);
            line-height: 1.65;
        }

        .sp-final-cta {
            padding: clamp(5rem, 10vh, 8rem) 0;
            background: #0a0a0c;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .sp-final-cta::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 350px;
            background: radial-gradient(ellipse, rgba(94, 14, 215, .18) 0%, transparent 70%);
            pointer-events: none;
        }

        .sp-cta-h2 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            line-height: .95;
            letter-spacing: -.04em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .sp-cta-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, .55);
            max-width: 460px;
            margin: 0 auto 2.5rem;
            line-height: 1.65;
            position: relative;
        }

        .sp-cta-sub {
            font-size: .78rem;
            color: rgba(255, 255, 255, .35);
            margin-top: .75rem;
            letter-spacing: .04em;
        }

        @media(max-width:1024px) {
            .sp-hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

            .sp-visual {
                height: 360px;
            }
        }

        @media(max-width:768px) {
            .sp-hero {
                padding: 120px 0 60px;
            }

            .sp-cap-grid {
                grid-template-columns: 1fr;
            }

            .sp-stats {
                grid-template-columns: 1fr;
            }

            .sp-chip-1,
            .sp-chip-2 {
                display: none;
            }

            .sp-feature-item {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .sp-faq-card {
                grid-template-columns: 1fr;
                gap: .5rem;
            }
        }