/* License Pricing Specific Styles */

/* Hide scrollbar for tab container */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass-effect {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animated Gradient Text */
.animate-gradient-x {
    background-size: 200% 200%;
    animation: gradient-x 4s ease infinite;
}

@keyframes gradient-x {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Tab Active State */
.tab-btn.active {
    background-color: white;
    color: #0f766e; /* emerald-700 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dark .tab-btn.active {
    background-color: #0f766e;
    color: white;
}

/* Toggle Switch */
#billing-toggle div {
    /* transition is handled by tailwind classes usually, but ensuring smooth transform here */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Comparison Table */
table th {
    backdrop-filter: blur(8px);
}

/* Card Hover Effects */
.pricing-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Checkmark Animation */
.check-icon path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 0.5s ease 0.2s;
}

.pricing-card:hover .check-icon path {
    stroke-dashoffset: 0;
}

/* Accordion Animation */
.faq-answer {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-answer.open {
    max-height: 200px; /* Approximate max height */
    opacity: 1;
}

/* Glow effects */
.text-glow {
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
}

/* Neon Glow for Premium Card */
.neon-border-cyan {
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3), 0 0 20px rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.5);
}

.dark .neon-border-cyan {
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4), 0 0 30px rgba(34, 211, 238, 0.2);
    border-color: rgba(34, 211, 238, 0.6);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dark .glass-card {
    background: rgba(15, 23, 42, 0.6); /* Slate 900 with opacity */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Most Popular Badge gradient */
.badge-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}
