/* ===== PRICING PAGE - ENTERPRISE DESIGN ===== */
.pricing-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .pricing-container {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pricing-container {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1280px) {
    .pricing-container {
        padding: 4rem 2.5rem;
    }
}

/* ===== HERO SECTION ===== */
.pricing-hero {
    text-align: center;
    margin-bottom: 5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 20px;
}

.pricing-hero__title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #3730a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.pricing-hero__subtitle {
    font-size: 1.5rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .pricing-hero__title {
        font-size: 4rem;
    }
    
    .pricing-hero__subtitle {
        font-size: 1.75rem;
    }
}

/* ===== PRICING CARDS ===== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        max-width: 1200px;
    }
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    height: auto;
}

.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.2);
}

.pricing-card--free:hover {
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.15), 0 10px 10px -5px rgba(16, 185, 129, 0.08);
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(16, 185, 129, 0.6);
}



.pricing-card--free:hover::after {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}

.pricing-card--featured {
    background: #ffffff !important;
    border: 2px solid #3b82f6;
    position: relative;
    transform: translateY(-8px) scale(1.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card--featured::after {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}

.pricing-card--featured:hover {
    box-shadow: 0 25px 30px -5px rgba(59, 130, 246, 0.2), 0 15px 15px -5px rgba(59, 130, 246, 0.1);
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(59, 130, 246, 0.8);
}

.pricing-card--featured:hover::after {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.6);
}

.pricing-card--free {
    background: #ffffff !important;
    border: 2px solid #10b981 !important;
    position: relative !important;
    transform: translateY(-8px) scale(1.02) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}



.pricing-card--free::after {
    content: 'Free';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}

/* Free card badge - removed duplicate class */

.pricing-card__header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-card__subtitle {
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card__feature {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    color: #2d3748;
    border-bottom: 1px solid #f7fafc;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-card__feature:last-child {
    border-bottom: none;
}

.pricing-card__feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: #10b981;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 0.2));
}

.pricing-card__feature-icon--disabled {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: #cbd5e0;
    flex-shrink: 0;
    opacity: 0.6;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-card__feature--disabled {
    opacity: 0.6;
    color: #9ca3af;
}

/* ===== PRICING TABLE ===== */
.pricing-table-section {
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

/* Top border removed for cleaner design */

.pricing-table__title {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.pricing-table th {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
    color: #2d3748;
    border: 1px solid #e2e8f0;
    font-size: 1.1rem;
}

.pricing-table td {
    padding: 1.25rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 1rem;
}

.pricing-table tbody tr:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.pricing-table__price {
    font-weight: 600;
    color: #0ea5e9;
}

.pricing-table__price--highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #dbeafe 100%);
    color: #1e40af;
    font-weight: 700;
    position: relative;
}

.pricing-table__price--highlight::after {
    content: '💰 Best Value';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-weight: 600;
}

/* ===== FEATURES COMPARISON ===== */
.features-comparison {
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

/* Top border removed for cleaner design */

.features-comparison__title {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border: 1px solid #e2e8f0;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    width: 60%;
}

.comparison-table th:not(:first-child) {
    text-align: center;
    width: 20%;
}

.comparison-table td {
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 1rem;
}

.comparison-table td:first-child {
    font-weight: 500;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    transform: scale(1.005);
    transition: all 0.2s ease;
}

.feature-check {
    color: #10b981;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(16, 185, 129, 0.2);
    filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 0.3));
}

.feature-cross {
    color: #f87171;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .pricing-container {
        padding: 3rem 1.5rem;
    }
    
    .pricing-hero__title {
        font-size: 2.5rem;
    }
    
    .pricing-hero__subtitle {
        font-size: 1.25rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .pricing-card {
        padding: 2.5rem;
    }
    
    .pricing-table__title,
    .features-comparison__title {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 2rem 1rem;
    }
    
    .pricing-hero {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .pricing-hero__title {
        font-size: 2rem;
    }
    
    .pricing-hero__subtitle {
        font-size: 1.125rem;
    }
    
    .pricing-cards {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-table-section,
    .features-comparison {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .pricing-table,
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .pricing-table__title,
    .features-comparison__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 1.5rem 1rem;
    }
    
    .pricing-hero__title {
        font-size: 1.75rem;
    }
    
    .pricing-hero__subtitle {
        font-size: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-table-section,
    .features-comparison {
        padding: 1.5rem;
    }
    
    .pricing-table th,
    .pricing-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
      .pricing-table__title,
    .features-comparison__title {
        font-size: 1.25rem;
    }
}

/* ===== CONTACT PRICE STYLING ===== */
.contact-price {
    font-weight: 600 !important;
    text-align: center !important;
    color: #6b7280 !important;
    font-style: italic !important;
}
