/* ==========================================================================
   Syntia AI - PRICING PAGE STYLESHEET
   Professional CSS Architecture for ThemeForest Standards
   ========================================================================== */

/* ==========================================================================
   PRICING HERO SECTION
   ========================================================================== */

.pricing-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    overflow: hidden;
}
/* Video Background Container */
.pricing-hero .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pricing-hero .video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.pricing-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Content */
.pricing-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    margin-top: 3rem;
}
/* Hero Typography */
.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   PRICING MAIN SECTION
   ========================================================================== */

.pricing-main {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 55%, rgba(6, 9, 20, 0.98) 100%);
    padding: 4rem 2rem;
    padding-top: calc(2.5rem + 70px);
    position: relative;
    overflow: hidden;
}
        
        .pricing-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 200, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 140, 255, 0.1) 0%, transparent 50%);
            animation: neonPulse 8s ease-in-out infinite;
            z-index: 1;
        }
        
        .pricing-main::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(0, 102, 255, 0.04) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(0, 200, 255, 0.03) 50%, transparent 70%),
                linear-gradient(180deg, rgba(5, 5, 16, 0) 65%, rgba(5, 5, 16, 0.55) 85%, rgba(5, 5, 16, 0.9) 100%);
            animation: neonSweep 12s linear infinite;
            z-index: 2;
        }
        
        @keyframes neonPulse {
            0%, 100% {
                opacity: 0.6;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
        }
        
        @keyframes neonSweep {
            0% {
                transform: translateX(-100%) rotate(0deg);
            }
            100% {
                transform: translateX(100%) rotate(360deg);
            }
        }
        
        .pricing-container-enhanced {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        
        .pricing-card-enhanced {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            height: fit-content;
            box-shadow: 
                0 0 20px rgba(0, 102, 255, 0.05),
                0 0 40px rgba(0, 204, 255, 0.03),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        .pricing-header-modern{
          max-width: none;
          position: relative;
          z-index: 10;
        }
        
        /* Pricing Toggle Switch */
        .pricing-toggle-container {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
        }
        
        .pricing-toggle {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            position: relative;
        }
        
        .toggle-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            cursor: pointer;
            user-select: none;
        }
        
        .toggle-label.active {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .toggle-switch {
            position: relative;
            width: 50px;
            height: 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
.toggle-switch.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }
        
        .toggle-slider {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .toggle-switch.active .toggle-slider {
            transform: translateX(26px);
        }
        
.savings-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.25rem 0.5rem;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Responsive styles for pricing toggle */
        @media (max-width: 768px) {
            .pricing-toggle-container {
                margin: 1.5rem 0;
            }
            
            .pricing-toggle {
                gap: 0.75rem;
                padding: 0.6rem 1.2rem;
            }
            
            .toggle-label {
                font-size: 0.8rem;
            }
            
            .toggle-switch {
                width: 44px;
                height: 22px;
            }
            
            .toggle-slider {
                width: 18px;
                height: 18px;
            }
            
            .toggle-switch.active .toggle-slider {
                transform: translateX(22px);
            }
            
            .savings-badge {
                font-size: 0.6rem;
                padding: 0.2rem 0.4rem;
                top: -6px;
                right: -6px;
            }
        }
        
        @media (max-width: 480px) {
            .pricing-toggle {
                gap: 0.5rem;
                padding: 0.5rem 1rem;
            }
            
            .toggle-label {
                font-size: 0.75rem;
            }
            
            .toggle-switch {
                width: 40px;
                height: 20px;
            }
            
            .toggle-slider {
                width: 16px;
                height: 16px;
            }
            
            .toggle-switch.active .toggle-slider {
                transform: translateX(20px);
            }
        }
.pricing-card-enhanced:hover {
     transform: translateY(-6px);
     border-color: rgba(0, 102, 255, 0.4);
     box-shadow: 
         0 0 30px rgba(0, 102, 255, 0.18),
         0 0 60px rgba(0, 200, 255, 0.14),
         0 15px 30px rgba(0, 0, 0, 0.3),
         inset 0 1px 0 rgba(255, 255, 255, 0.2);
 }
        
.pricing-card-enhanced.featured {
    border-color: var(--primary-color);
    background: rgba(0, 102, 255, 0.06);
            transform: scale(1.02);
            box-shadow: 
                0 0 25px rgba(0, 102, 255, 0.24),
                0 0 50px rgba(0, 200, 255, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            animation: featuredGlow 3s ease-in-out infinite alternate;
        }
        
        .pricing-card-enhanced.featured:hover {
            transform: scale(1.02) translateY(-6px);
            box-shadow: 
                0 0 40px rgba(0, 102, 255, 0.32),
                0 0 80px rgba(0, 200, 255, 0.18),
                0 20px 40px rgba(0, 102, 255, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }
        
        @keyframes featuredGlow {
            0% {
                box-shadow: 
                    0 0 25px rgba(0, 102, 255, 0.24),
                    0 0 50px rgba(0, 200, 255, 0.14),
                    inset 0 1px 0 rgba(255, 255, 255, 0.15);
            }
            100% {
                box-shadow: 
                    0 0 35px rgba(0, 102, 255, 0.28),
                    0 0 70px rgba(0, 200, 255, 0.16),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }
        }
        
        .plan-header-enhanced {
            position: relative;
            margin-bottom: 1.25rem;
        }
        
        .plan-name-enhanced {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }
        
.plan-badge-enhanced {
    position: absolute;
    top: -0.75rem;
    right: 0;
    background: var(--primary-color);
    color: white;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.2rem 0.6rem;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .plan-price-enhanced {
            margin-bottom: 1rem;
        }
        
        .price-amount-enhanced {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
        }
        
        .price-period-enhanced {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-left: 0.4rem;
        }
        
        .plan-description-enhanced {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        
        .plan-button-enhanced {
            width: 100%;
            padding: 0.75rem 1.25rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            margin-bottom: 1.5rem;
        }
        
        .plan-button-outline-enhanced {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-primary);
        }
        
        .plan-button-outline-enhanced:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
.plan-button-primary-enhanced {
    background: linear-gradient(135deg, rgba(0, 140, 255, 0.95) 0%, rgba(0, 102, 255, 0.85) 45%, rgba(0, 200, 255, 0.95) 100%);
    color: #ffffff;
    border: 1px solid rgba(0, 140, 255, 0.6);
    box-shadow: 0 12px 24px rgba(0, 102, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
        }
        
.plan-button-primary-enhanced:hover {
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.95) 0%, rgba(0, 140, 255, 0.9) 50%, rgba(0, 102, 255, 0.95) 100%);
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(0, 102, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
        }

.plan-button-primary-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.2) 45%, transparent 100%);
    transition: left 0.6s ease;
}

.plan-button-primary-enhanced:hover::before {
    left: 100%;
}

.plan-button-primary-enhanced:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.25);
}
        
        .plan-features-enhanced h4 {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .plan-features-enhanced ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .plan-features-enhanced li {
            display: flex;
            align-items: center;
            margin-bottom: 0.6rem;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        
.plan-features-enhanced i {
    color: var(--secondary-color);
    margin-right: 0.6rem;
    font-size: 0.75rem;
    width: 10px;
    flex-shrink: 0;
        }
        
        .features-comparison {
            background: linear-gradient(180deg, rgba(5, 5, 16, 0.96) 0%, var(--darker-bg) 100%);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .features-comparison .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .features-comparison .video-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2;
        }
        
        .features-comparison video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .features-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .features-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .features-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        
        .features-header p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .comparison-table-modern {
            background: rgba(8, 10, 12, 0.95);
            border: 1px solid rgba(74, 163, 255, 0.2);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
        }
        
        .comparison-row {
            display: grid;
            grid-template-columns: 2.1fr 1fr 1fr 1fr;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .comparison-row:last-child {
            border-bottom: none;
        }
        
        .comparison-cell {
            padding: 1.1rem 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .comparison-cell:first-child {
            justify-content: flex-start;
            text-align: left;
        }
        
        .comparison-plans {
            background: rgba(255, 255, 255, 0.02);
        }
        
        .comparison-plan-cell {
            flex-direction: column;
            gap: 0.45rem;
        }
        
        .comparison-plan-cell h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }
        
        .comparison-plan-cell p {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.55);
            margin: 0 0 0.6rem;
        }
        
        .comparison-cta {
            background: #cfcfcf;
            color: #111;
            border: none;
            border-radius: 6px;
            padding: 0.45rem 1.4rem;
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .comparison-cta:hover {
            background: #e6e6e6;
            box-shadow: 0 0 0 1px rgba(74, 163, 255, 0.3), 0 10px 24px rgba(0, 0, 0, 0.35);
        }
        
        .comparison-section-row {
            background: rgba(255, 255, 255, 0.02);
        }
        
        .comparison-section-row .comparison-cell {
            grid-column: 1 / -1;
            justify-content: flex-start;
            font-weight: 600;
            color: #ffffff;
            text-transform: none;
            letter-spacing: 0.02em;
        }
        
        .comparison-feature {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.85rem;
        }
        
        .feature-check {
            color: #4aa3ff;
            font-size: 1.15rem;
        }
        
        .feature-cross {
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.05rem;
        }
        
        .feature-value {
            color: #ffffff;
            font-weight: 500;
        }
        
        .comparison-cta-row .comparison-cell {
            padding: 1.2rem 1.25rem;
        }
        
        @media (max-width: 768px) {
            .pricing-hero h1 {
                font-size: 2.5rem;
            }
            
            .pricing-hero p {
                font-size: 1.125rem;
            }
            
            .pricing-main {
                padding: 3rem 1rem;
                padding-top: calc(2rem + 64px);
            }
            
            .pricing-container-enhanced {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            
            .pricing-card-enhanced.featured {
                transform: none;
                order: -1;
            }
            
            .pricing-card-enhanced.featured:hover {
                transform: translateY(-6px);
            }
            
            .price-amount-enhanced {
                font-size: 2rem;
            }
            
            .features-comparison {
                padding: 3rem 1rem;
            }
            
            .features-header h2 {
                font-size: 2rem;
            }
            
            .comparison-table-modern {
                overflow-x: auto;
            }
            
            .comparison-row {
                grid-template-columns: 160px 120px 120px 120px;
                min-width: 520px;
            }
            
            .comparison-cell {
                padding: 0.75rem 0.6rem;
                font-size: 0.8rem;
            }
            
            .comparison-cta {
                padding: 0.4rem 1rem;
                font-size: 0.72rem;
            }
        }
