/*
 * CSS per Sistema Landing Servizi con Shortcode
 * SaintChannel Framework v2.10.22
 * 
 * Stili per tutti i componenti generati dai shortcode
 */

/* ================================================================
   HERO SECTION SHORTCODE
================================================================ */

.stchannel-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.stchannel-hero.hero-gradient {
    background: var(--st-gradient-secondary);
}

.stchannel-hero.hero-solid {
    background: var(--st-secondary);
}

.stchannel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.stchannel-hero .container {
    position: relative;
    z-index: 2;
}

.stchannel-hero .hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stchannel-hero .hero-subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ================================================================
   SAINTCHANNEL BUTTON STYLES
================================================================ */

.stchannel-btn {
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-stchannel-primary {
    background: var(--st-gradient-primary);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.btn-stchannel-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.4);
    color: #fff;
}

.btn-stchannel-secondary {
    background: var(--st-gradient-secondary);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 234, 255, 0.3);
}

.btn-stchannel-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 234, 255, 0.4);
    color: #fff;
}

.stchannel-btn:active {
    transform: translateY(0);
}

/* Effetto glow per i button */
.stchannel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.stchannel-btn:hover::before {
    left: 100%;
}

/* ================================================================
   CTA INLINE E SECTIONS
================================================================ */

.stchannel-cta-inline {
    margin: 2rem 0;
}

.stchannel-cta-section {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.stchannel-cta-section.cta-section-gradient {
    background: var(--st-gradient-secondary);
}

.stchannel-cta-section.cta-section-solid {
    background: var(--st-secondary);
}

.stchannel-cta-section .cta-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ================================================================
   FEATURES SHORTCODE
================================================================ */

.stchannel-features {
    background: transparent;
    margin: 3rem 0;
}

.stchannel-features .features-title {
    color: var(--st-secondary);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* Container responsivo per features */
.stchannel-features .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

/* Stili per feature cards */
.stchannel-features .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.stchannel-features.features-grid .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
}

.stchannel-features.features-cards .feature-card {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(0, 255, 157, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.stchannel-features.features-list .feature-card {
    background: transparent;
    border-left: 3px solid var(--st-primary);
    border-radius: 0;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
}

.stchannel-features .feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--st-primary);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.15);
}

.stchannel-features .feature-icon {
    color: var(--st-primary);
    margin-bottom: 1rem;
}

.stchannel-features .feature-title {
    color: #e6edf3;
    font-weight: 600;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.stchannel-features .feature-content {
    color: #c9d1d9;
    line-height: 1.6;
    flex-grow: 1;
}

.stchannel-features .feature-content p {
    color: #c9d1d9 !important;
    margin-bottom: 1rem;
}

.stchannel-features .feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stchannel-features .feature-content li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #c9d1d9;
}

.stchannel-features .feature-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--st-primary);
    font-weight: bold;
}

/* ================================================================
   STATS SHORTCODE
================================================================ */

.stchannel-stats {
    border-radius: 15px;
    margin: 3rem 0;
}

.stchannel-stats.stats-gradient {
    background: var(--st-gradient-secondary);
    color: white;
}

