/* ===============================================
   AI4CALL - Modern Design System
   Tema: Professional Light (Tema Principale)
   =============================================== */

:root {
    /* Colors - Professional Light palette */
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    
    --secondary: #059669;
    --secondary-light: #10B981;
    --secondary-dark: #047857;
    
    --accent: #8B5CF6;
    --accent-light: #A78BFA;
    --accent-dark: #7C3AED;
    
    --bgcolor-section-1: rgb(20, 45, 104);
    
    /* Light Neutrals */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-quarto: #bfc0c1;
    --bg-card: rgba(255, 255, 255, 0.9);
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
    --text-white: #fff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #059669 100%);
    --gradient-warm: linear-gradient(135deg, #2563EB 0%, #8B5CF6 100%);
    --gradient-cool: linear-gradient(135deg, #059669 0%, #06B6D4 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Typography */
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows - più chiare ma visibili */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.1);
    --shadow-md: 0 8px 16px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.15);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
    --shadow-3d: 0 20px 40px rgba(15, 23, 42, 0.15), 0 0 1px rgba(15, 23, 42, 0.1);
    
    /* Glass effect chiaro */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(148, 163, 184, 0.2);

    /* Valori comuni ottimizzati (riduce duplicazioni) */
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-border: rgba(226, 232, 240, 0.8);
    --hover-bg-light: rgba(37, 99, 235, 0.05);
    --hover-bg-medium: rgba(37, 99, 235, 0.1);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
}

/* ===============================================
   Reset & Base
   =============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.theme-professional-light {
    background: var(--bg-primary);
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* 
======================================
===== SEZIONI A LARGHEZZA PIENA  ===== 
======================================
*/
.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Se vuoi che la sezione vantaggi abbia un background continuo: */
.full-width-section > * {
    width: 100%;
}

/* ===============================================
   Utilities
   =============================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===============================================
   Header & Navigation
   IMPORTANTE: Navbar mantenuta così com'è
   =============================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--header-border);
    transition: all var(--transition-normal);
}

body.theme-professional-light .header {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--header-border);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

body.theme-professional-light .header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo svg {
    transition: transform var(--transition-normal);
}

.logo:hover svg {
    transform: rotate(180deg);
}

.nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    transition: color var(--transition-fast);
    position: relative;
}

body.theme-professional-light .nav-link {
    color: #475569;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
}

body.theme-professional-light .nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-icon {
    transition: transform var(--transition-fast);
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    padding: 8px 0 8px 0;
    left: 0;
    background: var(--bg-secondary);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border: 2px solid #ef4444;
    border-radius: 12px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

body.theme-professional-light .dropdown-menu {
    background: var(--bg-secondary);
    border: 1px solid var(--header-border);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px; /* 12px; */
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .dropdown-item:hover {
    background: var(--hover-bg-light);
}

