/* Basics Box Page Enhancements */

/* Hero Section Enhancements */
.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-cta-buttons .btn-main {
    margin-bottom: 10px !important;
    min-width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 30px;
    box-sizing: border-box;
}

/* Remove ALL text movement and scroll effects on buttons */
.hero-cta-buttons .btn-main,
.hero-cta-buttons .btn-main *,
.hero-cta-buttons .btn-main span {
    transform: none !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.hero-cta-buttons .btn-main:hover,
.hero-cta-buttons .btn-main:hover *,
.hero-cta-buttons .btn-main:hover span {
    transform: none !important;
}

/* Fix for disappearing text - override main CSS file */
.hero-cta-buttons .btn-main:hover span {
    opacity: 1 !important;
    margin-top: 0 !important;
}

.hero-cta-buttons .btn-main span {
    opacity: 1 !important;
    margin-top: 0 !important;
}

/* Secondary button styling - more specific to override defaults */
.hero-cta-buttons .btn-main.btn-secondary {
    background: transparent !important;
    border: 2px solid white !important;
    color: white !important;
    box-shadow: none !important;
}

.hero-cta-buttons .btn-main.btn-secondary:hover {
    background: white !important;
    color: var(--color-primary, #6c5ce7) !important;
    border-color: white !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4) !important;
}

.hero-cta-buttons .btn-main.btn-secondary span {
    color: inherit !important;
}

.hero-cta-buttons .btn-main.btn-secondary:before {
    display: none !important;
}

/* Remove text scroll effects */
.btn-main:before {
    display: none !important;
}

/* Keep glow but remove movement */
.btn-main:hover {
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}

.hero-cta-buttons .btn-main:hover {
    transform: none !important;
}

.hero-stat {
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dark-scheme .hero-stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary, #6c5ce7);
}

.hero-stat h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-primary, #6c5ce7);
}

