/**
 * NORMIFY - Pagina Funzionalita (Landing Page)
 * Stili dedicati per la pagina pubblica delle funzionalita
 */

/* ========================================
   NAVBAR
   ======================================== */
.feat-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.feat-navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feat-navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.feat-navbar-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feat-navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.feat-navbar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.feat-navbar-links a:hover {
    color: var(--text-primary);
}

.feat-navbar-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s;
}

.feat-navbar-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ========================================
   LAYOUT GENERALI
   ======================================== */
.feat-page {
    padding-top: 80px;
}

.feat-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feat-section-wide {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feat-section-label {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.feat-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feat-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
}

.feat-section-subtitle.centered {
    margin: 0 auto;
}

.feat-text-center {
    text-align: center;
}

.feat-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   HERO
   ======================================== */
.feat-hero {
    padding: 8rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.feat-hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.feat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.feat-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.feat-hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feat-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.feat-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.feat-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.feat-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

.feat-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

.feat-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.feat-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feat-stat {
    text-align: center;
}

.feat-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    display: block;
}

.feat-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ========================================
   BENEFICI (PER CHI E)
   ======================================== */
.feat-target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feat-target-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: border-color 0.3s, transform 0.3s;
}

.feat-target-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.feat-target-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feat-target-icon.aziende {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
}

.feat-target-icon.consulenti {
    background: rgba(139, 92, 246, 0.15);
    color: var(--secondary-color);
}

.feat-target-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feat-target-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feat-benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feat-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.feat-benefit-list li svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

/* Tabella comparativa */
.feat-compare-table {
    margin-top: 4rem;
}

.feat-compare-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feat-compare-table th,
.feat-compare-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.feat-compare-table thead th {
    background: rgba(99, 102, 241, 0.08);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.feat-compare-table td {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.feat-compare-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.feat-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.feat-compare-table .text-red {
    color: var(--error);
}

.feat-compare-table .text-green {
    color: var(--success);
}

/* ========================================
   MODULI - CATEGORIE TAB
   ======================================== */
.feat-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 3rem 0 2rem;
    justify-content: center;
}

.feat-category-tab {
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.feat-category-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.feat-category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.feat-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

.feat-module-panel {
    display: none;
}

.feat-module-panel.active {
    display: block;
}

/* Module Cards */
.feat-module-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.feat-module-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-3px);
}

.feat-module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feat-module-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.feat-module-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.feat-module-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.feat-module-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.feat-module-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.feat-module-features li svg {
    flex-shrink: 0;
    color: var(--primary-light);
    margin-top: 1px;
}

.feat-module-example {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    margin-top: auto;
}

.feat-module-example-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    margin-bottom: 0.375rem;
}

.feat-module-example p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   PRICING
   ======================================== */
.feat-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.feat-pricing-toggle span {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

.feat-pricing-toggle span.active {
    color: var(--text-primary);
}

.feat-toggle-switch {
    width: 52px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.feat-toggle-switch.active {
    background: var(--primary-color);
}

.feat-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.feat-toggle-switch.active::after {
    transform: translateX(24px);
}

.feat-save-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

.feat-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: start;
}

.feat-plan-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.feat-plan-card:hover {
    transform: translateY(-4px);
}

.feat-plan-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.feat-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}

.feat-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feat-plan-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.feat-plan-price {
    margin-bottom: 1.5rem;
}

.feat-plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.feat-plan-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    vertical-align: super;
}

.feat-plan-price .period {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.feat-plan-price .custom-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1.3;
}

.feat-plan-limits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feat-plan-limits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.feat-plan-limits li svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.feat-plan-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
}

.feat-plan-services li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.feat-plan-services li svg.check {
    color: var(--success);
    flex-shrink: 0;
}

.feat-plan-services li svg.x {
    color: rgba(148, 163, 184, 0.3);
    flex-shrink: 0;
}

.feat-plan-services li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.feat-plan-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.feat-plan-cta.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.feat-plan-cta.primary:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

.feat-plan-cta.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.feat-plan-cta.outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.feat-addon-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.feat-addon-note strong {
    color: var(--text-primary);
}

/* ========================================
   ADDON GRID (sezione Addon Modulari)
   ======================================== */
.feat-addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feat-addon-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.feat-addon-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
}

.feat-addon-card-default {
    border-color: rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(139, 92, 246, 0.04));
}

.feat-addon-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feat-addon-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.feat-addon-header h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.feat-addon-price {
    font-size: 0.9375rem;
    color: var(--primary-light);
    font-weight: 600;
}

.feat-addon-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.feat-addon-price strong {
    color: var(--text-primary);
    font-weight: 600;
}

.feat-addon-card > p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.feat-addon-badge-restricted {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 100px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   CREDITI GRID (Pacchetti Crediti AI)
   ======================================== */
.feat-crediti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feat-crediti-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.feat-crediti-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.feat-crediti-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.feat-crediti-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}

.feat-crediti-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

.feat-crediti-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feat-crediti-number span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
}

.feat-crediti-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin: 1rem 0;
}

.feat-crediti-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   CASI D'USO
   ======================================== */
.feat-usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feat-usecase-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.feat-usecase-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
}

.feat-usecase-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
}

.feat-usecase-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feat-usecase-card > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feat-usecase-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.feat-usecase-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
}

/* ========================================
   FAQ
   ======================================== */
.feat-faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feat-faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s;
}

.feat-faq-item.open {
    border-color: rgba(99, 102, 241, 0.2);
}

.feat-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    transition: color 0.2s;
}

.feat-faq-question:hover {
    color: var(--primary-light);
}

.feat-faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-muted);
}

.feat-faq-item.open .feat-faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.feat-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.feat-faq-item.open .feat-faq-answer {
    max-height: 500px;
}

.feat-faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ========================================
   CTA FINALE
   ======================================== */
.feat-final-cta {
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.feat-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.feat-final-cta-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.feat-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feat-final-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.feat-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    text-align: center;
}

.feat-footer p {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.feat-footer a {
    color: var(--primary-light);
    text-decoration: none;
}

.feat-footer a:hover {
    text-decoration: underline;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.feat-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feat-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .feat-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .feat-hero h1 {
        font-size: 2.5rem;
    }

    .feat-section-title {
        font-size: 2rem;
    }

    .feat-target-grid {
        grid-template-columns: 1fr;
    }

    .feat-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-navbar-links {
        display: none;
    }

    .feat-modules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feat-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .feat-hero h1 {
        font-size: 2rem;
    }

    .feat-hero-subtitle {
        font-size: 1.0625rem;
    }

    .feat-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .feat-stats {
        gap: 2rem;
    }

    .feat-section,
    .feat-section-wide {
        padding: 3rem 1.25rem;
    }

    .feat-section-title {
        font-size: 1.75rem;
    }

    .feat-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .feat-final-cta h2 {
        font-size: 1.75rem;
    }

    .feat-compare-table {
        overflow-x: auto;
    }

    .feat-category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .feat-category-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .feat-hero h1 {
        font-size: 1.75rem;
    }

    .feat-stat-number {
        font-size: 1.5rem;
    }

    .feat-plan-card {
        padding: 1.5rem;
    }

    .feat-usecases-grid {
        grid-template-columns: 1fr;
    }
}
