/* ===============================================
   ENHANCED PRICING CARDS STYLES (MINIMAL REDESIGN)
   =============================================== */

.challenges-section {
    position: relative;
    padding: 6rem 0;
    overflow: visible;
}

.challenges-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.challenges-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
}

/* Minimal Tabs */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.minimal-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    padding-bottom: 5px;
}

/* Bottom line for tabs */
.minimal-tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 99px;
    z-index: 1;
}

.tab-option {
    background: #f9fafb;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #9ca3af;
    position: relative;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.tab-option:hover {
    color: #4b5563;
}

.tab-option.active {
    color: #2563eb;
    font-weight: 700;
}

.tab-option.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2563eb;
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1rem;
    justify-items: center;
}

/* Enhanced Pricing Card (Minimal Redesign) */
.pricing-card-enhanced {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Hover Effect: Subtle Lift */
.pricing-card-enhanced:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Featured Card Style */
.pricing-card-enhanced.featured {
    border: 2px solid #7759fa;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
    transform: scale(1.02);
    z-index: 10;
}

.pricing-card-enhanced.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Card Badges - Minimal */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.card-badge.starter {
    background: #ecfdf5;
    color: #059669;
}

.card-badge.pro {
    background: #f5f3ff;
    color: #7c3aed;
}

.card-badge.elite {
    background: #fffbeb;
    color: #d97706;
}

/* Popular Badge - Minimal Pill */
.popular-badge-new {
    position: absolute;
    top: -16px;
    left: 29%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.25rem;
    background: #7051ec;
    color: #fff;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    z-index: 11;
    text-align: center;
}

.badge-icon {
    font-size: 0.8rem;
}

.badge-sparkle {
    display: none;
}

/* Card Header - Clean */
.card-header-new {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Icons removed for minimalism */
.card-icon {
    display: none;
}

.card-title-new {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.5rem;
    line-height: 1.1;
    background: none;
    -webkit-text-fill-color: initial;
}

.card-subtitle-new {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Card Price - Clean */
.card-price-new {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.price-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.price-old {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-save {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: #ecfdf5;
    color: #059669;
    border-radius: 6px;
    font-weight: 600;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #111827;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #374151;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.price-refund {
    display: none;
}

/* Highlights in a Row */
.card-highlights {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 12px;
}

.highlight-item {
    text-align: center;
    flex: 1;
    background: #f9fafb;
    border: none;
    padding: 0;
}

.highlight-item:hover {
    transform: none;
    box-shadow: none;
}

.highlight-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.1rem;
}

.highlight-label {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
}

/* Features List - Compact */
.card-features-new {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.card-features-new li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #f3f4f6;
}

.card-features-new li:last-child {
    border-bottom: none;
}

.card-features-new li:hover {
    padding-left: 0;
    background: #f9fafb;
    margin: 0;
    padding-right: 0;
}

.dprop-feature-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    background: rgba(115, 87, 236, 0.36) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #7257e2 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.card-features-new li:hover .dprop-feature-icon {
    transform: none;
    background: #7257e2 !important;
    color: white !important;
}

.dprop-feature-icon.bonus {
    background: #f3e8ff !important;
    color: #7c3aed !important;
}

.card-features-new li:hover .dprop-feature-icon.bonus {
    background: #7c3aed !important;
    color: white !important;
}

.feature-text {
    flex: 1;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.4;
}

.feature-text strong {
    color: #111827;
    font-weight: 600;
}

.feature-text.bonus {
    color: #7c3aed;
}

.feature-text.bonus strong {
    color: #6d28d9;
}

/* CTA Button - Minimal */
.card-cta-new {
    text-align: center;
    margin-top: auto;
}

.btn-card-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-card-new:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-card-new::before {
    display: none;
}

.btn-card-new.featured {
    background: #7151ef;
}

.btn-card-new.featured:hover {
    background: #7f6acf;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.card-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Comparison Link */
.pricing-comparison {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comparison-link:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #ffffff;
}

/* Hide Unused Elements */
.card-shine,
.card-glow-effect,
.more-sizes {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 2rem;
    }

    .pricing-card-enhanced.featured {
        transform: scale(1);
    }

    .pricing-card-enhanced.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .pricing-card-enhanced {
        padding: 1.5rem;
    }

    .card-title-new {
        font-size: 1.75rem;
    }

    .amount {
        font-size: 2.5rem;
    }
}