/* Plan Details Page Styles */
.plan-detail-hero {
    text-align: center;
    margin-bottom: 3.5rem;
}

.plan-detail-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.plan-detail-hero p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.plan-detail-card {
    background: #ffffff;
    border-radius: 2rem;
    border: none;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.plan-detail-header {
    padding: 3.5rem 2rem;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.plan-detail-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.plan-detail-header p {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}

.plan-detail-body {
    padding: 3.5rem 3rem;
}

.plan-detail-section-title {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: #475569;
}

.feature-list li i {
    margin-top: 0.25rem;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.feature-icon-base { color: #10b981; }

.premium-feature-box {
    border-radius: 1.25rem;
    padding: 2rem;
    margin-top: 2.5rem;
    border-left: 4px solid;
}

.premium-feature-box h6 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.premium-feature-box ul {
    margin-bottom: 0;
    color: #475569;
    font-size: 1.05rem;
    padding-left: 1.25rem;
}

.premium-feature-box li {
    margin-bottom: 0.75rem;
}

.plan-detail-actions {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #f1f5f9;
}

.btn-plan-detail {
    padding: 1.1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    text-decoration: none;
}

/* Theme Colors */
.theme-silver .plan-detail-hero h1 { color: #64748b; }
.theme-silver .plan-detail-header { background: linear-gradient(135deg, #94a3b8, #475569); }
.theme-silver .feature-icon { color: #64748b; }
.theme-silver .premium-feature-box { background: #f8fafc; border-color: #64748b; }
.theme-silver .premium-feature-box h6 { color: #334155; }
.theme-silver .btn-primary-action { background: #64748b; color: white; box-shadow: 0 4px 6px -1px rgba(100,116,139,0.3); }
.theme-silver .btn-primary-action:hover { background: #475569; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(100,116,139,0.4); color: white; }

.theme-gold .plan-detail-hero h1 { color: #d97706; }
.theme-gold .plan-detail-header { background: linear-gradient(135deg, #f59e0b, #b45309); }
.theme-gold .feature-icon { color: #d97706; }
.theme-gold .premium-feature-box { background: #fef3c7; border-color: #d97706; }
.theme-gold .premium-feature-box h6 { color: #b45309; }
.theme-gold .btn-primary-action { background: #f59e0b; color: white; box-shadow: 0 4px 6px -1px rgba(245,158,11,0.3); }
.theme-gold .btn-primary-action:hover { background: #b45309; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(245,158,11,0.4); color: white; }

.theme-platinum .plan-detail-hero h1 { color: #6d28d9; }
.theme-platinum .plan-detail-header { background: linear-gradient(135deg, #8b5cf6, #5b21b6); }
.theme-platinum .feature-icon { color: #6d28d9; }
.theme-platinum .premium-feature-box { background: #f3e8ff; border-color: #7c3aed; }
.theme-platinum .premium-feature-box h6 { color: #5b21b6; }
.theme-platinum .btn-primary-action { background: #7c3aed; color: white; box-shadow: 0 4px 6px -1px rgba(124,58,237,0.3); }
.theme-platinum .btn-primary-action:hover { background: #5b21b6; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(124,58,237,0.4); color: white; }

.theme-custom .plan-detail-hero h1 { color: #0f172a; }
.theme-custom .plan-detail-header { background: linear-gradient(135deg, #334155, #020617); }
.theme-custom .feature-icon { color: #0f172a; }
.theme-custom .premium-feature-box { background: #f1f5f9; border-color: #334155; }
.theme-custom .premium-feature-box h6 { color: #0f172a; }
.theme-custom .btn-primary-action { background: #334155; color: white; box-shadow: 0 4px 6px -1px rgba(51,65,85,0.3); }
.theme-custom .btn-primary-action:hover { background: #0f172a; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(51,65,85,0.4); color: white; }

.btn-secondary-action { background: transparent; border: 2px solid #cbd5e1; color: #475569; }
.btn-secondary-action:hover { border-color: #94a3b8; color: #1e293b; background: #f8fafc; }
