/* ============================================
   PERSONA PAGE STYLES
   Industry-specific service page enhancements
   ============================================ */

/* Industry Hero Enhancement */
.persona-hero {
    padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, rgba(4, 47, 89, 0.04) 0%, rgba(37, 175, 194, 0.06) 100%);
    position: relative;
    overflow: hidden;
}

.persona-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 175, 194, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.persona-hero-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3xl);
    align-items: center;
}

.persona-hero-content {
    max-width: 660px;
}

.persona-hero-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    flex-shrink: 0;
}

.persona-hero-icon svg {
    width: 72px;
    height: 72px;
}

/* Industry Badge */
.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.375rem 1rem;
    background: rgba(37, 175, 194, 0.1);
    border: 1px solid rgba(37, 175, 194, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.industry-badge svg {
    width: 16px;
    height: 16px;
}

/* Trust Bar */
.trust-bar {
    padding: var(--space-xl) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--gray-200);
}

/* Industry Stats */
.industry-stats {
    padding: var(--space-3xl) 0;
    background: var(--navy);
}

.industry-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.industry-stats .stat-box {
    text-align: center;
    color: var(--white);
}

.industry-stats .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.industry-stats .stat-label {
    font-size: 0.9375rem;
    color: var(--light);
}

/* Pain Points Section */
.pain-points {
    padding: var(--space-5xl) 0;
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.pain-card {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}

.pain-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(243, 22, 30, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--red);
}

.pain-card-icon svg {
    width: 28px;
    height: 28px;
}

.pain-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.pain-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Approach / Process Section */
.persona-process {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

/* Results Section */
.persona-results {
    padding: var(--space-5xl) 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.result-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.result-card-featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}

.result-card-featured h3,
.result-card-featured .result-metric-value {
    color: var(--white);
}

.result-card-featured .result-niche,
.result-card-featured .result-metric-label {
    color: var(--light);
}

.result-header {
    margin-bottom: var(--space-lg);
}

.result-header h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.result-niche {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.result-metrics {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.result-metric {
    text-align: left;
}

.result-metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.result-metric-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background: rgba(37, 175, 194, 0.08);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.pricing-note strong {
    color: var(--navy);
}

/* FAQ Section */
.persona-faq {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--gray-200);
}

.faq-item.active {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    line-height: 1.4;
    gap: var(--space-md);
}

.faq-question:hover {
    color: var(--teal-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--teal);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Related Services */
.related-services {
    padding: var(--space-4xl) 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.related-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.related-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.related-card-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
}

.related-card-icon svg {
    width: 22px;
    height: 22px;
}

.related-card-text h4 {
    font-size: 0.9375rem;
    margin-bottom: 2px;
}

.related-card-text span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-width: var(--container-max);
    margin: 0 auto;
}

.sticky-cta-text {
    flex: 1;
    min-width: 0;
}

.sticky-cta-text span {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--navy);
}

.sticky-cta-text small {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.sticky-cta .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .persona-hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .persona-hero-icon {
        margin: 0 auto var(--space-xl);
        order: -1;
    }

    .persona-hero-content {
        max-width: 100%;
    }

    .service-hero-cta {
        justify-content: center;
    }

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

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

    .results-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar-inner {
        gap: var(--space-lg);
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .persona-hero-icon {
        width: 100px;
        height: 100px;
    }

    .persona-hero-icon svg {
        width: 52px;
        height: 52px;
    }

    .industry-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industry-stats .stat-value {
        font-size: 2rem;
    }

    .pain-cards {
        grid-template-columns: 1fr;
    }

    .sticky-cta {
        display: block;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .persona-hero-icon {
        width: 80px;
        height: 80px;
    }

    .persona-hero-icon svg {
        width: 40px;
        height: 40px;
    }
}
