/* Extracted CSS for pages/gohighlevel/setup/index.html */
body {
            background-color: var(--color-bg-dark);
            color: var(--color-text-primary);
        }

        .sub-hero-bg {
            position: relative;
            background-color: var(--color-bg-dark);
            overflow: hidden;
        }

        .sub-mesh-glow {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background: radial-gradient(ellipse 70% 50% at 75% 20%, rgba(94, 14, 215, 0.22) 0%, transparent 70%), radial-gradient(ellipse 45% 35% at 15% 80%, rgba(94, 14, 215, 0.12) 0%, transparent 60%);
        }

        .sub-grid-lines {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
        }

        .section-rule {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            margin: 0;
        }

        /* Feature Split Layouts */
        .sub-feature-section {
            padding: clamp(6rem, 12vh, 10rem) 0;
            background: var(--color-bg-dark);
        }

        .sub-feature-section.alt-bg {
            background: var(--color-bg-dark-secondary);
        }

        .sub-feature-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(4rem, 8vw, 8rem);
            align-items: center;
        }

        .sub-feature-layout.reverse {
            direction: rtl;
        }

        .sub-feature-layout.reverse>* {
            direction: ltr;
        }

        .sub-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--color-accent-purple);
            margin-bottom: 1.5rem;
        }

        .sub-eyebrow::before {
            content: '';
            display: block;
            width: 20px;
            height: 1.5px;
            background: var(--color-accent-purple);
            border-radius: 2px;
        }

        .sub-title {
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            color: var(--color-text-primary);
            margin-bottom: 2rem;
        }

        .sub-title .line {
            display: block;
            overflow: hidden;
            padding-bottom: 0.06em;
        }

        .sub-body {
            color: var(--color-text-secondary);
            font-size: clamp(0.95rem, 1.15vw, 1.08rem);
            line-height: 1.8;
            margin-bottom: 1.75rem;
        }

        .sub-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 3rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .sub-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .sub-list li:last-child {
            border-bottom: none;
        }

        .sub-list li::before {
            content: '';
            display: block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--color-accent-purple);
            flex-shrink: 0;
            box-shadow: 0 0 6px rgba(94, 14, 215, 0.6);
        }

        .sub-visual-panel {
            background: var(--color-bg-dark-tertiary);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--border-radius-lg);
            padding: clamp(3rem, 5vw, 4.5rem);
            min-height: 440px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .sub-visual-panel::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -30%;
            width: 70%;
            height: 70%;
            background: radial-gradient(circle, rgba(94, 14, 215, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .sub-visual-panel svg {
            width: 100%;
            height: auto;
            max-height: 360px;
        }

        /* Comparison Matrix Table */
        .comparison-section {
            padding: clamp(6rem, 12vh, 10rem) 0;
            background: var(--color-bg-dark-secondary);
        }

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

        .table-responsive {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--border-radius-md);
        }

        .matrix-table {
            width: 100%;
            min-width: 650px;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--color-bg-dark);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--border-radius-md);
            overflow: hidden;
        }

        .matrix-table th,
        .matrix-table td {
            padding: 1.25rem 1.75rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.95rem;
            transition: background 0.3s ease;
        }

        .matrix-table th {
            background: rgba(255, 255, 255, 0.03);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.8rem;
            color: var(--color-text-primary);
        }

        .matrix-table td:first-child {
            font-weight: 600;
            color: var(--color-text-primary);
            width: 30%;
        }

        .matrix-table td.snapshot-col {
            color: rgba(255, 100, 100, 0.85);
            background: rgba(255, 50, 50, 0.02);
        }

        .matrix-table td.solvevare-col {
            color: rgba(120, 220, 150, 0.95);
            background: rgba(94, 14, 215, 0.05);
            font-weight: 600;
        }

        .matrix-table tr:hover td {
            background: rgba(255, 255, 255, 0.03);
        }

        .matrix-table tr:hover td.snapshot-col {
            background: rgba(255, 50, 50, 0.05);
        }

        .matrix-table tr:hover td.solvevare-col {
            background: rgba(94, 14, 215, 0.1);
        }

        .matrix-table tr:last-child td {
            border-bottom: none;
        }

        /* Grid of Deliverables */
        .deliverables-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--border-radius-md);
            overflow: hidden;
            margin-top: 4rem;
        }

        .deliv-card {
            background: var(--color-bg-dark);
            padding: 2.5rem 2rem;
            position: relative;
            transition: background 0.4s var(--ease-premium);
        }

        .deliv-card:hover {
            background: var(--color-bg-dark-secondary);
        }

        .deliv-num {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: var(--color-accent-purple);
            margin-bottom: 1.5rem;
        }

        .deliv-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 0.75rem;
        }

        .deliv-desc {
            font-size: 0.88rem;
            line-height: 1.65;
            color: var(--color-text-secondary);
        }

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

            .sub-feature-layout.reverse {
                direction: ltr;
            }

            .sub-visual-panel {
                order: -1;
                min-height: 320px;
            }

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

        @media (max-width: 768px) {
            .deliverables-grid {
                grid-template-columns: 1fr;
            }

            .matrix-table th,
            .matrix-table td {
                padding: 0.85rem 1rem;
                font-size: 0.85rem;
            }
        }