/* Shared use-case page styles — referenced by all individual profile pages */
.uc-hero {
    padding-top: 9rem;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.uc-hero .hero-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .18) 0%, transparent 70%);
    z-index: -1
}

.profile-nav-strip {
    display: inline-flex;
    gap: .6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: .75rem 1rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 2rem
}

.profile-nav-strip a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255, 255, 255, .55);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    padding: .4rem .85rem;
    border-radius: 1.5rem;
    transition: all .2s;
    white-space: nowrap
}

.profile-nav-strip a:hover {
    color: white;
    background: rgba(255, 255, 255, .07)
}

.profile-nav-strip a.active {
    background: var(--color-yellow);
    color: #000
}

.profile-nav-strip svg {
    width: 14px;
    height: 14px
}

.nav-dropdown-wrap {
    position: relative
}

.nav-dropdown-wrap>a {
    display: flex;
    align-items: center;
    gap: .3rem
}

.nav-dropdown-wrap>a::after {
    content: '▾';
    font-size: .65rem;
    opacity: .6
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #002244;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: .5rem;
    padding-top: .75rem;
    min-width: 210px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .18s;
    z-index: 2000
}

/* Invisible bridge covers the gap between trigger and dropdown */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .85rem;
    border-radius: 9px;
    color: rgba(255, 255, 255, .75);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap
}

.nav-dropdown a:hover {
    background: rgba(255, 255, 255, .07);
    color: white
}

.nav-dropdown a.active {
    background: rgba(252, 211, 77, .12);
    color: var(--color-yellow)
}

.nav-dropdown a span.dd-icon {
    font-size: 1rem;
    flex-shrink: 0
}

.profile-section {
    padding: 5rem 0
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem
}

.profile-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.profile-icon-wrap svg {
    width: 30px;
    height: 30px
}

.icon-founder {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8)
}

.icon-pm {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9)
}

.icon-corp {
    background: linear-gradient(135deg, #f59e0b, #b45309)
}

.icon-consultant {
    background: linear-gradient(135deg, #10b981, #047857)
}

.icon-cx {
    background: linear-gradient(135deg, #ec4899, #be185d)
}

.profile-tag {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-yellow);
    margin-bottom: .3rem
}

.profile-header h2 {
    margin-bottom: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem)
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.profile-grid.reverse {
    direction: rtl
}

.profile-grid.reverse>* {
    direction: ltr
}

@media(max-width:900px) {

    .profile-grid,
    .profile-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2.5rem
    }
}

.persona-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 2rem
}

.persona-box .persona-name {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem
}

.persona-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0
}

.persona-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .15rem
}

.persona-box .persona-role {
    font-size: .8rem;
    color: var(--color-text-gray)
}

.persona-box .quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-gray);
    line-height: 1.6;
    border-left: 3px solid var(--color-yellow);
    padding-left: 1rem
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    transition: border-color .2s
}

.workflow-step:hover {
    border-color: rgba(252, 211, 77, .3)
}

.step-num-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(252, 211, 77, .15);
    color: var(--color-yellow);
    font-weight: 700;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.workflow-step h5 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .2rem;
    color: white
}

.workflow-step p {
    font-size: .82rem;
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.5
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 2rem
}

.benefit-pill {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .9rem 1rem;
    background: rgba(252, 211, 77, .04);
    border: 1px solid rgba(252, 211, 77, .15);
    border-radius: 10px
}

.benefit-pill svg {
    width: 16px;
    height: 16px;
    color: var(--color-yellow);
    flex-shrink: 0;
    margin-top: 2px
}

.benefit-pill p {
    font-size: .82rem;
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.4
}

.benefit-pill strong {
    color: white
}

@media(max-width:600px) {
    .benefits-grid {
        grid-template-columns: 1fr
    }
}

.media-panel {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    background: #000;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
    aspect-ratio: 16/9
}

.media-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.result-card {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(252, 211, 77, .08), rgba(252, 211, 77, .02));
    border: 1px solid rgba(252, 211, 77, .25);
    border-radius: 14px;
    padding: 1.4rem 1.6rem
}

.result-card .result-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-yellow);
    margin-bottom: .5rem
}

.result-card p {
    font-size: .9rem;
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.6
}

.result-card strong {
    color: white
}

.platform-features-section {
    padding: 6rem 0;
    background: rgba(37, 99, 235, .04);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

@media(max-width:800px) {
    .pf-grid {
        grid-template-columns: 1fr
    }
}

.pf-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    transition: border-color .2s, transform .2s
}

.pf-card:hover {
    border-color: rgba(252, 211, 77, .25);
    transform: translateY(-2px)
}

.pf-card-featured {
    border-color: rgba(16, 185, 129, .3);
    background: linear-gradient(135deg, rgba(16, 185, 129, .06), rgba(4, 120, 87, .03))
}

.pf-card-featured:hover {
    border-color: rgba(16, 185, 129, .5)
}

.pf-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pf-card-icon svg {
    width: 24px;
    height: 24px
}

.pf-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: white;
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap
}

.pf-card-body p {
    font-size: .875rem;
    color: var(--color-text-gray);
    line-height: 1.65;
    margin: 0 0 1rem
}

.pf-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.pf-feature-tags span {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: .25rem .65rem;
    border-radius: 2rem
}

.pf-badge-new {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(16, 185, 129, .2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, .3);
    padding: .2rem .6rem;
    border-radius: 2rem;
    vertical-align: middle
}

.uc-cta {
    padding: 6rem 0;
    text-align: center;
    background: rgba(0, 0, 0, .2)
}

.uc-cta h2 {
    margin-bottom: 1rem
}

.uc-cta p {
    color: var(--color-text-gray);
    max-width: 550px;
    margin: 0 auto 2.5rem
}

.cta-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}