/* =========================================
   USER PERSONAS SECTION 👥
   Premium Redesign
   ========================================= */

.personas-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 50% -20%, rgba(212, 244, 88, 0.05) 0%, transparent 70%);
}

.personas-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.personas-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-white, #fff);
    letter-spacing: -0.5px;
}

.personas-section .section-title .highlight {
    background: linear-gradient(135deg, #D4F458 0%, #a8e063 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== PERSONAS GRID ===== */
.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== PERSONA CARD - Dynamic Color Design ===== */
.persona-card {
    /* Default Variables (Lime fallback) */
    --theme-color: #D4F458;
    --theme-glow: rgba(212, 244, 88, 0.4);
    --theme-bg-glow: rgba(212, 244, 88, 0.1);

    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

/* Unique Themes */
.persona-card.entrepreneur {
    --theme-color: #38bdf8;
    /* Cyan Blue */
    --theme-glow: rgba(56, 189, 248, 0.5);
    --theme-bg-glow: rgba(56, 189, 248, 0.15);
}

.persona-card.family {
    --theme-color: #fbbf24;
    /* Warm Amber */
    --theme-glow: rgba(251, 191, 36, 0.5);
    --theme-bg-glow: rgba(251, 191, 36, 0.15);
}

.persona-card.performer {
    --theme-color: #D4F458;
    /* Signature Lime */
    --theme-glow: rgba(212, 244, 88, 0.5);
    --theme-bg-glow: rgba(212, 244, 88, 0.15);
}

/* Top Border Highlight */
.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
    opacity: 0.5;
    transition: all 0.4s ease;
    transform: scaleX(0.5);
}

.persona-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: var(--theme-color);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 60px var(--theme-bg-glow),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.persona-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: 0 0 20px var(--theme-color);
}

/* ===== PERSONA ICON ===== */
.persona-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 32px;
    color: var(--text-gray);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.persona-icon i {
    color: var(--theme-color);
    transition: all 0.4s ease;
    opacity: 0.9;
}

/* Icon Ring */
.persona-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    border: 1px solid var(--theme-color);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

/* Hover State */
.persona-card:hover .persona-icon {
    background: var(--theme-color);
    border-color: var(--theme-color);
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 15px 40px var(--theme-glow);
}

.persona-card:hover .persona-icon i {
    color: #1a1a1a;
    transform: scale(1.2);
}

.persona-card:hover .persona-icon::after {
    opacity: 0.6;
    transform: scale(1.1);
}

/* ===== CARD CONTENT ===== */
.persona-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white, #fff);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.persona-card:hover h3 {
    color: var(--theme-color);
    text-shadow: 0 0 25px var(--theme-glow);
}

.persona-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.persona-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .personas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .personas-section {
        padding: 70px 0;
    }

    .personas-section .section-title {
        font-size: 32px;
    }

    .personas-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .persona-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .personas-section .section-title {
        font-size: 28px;
    }

    .persona-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 24px;
    }

    .persona-card h3 {
        font-size: 20px;
    }

    .persona-card p {
        font-size: 14px;
    }
}