/**
 * Mentora Services/Pricing Page Styles
 * Version: 1.0.0
 * Author: Mentora Academy
 */

/* Reset & Container */
#mentora-pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f9fafb;
}

/* Social Proof Banner */
.social-proof-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.social-proof-banner svg {
    flex-shrink: 0;
}

/* Header Section */
.mentora-header-section {
    text-align: center;
    margin-bottom: 50px;
}

.mentora-header-section h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111827;
}

.mentora-header-section p {
    font-size: 18px;
    color: #6b7280;
}

/* Category Toggle */
.mentora-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.mentora-toggle-pill {
    background: #e5e7eb;
    padding: 4px;
    border-radius: 8px;
    display: inline-flex;
}

.mentora-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    color: #4b5563;
    transition: all 0.2s ease;
}

.mentora-btn:hover {
    background: rgba(37, 99, 235, 0.1);
}

.mentora-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Grid System - Responsive 3-Column Layout */
.mentora-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.mentora-grid-container.fade-out {
    opacity: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .mentora-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mentora-grid-container {
        grid-template-columns: 1fr;
    }
    
    #mentora-pricing-wrapper {
        padding: 40px 16px;
    }
    
    .mentora-header-section h1 {
        font-size: 28px;
    }
}

/* Service Cards */
.mentora-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mentora-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mentora-card.highlighted {
    border: 2px solid #3b82f6;
    transform: scale(1.02);
    z-index: 10;
}

.mentora-card.highlighted:hover {
    transform: scale(1.02) translateY(-2px);
}

/* Badge */
.mentora-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Trust Badge (for Solo Pass Premium) */
.mentora-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10B981;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
}

.mentora-trust-badge svg {
    flex-shrink: 0;
}

/* Card Header */
.card-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #111827;
}

/* Price Anchoring (for Solo Pass) */
.price-anchoring {
    text-align: center;
    margin-bottom: 8px;
}

.price-anchoring .original-value {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
}

.price-anchoring del {
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 600;
}

.price {
    margin: 12px 0;
}

.price .amount {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
}

.price .currency {
    font-size: 16px;
    color: #6b7280;
    margin-left: 4px;
}

.subtext {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 16px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    color: #10B981;
    flex-shrink: 0;
    margin-right: 10px;
    margin-top: 2px;
}

/* Make numbers and premium indicators bold */
.feature-list li span strong,
.feature-list li span b {
    font-weight: 700;
    color: #111827;
}

/* Highlight key numbers (6000+, etc.) */
.feature-list li span {
    font-weight: 400;
}

/* Card Footer & CTA */
.card-footer {
    margin-top: auto;
}

.cta-button {
    display: block;
    width: 100%;
    background: #2563eb;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.cta-button:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cta-button.loading::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Risk Reversal Copy */
.risk-reversal {
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    padding: 8px 12px;
    margin-bottom: 12px;
    border-radius: 4px;
}

.risk-reversal small {
    font-size: 11px;
    line-height: 1.4;
    color: #92400e;
    display: block;
}

/* High Conversion CTA */
.cta-button.cta-high-conversion {
    background: #10B981;
    font-size: 16px;
    padding: 14px 12px;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
}

.cta-button.cta-high-conversion:hover {
    background: #059669;
    box-shadow: 0 6px 8px -1px rgba(16, 185, 129, 0.4);
}

.login-note {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
}
