/*
 * reports--body-ai-pbi.css
 *
 * Shared SECOND <style> block — was inline + byte-identical across ai-readiness-premium, pbi-health-check before 2026-05-22.
 *
 * sha256 (first 16) of the extracted block: 80daae9f6ed73258
 * Loaded by:
 *   - reports/ai-readiness-premium.html
 *   - reports/pbi-health-check.html
 */

/* ── Hero ── */
        .hc-hero {
            position: relative;
            padding: 9rem 2rem 4rem;
            text-align: center;
            overflow: hidden;
        }

        .hc-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb), .12) 0%, transparent 70%);
            pointer-events: none;
        }

        .hc-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: .7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--garnet-main, var(--accent));
            border: 1px solid rgba(var(--accent-rgb), .3);
            padding: .4rem 1.2rem;
            border-radius: 99px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(8px);
        }

        .hc-badge .pulse {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(0, 255, 136, .4);
            }

            50% {
                opacity: .8;
                box-shadow: 0 0 12px 4px rgba(0, 255, 136, .15);
            }
        }

        .hc-hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 900;
            line-height: 1.08;
            margin-bottom: 1.2rem;
        }

        .hc-hero h1 .accent {
            background: linear-gradient(135deg, var(--accent), #ff4466);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hc-hero .subhead {
            color: rgba(240, 240, 240, .6);
            max-width: 620px;
            margin: 0 auto 2rem;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .hc-price-pill {
            display: inline-flex;
            align-items: baseline;
            gap: 0.4rem;
            background: rgba(var(--accent-rgb), .08);
            border: 1px solid rgba(var(--accent-rgb), .2);
            padding: 0.6rem 1.8rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .hc-price-pill .amount {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.4rem;
            font-weight: 900;
            color: #f0f0f0;
        }

        .hc-price-pill .term {
            font-size: 0.85rem;
            color: rgba(240, 240, 240, .45);
        }

        .hc-cta-group {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .hc-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2.2rem;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.02em;
        }

        .hc-cta-primary {
            background: linear-gradient(135deg, var(--accent), #ff2255);
            color: #fff;
            box-shadow: 0 4px 25px rgba(var(--accent-rgb), .35);
            border: none;
        }

        .hc-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 35px rgba(var(--accent-rgb), .5);
        }

        .hc-cta-secondary {
            background: rgba(255, 255, 255, .05);
            color: var(--text-primary, #f0f0f0);
            border: 1px solid rgba(255, 255, 255, .12);
        }

        .hc-cta-secondary:hover {
            background: rgba(255, 255, 255, .1);
            border-color: rgba(255, 255, 255, .2);
        }

        .hc-trust {
            margin-top: 1.5rem;
            font-size: 0.7rem;
            color: rgba(240, 240, 240, .3);
            letter-spacing: 0.5px;
        }

        /* ── What You Get ── */
        .hc-section {
            padding: 5rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .hc-section-label {
            text-align: center;
            font-size: 0.65rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--garnet-main, var(--accent));
            margin-bottom: 0.75rem;
        }

        .hc-section h2 {
            text-align: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 3rem;
        }

        .hc-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }

        .hc-pillar {
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .hc-pillar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--pillar-color, var(--accent)), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .hc-pillar:hover {
            border-color: rgba(var(--accent-rgb), .25);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
        }

        .hc-pillar:hover::before {
            opacity: 1;
        }

        .hc-pillar-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            display: block;
        }

        .hc-pillar h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .hc-pillar p {
            font-size: 0.8rem;
            color: rgba(240, 240, 240, .5);
            line-height: 1.55;
        }

        .hc-pillar ul {
            list-style: none;
            padding: 0;
            margin: 0.75rem 0 0;
        }

        .hc-pillar ul li {
            font-size: 0.75rem;
            color: rgba(240, 240, 240, .55);
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hc-pillar ul li::before {
            content: '✦';
            color: var(--garnet-main, var(--accent));
            font-size: 0.55rem;
        }

        /* ── How It Works ── */
        .hc-process {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            counter-reset: step;
        }

        .hc-step {
            text-align: center;
            position: relative;
        }

        .hc-step::before {
            counter-increment: step;
            content: counter(step);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid rgba(var(--accent-rgb), .3);
            color: var(--garnet-main, var(--accent));
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            background: rgba(var(--accent-rgb), .06);
        }

        .hc-step h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .hc-step p {
            font-size: 0.78rem;
            color: rgba(240, 240, 240, .5);
            line-height: 1.5;
        }

        /* ── Deliverables ── */
        .hc-deliverables {
            background: rgba(var(--accent-rgb), .04);
            border: 1px solid rgba(var(--accent-rgb), .12);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .hc-deliverables h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .hc-del-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .hc-del-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.65rem 0.75rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .06);
            font-size: 0.8rem;
            color: rgba(240, 240, 240, .7);
        }

        .hc-del-item .check {
            color: #00ff88;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        /* ── FAQ ── */
        .hc-faq {
            max-width: 700px;
            margin: 0 auto;
        }

        .hc-faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            padding: 1.2rem 0;
        }

        .hc-faq-q {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hc-faq-q::after {
            content: '+';
            font-size: 1.2rem;
            color: var(--garnet-text);
            transition: transform 0.3s;
        }

        .hc-faq-item.open .hc-faq-q::after {
            transform: rotate(45deg);
        }

        .hc-faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s;
            font-size: 0.82rem;
            color: rgba(240, 240, 240, .5);
            line-height: 1.6;
        }

        .hc-faq-item.open .hc-faq-a {
            max-height: 200px;
            padding-top: 0.75rem;
        }

        /* ── Final CTA ── */
        .hc-final-cta {
            text-align: center;
            padding: 5rem 2rem 3rem;
            position: relative;
        }

        .hc-final-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 100%, rgba(var(--accent-rgb), .1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hc-final-cta h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .hc-final-cta p {
            color: rgba(240, 240, 240, .5);
            max-width: 500px;
            margin: 0 auto 2rem;
            font-size: 0.9rem;
        }

        .hc-guarantee {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 255, 136, .06);
            border: 1px solid rgba(0, 255, 136, .15);
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            font-size: 0.75rem;
            color: rgba(240, 240, 240, .6);
            margin-top: 1rem;
        }

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

            .hc-deliverables {
                padding: 2rem 1.5rem;
            }
        }