.stchannel-stats.stats-default {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stchannel-stats .stat-item {
    padding: 1.5rem 1rem;
}

.stchannel-stats .stat-number {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--st-secondary-light);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.stchannel-stats.stats-gradient .stat-number {
    color: white;
}

.stchannel-stats .stat-icon {
    color: var(--st-secondary);
}

.stchannel-stats.stats-gradient .stat-icon {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================================================
   TESTIMONIALS SHORTCODE
================================================================ */

.stchannel-testimonial {
    margin: 3rem 0;
}

.stchannel-testimonial .testimonial-card {
    border: 1px solid rgba(0, 255, 157, 0.25);
    background: radial-gradient(circle at top left, rgba(0,255,157,0.08), rgba(13,17,23,0.85));
    backdrop-filter: blur(12px);
    color: #e6edf3;
    box-shadow: 0 8px 25px -5px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,255,157,0.08);
}

.stchannel-testimonial .testimonial-avatar {
    border: 3px solid var(--st-primary);
    object-fit: cover;
}

.stchannel-testimonial .testimonial-rating .fa-star {
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.stchannel-testimonial .testimonial-quote {
    font-size: 1.15rem;
    color: #c9d1d9;
    line-height: 1.6;
}

.stchannel-testimonial .testimonial-name {
    color: #00ff9d;
    font-size: 1.1rem;
}

/* Piccolo accento animato */
.stchannel-testimonial .testimonial-card:hover {
    transform: translateY(-4px);
    transition: all .35s ease;
    border-color: var(--st-primary);
}

/* ================================================================
   COMPARE SHORTCODE
================================================================ */

.stchannel-compare {
    margin: 3rem 0;
}

.stchannel-compare .compare-title {
    font-weight: 700;
    letter-spacing: .5px;
}

.compare-table-wrapper {
    border: 1px solid rgba(0,255,157,0.2);
    border-radius: 15px;
    background: rgba(13,17,23,0.7);
    backdrop-filter: blur(8px);
    padding: 0.5rem;
    box-shadow: 0 6px 20px -5px rgba(0,0,0,0.5);
}

table.table-compare {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

table.table-compare thead th:first-child {
    border-top-left-radius: 10px;
}

table.table-compare thead th:last-child {
    border-top-right-radius: 10px;
}

table.table-compare tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

table.table-compare tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

table.table-compare td, table.table-compare th {
    vertical-align: middle;
}

table.table-compare td .fa-check {
    color: var(--st-green-neon);
    text-shadow: 0 0 6px rgba(0,255,157,.5);
}

table.table-compare td .fa-times {
    color: #ff4d4f;
}

.compare-note {
    color: #8b949e;
}

.stchannel-testimonial .testimonial-company {
    color: #8b949e;
    font-size: 0.9rem;
}

/* ================================================================
   FAQ SHORTCODE
================================================================ */

.stchannel-faq {
    margin: 3rem 0;
}

.stchannel-faq .faq-title {
    color: var(--st-secondary);
    font-weight: 700;
    margin-bottom: 3rem;
}

.stchannel-faq .accordion-item {
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.stchannel-faq .accordion-button {
    background: rgba(255, 255, 255, 0.05);
    color: var(--st-secondary);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
}

.stchannel-faq .accordion-button:not(.collapsed) {
    background: var(--st-primary);
    color: rgb(0, 0, 0);
    box-shadow: none;
}

.stchannel-faq .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 157, 0.25);
}

.stchannel-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff9d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.stchannel-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.stchannel-faq .accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: #c9d1d9;
    line-height: 1.6;
    padding: 1.5rem;
}

/* ================================================================
   BADGES SHORTCODE
================================================================ */

.stchannel-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.stchannel-badge.badge-primary {
    background: rgba(var(--st-primary-rgb), 0.12);
    border: 1px solid rgba(var(--st-primary-rgb), 0.25);
    color: var(--st-primary-light);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.stchannel-badge.badge-secondary {
    background: rgba(var(--st-secondary-rgb), 0.12);
    border: 1px solid rgba(var(--st-secondary-rgb), 0.25);
    color: var(--st-secondary-light);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.stchannel-badge.badge-accent {
    background: rgba(0, 255, 65, 0.12);
    border: 1px solid rgba(0, 255, 65, 0.25);
    color: var(--st-green-neon);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.stchannel-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stchannel-badge.badge-primary:hover {
    background: rgba(var(--st-primary-rgb), 0.2);
    border-color: rgba(var(--st-primary-rgb), 0.4);
}

.stchannel-badge.badge-secondary:hover {
    background: rgba(var(--st-secondary-rgb), 0.2);
    border-color: rgba(var(--st-secondary-rgb), 0.4);
}

.stchannel-badge.badge-accent:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: rgba(0, 255, 65, 0.4);
}

/* Container per badges consecutive - centrato */
.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
    padding: 1rem 0;
}

.badges-container .stchannel-badge {
    margin: 0.25rem !important; /* override any existing margin */
}

/* Badge grandi - classe dedicata per non influenzare gli altri */
.stchannel-badge.badge-large {
    padding: 12px 20px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
}

.stchannel-badge.badge-large:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.stchannel-badge.badge-large .fas {
    font-size: 1.1rem !important;
    margin-right: 0.75rem !important;
}

/* ================================================================
   RESPONSIVE DESIGN
================================================================ */

@media (max-width: 768px) {
    .stchannel-hero .hero-title {
        font-size: 2rem;
    }
    
    .stchannel-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .stchannel-features .feature-card {
        margin-bottom: 2rem;
    }
    
    .stchannel-stats .stat-number {
        font-size: 2rem;
    }
    
    .stchannel-cta-section {
        margin: 2rem 0;
        padding: 3rem 0 !important;
    }
}

@media (max-width: 576px) {
    .stchannel-hero {
        padding: 4rem 0;
    }
    
    .stchannel-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .stchannel-stats .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stchannel-testimonial .testimonial-card {
        padding: 2rem !important;
    }
}

/* ================================================================
   REGOLE GENERALI PER TEMA SCURO
================================================================ */

/* Miglioramenti generali per la leggibilità */
.stchannel-features .feature-content,
.stchannel-features .feature-title {
    color: #e6edf3 !important;
}

.stchannel-features .feature-content p {
    color: #c9d1d9 !important;
}

/* Assicurati che tutti i testi siano leggibili su sfondo scuro */
.service-landing-page {
    background: #0d1117;
    color: #e6edf3;
}

.service-landing-page .card {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(0, 255, 157, 0.2);
    color: #e6edf3;
}

.service-landing-page .card-body {
    color: #c9d1d9;
}

.service-landing-page .breadcrumb {
    background: rgba(13, 17, 23, 0.5);
}

.service-landing-page .breadcrumb-item a {
    color: #00ff9d;
}

.service-landing-page .breadcrumb-item.active {
    color: #c9d1d9;
}

/* Miglioramenti per i pricing */
.service-price {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(0, 255, 157, 0.05));
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: #00ff9d;
    font-weight: 600;
}

/* ================================================================
   TABELLE RESPONSIVE E MARKDOWN
================================================================ */

/* Stili per tabelle generate dal MarkdownParser */
.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.table-dark {
    background-color: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.table-dark th {
    background-color: rgba(0, 255, 157, 0.2);
    color: #00ff9d;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 255, 157, 0.4);
    text-align: center;
    padding: 1rem 0.75rem;
}

.table-dark td {
    color: #e6edf3;
    text-align: center;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-dark tbody tr:hover {
    background-color: rgba(0, 255, 157, 0.1);
}

/* Mobile responsive per tabelle */
@media (max-width: 768px) {
    .table-responsive table {
        font-size: 0.875rem;
    }
    
    .table-responsive th,
    .table-responsive td {
        padding: 0.5rem 0.25rem;
    }
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
================================================================ */

/* Tablet */
@media (max-width: 992px) {
    .stchannel-features .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
    
    .stchannel-features .feature-card {
        padding: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .stchannel-features .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.5rem;
    }
    
    .stchannel-features .feature-card {
        padding: 1.25rem;
    }
    
    .stchannel-features .features-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stchannel-features .feature-title {
        font-size: 1.1rem;
    }
}

/* ===================== GLOBAL UNIFIED BADGE SYSTEM ===================== */
/* 🌍 Regola CSS universale per tutti i badge in tutto il sito StChannel */
.badge,
.badge-primary,
.badge-secondary,
.badge-success,
.badge-accent,
.badge-warning,
.badge-info,
.badge-light,
.badge-dark,
span[class*="badge"],
span[class*="bg-primary"],
span[class*="bg-secondary"],
span[class*="bg-success"],
span[class*="bg-warning"],
span[class*="bg-info"],
span[class*="bg-light"],
span[class*="bg-dark"],
/* Cattura anche badge generati dinamicamente */
.stchannel-badge,
.service-tag,
.tech-tag,
.certification-badge,
*[class*="tag-"],
*[class*="badge-"] {
    /* 🎨 Reset completo + formato StChannel unificato */
    background: rgba(var(--st-primary-rgb), 0.12) !important;
    border: 1px solid rgba(var(--st-primary-rgb), 0.25) !important;
    color: var(--st-primary-light) !important;
    backdrop-filter: blur(6px) !important;
    border-radius: 999px !important;
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
    margin: 0.25rem !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

/* 🎯 Varianti colore specifiche */
.badge-secondary,
span[class*="bg-secondary"],
*[data-badge-type="secondary"] {
    background: rgba(var(--st-secondary-rgb), 0.12) !important;
    border: 1px solid rgba(var(--st-secondary-rgb), 0.25) !important;
    color: var(--st-secondary-light) !important;
}

.badge-success,
span[class*="bg-success"],
*[data-badge-type="success"] {
    background: rgba(80, 200, 120, 0.12) !important;
    border: 1px solid rgba(80, 200, 120, 0.25) !important;
    color: #50c878 !important;
}

.badge-accent,
.badge-warning,
span[class*="bg-warning"],
*[data-badge-type="accent"] {
    background: rgba(0, 255, 65, 0.12) !important;
    border: 1px solid rgba(0, 255, 65, 0.25) !important;
    color: var(--st-green-neon) !important;
}

.badge-info,
span[class*="bg-info"],
*[data-badge-type="info"] {
    background: rgba(13, 202, 240, 0.12) !important;
    border: 1px solid rgba(13, 202, 240, 0.25) !important;
    color: #0dcaf0 !important;
}

/* 🔥 Hover effects universali con !important per sovrascrivere tutto */
.badge:hover,
.badge-primary:hover,
.badge-secondary:hover,
.badge-success:hover,
.badge-accent:hover,
.badge-warning:hover,
.badge-info:hover,
span[class*="badge"]:hover,
span[class*="bg-"]:hover,
*[class*="tag-"]:hover,
*[class*="badge-"]:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    filter: brightness(1.1) !important;
}

/* ================================================================
   PRICING SECTION SHORTCODE - DARK THEME
================================================================ */

.stchannel-pricing {
    background: var(--st-dark, #1e293b);
}

.pricing-card {
    border: 2px solid var(--st-border-dark, #374151);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--st-dark-secondary, #374151);
    color: var(--st-light, #f8fafc);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--st-primary, #1e40af);
}

.pricing-card.featured {
    border-color: var(--st-primary, #1e40af);
    background: linear-gradient(145deg, var(--st-dark-secondary, #374151) 0%, rgba(30, 64, 175, 0.1) 100%);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.3);
}

.pricing-card .card-header {
    background: transparent;
    border-bottom: 1px solid var(--st-border-dark, #4b5563);
    color: inherit;
}

.pricing-card.featured .card-header {
    background: linear-gradient(135deg, var(--st-primary, #1e40af), var(--st-secondary, #0ea5e9));
    color: white;
    border-bottom: none;
}

.price-display {
    margin: 1rem 0;
}

.price-amount {
    font-weight: 700;
    color: var(--st-accent, #10b981);
}

.pricing-card.featured .price-amount {
    color: white;
}

.price-period {
    font-size: 0.9rem;
    color: var(--st-text-muted, #9ca3af);
    margin-left: 0.25rem;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

/* Lista features con bullet points */
.pricing-features {
    list-style: none;
    padding: 0;
    display: block; /* evita layout flex ereditato da .list-group */
}

.pricing-card .list-group-item {
    background: transparent;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--st-light, #f8fafc);
    position: relative;
    padding-left: 2rem;
    display: block !important; /* forza block anche se altri stili impostano flex */
    line-height: 1.4;
}

/* Alternative con icona FontAwesome per massima visibilità */
.pricing-card .list-group-item.fa-check:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--st-accent, #10b981);
    font-size: 0.9em;
    position: absolute;
    left: 0.2rem;
    top: 0.75rem;
}

.pricing-card.featured .list-group-item.fa-check:before {
    color: #22d3ee;
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

/* Bullet points migliorati: badge circolare con check ✓ per massima visibilità */
.pricing-card .list-group-item {
    padding-left: 2.25rem; /* default spacing */
}

/* Più spazio quando usiamo l'icona inline per evitare che il testo si sovrapponga */
.pricing-card .list-group-item.has-icon {
    padding-left: 2.75rem !important;
}

.pricing-card .list-group-item:before {
    content: "✓";
    position: absolute;
    left: 0.35rem;
    top: 0.6rem;
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid var(--st-accent, #10b981);
    color: var(--st-accent, #10b981);
    font-size: 0.9rem;
    line-height: 1;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
}

.pricing-card.featured .list-group-item:before {
    background: rgba(34, 211, 238, 0.18);
    border-color: #22d3ee;
    color: #22d3ee;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.35);
}

/* Se la LI ha l'icona inline, disabilita il pseudo-elemento per evitare doppio bullet */
.pricing-card .list-group-item.has-icon:before {
    content: none;
}

/* Stile per l'icona inline generata da ShortcodeParser */
.pricing-card .list-group-item .pricing-bullet {
    position: absolute;
    left: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid var(--st-accent, #10b981);
    color: var(--st-accent, #10b981);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
}

.pricing-card.featured .list-group-item .pricing-bullet {
    background: rgba(34, 211, 238, 0.18);
    border-color: #22d3ee;
    color: #22d3ee;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.35);
}

/* Garantisce un buon allineamento del testo con badge verticale */
.pricing-card .list-group-item .feature-text {
    display: inline-block;
    vertical-align: middle;
}

.pricing-card .list-group-item:last-child {
    border-bottom: none;
}

.pricing-card .card-footer {
    background: transparent;
    border-top: 1px solid var(--st-border-dark, #4b5563);
}

.pricing-card.featured .card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-title {
    color: var(--st-light, #f8fafc);
    font-weight: 600;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-stchannel-primary {
    background: linear-gradient(135deg, var(--st-primary, #1e40af), var(--st-secondary, #0ea5e9));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-stchannel-primary:hover {
    background: linear-gradient(135deg, var(--st-secondary, #0ea5e9), var(--st-primary, #1e40af));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
    color: white;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Badge for featured plan - Dark theme */
.pricing-card .badge {
    font-size: 0.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--st-accent, #10b981), var(--st-primary, #1e40af)) !important;
    border: none;
    color: white;
}

/* ================================================================
   PROCESS TIMELINE SHORTCODE - DARK THEME
================================================================ */

.stchannel-process {
    background: transparent;
    margin: 3rem 0;
}

.stchannel-process .process-title {
    color: var(--st-secondary, #0ea5e9);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* Timeline Style */
.stchannel-process.process-timeline .process-container {
    position: relative;
    padding: 2rem 0;
}

.stchannel-process.process-timeline .process-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--st-primary, #1e40af), var(--st-accent, #10b981));
    transform: translateX(-50%);
    z-index: 1;
}

.stchannel-process.process-timeline .process-step-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    z-index: 2;
}

.stchannel-process.process-timeline .process-step-item:nth-child(odd) {
    flex-direction: row;
}

.stchannel-process.process-timeline .process-step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.stchannel-process.process-timeline .step-content {
    background: rgba(13, 17, 23, 0.8);
    border: 2px solid rgba(0, 255, 157, 0.2);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stchannel-process.process-timeline .step-content:hover {
    transform: translateY(-5px);
    border-color: var(--st-primary, #1e40af);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
}

.stchannel-process.process-timeline .step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--st-primary, #1e40af), var(--st-secondary, #0ea5e9));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    right: -1.5rem; /* posizione fissa sulla timeline invece di center */
    top: 2rem; /* allineato con l'inizio del contenuto */
    transform: none; /* rimuove il centramento */
    border: 3px solid var(--st-dark, #0d1117);
    box-shadow: 0 0 15px rgba(30, 64, 175, 0.4);
    z-index: 3;
}

/* Per gli step pari (lato destro), metti il numero a sinistra */
.stchannel-process.process-timeline .process-step-item:nth-child(even) .step-number {
    right: auto;
    left: -1.5rem;
}

.stchannel-process.process-timeline .step-icon {
    color: var(--st-primary, #1e40af);
    text-align: center;
}

.stchannel-process.process-timeline .step-title {
    color: var(--st-light, #f8fafc);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stchannel-process.process-timeline .step-description {
    color: #c9d1d9;
    line-height: 1.6;
}

.stchannel-process.process-timeline .step-description p {
    color: #c9d1d9 !important;
    margin-bottom: 1rem;
}

/* Steps Style (cards layout) */
.stchannel-process.process-steps .process-container,
.stchannel-process.process-cards .process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.stchannel-process.process-steps .step-content,
.stchannel-process.process-cards .step-content {
    background: rgba(13, 17, 23, 0.8);
    border: 2px solid rgba(0, 255, 157, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stchannel-process.process-steps .step-content:hover,
.stchannel-process.process-cards .step-content:hover {
    transform: translateY(-5px);
    border-color: var(--st-primary, #1e40af);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
}

.stchannel-process.process-steps .step-number,
.stchannel-process.process-cards .step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--st-primary, #1e40af), var(--st-secondary, #0ea5e9));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(30, 64, 175, 0.4);
}

.stchannel-process.process-steps .step-icon,
.stchannel-process.process-cards .step-icon {
    color: var(--st-primary, #1e40af);
    text-align: center;
}

.stchannel-process.process-steps .step-title,
.stchannel-process.process-cards .step-title {
    color: var(--st-light, #f8fafc);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stchannel-process.process-steps .step-description,
.stchannel-process.process-cards .step-description {
    color: #c9d1d9;
    line-height: 1.6;
}

.stchannel-process.process-steps .step-description p,
.stchannel-process.process-cards .step-description p {
    color: #c9d1d9 !important;
    margin-bottom: 1rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .stchannel-process.process-timeline .process-container::before {
        left: 2rem;
    }
    
    .stchannel-process.process-timeline .process-step-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .stchannel-process.process-timeline .process-step-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .stchannel-process.process-timeline .step-content {
        width: 100%;
    }
    
    .stchannel-process.process-timeline .step-number {
        left: 2rem;
        transform: translateY(-50%);
    }
}

/* ================================================================
   SEPARATOR SHORTCODE STYLES
================================================================ */

.stchannel-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

/* Margin Variations */
.stchannel-separator.separator-margin-small {
    margin: 1rem 0;
}

.stchannel-separator.separator-margin-normal {
    margin: 2rem 0;
}

.stchannel-separator.separator-margin-large {
    margin: 3rem 0;
}

.stchannel-separator.separator-margin-xl {
    margin: 4rem 0;
}

/* Height Variations */
.stchannel-separator.separator-thin .separator-line {
    height: 1px;
}

.stchannel-separator.separator-normal .separator-line {
    height: 2px;
}

.stchannel-separator.separator-thick .separator-line {
    height: 4px;
}

.stchannel-separator.separator-xl .separator-line {
    height: 6px;
}

/* Style Variations */
.stchannel-separator.separator-gradient .separator-line {
    background: var(--st-gradient-secondary);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 234, 255, 0.3);
}

.stchannel-separator.separator-solid .separator-line {
    background: var(--st-primary);
    border-radius: 2px;
}

.stchannel-separator.separator-neon .separator-line {
    background: var(--st-green-neon);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5),
                0 0 30px rgba(0, 255, 157, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Neon separator with text styling */
.stchannel-separator.separator-neon .separator-content {
    position: relative;
    background: var(--st-dark, #1a1a2e);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.stchannel-separator.separator-neon .separator-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100vw;
    right: 100%;
    height: 4px;
    background: var(--st-green-neon);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5),
                0 0 30px rgba(0, 255, 157, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
    transform: translateY(-50%);
    z-index: -1;
}

.stchannel-separator.separator-neon .separator-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100vw;
    left: 100%;
    height: 4px;
    background: var(--st-green-neon);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5),
                0 0 30px rgba(0, 255, 157, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
    transform: translateY(-50%);
    z-index: -1;
}

.stchannel-separator.separator-neon .separator-text {
    color: var(--st-green-neon);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.7),
                 0 0 20px rgba(0, 255, 157, 0.5);
    animation: text-glow-pulse 3s ease-in-out infinite;
}

.stchannel-separator.separator-neon .separator-icon {
    color: var(--st-green-neon);
    font-size: 1.4rem;
    text-shadow: 0 0 15px rgba(0, 255, 157, 0.7),
                 0 0 25px rgba(0, 255, 157, 0.5);
    animation: icon-glow-pulse 3s ease-in-out infinite;
}

.stchannel-separator.separator-dots .separator-line {
    background: repeating-linear-gradient(
        90deg,
        var(--st-secondary) 0px,
        var(--st-secondary) 10px,
        transparent 10px,
        transparent 20px
    );
    height: 3px;
}

.stchannel-separator.separator-dashed .separator-line {
    background: none;
    border-top: 2px dashed var(--st-secondary);
    height: 0;
}

/* Separator Line Base */
.stchannel-separator .separator-line {
    width: 100%;
    transition: all 0.3s ease;
}

/* Separator with Content (Text/Icon) */
.stchannel-separator .separator-content {
    position: relative;
    background: var(--st-dark, #1a1a2e);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.stchannel-separator.separator-gradient .separator-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100vw;
    right: 100%;
    height: 2px;
    background: var(--st-gradient-secondary);
    transform: translateY(-50%);
    z-index: -1;
}

.stchannel-separator.separator-gradient .separator-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100vw;
    left: 100%;
    height: 2px;
    background: var(--st-gradient-secondary);
    transform: translateY(-50%);
    z-index: -1;
}

.stchannel-separator .separator-icon {
    color: var(--st-secondary);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

.stchannel-separator .separator-text {
    color: var(--st-secondary-light);
    font-size: 1.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Separator CTA Button */
.stchannel-separator .separator-with-button {
    padding: 0;
}

.stchannel-separator .separator-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--st-gradient-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 234, 255, 0.3);
    border: 2px solid transparent;
}

.stchannel-separator.separator-neon .separator-cta-button {
    background: var(--st-green-neon);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5),
                0 4px 15px rgba(0, 255, 157, 0.3);
    animation: pulse-button-glow 3s ease-in-out infinite;
}

.stchannel-separator.separator-solid .separator-cta-button {
    background: var(--st-primary);
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.stchannel-separator .separator-cta-button:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.stchannel-separator.separator-neon .separator-cta-button:hover {
    color: #000;
    box-shadow: 0 0 25px rgba(0, 255, 157, 0.7),
                0 6px 20px rgba(0, 255, 157, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.stchannel-separator.separator-gradient .separator-cta-button:hover {
    box-shadow: 0 6px 20px rgba(0, 234, 255, 0.4);
}

.stchannel-separator.separator-solid .separator-cta-button:hover {
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.4);
}

/* Button Pulse Animation for Neon Style */
@keyframes pulse-button-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 255, 157, 0.5),
                    0 4px 15px rgba(0, 255, 157, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 157, 0.7),
                    0 4px 20px rgba(0, 255, 157, 0.5);
    }
}

/* Hover Effects */
.stchannel-separator:hover .separator-line {
    transform: scaleY(1.2);
}

.stchannel-separator.separator-neon:hover .separator-line {
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.7),
                0 0 40px rgba(0, 255, 157, 0.4);
}

.stchannel-separator:hover .separator-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.8);
}

/* Pulse Animation for Neon Style */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 255, 157, 0.5),
                    0 0 30px rgba(0, 255, 157, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 157, 0.7),
                    0 0 50px rgba(0, 255, 157, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stchannel-separator.separator-margin-large {
        margin: 2rem 0;
    }
    
    .stchannel-separator.separator-margin-xl {
        margin: 3rem 0;
    }
    
    .stchannel-separator .separator-content {
        padding: 0 1rem;
    }
    
    .stchannel-separator .separator-text {
        font-size: 1.2rem;
    }
}

/* Additional animations for neon separator */
@keyframes text-glow-pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 157, 0.7),
                     0 0 20px rgba(0, 255, 157, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(0, 255, 157, 0.9),
                     0 0 30px rgba(0, 255, 157, 0.7);
    }
}

@keyframes icon-glow-pulse {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 255, 157, 0.7),
                     0 0 25px rgba(0, 255, 157, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 157, 0.9),
                     0 0 35px rgba(0, 255, 157, 0.7);
    }
}
