.pricing-section {
    padding: 50px 20px;
}

.pricing-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    border: 1px solid #e5e7ff;
}

.pricing-card.popular {
    border: 2px solid #2c89bb !important;
}

.popular-label {
    top: -14px !important;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c89bb;
}

.btn_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e5e9f2;
    color: #2c89bb;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* h3 {
    font-size: 22px;
    margin-bottom: 6px;
} */

.subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 5px;
}

.currency {
    font-size: 16px;
}

.amount {
    font-size: 36px;
    font-weight: bold;
}

.duration {
    font-size: 14px;
    color: #555;
}

.free {
    color: #111;
    font-weight: bold;
    margin-bottom: 15px;
}

/* .btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
} */

/* .btn.outline {
    background: #fff;
    border: 2px solid #6c4df7;
    color: #6c4df7;
    justify-content: center;
} */

/* .btn.solid {
    background: #6c4df7;
    color: #fff;
    border: none;
    justify-content: center;
} */

.small {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.benefits-list {
    list-style: none;
    margin-bottom: 15px;
}

.benefits-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

.section-title {
    font-weight: bold;
    margin-bottom: 10px;
}

li.check::before {
    content: "\2713";
    color: green;
    margin-right: 8px;
}

li.uncheck::before {
    content: "\2A09";
    color: #fd0000;
    margin-right: 8px;
}

.plan_btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
    font-weight: 600;
}

.plan_btn.plan_btn_outline {
    background: #fff;
    border: 1px solid #2c89bb;
    color: #2c89bb;
    justify-content: center;
}

.plan_btn.plan_btn_solid {
    background: #2c89bb;
    color: #fff;
    border: none;
    justify-content: center;
}

.plan_btn_outline:hover {
    background-color: #2c89bb;
    color: #fff;
}