/* Extracted from index_professional.html during portal refactor v1. */

/* ── Professional palette: purple-blue, confident, productive ── */
        :root {
            --pro-accent: #667eea;
            --pro-accent2: #764ba2;
        }

        .hero-pro {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0f172a 0%, #1a1040 50%, #0f172a 100%);
            overflow: hidden;
        }

        .hero-pro::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 65% 55% at 80% 20%, rgba(102, 126, 234, 0.22) 0%, transparent 65%),
                radial-gradient(ellipse 45% 55% at 15% 80%, rgba(118, 75, 162, 0.16) 0%, transparent 65%);
            pointer-events: none;
        }

        .hero-pro .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            opacity: 0.22;
            pointer-events: none;
        }

        .hero-pro .orb-1 {
            width: 420px;
            height: 420px;
            background: #667eea;
            top: -100px;
            right: -80px;
        }

        .hero-pro .orb-2 {
            width: 260px;
            height: 260px;
            background: #764ba2;
            bottom: 30px;
            left: -50px;
        }

        /* Use-case cards */
        .usecase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .usecase-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .usecase-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .usecase-avatar {
            font-size: 2.25rem;
            margin-bottom: 1rem;
            display: block;
        }

        .usecase-role {
            font-size: var(--font-size-xs);
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--pro-accent);
            margin-bottom: 0.5rem;
        }

        .usecase-title {
            font-size: var(--font-size-base);
            font-weight: var(--font-weight-semibold);
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }

        .usecase-desc {
            font-size: var(--font-size-sm);
            color: var(--text-secondary);
            line-height: 1.65;
        }

        .usecase-agents {
            display: flex;
            flex-wrap: wrap;
            gap: 0.375rem;
            margin-top: 1rem;
        }

        .agent-tag {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 9px;
            border-radius: var(--radius-full);
            background: var(--primary-light);
            color: var(--primary);
        }

        /* Agents showcase */
        .agents-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1rem;
            margin-top: 2.5rem;
        }

        .agent-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 1.25rem 1rem;
            text-align: center;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .agent-box:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        .agent-box-icon {
            font-size: 1.75rem;
            margin-bottom: 0.625rem;
            display: block;
        }

        .agent-box-name {
            font-size: var(--font-size-xs);
            font-weight: var(--font-weight-semibold);
            color: var(--text-primary);
        }

        .agent-box-cat {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ROI block */
        .roi-strip {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .roi-box {
            background: linear-gradient(135deg, #fafbff, #f0f4ff);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: var(--radius-md);
            padding: 1.75rem 1.25rem;
            text-align: center;
        }

        .roi-value {
            font-size: var(--font-size-4xl);
            font-weight: var(--font-weight-black);
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.375rem;
        }

        .roi-label {
            font-size: var(--font-size-sm);
            color: var(--text-secondary);
        }

        .roi-note {
            font-size: var(--font-size-xs);
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* Whats included checklist */
        .included-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem 2rem;
            margin-top: 2.5rem;
        }

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

        .included-item {
            display: flex;
            align-items: flex-start;
            gap: 0.625rem;
            font-size: var(--font-size-sm);
            color: var(--text-secondary);
        }

        .included-item svg {
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Pricing highlight card */
        .price-highlight {
            background: var(--gradient-primary);
            border-radius: var(--radius-xl);
            padding: 3rem 2.5rem;
            color: #fff;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
            max-width: 820px;
            margin: 3rem auto 0;
        }

        @media (max-width: 600px) {
            .price-highlight {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .price-highlight-amount {
            font-size: 4rem;
            font-weight: var(--font-weight-black);
            line-height: 1;
        }

        .price-highlight-period {
            font-size: var(--font-size-base);
            opacity: 0.75;
            margin-left: 6px;
        }

        .price-highlight-note {
            font-size: var(--font-size-sm);
            opacity: 0.70;
            margin-top: 0.25rem;
        }

        .price-highlight-title {
            font-size: var(--font-size-2xl);
            font-weight: var(--font-weight-bold);
            margin-bottom: 0.5rem;
        }

        .price-highlight-sub {
            font-size: var(--font-size-sm);
            opacity: 0.80;
            line-height: 1.6;
        }

        /* CTA section */
        .cta-pro {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
            border-radius: var(--radius-xl);
            padding: 4rem 3rem;
            text-align: center;
            color: #fff;
            max-width: 720px;
            margin: 0 auto;
            box-shadow: var(--shadow-xl);
        }

        .cta-pro .cta-title {
            font-size: var(--font-size-3xl);
            font-weight: var(--font-weight-black);
            margin-bottom: 1rem;
            color: #fff;
        }

        .cta-pro .cta-sub {
            font-size: var(--font-size-lg);
            opacity: 0.85;
            margin-bottom: 2rem;
        }

        /* ── Hero text (replaces inline styles) ── */
        .hero-pro .hero-title { color: #fff; }
        .hero-pro .hero-subtitle { color: rgba(255, 255, 255, 0.80); }
        .hero-pro .hero-beta-hint { color: rgba(255, 255, 255, 0.45); }

        /* Agents catalog note */
        .agents-catalog-note {
            text-align: center;
            margin-top: 2rem;
            font-size: var(--font-size-sm);
            color: var(--gray-500);
        }

        /* Price highlight CTA button */
        .btn-pro-cta {
            background: #fff;
            color: var(--primary);
            font-weight: 700;
            margin-top: 1.25rem;
            display: inline-block;
        }
        .btn-pro-cta:hover {
            background: #f0f4ff;
            color: var(--primary);
        }

        /* CTA Pro: action row, note, links */
        .cta-pro-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-pro-note {
            margin-top: 1.5rem;
            font-size: var(--font-size-xs);
            opacity: 0.5;
        }
        .cta-pro-link {
            color: #a5b4fc;
            text-decoration: underline;
        }

        /* Price highlight pricing column */
        .price-highlight-pricing {
            text-align: right;
        }

        /* Marketplace agent-box variant */
        .agent-box-marketplace {
            border-style: dashed;
            opacity: 0.6;
        }
