/**
 * Pricing Page Styles
 * Psychology-optimized design for conversion
 */

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 1️⃣ ABOVE-THE-FOLD: FRAME THE DECISION */
.pricing-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111827;
}

.pricing-hero .subheadline {
    font-size: 20px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* 2️⃣ VALUE RECAP */
.value-recap-section {
    background: #F9FAFB;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: center;
}

.value-recap-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #111827;
}

.value-recap-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.value-recap-list li {
    padding: 16px;
    background: white;
    border-radius: 8px;
    font-size: 16px;
    color: #374151;
    border: 2px solid #E5E7EB;
}

.bridge-line {
    font-size: 18px;
    color: #374151;
    line-height: 1.6;
    max-width: 600px;
    margin: 24px auto 0;
}

/* 3️⃣ PRICING TABLE (THE HEART) */
.pricing-table-section {
    margin-bottom: 60px;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pricing-plan {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-plan.featured {
    border-color: #8B5CF6;
    border-width: 3px;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

.pricing-plan.featured::before {
    content: "⭐ Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #EC4899 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.plan-price {
    margin-bottom: 8px;
}

.plan-price-main {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
}

.plan-price-period {
    font-size: 16px;
    color: #6B7280;
}

.plan-price-value {
    font-size: 14px;
    color: #10B981;
    font-weight: 600;
    margin-top: 4px;
}

.plan-best-for {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 24px;
    font-style: italic;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.plan-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 18px;
}

.plan-cta {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.plan-cta.primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #EC4899 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.plan-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.plan-cta.secondary {
    background: white;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
}

.plan-cta.secondary:hover {
    background: #F9FAFB;
}

.plan-cta.tertiary {
    background: #F9FAFB;
    color: #374151;
    border: 2px solid #E5E7EB;
}

.plan-cta.tertiary:hover {
    background: #F3F4F6;
}

/* 4️⃣ COMPARISON TABLE */
.comparison-section {
    margin-bottom: 60px;
}

.comparison-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
    color: #111827;
}

.comparison-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.comparison-table th {
    text-align: left;
    padding: 16px;
    font-weight: 600;
    color: #111827;
    border-bottom: 2px solid #E5E7EB;
}

.comparison-table th:first-child {
    width: 200px;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #F3F4F6;
    color: #374151;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    font-weight: 500;
    color: #111827;
}

.comparison-table .check {
    color: #10B981;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.comparison-table .x {
    color: #9CA3AF;
    text-align: center;
}

.comparison-table .highlight {
    background: #F9FAFB;
    font-weight: 600;
}

/* 5️⃣ FUTURE PACING */
.future-pacing-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 60px;
}

.future-pacing-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.future-pacing-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    max-width: 700px;
    margin: 0 auto;
}

/* 6️⃣ OBJECTION HANDLING */
.objection-handling-section {
    margin-bottom: 60px;
}

.objection-handling-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
    color: #111827;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

/* 7️⃣ TRUST & SAFETY SIGNALS */
.trust-signals-section {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 60px;
}

.trust-line {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.trust-stats {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* 8️⃣ FINAL CTA */
.final-cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #F9FAFB;
    border-radius: 12px;
    margin-bottom: 60px;
}

.final-cta-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #111827;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #EC4899 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #8B5CF6;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #8B5CF6;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #F9FAFB;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 40px;
    color: #6B7280;
}

/* Responsive Design */
@media (max-width: 968px) {
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
    }
    
    .comparison-table-container {
        padding: 16px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 36px;
    }
    
    .pricing-hero .subheadline {
        font-size: 18px;
    }
    
    .value-recap-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

