.autoora-subscription-wrap {
    max-width: 1300px;
    margin: 80px auto;
    padding: 20px;
}

.autoora-sub-heading {
    text-align: center;
    margin-bottom: 50px;
}

.autoora-sub-heading h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.autoora-sub-heading p {
    color: #666;
    font-size: 18px;
}

.autoora-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.autoora-sub-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s;
}

.autoora-sub-card:hover {
    transform: translateY(-8px);
}

.featured-plan {
    border: 2px solid #0b66ff;
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0b66ff;
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.plan-desc {
    color: #666;
    min-height: 50px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    margin: 20px 0;
}

.plan-price span {
    font-size: 16px;
    color: #666;
}

.quarter-price {
    margin-bottom: 12px;
    color: #444;
    font-weight: 600;
}

.plan-services {
    margin-bottom: 25px;
    font-weight: 600;
}

.choose-plan-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #0b66ff;
    color: #fff;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.choose-plan-btn:hover {
    background: #0047c6;
    color: white;
}

@media (max-width: 991px) {
    .autoora-sub-grid {
        grid-template-columns: 1fr;
    }
}