/*
Theme Name: AIMOODE - CRM AI Theme
Theme URI: https://aimoode.it
Author: AIMOODE Team
Author URI: https://aimoode.it
Description: Tema personalizzato per AIMOODE - CRM AI per PMI. Ottimizzato per Elementor Pro.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aimoode
Tags: elementor, crm, business, responsive, dark-theme
*/

/* ============================================
   AIMOODE - CSS Custom
   ============================================ */

/* Root Variables */
:root {
    --aimoode-primary: #00d4d4;
    --aimoode-primary-dark: #00b8b8;
    --aimoode-bg: #0a1628;
    --aimoode-bg-light: #0d1f35;
    --aimoode-text: #ffffff;
    --aimoode-text-muted: #9ca3af;
    --aimoode-border: #1e3a5f;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--aimoode-bg);
    color: var(--aimoode-text);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Links */
a {
    color: var(--aimoode-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--aimoode-primary-dark);
}

/* Buttons */
.aimoode-btn-primary {
    background: linear-gradient(135deg, var(--aimoode-primary), var(--aimoode-primary-dark));
    color: var(--aimoode-bg) !important;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 212, 212, 0.3);
    transition: all 0.3s ease;
}

.aimoode-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 212, 212, 0.5);
}

.aimoode-btn-outline {
    border: 2px solid var(--aimoode-primary);
    color: var(--aimoode-primary) !important;
    padding: 14px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.aimoode-btn-outline:hover {
    background: rgba(0, 212, 212, 0.1);
}

/* Gradient Text */
.aimoode-gradient-text {
    background: linear-gradient(135deg, #00d4d4, #00f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards */
.aimoode-card {
    background: rgba(13, 31, 53, 0.5);
    border: 1px solid var(--aimoode-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.aimoode-card:hover {
    border-color: var(--aimoode-primary);
    box-shadow: 0 0 30px rgba(0, 212, 212, 0.1);
}

.aimoode-card-featured {
    background: linear-gradient(180deg, rgba(0, 212, 212, 0.2), rgba(13, 31, 53, 1));
    border: 1px solid var(--aimoode-primary);
}

/* Badge */
.aimoode-badge {
    background: rgba(0, 212, 212, 0.2);
    color: var(--aimoode-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(0, 212, 212, 0.3);
}

/* Glow Effects */
.aimoode-glow {
    box-shadow: 0 0 40px rgba(0, 212, 212, 0.3);
}

.aimoode-glow-sm {
    box-shadow: 0 0 20px rgba(0, 212, 212, 0.2);
}

/* Section Backgrounds */
.aimoode-section-dark {
    background-color: var(--aimoode-bg);
}

.aimoode-section-light {
    background-color: rgba(13, 31, 53, 0.3);
}

/* Navigation */
.aimoode-nav {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 212, 0.2);
}

/* Pricing Cards */
.aimoode-pricing-popular {
    position: relative;
    transform: scale(1.05);
    z-index: 10;
}

.aimoode-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aimoode-primary);
    color: var(--aimoode-bg);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* FAQ Accordion */
.aimoode-faq-item {
    background: var(--aimoode-bg);
    border: 1px solid var(--aimoode-border);
    border-radius: 8px;
    overflow: hidden;
}

.aimoode-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aimoode-faq-answer {
    padding: 0 20px 20px;
    color: var(--aimoode-text-muted);
}

/* Testimonials */
.aimoode-testimonial {
    background: var(--aimoode-bg);
    border: 1px solid var(--aimoode-border);
    border-radius: 12px;
    padding: 30px;
}

.aimoode-stars {
    color: #fbbf24;
}

/* Comparison Cards */
.aimoode-compare-bad {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.aimoode-compare-good {
    background: rgba(0, 212, 212, 0.1);
    border: 1px solid rgba(0, 212, 212, 0.3);
}

/* Footer */
.aimoode-footer {
    background: var(--aimoode-bg);
    border-top: 1px solid var(--aimoode-border);
    padding: 60px 0 30px;
}

/* Form Styles */
input, textarea, select {
    background: rgba(13, 31, 53, 0.8) !important;
    border: 1px solid var(--aimoode-border) !important;
    color: var(--aimoode-text) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--aimoode-primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.1) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--aimoode-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--aimoode-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--aimoode-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .aimoode-pricing-popular {
        transform: scale(1);
    }
}

/* Elementor Specific Overrides */
.elementor-widget-container {
    color: inherit;
}

.elementor-button {
    border-radius: 8px !important;
}

.elementor-button-primary {
    background: linear-gradient(135deg, var(--aimoode-primary), var(--aimoode-primary-dark)) !important;
    box-shadow: 0 0 40px rgba(0, 212, 212, 0.3) !important;
}