.dropdown-item-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.dropdown-item strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.dropdown-item p {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.4;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-item.active .nav-link {
    color: var(--primary);
    font-weight: 600;
}

.nav-item.active .nav-link::after {
    width: 100%;
}

/* Per dropdown parent */
.nav-item.dropdown.active > .nav-link {
    color: var(--primary);
}

/* ===============================================
   Language Switcher
   =============================================== */

.language-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

body.theme-professional-light .lang-current {
    background: var(--hover-bg-light);
    border: 1px solid var(--header-border);
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

body.theme-professional-light .lang-current:hover {
    background: var(--hover-bg-medium);
    border-color: rgba(37, 99, 235, 0.3);
}

.lang-current svg {
    transition: transform var(--transition-fast);
}

.language-switcher:hover .lang-current svg,
.language-switcher.open .lang-current svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

body.theme-professional-light .lang-dropdown {
    background: var(--bg-secondary);
    border: 1px solid var(--header-border);
}

.language-switcher:hover .lang-dropdown,
.language-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

body.theme-professional-light .lang-option:hover {
    background: var(--hover-bg-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ===============================================
   Buttons - 3D Elevated Light
   =============================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-warm);
    border: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

body.theme-professional-light .btn-primary {
    background: var(--gradient-warm);
    border: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.9),
                0 0 60px rgba(37, 99, 235, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

body.theme-professional-light .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.9),
                0 0 60px rgba(37, 99, 235, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.theme-professional-light .btn-secondary,
body.theme-professional-light .btn-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: white;
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.12),
                0 0 30px var(--hover-bg-light),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

body.theme-professional-light .btn-secondary:hover,
body.theme-professional-light .btn-outline:hover {
    background: white;
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.12),
                0 0 30px var(--hover-bg-light),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-black {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--header-border);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.theme-professional-light .btn-black {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--header-border);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-outline-price {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.btn-outline-price:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===============================================
   Hero Section con effetti grid e tracer
   =============================================== */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 40px;
    overflow: hidden;
}

body.theme-professional-light .hero {
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

/* Griglia statica di base - light */
body.theme-professional-light .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.8;
}

/* Onda rotante - light con colori primari */
body.theme-professional-light .hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 320deg,
        rgba(37, 99, 235, 0.2) 340deg,
        rgba(37, 99, 235, 0.4) 350deg,
        rgba(255, 255, 255, 0.6) 355deg,
        rgba(37, 99, 235, 0.4) 360deg,
        transparent 380deg
    );
    animation: heroWaveRotate 6s linear infinite;
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.6;
}

@keyframes heroWaveRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.theme-professional-light .hero > * {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

body.theme-professional-light .hero-background {
    opacity: 0.3;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

body.theme-professional-light .gradient-orb {
    opacity: 0.3;
    filter: blur(100px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

body.theme-professional-light .orb-1 {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

body.theme-professional-light .orb-2 {
    background: radial-gradient(circle, rgba(5, 150, 105, 0.25) 0%, transparent 70%);
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

body.theme-professional-light .orb-3 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Grid Tracer - Light Trail (Blue Version) */
body.theme-professional-light .hero .grid-tracer-h {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(37, 99, 235, 0.6) 30%,
        rgba(255, 255, 255, 1) 50%,
        rgba(37, 99, 235, 0.6) 70%,
        transparent 100%
    );
    box-shadow:
        0 0 10px rgba(37, 99, 235, 0.8),
        0 0 20px rgba(37, 99, 235, 0.6),
        0 0 40px rgba(37, 99, 235, 0.4),
        0 0 60px rgba(37, 99, 235, 0.2);
    z-index: 1;
    animation: tracerMoveH 4s linear infinite;
    pointer-events: none;
}

body.theme-professional-light .hero .grid-tracer-v {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(37, 99, 235, 0.6) 30%,
        rgba(255, 255, 255, 1) 50%,
        rgba(37, 99, 235, 0.6) 70%,
        transparent 100%
    );
    box-shadow:
        0 0 10px rgba(37, 99, 235, 0.8),
        0 0 20px rgba(37, 99, 235, 0.6),
        0 0 40px rgba(37, 99, 235, 0.4),
        0 0 60px rgba(37, 99, 235, 0.2);
    z-index: 1;
    animation: tracerMoveV 5s linear infinite;
    animation-delay: 1.5s;
    pointer-events: none;
}

@keyframes tracerMoveH {
    0% {
        top: 50px;
        left: -200px;
        opacity: 1;
    }
    45% {
        top: 50px;
        left: 100%;
        opacity: 1;
    }
    45.1% {
        top: 200px;
        left: 100%;
        opacity: 0;
    }
    45.2% {
        top: 200px;
        left: -200px;
        opacity: 1;
    }
    90% {
        top: 200px;
        left: 100%;
        opacity: 1;
    }
    90.1% {
        top: 350px;
        left: -200px;
        opacity: 0;
    }
    100% {
        top: 350px;
        left: 30%;
        opacity: 1;
    }
}

@keyframes tracerMoveV {
    0% {
        left: 150px;
        top: -200px;
        opacity: 1;
    }
    45% {
        left: 150px;
        top: 100%;
        opacity: 1;
    }
    45.1% {
        left: 400px;
        top: -200px;
        opacity: 0;
    }
    45.2% {
        left: 400px;
        top: -200px;
        opacity: 1;
    }
    90% {
        left: 400px;
        top: 100%;
        opacity: 1;
    }
    90.1% {
        left: 650px;
        top: -200px;
        opacity: 0;
    }
    100% {
        left: 650px;
        top: 30%;
        opacity: 1;
    }
}

.hero-main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

body.theme-professional-light .hero-badge {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}

.badge-icon {
    font-size: 18px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

body.theme-professional-light h1,
body.theme-professional-light h2 {
    text-shadow: 0 0 40px rgba(15, 23, 42, 0.05);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-integrations-full {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.integrations-label {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    font-weight: bolder;
}

.integrations-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-body);
}

body.theme-professional-light .filter-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--header-border);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

body.theme-professional-light .filter-btn:hover {
    background: white;
    border-color: rgba(37, 99, 235, 0.4);
}

.filter-btn.active {
    background: var(--gradient-warm) !important;
    border-color: transparent;
    color: var(--text-white);
    font-weight: 600;
}

.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.brand-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-normal);
    opacity: 0;
    animation: fadeInBrand 0.5s ease-out forwards;
    min-width: 85px;
}

body.theme-professional-light .brand-icon {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--header-border);
}

.brand-icon.hidden {
    display: none !important;
}

.brand-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

body.theme-professional-light .brand-icon:hover {
    background: white;
    border-color: rgba(37, 99, 235, 0.3);
}

.brand-icon img {
    width: 36px;
    height: 36px;
    display: block;
}

.brand-icon svg {
    width: 36px;
    height: 36px;
    color: var(--text-secondary);
}

.brand-icon span {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
}

/* Larger WooCommerce icon */
.brand-icon img[alt="WooCommerce"],
.brand-icon img[src*="woocommerce"] {
    width: 50px !important;
    height: 50px !important;
}

.brand-more {
    padding: 24px 28px;
    background: var(--hover-bg-medium);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 16px;
    opacity: 0;
    animation: fadeInBrand 0.5s ease-out forwards;
}

body.theme-professional-light .brand-more {
    background: var(--hover-bg-medium);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.brand-more span {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

@keyframes fadeInBrand {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.brand-icon[data-delay="0"] { animation-delay: 0s; }
.brand-icon[data-delay="50"] { animation-delay: 0.05s; }
.brand-icon[data-delay="100"] { animation-delay: 0.1s; }
.brand-icon[data-delay="150"] { animation-delay: 0.15s; }
.brand-icon[data-delay="200"] { animation-delay: 0.2s; }
.brand-icon[data-delay="250"] { animation-delay: 0.25s; }
.brand-icon[data-delay="300"] { animation-delay: 0.3s; }
.brand-icon[data-delay="350"] { animation-delay: 0.35s; }
.brand-icon[data-delay="400"] { animation-delay: 0.4s; }
.brand-icon[data-delay="450"] { animation-delay: 0.45s; }
.brand-icon[data-delay="500"] { animation-delay: 0.5s; }
.brand-icon[data-delay="550"] { animation-delay: 0.55s; }
.brand-icon[data-delay="600"] { animation-delay: 0.6s; }
.brand-icon[data-delay="650"] { animation-delay: 0.65s; }
.brand-icon[data-delay="700"] { animation-delay: 0.7s; }
.brand-icon[data-delay="750"] { animation-delay: 0.75s; }
.brand-more[data-delay="800"] { animation-delay: 0.8s; }

/* ===============================================
   FAQ Section
   =============================================== */

.faq-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.theme-professional-light .faq-item {
    background: white;
    border: 1px solid var(--header-border);
    margin-bottom: 12px;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

body.theme-professional-light .faq-item:hover {
    border-color: rgba(37, 99, 235, 0.4);
}

.faq-item.active {
    background: var(--hover-bg-light);
    border-color: rgba(37, 99, 235, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

body.theme-professional-light .faq-question {
    background: transparent;
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563EB, #8B5CF6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: scale(1.1);
}

.faq-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 28px 84px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
        gap: 12px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .faq-text {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 68px;
    }
}

/* ===============================================
   Custom Development Section
   =============================================== */

.custom-development {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.custom-dev-header {
    text-align: center;
    margin-bottom: 60px;
}

.custom-dev-header h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.custom-dev-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.custom-dev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.custom-dev-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

body.theme-professional-light .card,
body.theme-professional-light .custom-dev-card {
    background: white;
    border: 1px solid var(--header-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(0) translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-dev-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body.theme-professional-light .custom-dev-card:hover {
    transform: translateY(-8px) translateZ(20px);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 0 40px var(--hover-bg-medium),
        inset 0 1px 0 var(--header-bg);
    border-color: rgba(37, 99, 235, 0.3);
}

.card-highlighted {
    background: linear-gradient(135deg, var(--hover-bg-medium) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.card-highlighted:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(37, 99, 235, 0.5);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: var(--gradient-warm);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    stroke: var(--primary);
    stroke-width: 2;
}

.card-highlighted .card-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
}

.custom-dev-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.custom-dev-card > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-features {
    list-style: none;
    margin-bottom: 32px;
}

.card-features li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.card-cta:hover {
    gap: 12px;
    color: var(--primary-light);
}

.card-highlighted .card-cta {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-visual {
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

body.theme-professional-light .phone-mockup {
    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 0 100px rgba(37, 99, 235, 0.08);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.theme-professional-light .phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow:
        0 40px 100px rgba(15, 23, 42, 0.2),
        0 0 0 1px var(--header-bg),
        0 0 120px var(--hover-bg-medium);
}

.phone-screen {
    background: linear-gradient(135deg, #F1F5F9 0%, #FFFFFF 100%);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                0 0 0 12px rgba(255, 255, 255, 0.02),
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

.call-interface {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
}

.wave-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 80px;
    margin-bottom: 32px;
}

.wave {
    width: 4px;
    background: var(--gradient-warm);
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.1s; }
.wave:nth-child(3) { animation-delay: 0.2s; }
.wave:nth-child(4) { animation-delay: 0.3s; }
.wave:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 60px; }
}

.avatar-pulse {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    position: relative;
    animation: pulse 2s infinite;
}

.avatar-pulse img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.call-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.call-info p {
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ===============================================
   Use Cases Primary Section
   =============================================== */

.use-cases-primary {
    padding: var(--section-padding) 0;
    background: rgba(255, 255, 255, 0.01);
}

.use-cases-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.use-case-box {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all var(--transition-normal);
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
}

body.theme-professional-light .use-case-box {
    background: white;
    border: 1px solid var(--header-border);
}

.use-case-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.use-case-box:hover::before {
    opacity: 0.05;
}

.use-case-box:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body.theme-professional-light .use-case-box:hover {
    transform: translateY(-8px) translateZ(20px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 0 40px var(--hover-bg-medium),
        inset 0 1px 0 var(--header-bg);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.use-case-box h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.use-case-box p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 15px;
}

.box-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition-fast);
}

.use-case-box:hover .box-link {
    gap: 8px;
}

/* ===============================================
   Use Cases Grid Section (Fissa, non carosello)
   =============================================== */

.use-cases-grid-section {
    padding: var(--section-padding) 0;
    background: rgba(255, 255, 255, 0.01);
}

.use-cases-static-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 60px auto 40px;
}

.use-case-static-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
}

body.theme-professional-light .use-case-static-card {
    background: white;
    border: 3px solid var(--header-border);
}

.use-case-static-card:hover {
    transform: translateY(-8px);
    border-color: rgba(5, 150, 105, 0.6);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.2);
}

body.theme-professional-light .use-case-static-card:hover {
    transform: translateY(-8px) translateZ(20px);
    border-color: rgba(5, 150, 105, 0.6);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(5, 150, 105, 0.1),
        inset 0 1px 0 var(--header-bg);
}

.card-image-container {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.use-case-static-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.card-audio {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-professional-light .card-audio {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.static-audio-play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.static-audio-play:hover {
    background: rgba(5, 150, 105, 1);
    transform: scale(1.1);
}

.static-audio-play svg {
    color: white;
}

.static-audio-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1;
    height: 20px;
}

.static-audio-waveform span {
    width: 3px;
    background: rgba(5, 150, 105, 0.6);
    border-radius: 2px;
    height: 40%;
    transition: all 0.3s ease;
}

.static-audio-waveform.playing span {
    animation: waveform 0.8s ease-in-out infinite;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-warm);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-fast);
    align-self: flex-start;
    margin-top: auto;
}

.card-cta:hover {
    background: var(--bg-quarto);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

/* Responsive per griglia statica */
@media (max-width: 1200px) {
    .use-cases-static-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .use-cases-static-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .use-case-static-card {
        height: 360px;
    }
    
    .card-image-container {
        height: 160px;
    }
}

/* ===============================================
   Use Cases Carousel Section
   =============================================== */

.use-cases-carousel {
    padding: var(--section-padding) 0;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 60px auto 40px;
    padding: 0 80px;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin: 0 8px;
}

body.theme-professional-light .carousel-slide {
    border: 2px solid var(--header-border);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(5, 150, 105, 0.6);
    box-shadow: 0 0 60px rgba(5, 150, 105, 0.3);
}

body.theme-professional-light .carousel-slide.active {
    border-color: rgba(5, 150, 105, 0.6);
    box-shadow: 0 0 60px rgba(5, 150, 105, 0.3);
}

.carousel-slide:hover {
    opacity: 1;
    transform: scale(0.95) translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

body.theme-professional-light .carousel-slide:hover {
    border-color: var(--header-border);
}

.carousel-slide.active:hover {
    transform: scale(1) translateY(-4px);
}

.slide-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.carousel-slide:hover .slide-background {
    transform: scale(1.05);
}

.slide-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.3) 0%, rgba(10, 14, 39, 0.95) 100%);
}

body.theme-professional-light .slide-background::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, var(--header-bg) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 32px 32px;
    color: white;
}

body.theme-professional-light .slide-content {
    color: var(--text-primary);
}

.slide-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

body.theme-professional-light .slide-content h3 {
    color: var(--text-primary);
}

.slide-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

body.theme-professional-light .slide-content p {
    color: var(--text-secondary);
}

.slide-audio {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.theme-professional-light .slide-audio {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.audio-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.audio-play:hover {
    background: rgba(5, 150, 105, 1);
    transform: scale(1.1);
}

.audio-play svg {
    color: white;
}

.audio-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1;
    height: 24px;
}

.audio-waveform span {
    width: 3px;
    background: rgba(5, 150, 105, 0.6);
    border-radius: 2px;
    height: 40%;
    transition: all 0.3s ease;
}

.audio-waveform.playing span {
    animation: waveform 0.8s ease-in-out infinite;
}

.audio-waveform.playing span:nth-child(2) { animation-delay: 0.1s; }
.audio-waveform.playing span:nth-child(3) { animation-delay: 0.2s; }
.audio-waveform.playing span:nth-child(4) { animation-delay: 0.3s; }
.audio-waveform.playing span:nth-child(5) { animation-delay: 0.4s; }
.audio-waveform.playing span:nth-child(6) { animation-delay: 0.5s; }
.audio-waveform.playing span:nth-child(7) { animation-delay: 0.6s; }
.audio-waveform.playing span:nth-child(8) { animation-delay: 0.7s; }
.audio-waveform.playing span:nth-child(9) { animation-delay: 0.8s; }
.audio-waveform.playing span:nth-child(10) { animation-delay: 0.9s; }
.audio-waveform.playing span:nth-child(11) { animation-delay: 1s; }
.audio-waveform.playing span:nth-child(12) { animation-delay: 1.1s; }
.audio-waveform.playing span:nth-child(13) { animation-delay: 1.2s; }
.audio-waveform.playing span:nth-child(14) { animation-delay: 1.3s; }
.audio-waveform.playing span:nth-child(15) { animation-delay: 1.4s; }

@keyframes waveform {
    0%, 100% { height: 40%; }
    50% { height: 100%; }
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition-fast);
    align-self: flex-start;
}

.slide-cta:hover {
    background: rgba(37, 99, 235, 1);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

body.theme-professional-light .carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
    color: var(--text-primary);
}

.carousel-btn:hover {
    background: rgba(37, 99, 235, 0.9);
    border-color: rgba(37, 99, 235, 1);
    transform: translateY(-50%) scale(1.1);
}

body.theme-professional-light .carousel-btn:hover {
    background: rgba(37, 99, 235, 0.9);
    border-color: rgba(37, 99, 235, 1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

body.theme-professional-light .carousel-dot {
    background: rgba(148, 163, 184, 0.4);
}

.carousel-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

body.theme-professional-light .carousel-dot:hover {
    background: rgba(148, 163, 184, 0.6);
}

@media (max-width: 1024px) {
    .carousel-slide {
        min-width: calc(50% - 12px);
    }

    .carousel-container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: 90%;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }

    .slide-content h3 {
        font-size: 22px;
    }

    .slide-content p {
        font-size: 14px;
    }
}

/* ===============================================
   Integrations Section
   =============================================== */

.integrations {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.integrations-visual {
    max-width: 900px;
    margin: 0 auto 48px;
}

.integration-hub {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hub-center span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

.integration-nodes {
    position: absolute;
    inset: 0;
}

.integration-node {
    position: absolute;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    animation: floatNode 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

body.theme-professional-light .integration-node {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.integration-node:hover {
    background: var(--hover-bg-medium);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: scale(1.05);
}

body.theme-professional-light .integration-node:hover {
    background: var(--hover-bg-medium);
    border-color: var(--primary);
}

/* Position nodes in circle */
.integration-node:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%); }
.integration-node:nth-child(2) { top: 15%; right: 15%; }
.integration-node:nth-child(3) { top: 35%; right: 5%; }
.integration-node:nth-child(4) { top: 60%; right: 10%; }
.integration-node:nth-child(5) { bottom: 15%; right: 20%; }
.integration-node:nth-child(6) { bottom: 5%; left: 50%; transform: translateX(-50%); }
.integration-node:nth-child(7) { bottom: 15%; left: 20%; }
.integration-node:nth-child(8) { top: 60%; left: 10%; }
.integration-node:nth-child(9) { top: 35%; left: 5%; }
.integration-node:nth-child(10) { top: 15%; left: 15%; }
.integration-node:nth-child(11) { top: 50%; right: 2%; }
.integration-node:nth-child(12) { top: 50%; left: 2%; }

@keyframes floatNode {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.integrations-cta {
    text-align: center;
}

.integrations-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ===============================================
   FOMO Section
   =============================================== */

.fomo-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: rgba(37, 99, 235, 0.02);
    overflow: hidden;
}

.fomo-background {
    position: absolute;
    inset: 0;
}

.orb-fomo {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

body.theme-professional-light .orb-fomo {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
}

.fomo-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fomo-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.fomo-stat {
    text-align: center;
}

.fomo-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.fomo-stat p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 250px;
}

.fomo-divider {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.3) 50%, transparent 100%);
}

.fomo-message h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.fomo-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    font-style: italic;
}


/* FOMO font-light*/

.fomo-stat-font-light p {
    color: var(--text-tertiary);
    font-size: 16px;
    max-width: 250px;
}

.fomo-divider-font-light {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(225, 231, 245, 0.3) 50%, transparent 100%);
}

.fomo-message-font-light h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color:#ffffff;
}

.fomo-subtitle-font-light {
    font-size: 20px;
    color: var(--text-tertiary);
    font-style: italic;
}


/* ===============================================
   CTA Quote
   =============================================== */

.cta-quote {
    margin-bottom: 48px;
}

.cta-quote blockquote {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    position: relative;
    padding: 0 40px;
}

.cta-quote blockquote::before,
.cta-quote blockquote::after {
    content: '"';
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
}

.cta-quote blockquote::before {
    top: -20px;
    left: 0;
}

.cta-quote blockquote::after {
    bottom: -40px;
    right: 0;
}

/* ===============================================
   Why Choose AI4CALL Section
   =============================================== */

.why-choose {
    padding: var(--section-padding) 0;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

/* solo per vantaggi */
.why-choose-grid-vantaggi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;

    border: 2px solid #FFFFFF;
    box-shadow: 0 12px 40px rgba(255,255,255,.25);
    transform: perspective(1000px) translateZ(40px);
}

body.theme-professional-light .why-choose-card {
    background: white;
    border: 1px solid var(--header-border);
    border: 2px solid #FFFFFF;
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(0) translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.why-choose-card:hover::before {
    opacity: 0.05;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

body.theme-professional-light .why-choose-card:hover {
    transform: translateY(-8px) translateZ(20px);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 0 40px var(--hover-bg-medium),
        inset 0 1px 0 var(--header-bg);
    border-color: rgba(37, 99, 235, 0.3);
}

.why-choose-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--text-primary) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

body.theme-professional-light .why-choose-card h3 {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--hover-bg-medium));
}

.why-choose-card > p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.why-choose-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-card ul li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.why-choose-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.why-choose-card ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-choose-card {
        padding: 32px 24px;
    }

    .why-choose-card h3 {
        font-size: 20px;
    }
}

/* ===============================================
   Features Section
   =============================================== */

.features {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ===============================================
   Internal Pages Styles
   =============================================== */

.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
}

.page-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--hover-bg-medium);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

body.theme-professional-light .page-label {
    background: var(--hover-bg-medium);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Detail Pages */
.feature-detail {
    padding: var(--section-padding) 0;
}

.feature-detail-alt {
    background: rgba(255, 255, 255, 0.01);
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-detail-grid.reverse {
    direction: rtl;
}

.feature-detail-grid.reverse > * {
    direction: ltr;
}

.feature-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-detail-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.lead {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.point {
    display: flex;
    gap: 16px;
}

.point-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-warm);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.point h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.point p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Brands Showcase */
.brands-showcase {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
}

body.theme-professional-light .brands-showcase {
    background: var(--bg-secondary);
    border: 1px solid var(--header-border);
}

.brands-title {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 32px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition-normal);
}

body.theme-professional-light .brand-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.brand-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .brand-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
    background: white;
}

.brand-highlight {
    border-color: rgba(37, 99, 235, 0.3);
}

.brand-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.brand-label {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.brands-note {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .brands-note {
    border-top: 1px solid var(--header-border);
}

.brands-note p {
    font-size: 13px;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Code Preview */
.code-preview {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

body.theme-professional-light .code-preview {
    background: var(--bg-secondary);
    border: 1px solid var(--header-border);
}

.code-header {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

body.theme-professional-light .code-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--header-border);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

body.theme-professional-light .code-dot {
    background: rgba(148, 163, 184, 0.4);
}

.code-title {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-tertiary);
}

.code-preview pre {
    padding: 24px;
    margin: 0;
    overflow-x: auto;
}

.code-preview code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* MCP Showcase */
.mcp-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mcp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition-normal);
}

body.theme-professional-light .mcp-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.mcp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
}

body.theme-professional-light .mcp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
}

