.page-hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
    border-bottom: 1px solid #E2E8F0;
}

.pricing-card {
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    border-color: #5B3DF5;
    box-shadow: 0 20px 40px rgba(91, 61, 245, 0.15);
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: #5B3DF5;
    background: linear-gradient(135deg, rgba(91, 61, 245, 0.05), rgba(6, 182, 212, 0.05));
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5B3DF5, #06B6D4);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
}

.pricing-desc {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.currency {
    font-size: 18px;
    color: #5B3DF5;
}

.amount {
    font-size: 42px;
    font-weight: 800;
    color: #5B3DF5;
    margin: 0 4px;
}

.period {
    font-size: 14px;
    color: #64748B;
}

.pricing-info {
    color: #64748B;
    font-size: 13px;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #64748B;
    font-size: 14px;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.pricing-features i.fa-check {
    color: #10B981;
}

.pricing-features i.fa-times {
    color: #E2E8F0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: #F8FAFC;
    border-bottom: 2px solid #E2E8F0;
}

.comparison-table th {
    padding: 16px 12px;
    font-weight: 700;
    color: #1E293B;
    text-align: left;
}

.comparison-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #E2E8F0;
    color: #64748B;
}

.comparison-table tbody tr:hover {
    background: #F8FAFC;
}

.btn-outline-primary {
    color: #5B3DF5;
    border: 2px solid #5B3DF5;
}

.btn-outline-primary:hover {
    background: #5B3DF5;
    color: white;
}