/* Shared page hero — matches Contact Us (jb-contact-hero) */

.jb-page-hero {
    position: relative;
    padding: 48px 0 56px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.jb-page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(30, 64, 175, 0.1), transparent),
        radial-gradient(ellipse 40% 30% at 100% 50%, rgba(14, 165, 233, 0.06), transparent);
    pointer-events: none;
}

.jb-page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 64, 175, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
    pointer-events: none;
}

.jb-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.jb-page-hero-title {
    font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--ink, #0f172a);
    margin: 16px 0 12px;
}

.jb-page-hero-lead {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted, #64748b);
    margin: 0 auto;
    max-width: 560px;
}

.jb-page-hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Eyebrow pill — matches Contact Us */
.jb-page-hero .jb-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    padding: 6px 8px 6px 16px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.06);
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: normal;
    text-transform: none;
}

.jb-page-hero .jb-eyebrow-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
    opacity: 1;
}

@media (max-width: 767px) {
    .jb-page-hero {
        padding: 40px 0 48px;
    }
}
