﻿.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #002855 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .page-header h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .page-header p {
        font-size: 20px;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

.pricing-section {
    background-color: var(--background);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(1, 31, 63, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(1, 31, 63, 0.15);
        border-color: rgba(255, 107, 53, 0.3);
    }

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
}

    .plan-header h3 {
        color: var(--primary);
        font-size: 28px;
        margin-bottom: 20px;
    }

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 20px;
    color: var(--text);
    font-weight: 500;
}

.amount {
    font-size: 60px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--text);
    font-weight: 500;
}

.price-note {
    color: var(--text);
    font-size: 14px;
    opacity: 0.7;
}

.plan-features {
    margin-bottom: 30px;
}

    .plan-features h4 {
        color: var(--primary);
        margin-bottom: 20px;
        font-size: 18px;
    }

    .plan-features ul {
        list-style: none;
    }

    .plan-features li {
        margin-bottom: 12px;
        color: var(--text);
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .plan-features i {
        color: var(--secondary);
        font-size: 14px;
        margin-top: 4px;
    }

.plan-cta {
    text-align: center;
}

.promotion-banner {
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border: 2px dashed var(--secondary);
}

    .promotion-banner i {
        font-size: 18px;
    }

.plan-cta .btn-large {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cta-note {
    color: var(--text);
    font-size: 12px;
    opacity: 0.7;
}

.comparison-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(1, 31, 63, 0.08);
}

    .comparison-section h3 {
        text-align: center;
        color: var(--primary);
        font-size: 28px;
        margin-bottom: 40px;
    }

.comparison-table {
    overflow-x: auto;
}

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .comparison-table thead {
        background: rgba(1, 31, 63, 0.05);
    }

    .comparison-table th {
        padding: 20px;
        text-align: left;
        color: var(--primary);
        font-weight: 600;
        font-size: 16px;
        border-bottom: 2px solid var(--light-gray);
    }

    .comparison-table tbody tr {
        border-bottom: 1px solid var(--light-gray);
        transition: background-color 0.3s ease;
    }

        .comparison-table tbody tr:hover {
            background-color: rgba(1, 31, 63, 0.02);
        }

    .comparison-table td {
        padding: 18px 20px;
        color: var(--text);
    }

        .comparison-table td:first-child {
            font-weight: 600;
            color: var(--primary);
        }

    .comparison-table i.fa-check {
        color: var(--secondary);
    }

    .comparison-table i.fa-ban {
        color: #ccc;
    }

    .comparison-table i.fa-infinity {
        color: var(--secondary);
    }

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 16px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .amount {
        font-size: 48px;
    }

    .comparison-section {
        padding: 30px 20px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}
