.elementor-5355 .elementor-element.elementor-element-cf1be7e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-744e688 */.evol-plans-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* your existing styles */
}

/* When filtering to a single card, center it */
.evol-plan-card[data-plan] {
    justify-self: center;
    max-width: 100%;
}
/* ============================================
   EVOLBODY PLANS PAGE CSS
   Page-specific styles only
   ============================================ */

/* ============================================
   TRAINING TYPE TOGGLE (Standard / VIP)
   ============================================ */
.evol-type-section {
    text-align: center;
    margin-bottom: 50px;
}

.evol-type-toggle {
    display: inline-flex;
    background: var(--evol-bg-secondary);
    border: 2px solid var(--evol-border-card);
    border-radius: 16px;
    padding: 5px;
    gap: 4px;
    margin-top: 20px;
}

.evol-type-btn {
    position: relative;
    padding: 12px 32px;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    background: transparent;
    color: var(--evol-text-muted);
    letter-spacing: 0.3px;
}

.evol-type-btn:hover {
    color: var(--evol-text-primary);
}

.evol-type-btn.evol-active {
    background: linear-gradient(135deg, var(--evol-bg-tertiary) 0%, #333 100%);
    color: var(--evol-text-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.evol-type-btn[data-type="vip"].evol-active {
    background: linear-gradient(135deg, var(--evol-primary-gold) 0%, var(--evol-primary-gold-hover) 100%);
    color: var(--evol-bg-primary);
    box-shadow: 0 4px 20px rgba(250, 241, 178, 0.3);
}

.evol-type-vip-badge {
  /*  display: inline-block;*/
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--evol-primary-gold);
    color: var(--evol-bg-primary);
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.evol-type-btn[data-type="vip"].evol-active .evol-type-vip-badge {
    background: var(--evol-bg-primary);
    color: var(--evol-primary-gold);
}

/* VIP Info Callout */
.evol-vip-callout {
    max-width: 640px;
    margin: 20px auto 0;
    background: linear-gradient(135deg, rgba(250, 241, 178, 0.06) 0%, rgba(250, 241, 178, 0.02) 100%);
    border: 1px solid var(--evol-border-subtle);
    border-radius: 14px;
    padding: 18px 24px;
    display: none;
    text-align: left;
    gap: 14px;
    align-items: flex-start;
    animation: evolFadeInUp 0.4s ease-out both;
}

.evol-vip-callout.evol-visible {
    display: flex;
}

.evol-vip-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  /*  background: linear-gradient(135deg, var(--evol-primary-gold) 0%, var(--evol-primary-gold-hover) 100%);*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: 2px;
}

.evol-vip-callout-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--evol-primary-gold);
    margin-bottom: 4px;
}

.evol-vip-callout-text p {
    font-size: 13px;
    color: var(--evol-text-secondary);
    line-height: 1.6;
}

/* ============================================
   VIP CARD STYLING
   ============================================ */
.evol-plan-card.evol-vip-card {
    border-color: rgba(250, 241, 178, 0.25);
    background: linear-gradient(135deg, rgba(250, 241, 178, 0.04) 0%, var(--evol-bg-tertiary) 100%);
}

.evol-plan-card.evol-vip-card::before {
    background: linear-gradient(90deg, var(--evol-primary-gold), #fff, var(--evol-primary-gold));
    transform: scaleX(1);
}

/* VIP label on cards */
.evol-plan-vip-label {
    display: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--evol-bg-primary);
    background: var(--evol-primary-gold);
    padding: 3px 8px;
    border-radius: 5px;
    margin-left: 8px;
    vertical-align: middle;
}

.evol-vip-active .evol-plan-vip-label {
    display: inline;
}

/* VIP-exclusive features (hidden by default, shown when VIP active) */
.evol-vip-feature {
    display: none;
}

.evol-vip-active .evol-vip-feature {
    display: list-item;
}

.evol-vip-feature::after {
    content: 'VIP';
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--evol-primary-gold);
    color: var(--evol-bg-primary);
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

/* ============================================
   PLAN FACT TEXT
   ============================================ */
.evol-plan-fact {
    font-size: 12px;
    color: var(--evol-primary-gold);
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 8px 12px;
    background: rgba(250, 241, 178, 0.06);
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid var(--evol-primary-gold);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.evol-faq-section {
    padding: 80px 20px 100px;
    max-width: 800px;
    margin: 0 auto;
}

.evol-faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evol-faq-item {
    background: var(--evol-bg-secondary);
    border: 1px solid var(--evol-border-card);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.evol-faq-item:hover {
    border-color: rgba(250, 241, 178, 0.2);
}

.evol-faq-question {
    padding: 10px 24px 0;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
    margin-bottom: 0;
    color: var(--evol-primary-gold);
}

.evol-faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--evol-primary-gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.evol-faq-item.evol-open .evol-faq-question::after {
    content: '−';
}

.evol-faq-item.evol-open .evol-faq-question {
    color: var(--evol-primary-gold);
}

.evol-faq-answer {
    font-size: 14px;
    color: var(--evol-text-secondary);
    line-height: 1.7;
    padding: 8px 24px 10px;
    max-height: 3.4em;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.evol-faq-item.evol-open .evol-faq-answer {
    max-height: 300px;
    -webkit-mask-image: none;
    mask-image: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .evol-type-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .evol-vip-callout {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}/* End custom CSS */