.hero-stat p {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-buttons .btn-main {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-stat {
        padding: 12px 8px;
        margin-bottom: 10px;
    }
    
    .hero-stat h4 {
        font-size: 20px;
    }
    
    .hero-stat p {
        font-size: 11px;
    }
}

/* Enhanced Specifications Section */
.de-specs-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-scheme .de-specs-table {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.de-specs-table .d-atr {
    font-weight: 600;
    color: var(--color-primary, #6c5ce7);
    margin-bottom: 5px;
}

.de-specs-table .d-value {
    color: inherit;
    margin-bottom: 5px;
}

/* Tab enhancements */
.de_tab.tab_methods.style-2 .de_nav li span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.de_tab.tab_methods.style-2 .de_nav li span i {
    font-size: 16px;
    width: 20px;
}

.de_tab.tab_methods.style-2 .de_nav li.active span,
.de_tab.tab_methods.style-2 .de_nav li span:hover {
    background: var(--color-primary, #6c5ce7);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* Use Cases Section */
.feature-box-type-2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dark-scheme .feature-box-type-2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box-type-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary, #6c5ce7);
}

.feature-box-type-2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary, #6c5ce7), #a29bfe);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-box-type-2:hover:before {
    transform: scaleX(1);
}

.feature-box-type-2 .d-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-box-type-2 .d-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.feature-box-type-2 .d-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: #00C851;
    font-size: 14px;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
}

/* Optional Extras Styling */
.d-extras {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.d-extras-toggle {
    cursor: pointer;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.d-extras-toggle:hover {
    opacity: 0.8;
}

.d-extras-toggle h5 {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary, #6c5ce7);
}

.d-extras-toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.d-extras-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.d-extra-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.d-extra-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.d-extra-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 5px;
    font-weight: 500;
}

.d-extra-checkbox {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: var(--color-primary, #6c5ce7);
}

.d-extra-name {
    flex: 1;
}

.d-extra-price {
    color: var(--color-primary, #6c5ce7);
    font-weight: 600;
    font-size: 14px;
}

.d-extra-desc {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
    padding-left: 25px;
}

.d-extras-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.d-total-price {
    text-align: center;
    font-size: 18px;
}

.d-total-price span {
    color: var(--color-primary, #6c5ce7);
}

/* Visual Improvements */
.subtitle.blink {
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    font-weight: 600;
}

/* Enhanced pricing cards */
.de_pricing-table.type-2.rec {
    position: relative;
    overflow: hidden;
}

.de_pricing-table.type-2.rec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(162, 155, 254, 0.05));
    z-index: -1;
}

.de_pricing-table .d-recommend {
    background: linear-gradient(45deg, var(--color-primary, #6c5ce7), #a29bfe);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(108, 92, 231, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.8);
    }
}

/* Section spacing improvements */
section {
    position: relative;
}

section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary, #6c5ce7), transparent);
    opacity: 0.5;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .de_tab.tab_methods.style-2 .de_nav {
        flex-wrap: wrap;
    }
    
    .de_tab.tab_methods.style-2 .de_nav li {
        flex: 1 1 calc(50% - 5px);
        margin: 2.5px;
    }
    
    .de_tab.tab_methods.style-2 .de_nav li span {
        padding: 12px 15px;
        font-size: 14px;
        justify-content: center;
    }
    
    .feature-box-type-2 {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .de-specs-table {
        padding: 15px;
    }
    
    .d-extras-content {
        padding: 12px;
    }
}

/* Loading animation for specification images */
.tab_single_content img {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.tab_single_content.active img {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for the main content images */
.d_wrap img {
    transition: all 0.3s ease;
}

.d_wrap:hover img {
    transform: scale(1.05);
}

/* Enhanced button styling */
.btn-main {
    position: relative;
    overflow: hidden;
}

/* Remove the expanding circle animation that causes text scroll */
/* .btn-main:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn-main:hover:before {
    width: 300px;
    height: 300px;
} */

/* Smooth reveal animation for new sections */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow.fadeInUp {
    animation: slideInUp 0.8s ease both;
}

/* Modern Pricing Cards */
.modern-pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dark-scheme .modern-pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modern-pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary, #6c5ce7);
    box-shadow: 0 25px 50px rgba(108, 92, 231, 0.15);
}

/* Popular Ribbon */
.modern-pricing-card.popular {
    border-color: var(--color-primary, #6c5ce7);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.25);
}

.modern-pricing-card.popular:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary, #6c5ce7);
    box-shadow: 0 25px 50px rgba(108, 92, 231, 0.4);
}

.popular-ribbon {
    position: absolute;
    top: 28px;
    right: -55px;
    background: linear-gradient(45deg, var(--color-primary, #6c5ce7), #a29bfe);
    color: white;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    width: 170px;
    text-align: center;
}

/* Pricing Header */
.pricing-header {
    padding: 30px 25px 25px;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(162, 155, 254, 0.05));
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: inherit;
}

.plan-description {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Price Display */
.price-display {
    margin-bottom: 20px;
}

.promo-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.promo-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.promo-price .amount {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin: 0 2px;
}

.promo-price .period {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.7;
    color: white;
}

.pricing-details {
    margin-bottom: 12px;
}

.first-month {
    font-size: 13px;
    color: var(--color-primary, #6c5ce7);
    font-weight: 600;
    margin: 0 0 4px 0;
}

.regular-price {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

.savings-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Simplified Upgrades Section with Dropdown */
.pricing-upgrades {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.upgrades-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.upgrades-toggle:hover {
    opacity: 0.8;
}

.upgrades-toggle i {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: white;
}

.upgrades-toggle.active i {
    transform: rotate(180deg) !important;
}

.upgrade-content {
    overflow: hidden;
    transition: all 0.3s ease;
    padding-top: 15px;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
}

.upgrade-content[style*="display: block"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.upgrade-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    visibility: visible !important;
}

.upgrade-item {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    visibility: visible !important;
}

.upgrade-item:last-child {
    border-bottom: none;
}

.upgrade-item span:first-child {
    opacity: 1;
    flex: 1;
    color: white;
    font-size: 14px;
}

.upgrade-price {
    color: white;
    font-weight: 600;
    font-size: 14px;
    background: rgba(108, 92, 231, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

/* Remove old upgrade-price-info styles */
.upgrade-price-info {
    display: none;
}

/* Remove old styles that are no longer needed */
.plan-badge,
.plan-badge.standard,
.plan-badge.ultra {
    display: none;
}

.upgrades-header,
.upgrade-price-tag {
    display: none;
}

/* Pricing Features - New Grid Layout */
.pricing-features {
    padding: 25px;
    flex: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item {
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: var(--color-primary, #6c5ce7);
    transform: translateY(-2px);
}

.feature-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.feature-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.included-features {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.included-features p {
    margin: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.included-features i {
    color: #00C851;
    margin-right: 10px;
    font-size: 12px;
    width: 16px;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px 8px;
    }
    
    .feature-value {
        font-size: 20px;
    }
    
    .simple-benefits {
        flex-direction: column;
        gap: 20px;
        padding: 25px 15px;
    }
    
    .benefit-item {
        flex-direction: row;
        gap: 12px;
    }
    
    .benefit-item i {
        font-size: 20px;
    }
    
    .upgrades-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .upgrade-price-tag {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .simple-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefit-item {
        flex-direction: row;
        justify-content: center;
    }
}

/* Pricing Action */
.pricing-action {
    padding: 25px;
    text-align: center;
    margin-top: auto;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    width: 100%;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.btn-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover:before {
    left: 100%;
}

.btn-modern.btn-standard {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid transparent;
}

.btn-modern.btn-standard:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-modern.btn-ultra {
    background: linear-gradient(135deg, var(--color-primary, #6c5ce7), #a29bfe);
    color: white;
    border: 2px solid transparent;
}

.btn-modern.btn-ultra:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4);
}

.btn-modern i {
    transition: transform 0.3s ease;
}

.btn-modern:hover i {
    transform: translateX(3px);
}

.billing-note {
    font-size: 12px;
    opacity: 0.6;
    margin: 0;
}

/* Simple Benefits Section */
.simple-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 24px;
    color: var(--color-primary, #6c5ce7);
}

.benefit-item span {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Remove old CSS that's no longer needed */
.pricing-features h4 {
    display: none;
}

.feature-list {
    display: none;
}

.upgrade-list,
.upgrade-item,
.upgrade-note {
    display: none;
}

.pricing-comparison {
    display: none;
}

.comparison-item {
    display: none;
}

/* === ULTRA-MODERN SPECIFICATIONS SECTION === */

.modern-specs-tabs {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.modern-specs-tabs::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Modern Tab Navigation */
.specs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
    padding: 6px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.specs-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}

.spec-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 24px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    min-width: 120px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.spec-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(168, 85, 247, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.spec-tab:hover::before {
    opacity: 1;
}

.spec-tab:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
}

.spec-tab.active {
    background: linear-gradient(135deg, #6c5ce7, #8b5cf6);
    color: white;
    box-shadow: 
        0 6px 25px rgba(108, 92, 231, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.spec-tab.active::before {
    opacity: 0;
}

.spec-tab i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.spec-tab:hover i,
.spec-tab.active i {
    transform: scale(1.1);
}

/* Ultra-Modern Specs Content */
.specs-content {
    position: relative;
    min-height: 500px;
    height: auto;
}

.spec-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    min-height: 450px;
}

.spec-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 2;
    position: relative;
}

/* Revolutionary Spec Card Design */
.spec-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    backdrop-filter: blur(25px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c5ce7, #8b5cf6, #ec4899, #f59e0b);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.spec-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Modern Header */
.spec-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(168, 85, 247, 0.02));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.spec-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6c5ce7, transparent);
}

.spec-header h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spec-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Revolutionary Grid Layout */
.spec-details {
    padding: 35px 30px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.spec-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(168, 85, 247, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.spec-item:hover::before {
    opacity: 1;
}

.spec-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 40px rgba(124, 58, 237, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(124, 58, 237, 0.2);
}

.spec-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.spec-value {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.spec-note {
    color: #8b5cf6;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 8px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Modern Upgrade Section */
.spec-upgrade {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 20px;
    padding: 20px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spec-upgrade::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
}

.spec-upgrade:hover::before {
    left: 100%;
}

.spec-upgrade p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.spec-upgrade i {
    color: #8b5cf6;
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.5));
}

/* Ultra-Responsive Design */
@media (max-width: 768px) {
    .specs-nav {
        gap: 4px;
        padding: 4px;
        border-radius: 20px;
    }
    
    .spec-tab {
        padding: 12px 18px;
        font-size: 13px;
        min-width: 100px;
        border-radius: 16px;
    }
    
    .spec-tab span {
        display: none;
    }
    
    .spec-tab i {
        font-size: 18px;
    }
    
    .spec-card {
        border-radius: 24px;
    }
    
    .spec-header {
        padding: 30px 20px 25px;
    }
    
    .spec-header h3 {
        font-size: 24px;
    }
    
    .spec-details {
        padding: 25px 20px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-item {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .spec-value {
        font-size: 20px;
    }
    
    .spec-upgrade {
        border-radius: 16px;
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .modern-specs-tabs {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .specs-nav {
        margin-bottom: 30px;
    }
    
    .spec-tab {
        padding: 10px 14px;
        min-width: 80px;
        border-radius: 14px;
    }
    
    .spec-tab i {
        font-size: 16px;
    }
    
    .spec-header h3 {
        font-size: 22px;
    }
    
    .spec-header p {
        font-size: 15px;
    }
    
    .spec-value {
        font-size: 18px;
    }
    
    .spec-label {
        font-size: 10px;
    }
}

/* === MODERN FAQ SECTION === */

.modern-faq-section {
    margin-bottom: 40px;
}

.faq-category-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary, #6c5ce7);
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h5 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    color: var(--color-primary, #6c5ce7);
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer.active {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.faq-answer strong {
    color: var(--color-primary, #6c5ce7);
    font-weight: 600;
}

/* FAQ Call-to-Action */
.faq-cta {
    background: linear-gradient(145deg, rgba(108, 92, 231, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.faq-cta h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 25px;
}

.faq-cta .btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-category-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h5 {
        font-size: 15px;
    }
    
    .faq-answer.active {
        padding: 16px 20px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta h4 {
        font-size: 20px;
    }
    
    .faq-cta p {
        font-size: 14px;
    }
}

/* === UNIVERSAL BUTTON FIX FOR TEXT DISAPPEARING === */
/* Prevent all button text from disappearing on hover */
.btn-main,
.btn-main *,
.btn-main span,
.btn-modern,
.btn-modern *,
.btn-modern span {
    transform: none !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-main:hover,
.btn-main:hover *,
.btn-main:hover span,
.btn-modern:hover,
.btn-modern:hover *,
.btn-modern:hover span {
    transform: none !important;
    opacity: 1 !important;
    margin-top: 0 !important;
}

/* Ensure text always stays visible */
.btn-main span,
.btn-modern span {
    opacity: 1 !important;
    margin-top: 0 !important;
    color: inherit !important;
    position: relative !important;
    z-index: 2 !important;
}

.btn-main:hover span,
.btn-modern:hover span {
    opacity: 1 !important;
    margin-top: 0 !important;
    color: inherit !important;
    visibility: visible !important;
    display: inline !important;
}

/* Disable any pseudo-element animations that might hide text */
.btn-main:before,
.btn-main:after {
    display: none !important;
}

.btn-modern:before {
    z-index: 1 !important;
}

.btn-modern:hover:before {
    z-index: 1 !important;
} 