/* ===== Hero Persona Section ===== */
.hero-persona {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    padding: 80px 0;
}

.hero-content {
    text-align: center;
}

.persona-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 60px;
}

.persona-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

.persona-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.persona-info h1 {
    font-size: 48px;
    margin-bottom: 8px;
}

.persona-title {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.persona-bio {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.stat-card i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}