.plan-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.toggle-btn {
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    background: #eee;
    font-weight: 600;
    cursor: pointer;
}

.toggle-btn.active {
    background: #0d6efd;
    color: white;
}

.plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 5px 24px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.plan-header {
    border-bottom: 3px solid;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.plan-header h4 {
    margin: 0;
    font-weight: 700;
}

.plan-subtitle {
    font-size: 13px;
    color: #888;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
}

.icon-feature {
    font-size: 16px;
    color: #0d6efd;
}

.inherit-row {
    font-weight: 600;
    color: #0d6efd;
}

.inherit-row::before {
    content: "➜";
    margin-right: 6px;
}

.feat-value {
    background: #eef0f9;
    color: #4338ca;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.plan-switch-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.plan-switch {
    background: #f3f4f7;
    padding: 4px;
    border-radius: 40px;
    display: flex;
    gap: 2px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.switch-btn {
    border: none;
    background: transparent;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: #666;
    transition: all 0.25s ease;
}

.switch-btn.active {
    background: white;
    color: #111;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.switch-btn:hover {
    color: #111;
}

.price-page {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

/* Highlighted plan */
.recommended-plan {
    border: 2px solid #6c63ff !important;
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Recommended badge */
.recommended-badge {
    font-size: 10px;
    background: #6c63ff;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    letter-spacing: 0.5px;
}

/* Optional hover */
.recommended-plan:hover {
    transform: scale(1.05);
}
.icon-feature {
    color: #6c63ff;
    margin-right: 8px;
    font-size: 16px;
}