.mcp-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.mcp-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mcp-card p {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Integration Lists */
.integration-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.integration-category h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.integration-tags span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

body.theme-professional-light .integration-tags span {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

/* RAG Features */
.feature-detail-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.rag-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.rag-feature {
    text-align: center;
}

.rag-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.rag-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rag-feature p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Platform Overview */
.platform-overview {
    padding: 80px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.overview-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

body.theme-professional-light .overview-card {
    background: white;
    border: 1px solid var(--header-border);
}

.overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

body.theme-professional-light .overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

.overview-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.overview-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.overview-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Platform Section */
.platform-section {
    padding: var(--section-padding) 0;
}

.platform-section-alt {
    background: rgba(255, 255, 255, 0.01);
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-content.reverse {
    direction: rtl;
}

.platform-content.reverse > * {
    direction: ltr;
}

/* Config List */
.config-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.config-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.config-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

body.theme-professional-light .dashboard-mockup {
    background: var(--bg-secondary);
    border: 1px solid var(--header-border);
}

.mockup-header {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .mockup-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--header-border);
}

.mockup-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab.active {
    background: var(--hover-bg-medium);
    color: var(--primary);
}

.mockup-content {
    padding: 24px;
}

.mockup-field {
    margin-bottom: 20px;
}

.mockup-field label {
    display: block;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.mockup-select {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

body.theme-professional-light .mockup-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.mockup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mockup-tags span {
    padding: 4px 10px;
    background: var(--gradient-warm);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Tools Preview */
.tools-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tool-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

body.theme-professional-light .tool-card {
    background: white;
    border: 1px solid var(--header-border);
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tool-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
}

.tool-status {
    padding: 4px 10px;
    background: rgba(61, 220, 132, 0.1);
    color: #3DDC84;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.tool-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.tool-auth {
    display: inline-block;
    padding: 4px 10px;
    background: var(--hover-bg-medium);
    border-radius: 6px;
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

/* Marketplace */
.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.marketplace-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

body.theme-professional-light .marketplace-item {
    background: white;
    border: 1px solid var(--header-border);
}

.marketplace-item:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

body.theme-professional-light .marketplace-item:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

.marketplace-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.marketplace-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.marketplace-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.marketplace-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(61, 220, 132, 0.1);
    color: #3DDC84;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.marketplace-badge.new {
    background: var(--hover-bg-medium);
    color: var(--primary);
}

.marketplace-cta {
    text-align: center;
}

.marketplace-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Numbers */
.numbers-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.numbers-feature {
    display: flex;
    gap: 16px;
}

.numbers-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.numbers-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.numbers-feature p {
    color: var(--text-secondary);
    font-size: 14px;
}

.info-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.info-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.numbers-list {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

body.theme-professional-light .numbers-list {
    background: white;
    border: 1px solid var(--header-border);
}

.number-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .number-item {
    border-bottom: 1px solid var(--header-border);
}

.number-item:last-child {
    border-bottom: none;
}

.number {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.number-city {
    font-size: 13px;
    color: var(--text-tertiary);
}

.number-status {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.number-status.active {
    background: rgba(61, 220, 132, 0.1);
    color: #3DDC84;
}

.number-status.demo {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent);
}

/* Analytics */
.analytics-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
}

body.theme-professional-light .analytics-card {
    background: white;
    border: 1px solid var(--header-border);
}

.analytics-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.analytics-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Security */
.security-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.security-item {
    text-align: center;
}

.security-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.security-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.security-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* MCP Marketplace Page */
.mcp-intro {
    padding: 80px 0;
    text-align: center;
}

.intro-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.mcp-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 48px auto 0;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Plugin Categories */
.plugin-categories {
    padding: 60px 0 40px;
    background: rgba(255, 255, 255, 0.01);
}

.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.category-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

body.theme-professional-light .category-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.category-btn:hover {
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--text-primary);
}

body.theme-professional-light .category-btn:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.category-btn.active {
    background: var(--gradient-warm);
    border-color: transparent;
    color: white;
}

/* Plugins Grid */
.plugins-grid-section {
    padding: 40px 0 var(--section-padding);
}

.plugins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plugin-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

body.theme-professional-light .plugin-card {
    background: white;
    border: 1px solid var(--header-border);
}

.plugin-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

body.theme-professional-light .plugin-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

.plugin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.plugin-icon-large {
    font-size: 56px;
}

.plugin-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.plugin-badge.free {
    background: rgba(61, 220, 132, 0.1);
    color: #3DDC84;
}

.plugin-badge.new {
    background: var(--hover-bg-medium);
    color: var(--primary);
}

.plugin-badge.premium {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent);
}

.plugin-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.plugin-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.plugin-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.plugin-features span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-tertiary);
}

body.theme-professional-light .plugin-features span {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.plugin-meta {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .plugin-meta {
    border-top: 1px solid var(--header-border);
}

.plugin-installs {
    font-size: 13px;
    color: var(--text-tertiary);
}

.plugin-card-soon {
    background: rgba(37, 99, 235, 0.03);
    border: 1px dashed rgba(37, 99, 235, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.plugin-card-soon h3 {
    margin-top: 16px;
}

/* Custom MCP Section */
.custom-mcp-section {
    padding: var(--section-padding) 0;
    background: rgba(37, 99, 235, 0.02);
}

.custom-mcp-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.custom-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.custom-feature p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Simple CTA */
.cta-section-simple {
    padding: var(--section-padding) 0;
    text-align: center;
}

.cta-simple-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-simple-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===============================================
   Features Section (original)
   =============================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    background: var(--bg-primary);
    position: relative;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.section-header h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--hover-bg-medium);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.section-header.technical {
    background: #F8FAFB;
}

body.theme-professional-light .section-header.technical {
    background: #F8FAFC;
}

body.theme-professional-light .section-header.technical h4 {
    color: var(--text-primary);
}

/* Section Headers font-light*/
.section-header-font-light {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    position: relative;
}

.section-header-font-light h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color:#ffffff;
}

.section-header-font-light p {
    font-size: 18px;
    color: var(--text-tertiary);
}

.section-header-font-light h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label-font-light {
    display: inline-block;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* features card */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

body.theme-professional-light .feature-card {
    background: white;
    border: 1px solid var(--header-border);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body.theme-professional-light .feature-card:hover {
    transform: translateY(-8px) translateZ(20px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 0 40px var(--hover-bg-medium),
        inset 0 1px 0 var(--header-bg);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

body.theme-professional-light .feature-icon {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition-fast);
}

.feature-link:hover {
    gap: 8px;
}

/* ===============================================
   Use Cases Section
   =============================================== */

.use-cases {
    padding: var(--section-padding) 0;
    background: rgba(255, 255, 255, 0.01);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.use-case-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all var(--transition-normal);
    position: relative;
}

body.theme-professional-light .use-case-card {
    background: white;
    border: 1px solid var(--header-border);
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

.use-case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

body.theme-professional-light .use-case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

.use-case-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
}

.use-case-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.use-case-cta {
    text-align: center;
}

/* ===============================================
   CTA Section - Special Treatment Light
   =============================================== */

.cta-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

body.theme-professional-light .cta-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.cta-background {
    position: absolute;
    inset: 0;
}

.orb-cta-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-cta-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

body.theme-professional-light .cta-content {
    /* background: linear-gradient(135deg, var(--hover-bg-light) 0%, rgba(5, 150, 105, 0.03) 100%); */
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 20px;
    padding: 60px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* ===============================================
   Footer
   =============================================== */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--header-border);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

body.theme-professional-light .social-link {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--header-border);
}

.social-link:hover {
    background: var(--gradient-warm);
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

body.theme-professional-light a:not(.btn) {
    transition: all 0.2s ease;
}

body.theme-professional-light a:not(.btn):hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .footer-bottom {
    border-top: 1px solid var(--header-border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-tertiary);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ===============================================
   Animations
   =============================================== */

[data-animate] {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

[data-animate="fade-left"] {
    transform: translateX(30px);
    animation: fadeLeft 0.8s ease forwards;
}

[data-animate="slide-up"] {
    transform: translateY(40px);
    animation: slideUp 0.6s ease forwards;
}

[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="400"] { animation-delay: 0.4s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================
   Responsive
   =============================================== */

@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .page-hero h1 {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-hub {
        height: 600px;
    }
    
    .fomo-stats {
        flex-direction: column;
        gap: 32px;
    }

    .custom-dev-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card-highlighted {
        transform: scale(1);
    }

    .card-highlighted:hover {
        transform: translateY(-8px) scale(1);
    }
    
    .fomo-divider {
        width: 100px;
        height: 2px;
    }
    
    .feature-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketplace-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plugins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .analytics-features {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .rag-features {
        grid-template-columns: 1fr;
    }
    
    .mcp-benefits {
        grid-template-columns: 1fr;
    }
    
    .custom-features {
        grid-template-columns: 1fr;
    }

    .custom-dev-header h2 {
        font-size: 36px;
    }

    .custom-dev-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000 !important;
        flex-direction: column;
        padding: 20px;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav.active {
        display: flex !important;
    }

    .nav .nav-menu {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav .nav-item {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .nav .nav-link {
        padding: 16px 0;
        font-size: 18px;
        width: 100%;
        display: block !important;
        color: #fff !important;
    }

    .nav .dropdown-menu {
        position: static !important;
        background: #111 !important;
        box-shadow: none;
        padding: 10px 20px;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav .dropdown-menu.open {
        display: block !important;
    }

    .nav .dropdown-menu .dropdown-item {
        color: #fff !important;
        padding: 12px 0;
        display: block !important;
    }

    .nav .dropdown-menu .dropdown-item strong {
        color: #fff !important;
    }

    .nav .nav-actions {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        width: 100%;
    }

    .nav .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 10000;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle, .page-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-integrations-full {
        padding: 30px 0;
    }

    .integrations-label {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .integrations-filters {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .integrations-grid {
        gap: 12px;
    }

    .brand-icon {
        padding: 16px;
        min-width: 100px;
        gap: 8px;
    }

    .brand-icon img,
    .brand-icon svg {
        width: 40px;
        height: 40px;
    }

    .brand-icon span {
        font-size: 13px;
    }

    .brand-more {
        padding: 16px 20px;
    }

    .brand-more span {
        font-size: 14px;
    }

    .custom-development {
        padding: 60px 0;
    }

    .custom-dev-header {
        margin-bottom: 40px;
    }

    .custom-dev-header h2 {
        font-size: 28px;
    }

    .custom-dev-subtitle {
        font-size: 16px;
    }

    .custom-dev-card {
        padding: 32px 24px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon svg {
        width: 36px;
        height: 36px;
    }

    .custom-dev-card h3 {
        font-size: 22px;
    }

    .custom-dev-card > p {
        font-size: 15px;
    }

    .section-padding {
        --section-padding: 60px;
    }
    
    .section-header h2, .feature-detail-content h2 {
        font-size: 28px;
    }
    
    .lead {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid-large {
        grid-template-columns: 1fr;
    }
    
    .integration-hub {
        height: 700px;
    }
    
    .integration-node {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .fomo-message h2 {
        font-size: 32px;
    }
    
    .fomo-number {
        font-size: 56px;
    }
    
    .cta-quote blockquote {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2, .cta-simple-content h2, .intro-content h2 {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .mcp-showcase {
        grid-template-columns: 1fr;
    }
    
    .marketplace-grid {
        grid-template-columns: 1fr;
    }
    
    .plugins-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-nav {
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* ===============================================
   Slide Images for Carousel Cards
   =============================================== */

.slide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: all 0.4s ease;
}

.carousel-slide.active .slide-image {
    transform: none;
}

/* ===============================================
   Portal Documentation Layout
   =============================================== */

.portal-layout {
    min-height: 100vh;
    padding-top: 80px;
    background: var(--bg-primary);
}

.container-portal {
    display: flex;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 40px 24px;
}

/* Portal Sidebar */
.portal-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .portal-sidebar {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-right: 1px solid var(--header-border);
}

.portal-sidebar::-webkit-scrollbar {
    width: 6px;
}

.portal-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
}

.portal-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.portal-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

body.theme-professional-light .portal-sidebar::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

body.theme-professional-light .portal-sidebar::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.4);
}

body.theme-professional-light .portal-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.6);
}

.sidebar-nav {
    width: 100%;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-item {
    margin-bottom: 2px; /* 4px */
}

.sidebar-item a {
    display: block;
    padding: 4px 4px; /* 12px 16px; */
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.sidebar-item a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    transform: translateX(4px);
}

.sidebar-item.active a {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.sidebar-section {
    margin-top: 16px; /*24px; */
    margin-bottom: 8px; /*12px;*/
}

.sidebar-section:first-child {
    margin-top: 0;
}

.sidebar-section-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    padding: 6px 16px; /* invece di 8px 16px */
    margin-bottom: 2px; /* invece di 4px */
    background-color: #000;
}

.sidebar-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Portal Content */
.portal-content {
    flex: 1;
    min-width: 0;
}

.portal-pagex {
    background: var(--bg-quarto);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .portal-pagex {
    background: var(--bg-quarto);
    border: 1px solid var(--header-border);
}

.page-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-professional-light .page-header {
    border-bottom: 1px solid var(--header-border);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-section {
    margin-bottom: 48px;
}

.page-section:last-child {
    margin-bottom: 0;
}

.page-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.page-section h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.page-section h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.page-section p {
    color: #000000; /* var(--text-secondary); */
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-section ul,
.page-section ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    padding-left: 24px;
}

.page-section li {
    margin-bottom: 8px;
}

.page-section li strong {
    color: var(--text-primary);
}

.page-section.with-sidebar {
    position: relative;
    padding-left: 25px;
}

.page-section.with-sidebar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #4A90E2, #357ABD);
    border-radius: 3px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
    position: relative;
}

body.theme-professional-light .step-card {
    background: white;
    border: 1px solid var(--header-border);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
}

body.theme-professional-light .step-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    margin-bottom: 16px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.step-link:hover {
    gap: 12px;
    color: var(--primary-light);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

body.theme-professional-light .feature-item {
    background: white;
    border: 1px solid var(--header-border);
}

.feature-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.15);
}

body.theme-professional-light .feature-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.15);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.metric-card {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

body.theme-professional-light .metric-card {
    background: white;
    border: 1px solid var(--header-border);
}

.metric-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

body.theme-professional-light .metric-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

.metric-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.metric-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 48px;
}

body.theme-professional-light .cta-section {
    background: var(--bg-tertiary);
    border: 1px solid var(--header-border);
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .container-portal {
        flex-direction: column;
        gap: 24px;
    }

    .portal-sidebar {
        width: 100%;
        position: static;
        max-height: none;
    }

    .portal-page {
        padding: 32px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .portal-layout {
        padding-top: 60px;
    }

    .container-portal {
        padding: 24px 16px;
    }

    .portal-page {
        padding: 24px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-section h2 {
        font-size: 24px;
    }

    .steps-grid,
    .features-list,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   MODULAR SECTION EFFECTS - Light Version
   =============================================== */

/* backgroung come var text primary */
body.theme-professional-light .bgcolor-section-1 {
    background-color: var(--bgcolor-section-1) !important;
}

/* Effetto griglia blu chiara */
body.theme-professional-light .effect-grid {
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.06) 3px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 3px, transparent 1px) !important;
    background-size: 60px 60px !important;
    background-color: white !important;
}

/* Effetto sfumature laterali blu */
body.theme-professional-light .effect-lines {
    box-shadow: 
        inset 150px 0 120px -80px rgba(37, 99, 235, 0.15),
        inset -150px 0 120px -80px rgba(37, 99, 235, 0.15) !important;
}

/* Effetto griglia + linee insieme */
body.theme-professional-light .effect-grid.effect-lines {
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px) !important;
    background-size: 60px 60px !important;
    background-color: white !important;
    box-shadow: 
        inset 150px 0 120px -80px rgba(37, 99, 235, 0.15),
        inset -150px 0 120px -80px rgba(37, 99, 235, 0.15) !important;
}

/* Classe riutilizzabile box - light */
body.theme-professional-light .effect-border-box {
    border: 3px solid var(--header-border);
    border-radius: 12px;
    padding: 20px;
    background: white;
}

/* Classe riutilizzabile top bottom - light */
body.theme-professional-light .effect-border-tb {
    border-top: 1px solid var(--header-border);
    border-bottom: 1px solid var(--header-border);
}

/* Classe riutilizzabile top - light */
body.theme-professional-light .effect-border-top {
    border-top: 1px solid var(--header-border);
}

/* ===============================================
   Pricing Table Specific - Light Theme
   =============================================== */

.pricing-page {
    background: var(--bg-primary);
    min-height: 100vh;
}

.pricing-table-section {
    padding: 60px 0 120px;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll Container */
.table-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 40px 0;
    padding: 20px 0;
    position: relative;
}

.table-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.table-scroll-container::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.05);
    border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 23, 42, 0.3);
}

/* Table Container */
.table-container {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    min-width: 1200px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border: 3px solid #E5E7EB;
    box-shadow:
        0 20px 40px -12px rgba(15, 23, 42, 0.15),
        0 0 0 1px rgba(15, 23, 42, 0.05) inset;
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.table-container:hover {
    border-color: var(--primary);
    box-shadow: 
        0 25px 50px -12px rgba(15, 23, 42, 0.2),
        0 0 0 1px var(--hover-bg-medium) inset;
}

/* Table Structure */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

/* Headers */
.pricing-table th {
    padding: 0;
    border-bottom: 2px solid #E5E7EB;
    vertical-align: top;
    background: #F9FAFB;
}

/* Plan Columns */
.plan-column {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.plan-column.popular {
    background: rgba(37, 99, 235, 0.03);
}

.plan-column.enterprise {
    background: rgba(5, 150, 105, 0.03);
}

/* Plan Headers */
.plan-header {
    padding: 40px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
    min-height: 220px;
    position: relative;
    background: #F9FAFB;
}

.plan-header-other {
    padding: 30px 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
    min-height: 100px;
    position: relative;
    background: #F9FAFB;
}

.plan-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.popular .plan-header h3 {
    color: var(--primary);
    text-shadow: 0 0 20px var(--hover-bg-medium);
}

.enterprise .plan-header h3 {
    color: var(--secondary);
}

/* Plan Price */
.plan-price {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 8px 0 4px;
}

.plan-price small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin-top: 4px;
}

/* Plan Badge */
.plan-badge {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    border: 2px solid white;
}

.enterprise .plan-badge {
    background: var(--secondary);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

/* Table Cells */
.pricing-table td {
    padding: 14px 20px;  /* era 20px */
    border-bottom: 1px solid #E5E7EB;
    vertical-align: middle;
    text-align: center;
    word-break: normal;  /* era break-word */
    line-height: 1.4;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    white-space: normal;
}
.pricing-table td span {
    white-space: nowrap !important;
}

.pricing-table td img {
    display: inline-block !important;
    vertical-align: middle !important;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
    white-space: nowrap;
}

/* Feature Column */
.feature-column {
    width: 340px;
    min-width: 340px;
    max-width: 340px;
    background: #F9FAFB;
    font-weight: 600;
    color: var(--text-primary);
    position: sticky;
    left: 0;
    z-index: 10;
    vertical-align: middle;
    padding: 14px 20px;  /* era 20px */
    text-align: left;
    border-right: 2px solid #E5E7EB;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.02) inset;
}

/* Check Marks */
.check {
    color: var(--secondary);
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
}

.check-no {
    color: #000;
    opacity: 0.7;
    font-weight: normal;
    font-size: 16px;
}

/* Buttons in Table */
.plan-header .btn {
    width: 100%;
    max-width: 180px;
    margin-top: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Page Hero */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, white 0%, #F9FAFB 100%);
}

.page-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-warm);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Scroll Hint */
.scroll-hint {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
    margin-top: 20px;
    padding: 10px;
    animation: fadeIn 0.6s ease;
}

.scroll-hint svg {
    margin-left: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
    40% {transform: translateX(-5px);}
    60% {transform: translateX(-3px);}
}

/* Notes Section */
.table-notes {
    margin-top: 40px;
    padding: 24px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.table-notes p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 16px;
}

.table-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.table-notes li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 15px;
    padding-left: 24px;
    position: relative;
}

.table-notes li:before {
    content: "•";
    position: absolute;
    left: 12px;
    color: var(--primary);
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1400px) {
    .table-container {
        min-width: 1000px;
    }
    
    .feature-column {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
    }
    
    .plan-column {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .pricing-table-section {
        padding: 40px 0 80px;
    }
    
    .container-wide {
        padding: 0 15px;
    }
    
    .table-container {
        min-width: 850px;
        border: 2px solid #E5E7EB;
        box-shadow: 0 15px 30px -12px rgba(15, 23, 42, 0.1);
    }
    
    .plan-header {
        padding: 32px 15px 24px;
        min-height: 180px;
    }
    
    .plan-header h3 {
        font-size: 24px;
    }
    
    .plan-price {
        font-size: 36px;
    }
    
    .plan-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .pricing-table td {
        padding: 12px 16px;  /* era 16px */
        font-size: 14px;
    }
    
    .feature-column {
        width: 260px;
        min-width: 260px;
        max-width: 260px;
        font-size: 14px;
    }
    
    .page-hero {
        padding: 120px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .pricing-table-section {
        padding: 30px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .page-label {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* ===============================================
   Theme Switcher
   =============================================== */

.theme-switcher {
    padding: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-professional-light .theme-switcher {
    border-bottom: 1px solid #E5E7EB;
}

.theme-switcher-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.theme-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.theme-btn {
    width: 100%;
    aspect-ratio: 1;
    padding: 4px;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.theme-btn:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

body.theme-professional-light .theme-btn:hover {
    border-color: var(--header-border);
}

.theme-btn.active {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

.theme-color {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

/* Header Theme Switcher */
.header-theme-switcher {
    position: relative;
    margin-right: 16px;
}

.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-primary);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.theme-professional-light .theme-toggle-btn:hover {
    background: #F3F4F6;
}

.theme-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

body.theme-professional-light .theme-dropdown {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.header-theme-switcher.active .theme-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

body.theme-professional-light .theme-option:hover {
    background: #F3F4F6;
}

.theme-option.active {
    background: rgba(255, 255, 255, 0.1);
}

body.theme-professional-light .theme-option.active {
    background: #E5E7EB;
}

.theme-preview {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* ===============================================
   Images & Lightbox
   =============================================== */

.tutorial-image-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body.theme-professional-light .tutorial-image-box {
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    border: 1px solid var(--header-border);
}

.tutorial-image-box h4 {
    color: var(--primary);
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tutorial-image-box h4::before {
    content: "📸";
    font-size: 20px;
}

.tutorial-image-box p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.image-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #0f172a;
}

body.theme-professional-light .image-thumbnail {
    border: 2px solid var(--header-border);
    background: #F8FAFC;
}

.image-thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
    border-color: var(--primary);
}

.image-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-thumbnail:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 12px 8px 8px;
    font-size: 13px;
    font-weight: 500;
    pointer-events: none;
}

.zoom-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 18px;
    pointer-events: none;
}

.image-thumbnail:hover .zoom-icon {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: zoom-out;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
    cursor: default;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: scale-down;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.lightbox-close:hover {
    background: #dc2626;
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 80%;
    text-align: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 99, 235, 0.9);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    line-height: 1;
    font-weight: bold;
}

.lightbox-nav:hover {
    background: #2563EB;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.visible {
    display: flex;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Single image box */
.img-box {
    display: inline-block;
    margin: 20px 0;
    position: relative;
}

.img-caption-thumb {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 8px;
    font-size: 12px;
    border-radius: 0 0 8px 8px;
    pointer-events: none;
}

.img-thumbnail-simple {
    width: 450px;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: transform 0.3s;
}

.img-thumbnail-simple:hover {
    transform: scale(1.05);
}

.lightbox-simple {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    cursor: pointer;
}

.lightbox-simple.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-simple img {
    max-width: 95%;
    max-height: 95%;
}

.lightbox-close-x {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-caption-simple {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10001;
}

/* Responsive */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .img-thumbnail-simple {
        width: 100%;
        max-width: 450px;
    }
}

/* ===============================================
   Scrollbar - Light
   =============================================== */

body.theme-professional-light ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body.theme-professional-light ::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

body.theme-professional-light ::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.4);
    border-radius: 4px;
}

body.theme-professional-light ::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.6);
}

/* ===============================================
   Sections - Depth & Separation Light
   =============================================== */

body.theme-professional-light section {
    position: relative;
}

body.theme-professional-light .faq-section,
body.theme-professional-light .features-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* ===============================================
   Text Glow Effects Light
   =============================================== */

body.theme-professional-light .gradient-text {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--hover-bg-medium));
}
