/* Pricing Feature Accordion Styles */
.pricing-feature-item {
    background: var(--z-dark);
    /* Keep dark theme */
    color: white;
    padding: 12px 20px;
    margin-bottom: 5px;
    /* Reduced margin for attached feel if expanded */
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    /* Change to pointer */
    transition: background 0.3s;
    user-select: none;
}

.pricing-feature-item:hover {
    background: #1a2542;
}

/* Disable pseudo-element for dropdowns as we use explicit icon now */
.pricing-feature-item.has-dropdown::after {
    content: none !important;
}

.dropdown-icon {
    font-size: 12px;
    color: #4fe3d7;
    transition: transform 0.3s ease;
}

.pricing-feature-item.expanded .dropdown-icon {
    transform: rotate(180deg);
}

.pricing-sub-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s;
    opacity: 0;
}

.pricing-sub-list.open {
    max-height: 500px;
    /* Arbitrary large height */
    opacity: 1;
    border: 1px solid #e0e0e0;
}

.pricing-sub-item {
    padding: 10px 20px;
    color: #555;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.pricing-sub-item:last-child {
    border-bottom: none;
}

.pricing-sub-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #4fe3d7;
    border-radius: 50%;
    margin-right: 10px;
}