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

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

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

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

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

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

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

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

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

        .btn-p-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-p-primary:hover {
            background: #7a2ef0;
            transform: translateY(-2px);
        }

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

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

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

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

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

        /* ── Revenue Pipeline Visual ── */
        .rev-pipeline {
            background: #121217;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            padding: 1.75rem;
            min-height: 360px;
            position: relative;
            overflow: hidden;
        }

        .rev-pipeline::before {
            content: "";
            position: absolute;
            top: -40%;
            right: -20%;
            width: 60%;
            height: 60%;
            background: radial-gradient(circle, rgba(94, 14, 215, .15) 0%, transparent 70%);
            pointer-events: none;
        }

        .rp-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.75rem;
            padding-bottom: .75rem;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .rp-title {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
        }

        .rp-live {
            display: flex;
            align-items: center;
            gap: .4rem;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #5E0ED7;
        }

        .rp-live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #5E0ED7;
            animation: livePulse 1.4s ease-in-out infinite;
        }

        .rp-nodes {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
        }

        .rp-node {
            display: flex;
            align-items: center;
            gap: .85rem;
            padding: .7rem 0;
            opacity: 0;
            transform: translateX(-12px);
            transition: opacity .4s, transform .4s;
        }

        .rp-node.active {
            opacity: 1;
            transform: translateX(0);
        }

        .rp-node-dot {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid rgba(94, 14, 215, .3);
            background: rgba(94, 14, 215, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: border-color .4s, background .4s;
        }

        .rp-node.active .rp-node-dot {
            border-color: #5E0ED7;
            background: rgba(94, 14, 215, .25);
        }

        .rp-node-dot svg {
            width: 14px;
            height: 14px;
            stroke: #5E0ED7;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .rp-node-connector {
            width: 2px;
            height: 18px;
            background: rgba(94, 14, 215, .15);
            margin-left: 15px;
            transition: background .4s;
        }

        .rp-node.active+.rp-node-connector {
            background: rgba(94, 14, 215, .5);
        }

        .rp-node-info {
            flex: 1;
        }

        .rp-node-label {
            font-size: .78rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .5);
            text-transform: uppercase;
            letter-spacing: .08em;
            transition: color .4s;
        }

        .rp-node.active .rp-node-label {
            color: #fff;
        }

        .rp-node-sub {
            font-size: .72rem;
            color: rgba(255, 255, 255, .3);
            margin-top: .15rem;
        }

        .rp-node-val {
            font-size: .82rem;
            font-weight: 700;
            color: #5E0ED7;
            opacity: 0;
            transition: opacity .4s;
        }

        .rp-node.active .rp-node-val {
            opacity: 1;
        }

        .rp-counter {
            margin-top: 1.5rem;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, .06);
            text-align: center;
        }

        .rp-counter-label {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .35);
            margin-bottom: .4rem;
        }

        .rp-counter-num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -.04em;
            line-height: 1;
        }

        .rp-counter-num span {
            color: #5E0ED7;
        }

        /* ── Sections ── */
        .p-section {
            padding: clamp(5rem, 10vh, 8rem) 0;
            background: #0a0a0c;
        }

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

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

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

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

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

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

        /* ── 5-Node Horizontal Pipeline ── */
        .acq-pipeline {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
        }

        .acq-nodes {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            padding-top: 1rem;
        }

        .acq-svg {
            position: absolute;
            top: 28px;
            left: 0;
            width: 100%;
            height: 4px;
            pointer-events: none;
        }

        .acq-svg line {
            stroke: rgba(94, 14, 215, .25);
            stroke-width: 2;
            stroke-dasharray: 4 4;
        }

        .acq-svg .acq-line-fill {
            stroke: #5E0ED7;
            stroke-width: 2;
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            transition: stroke-dashoffset 1.2s ease;
        }

        .acq-svg.drawn .acq-line-fill {
            stroke-dashoffset: 0;
        }

        .acq-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .75rem;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .acq-node-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 2px solid rgba(94, 14, 215, .25);
            background: #0a0a0c;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .75rem;
            font-weight: 800;
            color: rgba(255, 255, 255, .3);
            transition: border-color .4s, background .4s, color .4s;
            box-shadow: 0 0 0 6px #0a0a0c;
        }

        .p-section.alt .acq-node-circle {
            background: #121217;
            box-shadow: 0 0 0 6px #121217;
        }

        .acq-node.lit .acq-node-circle {
            border-color: #5E0ED7;
            background: rgba(94, 14, 215, .2);
            color: #fff;
        }

        .acq-node-label {
            font-size: .72rem;
            font-weight: 600;
            text-align: center;
            color: rgba(255, 255, 255, .4);
            letter-spacing: .04em;
            max-width: 90px;
            line-height: 1.4;
            transition: color .4s;
        }

        .acq-node.lit .acq-node-label {
            color: rgba(255, 255, 255, .85);
        }

        /* ── Workflow ── */
        .p-workflow-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 860px;
            margin: 0 auto;
        }

        .p-workflow-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;
        }

        .p-workflow-num {
            font-size: 2rem;
            font-weight: 800;
            color: #5E0ED7;
            line-height: 1;
        }

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

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

        /* ── Matrix ── */
        .p-matrix {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 12px;
            overflow: hidden;
        }

        .p-matrix-col {
            background: #0a0a0c;
            padding: 2rem;
        }

        .p-matrix-col.solution {
            background: #121217;
        }

        .p-matrix-col-hdr {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
            margin-bottom: 1.5rem;
            padding-bottom: .75rem;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .p-matrix-col.solution .p-matrix-col-hdr {
            color: #5E0ED7;
        }

        .p-matrix-item {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            font-size: .88rem;
            line-height: 1.55;
            padding: .75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, .04);
            color: rgba(255, 255, 255, .55);
        }

        .p-matrix-item:last-child {
            border-bottom: none;
        }

        .p-matrix-item::before {
            content: "";
            display: block;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: .45rem;
        }

        .p-matrix-col:not(.solution) .p-matrix-item::before {
            background: rgba(239, 68, 68, .6);
        }

        .p-matrix-col.solution .p-matrix-item {
            color: rgba(255, 255, 255, .75);
        }

        .p-matrix-col.solution .p-matrix-item::before {
            background: #22c55e;
        }

        /* ── Capabilities ── */
        .p-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;
        }

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

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

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

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

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

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

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

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

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

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

        @keyframes livePulse {

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

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

        @keyframes nodePulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(94, 14, 215, .4)
            }

            70% {
                box-shadow: 0 0 0 8px rgba(94, 14, 215, 0)
            }
        }

        .acq-node.lit .acq-node-circle {
            animation: nodePulse 2s ease-out infinite;
        }

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

            .p-matrix {
                grid-template-columns: 1fr;
            }

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

            .acq-nodes {
                flex-wrap: wrap;
                gap: 2rem;
                justify-content: center;
            }

            .acq-svg {
                display: none;
            }
        }

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

            .p-workflow-card {
                grid-template-columns: 1fr;
                gap: .5rem;
            }

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

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