/* Section */
.pricing-preview {
    background: #ffffff;
    padding: 100px 20px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 120px;
}

/* LEFT CARD */
.pricing-card {
    flex: 1;
    max-width: 500px;
    background: #ffffff;
    border-radius: 48px;
    padding: 40px;
    border: 30px solid #ecf2fd;
}

.pricing-role {
    text-align: center;
    font-size: 28px;
    color: #003451;
    margin-bottom: 25px;
}

/* inner box */
.pricing-box {
    background: #f6f4fa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
    color: #2f4f60;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

/* total */
.pricing-total {
    background: #f5f0fd;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.pricing-total span {
    display: block;
    font-size: 15px;
    color: #2f4f60;
    margin-bottom: 10px;
}

.pricing-total h2 {
    font-size: 28px;
    color: #123b52;
}

/* RIGHT CONTENT */
.pricing-content {
    flex: 1;
}

.pricing-title {
    font-size: 44px;
    color: #003451;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pricing-text {
    font-size: 18px;
    color: #003451;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 520px;
}

.pricing-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #2f5fd0;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .pricing-preview {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .pricing-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }

    .pricing-text {
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 30px;
    }

    .pricing-card {
        padding: 25px;
        border-width: 16px;
    }
}
