/* Pricing Page - Proton Mail Exact Match */
.pricing-page {
    padding: 80px 0;
    background: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 20px;
    color: #64748b;
}

.pricing-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.billing-cycle-toggle {
    display: flex;
    gap: 8px;
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
}

.cycle-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.cycle-btn.active {
    background: white;
    color: #1e293b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cycle-badge {
    position: absolute;
    top: -8px;
    right: 8px;
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.currency-selector {
    display: flex;
    align-items: center;
}

.currency-select {
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #1e293b;
    font-size: 14px;
    cursor: pointer;
}

/* Plan Cards */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-modern {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card-modern:hover {
    border-color: #6D4AFF;
    box-shadow: 0 8px 24px rgba(109, 74, 255, 0.1);
    transform: translateY(-4px);
}

.pricing-card-modern.featured {
    border-color: #6D4AFF;
    background: #f0f4ff;
    box-shadow: 0 8px 24px rgba(109, 74, 255, 0.15);
}

.plan-badge-modern {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6D4AFF;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header-modern {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.plan-name-modern {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.plan-price-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.price-amount-modern {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
}

.price-period-modern {
    font-size: 14px;
    color: #64748b;
}

.plan-features-modern ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features-modern li {
    padding: 12px 0;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.plan-features-modern li:last-child {
    border-bottom: none;
}

.plan-features-modern li i {
    color: #10b981;
    font-size: 18px;
    width: 24px;
    flex-shrink: 0;
}

/* Feature Comparison Table */
.feature-comparison {
    margin-top: 100px;
    margin-bottom: 80px;
}

.comparison-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: #f8f9fa;
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table th:first-child {
    font-weight: 700;
}

.comparison-table td {
    padding: 16px 24px;
    font-size: 14px;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 500;
}

.comparison-table i.bi-check {
    color: #10b981;
    font-size: 20px;
}

.comparison-table i.bi-x {
    color: #cbd5e1;
    font-size: 20px;
}

/* Included Features */
.pricing-cta {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 80px;
}

.pricing-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.included-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.included-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.included-feature i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6D4AFF, #8B6FFF);
    border-radius: 12px;
    color: white;
    font-size: 24px;
}

.included-feature span {
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .included-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 32px;
    }
    
    .pricing-subtitle {
        font-size: 18px;
    }
    
    .pricing-controls {
        flex-direction: column;
    }
    
    .comparison-table-wrapper {
        border-radius: 0;
    }
    
    .included-features {
        grid-template-columns: 1fr;
    }
}

