* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --------------------------------------------------------------
   Neo-Cyber Design System Guidelines
   Palette: Graphite base + neon accenti (cyan, magenta, lime)
   Tipografia: Space Grotesk (display), Inter (body/copy)
   Componenti: radius condivisi, blur + glow modulare
   Motion: hover magnetico, layer aurora, rispetto reduced-motion
-------------------------------------------------------------- */


:root {
    color-scheme: dark;

    /* --- ETHEREAL PALETTE --- */
    --color-bg-deep: #030304;
    --color-bg: var(--color-bg-deep);
    --color-bg-subtle: #08080a;

    --color-bg-subtle: #08080a;
    --color-bg-card: rgba(12, 12, 14, 0.6);

    /* Accents - Aurora */
    --color-accent-cyan: #00f0ff;
    --color-accent-violet: #0066ff;
    --color-accent-magenta: #ff0055;
    --color-accent-lime: #ccff00;

    /* Text */
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-tertiary: rgba(255, 255, 255, 0.4);

    /* Borders & Glass */
    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glass-surface: rgba(255, 255, 255, 0.03);
    --glass-highlight: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --gradient-aurora-text: linear-gradient(135deg, #fff 0%, #a5f3fc 50%, #c4b5fd 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(0, 102, 255, 0.15) 0%, transparent 70%);

    /* Shadows */
    --shadow-sm: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 12px 40px -8px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.15);

    /* Typography */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --container-width: 1200px;
    --max-width-content: 1400px;
    --container-padding: clamp(1.5rem, 6vw, 8rem);
    --section-padding: clamp(4rem, 6vw, 6.5rem);
    --header-height: 80px;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Navigation */
    --nav-bg: rgba(3, 3, 4, 0.8);
    --nav-border: rgba(255, 255, 255, 0.08);
    --nav-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --nav-radius: 24px;
    --nav-link-color: rgba(255, 255, 255, 0.6);
    --nav-link-active: #ffffff;

    /* Gradients & Effects */
    --gradient-brand: linear-gradient(135deg, #00f0ff 0%, #0066ff 100%);
    --gradient-aurora: linear-gradient(135deg, #ff0055 0%, #0066ff 50%, #00f0ff 100%);
    --blur-backdrop-md: blur(16px);
}

/* --- BASE STYLES --- */
body {
    background: linear-gradient(140deg, #03050f 0%, #010105 30%, #031635 65%, #02030a 100%);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Prevent tap highlight but allow zoom gestures */
    -webkit-tap-highlight-color: transparent;
    /* Prevent text selection causing issues on mobile */
    -webkit-touch-callout: none;
    /* Prevent layout shifts during zoom */
    position: relative;
    width: 100%;
}

html {
    overflow-x: hidden;
    /* Prevent tap highlight but allow zoom */
    -webkit-tap-highlight-color: transparent;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 50%, rgba(0, 102, 255, 0.08), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.08), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(255, 0, 85, 0.05), transparent 40%);
    filter: blur(60px);
    background-size: cover;
    animation: aurora-move 20s infinite alternate ease-in-out;
    pointer-events: none;
}

/* Noise Texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.15;
}

@keyframes aurora-move {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Button Animation Keyframes */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    40% {
        opacity: 0.7;
    }
    100% {
        transform: scale(4.5);
        opacity: 0;
    }
}

@keyframes button-press {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

img,
svg {
    max-width: 100%;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Permetti selezione in campi di input e textarea */
input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-text-primary);
    margin: 0;
}

p {
    color: var(--color-text-secondary);
}

.section {
    padding: 4rem 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    text-align: center;
    margin: -1rem auto var(--space-xl);
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    padding: 0.95rem 1.8rem;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease, 
                opacity var(--motion-fast),
                border-color 0.3s ease;
    border: 1px solid transparent;
    line-height: 1;
    font-family: var(--font-body);
    will-change: transform, box-shadow;
    position: relative;
    overflow: hidden;
}

.button svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Button Hover Effects */
.button:hover:not(:disabled):not([aria-disabled="true"]) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.6), 
                0 0 100px rgba(255, 255, 255, 0.4),
                0 0 150px rgba(0, 102, 255, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.button:active:not(:disabled):not([aria-disabled="true"]) {
    transform: translateY(0) scale(0.98);
    animation: button-press 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.button:disabled,
.button[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.button--primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    transition: color 0.4s ease, background 0.5s ease, transform var(--motion-fast), box-shadow var(--motion-fast);
    overflow: hidden;
    z-index: 1;
}


.button--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        #FFA500 0%,
        #F7931A 15%,
        #FF6B35 22%,
        #0066ff 42%,
        #00B8FF 57%,
        #00D9FF 72%,
        #00E5FF 87%,
        #00D9FF 100%
    );
    background-size: 250% 100%;
    opacity: 0;
    transition: opacity 0.5s ease, background-position 0.5s ease;
    z-index: 0;
    pointer-events: none;
    filter: brightness(1.25) saturate(1.5);
    background-position: 0% 50%;
}

/* Assicura che tutto il contenuto del pulsante sia sopra il background animato */
.button--primary > * {
    position: relative;
    z-index: 10;
    transition: color 0.4s ease, filter 0.4s ease;
}

.button--primary * {
    position: relative;
    z-index: inherit;
    transition: color 0.4s ease;
}

/* Colore base del testo */
.button--primary,
.button--primary:link,
.button--primary:visited {
    color: #000000;
}

/* Hover animation per gradient - tutti i pulsanti primary */
.button--primary:hover:not(:disabled):not([aria-disabled="true"])::before {
    opacity: 1;
    background-position: 100% 50%;
    animation: gradient-shift 3s ease infinite;
}

/* Hover effect per layer scuro - tutti i pulsanti primary */
.button--primary:hover:not(:disabled):not([aria-disabled="true"])::after {
    opacity: 0.35;
}

/* Hover styles per pulsanti primary - struttura identica a hero-cta */
.button--primary:hover:not(:disabled):not([aria-disabled="true"]) {
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 56px rgba(255, 255, 255, 0.6), 
                0 0 120px rgba(255, 255, 255, 0.4),
                0 0 180px rgba(0, 102, 255, 0.35),
                0 0 220px rgba(0, 217, 255, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    /* Text-shadow rimosso - ora gestito da .btn-text */
}

.button--primary:hover:not(:disabled):not([aria-disabled="true"]) > *,
.button--primary:hover:not(:disabled):not([aria-disabled="true"]) * {
    color: #ffffff !important;
    /* Text-shadow rimosso - ora gestito da .btn-text */
}

.button--primary:hover:not(:disabled):not([aria-disabled="true"]) svg {
    stroke: #ffffff !important;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
}


/* Layer leggero per migliorare leggibilità senza oscurare troppo */
.button--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
}


/* Ripple effect element - più visibile e colorato */
.button--primary .ripple,
.hero-cta .ripple,
.pricing-button.primary .ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: scale(0);
    animation: ripple 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.button--secondary {
    background: rgba(59, 69, 120, 0.25);
    color: var(--color-text-primary);
    border: 1px solid rgba(99, 102, 241, 0.45);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Hover effects per button secondary */
.button--secondary:hover:not(:disabled):not([aria-disabled="true"]) {
    background: rgba(99, 102, 241, 0.35);
    border-color: rgba(99, 102, 241, 0.65);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1),
                0 8px 24px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px) scale(1.02);
}

.button--secondary:active:not(:disabled):not([aria-disabled="true"]) {
    transform: translateY(0) scale(0.98);
    background: rgba(99, 102, 241, 0.3);
}

.button.demo {
    width: fit-content;
    padding-inline: 2.5rem;
}

.surface-card {
    background: var(--glass-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-backdrop-md);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.chip--defi {
    border-color: rgba(0, 245, 160, 0.35);
    color: var(--color-ionic-green);
}

.chip--nft {
    border-color: rgba(255, 124, 228, 0.35);
    color: var(--color-ionic-magenta);
}

.chip--survival {
    border-color: rgba(107, 107, 255, 0.35);
    color: var(--color-ionic-blue);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    padding: 2rem var(--container-padding) 0.35rem;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.site-header__bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    border-radius: var(--nav-radius);
    border: 1px solid var(--nav-border);
    background: rgba(3, 3, 4, 0.6);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--nav-shadow);
    transition: padding 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 10002;
}

.site-header.is-condensed .site-header__bar {
    padding: 0.6rem 1.25rem;
    border-color: rgba(255, 255, 255, 0.15);
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-text-primary);
    min-width: 0;
}

.site-header__brand-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-header__brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--gradient-aurora);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 15px 30px rgba(92, 35, 221, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header__brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: max-content;
}

.brand-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    white-space: nowrap;
    display: inline-block;
    min-width: 100%;
}

.brand-title-crypto {
    color: var(--color-text-primary);
}

.brand-title-start {
    background: linear-gradient(135deg, #00D4FF 0%, #0099FF 50%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.78rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
    display: inline-block;
    min-width: 100%;
    text-align: left;
}

.site-header__nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 0.5rem;
}

.site-header__link {
    position: relative;
    color: var(--nav-link-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 0.25rem;
    transition: color 0.2s ease;
}

.site-header__link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.35rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #a5f3fc 0%, #ffffff 100%);
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__link:hover {
    color: var(--nav-link-active);
}

.site-header__link.is-active {
    color: var(--nav-link-active);
}

.site-header__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.site-header__cta {
    min-width: 180px;
    letter-spacing: 0.01em;
    /* Applica gli stessi stili del pulsante hero */
    position: relative;
    overflow: hidden;
    padding: 0.95rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
    background: #ffffff;
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: color 0.4s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    -webkit-text-stroke: initial;
    text-stroke: initial;
}

/* Layer leggero per site-header__cta (come hero-cta) */
.site-header__cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.site-header__cta:hover:not(:disabled):not([aria-disabled="true"])::after {
    opacity: 0.35;
}

/* Gradiente animato per site-header__cta (come hero-cta) */
.site-header__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #FFA500 0%,
        #F7931A 15%,
        #FF6B35 22%,
        #0066ff 42%,
        #00B8FF 57%,
        #00D9FF 72%,
        #00E5FF 87%,
        #00D9FF 100%
    );
    background-size: 250% 100%;
    opacity: 0;
    transition: opacity 0.5s ease, background-position 0.5s ease;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
    filter: brightness(1.25) saturate(1.5);
    background-position: 0% 50%;
}

.site-header__cta:hover:not(:disabled):not([aria-disabled="true"])::before {
    opacity: 1;
    background-position: 100% 50%;
    animation: gradient-shift 3s ease infinite;
}

.site-header__cta:hover:not(:disabled):not([aria-disabled="true"]) {
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 56px rgba(255, 255, 255, 0.6), 
                0 0 120px rgba(255, 255, 255, 0.4),
                0 0 180px rgba(0, 102, 255, 0.35),
                0 0 220px rgba(0, 217, 255, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    /* Text-shadow rimosso - ora gestito da .btn-text */
}

.site-header__cta:hover:not(:disabled):not([aria-disabled="true"]) > *,
.site-header__cta:hover:not(:disabled):not([aria-disabled="true"]) * {
    color: #ffffff !important;
    /* Text-shadow rimosso - ora gestito da .btn-text */
}

/* Assicura che il contenuto sia sopra il gradiente */
.site-header__cta > * {
    position: relative;
    z-index: 10;
}


.site-header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    padding: 0;
}

.site-header__mobile-toggle span {
    display: block;
    height: 2px;
    width: 55%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header__mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.site-header__mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-header__mobile-panel {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 7, 0.95);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    padding: 6.5rem 1.5rem 2rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 10000;
}

.site-header__mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.site-header__mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.site-header__mobile-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.site-header__mobile-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.site-header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.site-header__mobile-link,
.site-header__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.site-header__mobile-link::after {
    content: '↗';
    font-size: 0.95rem;
    opacity: 0.4;
}

.site-header__mobile-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.site-header__mobile-cta {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
}

body.mobile-nav-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .site-header__brand-badge {
        display: none;
    }
}

@media (max-width: 1100px) {
    .site-header__status {
        display: none;
    }
}

@media (max-width: 1150px) {

    .site-header__nav,
    .site-header__actions {
        display: none;
    }

    .site-header__mobile-toggle {
        display: flex;
        margin-left: auto;
    }
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(8rem, 10vw, 10rem) var(--container-padding) clamp(3rem, 5vw, 4rem);
    padding-top: clamp(8rem, 10vw, 10rem);
    text-align: center;
    gap: var(--space-md);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

/* Hero Background Mesh */
.hero-background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: -1;
    pointer-events: none;
    display: none;
}

/* Pre Headline */
.hero-badge-wrapper {
    opacity: 0;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    animation: slideUpFade 0.8s var(--ease-out-expo) 0.1s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.pre-headline {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    flex-wrap: nowrap;
}

.eyebrow-separator {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    font-size: 0.85em;
    margin: 0 0.25rem;
}

.eyebrow-date-text {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.eyebrow-date {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.eyebrow-date strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.eyebrow strong {
    font-size: 1.05em;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.eyebrow-icon {
    font-size: 1.1em;
}

/* Main Headline */
.hero-headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
}

.reveal-text {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 0.8s var(--ease-out-expo) forwards;
}

.reveal-text:nth-child(1) {
    animation-delay: 0.2s;
}

.reveal-text:nth-child(2) {
    animation-delay: 0.3s;
}

.reveal-text:nth-child(3) {
    animation-delay: 0.4s;
}

.text-gradient-wrapper {
    position: relative;
    display: inline-block;
}

.text-gradient {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #F7931A 0%,
        #F7931A 20%,
        #0066ff 40%,
        rgba(255, 255, 255, 1) 50%,
        #0066ff 60%,
        #00D9FF 80%,
        #00D9FF 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    0% {
        background-position: -50% 0;
    }
    100% {
        background-position: 150% 0;
    }
}

.reveal-text.secondary {
    font-size: 0.6em;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: -0.01em;
}

/* Sub-headline */
.sub-headline {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--color-text-secondary);
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 680px;
    opacity: 0;
    animation: slideUpFade 0.8s var(--ease-out-expo) 0.5s forwards;
}

.sub-headline strong {
    color: var(--color-text-primary);
    font-weight: 500;
}


/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: slideUpFade 0.8s var(--ease-out-expo) 0.6s forwards;
    margin-bottom: 4rem;
}

.hero-cta {
    position: relative;
    overflow: hidden;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: #ffffff;
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.4), 0 0 80px rgba(255, 255, 255, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: color 0.4s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    /* Sovrascrive gli stili di button--primary */
    -webkit-text-stroke: initial;
    text-stroke: initial;
}

/* Layer leggero per hero-cta per migliorare leggibilità */
.hero-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.hero-cta:hover:not(:disabled):not([aria-disabled="true"])::after {
    opacity: 0.35;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #FFA500 0%,
        #F7931A 15%,
        #FF6B35 22%,
        #0066ff 42%,
        #00B8FF 57%,
        #00D9FF 72%,
        #00E5FF 87%,
        #00D9FF 100%
    );
    background-size: 250% 100%;
    opacity: 0;
    transition: opacity 0.5s ease, background-position 0.5s ease;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
    /* Gradiente più luminoso e vivace */
    filter: brightness(1.25) saturate(1.5);
    background-position: 0% 50%;
}

/* Hover animation per hero-cta */
.hero-cta:hover:not(:disabled):not([aria-disabled="true"])::before {
    opacity: 1;
    background-position: 100% 50%;
    animation: gradient-shift 3s ease infinite;
}

.hero-cta:hover:not(:disabled):not([aria-disabled="true"]) {
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 56px rgba(255, 255, 255, 0.6), 
                0 0 120px rgba(255, 255, 255, 0.4),
                0 0 180px rgba(0, 102, 255, 0.35),
                0 0 220px rgba(0, 217, 255, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta:hover:not(:disabled):not([aria-disabled="true"]) > *,
.hero-cta:hover:not(:disabled):not([aria-disabled="true"]) * {
    color: #ffffff !important;
}

.hero-cta:hover:not(:disabled):not([aria-disabled="true"]) .btn-text,
.hero-cta:hover:not(:disabled):not([aria-disabled="true"]) .arrow-icon {
    color: #ffffff !important;
}

.hero-cta:hover:not(:disabled):not([aria-disabled="true"]) .arrow-icon {
    stroke: #ffffff !important;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
}

.hero-cta:active:not(:disabled):not([aria-disabled="true"]) {
    transform: translateY(-1px) scale(0.97);
    animation: button-press 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-cta > * {
    position: relative;
    z-index: 10;
}

/* Hover effects rimossi */

.hero-cta .arrow-icon {
    transition: transform 0.3s var(--ease-elastic), stroke 0.4s ease, filter 0.4s ease;
}

.hero-cta:hover:not(:disabled):not([aria-disabled="true"]) .arrow-icon {
    transform: translateX(4px);
}

.hero-cta:active:not(:disabled):not([aria-disabled="true"]) .arrow-icon {
    transform: translateX(2px) scale(0.95);
}

/* Glow effect per btn-glow */
.hero-cta .btn-glow {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
    filter: blur(8px);
}

.hero-cta:hover:not(:disabled):not([aria-disabled="true"]) .btn-glow {
    opacity: 0.8;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Assicura che btn-text sia sempre leggibile - per tutti i pulsanti */
.button--primary .btn-text,
.site-header__cta .btn-text,
.site-header__mobile-cta .btn-text,
.pricing-button.primary .btn-text,
.cta-button .btn-text,
.become-sponsor-button .btn-text {
    position: relative;
    z-index: 10;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* Text-shadow per btn-text durante hover - identico a hero-cta */
.button--primary:hover:not(:disabled):not([aria-disabled="true"]) .btn-text,
.site-header__cta:hover:not(:disabled):not([aria-disabled="true"]) .btn-text,
.site-header__mobile-cta:hover:not(:disabled):not([aria-disabled="true"]) .btn-text,
.pricing-button.primary:hover:not(:disabled):not([aria-disabled="true"]) .btn-text,
.cta-button:hover:not(:disabled):not([aria-disabled="true"]) .btn-text,
.become-sponsor-button:hover:not(:disabled):not([aria-disabled="true"]) .btn-text {
    text-shadow: 0 0 14px rgba(255, 255, 255, 1),
                 0 0 28px rgba(255, 255, 255, 0.7),
                 0 0 40px rgba(255, 255, 255, 0.4),
                 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-guarantee {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Community Section */
.community-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    opacity: 0;
    animation: slideUpFade 0.8s var(--ease-out-expo) 0.7s forwards;
}

.community-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.profile-pictures {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #030304;
    margin-left: -14px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.profile-pic:first-child {
    margin-left: 0;
}


.profile-pic:nth-child(1) {
    animation-delay: 0.8s;
}

.profile-pic:nth-child(2) {
    animation-delay: 0.9s;
}

.profile-pic:nth-child(3) {
    animation-delay: 1.0s;
}

.profile-pic:nth-child(4) {
    animation-delay: 1.1s;
}

.profile-pic:nth-child(5) {
    animation-delay: 1.2s;
}

.profile-pic:nth-child(6) {
    animation-delay: 1.3s;
}

.profile-pic:nth-child(7) {
    animation-delay: 1.4s;
}

.profile-pic:nth-child(8) {
    animation-delay: 1.5s;
}

.profile-pic:nth-child(9) {
    animation-delay: 1.6s;
}

.profile-pic:nth-child(10) {
    animation-delay: 1.7s;
}

.community-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.community-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    width: auto;
}

.stars {
    color: #fbbf24;
    letter-spacing: -2px;
    font-size: 1.3rem;
}

.score {
    color: var(--color-text-primary);
    font-weight: 600;
}

.member-count {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.4rem;
    text-align: left;
    white-space: nowrap;
}

.member-count strong {
    color: var(--color-text-primary);
}

.member-count__title {
    color: var(--color-text-secondary);
}

.member-count__label {
    font-size: 0.85rem;
    line-height: 1.1;
    color: var(--color-text-tertiary);
}

/* Companies Marquee */
.companies-section {
    width: 100%;
    overflow: hidden;
    margin-top: calc(2rem + 20px);
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.companies-text {
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.companies-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.companies-track {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    padding: 1rem 0;
    flex-wrap: nowrap;
    animation: marquee-scroll 40s linear infinite;
    width: fit-content;
    min-width: 200%;
}

.company-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.company-name {
    font-size: 1.9rem;
    filter: blur(8px);
}

.company-item:hover {
    opacity: 1;
    color: var(--color-text-primary);
}

/* Binance - No blur, always visible */
.company-item--binance {
    opacity: 1 !important;
    color: var(--color-text-primary) !important;
    gap: 0 !important;
}

.company-item--binance .crypto-icon--binance {
    filter: none !important;
    width: auto !important;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-item--binance .crypto-icon--binance img {
    height: 42px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    filter: none !important;
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(20deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Microsoft Logo */
.microsoft-logo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 24px;
    height: 24px;
}

.ms-square {
    width: 11px;
    height: 11px;
}

.ms-square:nth-child(1) {
    background-color: #F25022;
}

.ms-square:nth-child(2) {
    background-color: #7FBA00;
}

.ms-square:nth-child(3) {
    background-color: #00A4EF;
}

.ms-square:nth-child(4) {
    background-color: #FFB900;
}

/* Firecrawl Icon */
.firecrawl-icon {
    font-size: 1.5rem;
}

/* Helicone Icon */
.helicone-icon {
    width: 24px;
    height: 24px;
}

.helicone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 100%;
    height: 100%;
}

.grid-cell {
    background-color: #ffffff;
    border-radius: 1px;
}

.grid-cell:nth-child(2),
.grid-cell:nth-child(4),
.grid-cell:nth-child(6),
.grid-cell:nth-child(8) {
    background-color: transparent;
}

/* Llama Icon */
.llama-icon {
    font-size: 1.5rem;
}

/* Crypto Icon */
.crypto-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    filter: blur(8px);
}

.crypto-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Features Section */
.features-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
}

.features-section .section-title {
    max-width: none;
}

.teachers-section .section-title,
.testimonials-section .section-title {
    max-width: none;
}

.features-grid-wrapper {
    position: relative;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-height: none;
    overflow: visible;
}

.features-grid.collapsed {
    overflow: hidden;
    /* max-height will be set dynamically by JavaScript */
}

.features-gradient {
    display: none;
}

.features-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.features-toggle {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary);
    gap: 0.85rem;
    padding-left: 2rem;
    padding-right: 2rem;
    box-shadow: none;
    letter-spacing: 0.045em;
}

.features-toggle::after {
    display: none;
}

.features-toggle:hover,
.features-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-primary);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.features-toggle.is-expanded {
    background: linear-gradient(145deg, rgba(4, 10, 20, 0.95), rgba(3, 8, 18, 0.9));
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.features-toggle.is-expanded::after {
    border-color: rgba(255, 255, 255, 0.1);
}

.features-toggle.is-expanded:hover,
.features-toggle.is-expanded:focus-visible {
    background: linear-gradient(145deg, rgba(6, 14, 28, 1), rgba(3, 8, 18, 0.95));
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(-1px);
}

.features-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.features-grid.expanded+.features-gradient {
    opacity: 0;
    pointer-events: none;
}

/* Feature Card (Bento Style) */
.feature-card {
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    box-sizing: border-box;
}

/* Bordi card colorati per categoria */
.feature-card[data-category="essenziali"] {
    border-color: rgba(0, 240, 255, 0.3);
}

.feature-card[data-category="defi"] {
    border-color: rgba(0, 102, 255, 0.2);
}

.feature-card[data-category="nft"] {
    border-color: rgba(255, 0, 85, 0.2);
}

.feature-card[data-category="trading"] {
    border-color: rgba(50, 215, 131, 0.2);
}

.feature-card[data-category="investigazione"] {
    border-color: rgba(251, 191, 36, 0.2);
}

.feature-card[data-category="sicurezza"] {
    border-color: rgba(239, 68, 68, 0.2);
}

.feature-card[data-category="strategia"] {
    border-color: rgba(251, 146, 60, 0.2);
}

.feature-card[data-category="blockchain"] {
    border-color: rgba(0, 102, 255, 0.3);
}

.feature-card[data-category="mindset"] {
    border-color: rgba(204, 255, 0, 0.3);
}

.feature-card[data-category="networking"] {
    border-color: rgba(255, 0, 85, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.feature-card[data-category="essenziali"]:hover {
    border-color: rgba(0, 240, 255, 0.5);
}

.feature-card[data-category="defi"]:hover {
    border-color: rgba(0, 102, 255, 0.4);
}

.feature-card[data-category="nft"]:hover {
    border-color: rgba(255, 0, 85, 0.4);
}

.feature-card[data-category="trading"]:hover {
    border-color: rgba(50, 215, 131, 0.4);
}

.feature-card[data-category="investigazione"]:hover {
    border-color: rgba(251, 191, 36, 0.4);
}

.feature-card[data-category="sicurezza"]:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

.feature-card[data-category="strategia"]:hover {
    border-color: rgba(251, 146, 60, 0.4);
}

.feature-card[data-category="blockchain"]:hover {
    border-color: rgba(0, 102, 255, 0.5);
}

.feature-card[data-category="mindset"]:hover {
    border-color: rgba(204, 255, 0, 0.5);
}

.feature-card[data-category="networking"]:hover {
    border-color: rgba(255, 0, 85, 0.5);
}

.feature-card[data-category="wallet"] {
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-card[data-category="token"] {
    border-color: rgba(251, 191, 36, 0.2);
}

.feature-card[data-category="market"] {
    border-color: rgba(14, 165, 233, 0.2);
}

.feature-card[data-category="tokenomics"] {
    border-color: rgba(168, 85, 247, 0.2);
}

.feature-card[data-category="fiscalita"] {
    border-color: rgba(245, 158, 11, 0.2);
}

.feature-card[data-category="wallet"]:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

.feature-card[data-category="token"]:hover {
    border-color: rgba(251, 191, 36, 0.4);
}

.feature-card[data-category="market"]:hover {
    border-color: rgba(14, 165, 233, 0.4);
}

.feature-card[data-category="tokenomics"]:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

.feature-card[data-category="fiscalita"]:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

/* Card Content */
.skill-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    width: fit-content;
    border: 1px solid transparent;
    align-self: center;
}

.skill-badge-foundation {
    background: rgba(0, 217, 245, 0.1);
    color: #00d9f5;
    border-color: rgba(0, 217, 245, 0.2);
}

.skill-badge-defi {
    background: rgba(0, 102, 255, 0.1);
    color: #b070ff;
    border-color: rgba(0, 102, 255, 0.2);
}

.skill-badge-nft {
    background: rgba(255, 0, 85, 0.1);
    color: #ff4d8d;
    border-color: rgba(255, 0, 85, 0.2);
}

.skill-badge-trading {
    background: rgba(50, 215, 131, 0.1);
    color: #32d583;
    border-color: rgba(50, 215, 131, 0.2);
}

.skill-badge-investigation {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.2);
}

.skill-badge-survival {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.2);
}

.skill-badge-security {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
}

.skill-badge-strategy {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
    border-color: rgba(251, 146, 60, 0.2);
}

.skill-badge-essenziali {
    background: rgba(0, 240, 255, 0.15);
    color: #00f0ff;
    border-color: rgba(0, 240, 255, 0.3);
}

.skill-badge-blockchain {
    background: rgba(0, 102, 255, 0.15);
    color: #b070ff;
    border-color: rgba(0, 102, 255, 0.3);
}

.skill-badge-mindset {
    background: rgba(204, 255, 0, 0.15);
    color: #ccff00;
    border-color: rgba(204, 255, 0, 0.3);
}

.skill-badge-networking {
    background: rgba(255, 0, 85, 0.15);
    color: #ff4d8d;
    border-color: rgba(255, 0, 85, 0.3);
}

/* New category badges */
.skill-badge-wallet {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.3);
}

.skill-badge-token {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

.skill-badge-sicurezza {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.skill-badge-market {
    background: rgba(14, 165, 233, 0.15);
    color: #0ea5e9;
    border-color: rgba(14, 165, 233, 0.3);
}

.skill-badge-tokenomics {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
}

.skill-badge-fiscalita {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

.skill-badge-investigazione {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    display: block;
    width: 100%;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.feature-title-line {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.skill-benefits {
    list-style: disc;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
    width: 100%;
    align-items: center;
}

.skill-benefits li {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    display: list-item;
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
}

.skill-benefits li::marker {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Show More Button */
.features-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.features-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.features-toggle-btn svg {
    transition: transform 0.3s ease;
}

.features-toggle-btn.expanded svg {
    transform: rotate(180deg);
}

/* All checkmarks are now green - removed category-specific colors */

/* How It Works Section */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.negative-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-item {
    text-align: center;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.negative-list .step-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--glass-surface);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-backdrop-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.negative-list .step-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.step-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.step-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-title {
        white-space: normal;
    }
}

/* Teachers Section */
.teachers-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.teacher-card {
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--glass-surface);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-backdrop-md);
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, opacity 0.6s ease-out, transform 0.6s ease-out;
}

.teacher-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.teacher-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 1.5rem;
    object-fit: cover;
    object-position: center;
    display: block;
}

.teacher-card img.teacher-avatar {
    background: none;
}

.teacher-avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    display: block;
}

.teacher-avatar-wrapper .teacher-avatar {
    margin: 0;
}

.teacher-avatar-wrapper--samuele .teacher-avatar {
    transform: scale(1.25);
    width: 100px;
    height: 100px;
}

.teacher-avatar--gabriele {
    object-position: 50% 20%;
}

.teacher-avatar--biagiola {
    object-position: center top;
}

.teacher-card:nth-child(1) .teacher-avatar:not(img) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.teacher-card:nth-child(2) .teacher-avatar:not(img) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.teacher-card:nth-child(3) .teacher-avatar:not(img) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.teacher-card:nth-child(4) .teacher-avatar:not(img) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.teacher-card:nth-child(5) .teacher-avatar:not(img) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.teacher-card:nth-child(6) .teacher-avatar:not(img) {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.teacher-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.teacher-role {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.teacher-bio {
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
    line-height: 1.6;
}

/* Calendar Section */
.calendar-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
}

/* New Pathway Structure */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 720px;
    margin: 1rem auto 0;
}

.pathway-grid {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pathway-week-card {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: var(--blur-backdrop-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .pathway-week-card {
        padding: 1.5rem;
    }
}

.pathway-week-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pathway-week-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.pathway-week-card:hover::before {
    opacity: 1;
}

.pathway-week-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pathway-week-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.pathway-week-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Gradient colors for each week - from orange to cyan */
.pathway-week-card:nth-child(1) .pathway-week-number {
    background: linear-gradient(135deg, #F7931A 0%, #FF6B35 100%);
    box-shadow: 0 8px 24px rgba(247, 147, 26, 0.4);
}

.pathway-week-card:nth-child(2) .pathway-week-number {
    background: linear-gradient(135deg, #FF6B35 0%, #C44569 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.pathway-week-card:nth-child(3) .pathway-week-number {
    background: linear-gradient(135deg, #C44569 0%, #8B4C9F 100%);
    box-shadow: 0 8px 24px rgba(196, 69, 105, 0.4);
}

.pathway-week-card:nth-child(4) .pathway-week-number {
    background: linear-gradient(135deg, #8B4C9F 0%, #0066ff 100%);
    box-shadow: 0 8px 24px rgba(139, 76, 159, 0.4);
}

.pathway-week-card:nth-child(5) .pathway-week-number {
    background: linear-gradient(135deg, #0066ff 0%, #5B8DEF 100%);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.pathway-week-card:nth-child(6) .pathway-week-number {
    background: linear-gradient(135deg, #5B8DEF 0%, #3DA5D9 100%);
    box-shadow: 0 8px 24px rgba(91, 141, 239, 0.4);
}

.pathway-week-card:nth-child(7) .pathway-week-number {
    background: linear-gradient(135deg, #3DA5D9 0%, #00D9FF 100%);
    box-shadow: 0 8px 24px rgba(61, 165, 217, 0.4);
}

.pathway-week-card:nth-child(8) .pathway-week-number {
    background: linear-gradient(135deg, #00D9FF 0%, #00F0FF 100%);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
}

.pathway-week-card:nth-child(9) .pathway-week-number {
    background: linear-gradient(135deg, #00F0FF 0%, #F7931A 100%);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.4);
    color: #fff;
}

.pathway-week-card:hover .pathway-week-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.5);
}

.pathway-week-label {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.pathway-week-info {
    flex: 1;
}

.pathway-week-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
    background: var(--gradient-aurora-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pathway-week-meta {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 500;
}

.pathway-modules {
    display: grid;
    gap: 1.5rem;
    max-width: 100%;
    overflow: hidden;
}

.pathway-module-card {
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.pathway-module-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
}

.pathway-module-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.pathway-module-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    flex-shrink: 0;
    font-family: var(--font-display);
}

.pathway-module-title-group {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    max-width: 100%;
}

.pathway-module-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pathway-module-duration {
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
    color: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.pathway-module-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pathway-module-points li {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.pathway-module-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(0, 102, 255, 0.6);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
}

.pathway-module-meta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.pathway-module-teachers-section {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align teachers to the left */
    margin-left: 0; /* Remove auto margin for left alignment */
    width: 100%; /* Take full width */
}

.pathway-module-partners-section {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 0;
    width: 100%;
}

.pathway-partners-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.pathway-partner-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(0, 245, 160, 0.3);
    background: rgba(0, 245, 160, 0.1);
    color: var(--color-ionic-green);
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 245, 160, 0.1);
}

.pathway-partner-badge:hover {
    background: rgba(0, 245, 160, 0.15);
    border-color: rgba(0, 245, 160, 0.5);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 245, 160, 0.2);
}

.pathway-module-skills-section {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.pathway-meta-label {
    font-size: 0.95rem;
    color: var(--color-text-tertiary);
    margin: 0;
    white-space: nowrap;
    font-weight: 500;
    flex-shrink: 0;
}

.pathway-meta-label strong {
    color: var(--color-text-secondary);
    font-weight: 600;
}

.pathway-teachers-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 100%;
    overflow: hidden;
}

.pathway-teacher-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.pathway-teacher-item:hover {
    transform: translateX(4px);
}

.pathway-teacher-name {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    white-space: nowrap;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pathway-teacher-item:hover .pathway-teacher-name {
    color: var(--color-text-primary);
}

.pathway-module-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
    max-width: 100%;
    overflow: hidden;
}

.pathway-skill-bubble {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-secondary);
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pathway-skill-bubble:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Skill bubble colors by category */
.pathway-skill-essenziali {
    border-color: rgba(0, 240, 255, 0.4) !important;
}

.pathway-skill-essenziali:hover {
    border-color: rgba(0, 240, 255, 0.6) !important;
    background: rgba(0, 240, 255, 0.1);
}

.pathway-skill-defi {
    border-color: rgba(0, 102, 255, 0.4) !important;
}

.pathway-skill-defi:hover {
    border-color: rgba(0, 102, 255, 0.6) !important;
    background: rgba(0, 102, 255, 0.1);
}

.pathway-skill-nft {
    border-color: rgba(255, 0, 85, 0.4) !important;
}

.pathway-skill-nft:hover {
    border-color: rgba(255, 0, 85, 0.6) !important;
    background: rgba(255, 0, 85, 0.1);
}

.pathway-skill-trading {
    border-color: rgba(50, 215, 131, 0.4) !important;
}

.pathway-skill-trading:hover {
    border-color: rgba(50, 215, 131, 0.6) !important;
    background: rgba(50, 215, 131, 0.1);
}

.pathway-skill-investigazione {
    border-color: rgba(251, 191, 36, 0.4) !important;
}

.pathway-skill-investigazione:hover {
    border-color: rgba(251, 191, 36, 0.6) !important;
    background: rgba(251, 191, 36, 0.1);
}

.pathway-skill-sicurezza {
    border-color: rgba(239, 68, 68, 0.4) !important;
}

.pathway-skill-sicurezza:hover {
    border-color: rgba(239, 68, 68, 0.6) !important;
    background: rgba(239, 68, 68, 0.1);
}

.pathway-skill-strategia {
    border-color: rgba(251, 146, 60, 0.4) !important;
}

.pathway-skill-strategia:hover {
    border-color: rgba(251, 146, 60, 0.6) !important;
    background: rgba(251, 146, 60, 0.1);
}

.pathway-skill-blockchain {
    border-color: rgba(0, 102, 255, 0.4) !important;
}

.pathway-skill-blockchain:hover {
    border-color: rgba(0, 102, 255, 0.6) !important;
    background: rgba(0, 102, 255, 0.1);
}

.pathway-skill-mindset {
    border-color: rgba(204, 255, 0, 0.4) !important;
}

.pathway-skill-mindset:hover {
    border-color: rgba(204, 255, 0, 0.6) !important;
    background: rgba(204, 255, 0, 0.1);
}

.pathway-skill-networking {
    border-color: rgba(255, 0, 85, 0.4) !important;
}

.pathway-skill-networking:hover {
    border-color: rgba(255, 0, 85, 0.6) !important;
    background: rgba(255, 0, 85, 0.1);
}


.pathway-teacher-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: all 0.3s ease;
}

.pathway-teacher-avatar:hover {
    border-color: rgba(0, 102, 255, 0.5);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .pathway-week-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .pathway-week-badge {
        flex-direction: row;
    }

    .pathway-module-title-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
    }

    .pathway-module-title {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .pathway-module-duration {
        align-self: flex-start;
    }

    .pathway-module-card {
        padding: 1.25rem;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .pathway-module-teachers-section {
        justify-content: flex-start;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .pathway-module-teachers-section,
    .pathway-module-skills-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
    }

    .pathway-meta-label {
        margin-bottom: 0.25rem;
        white-space: normal;
        word-wrap: break-word;
    }

    .pathway-teachers-list,
    .pathway-module-skills {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .pathway-teacher-item {
        max-width: 100%;
        overflow: hidden;
        flex-wrap: wrap;
    }

    .pathway-teacher-name {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .pathway-module-header {
        max-width: 100%;
        overflow: hidden;
    }

    .pathway-module-meta {
        max-width: 100%;
        overflow: hidden;
    }

    .pathway-skill-bubble {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }

    .pathway-module-points {
        max-width: 100%;
        overflow: hidden;
    }

    .pathway-module-points li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

.calendar-timeline {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
}

/* Calendar Week Container */
.calendar-week {
    margin-bottom: 4rem;
    position: relative;
}

.calendar-week:last-child {
    margin-bottom: 0;
}

.calendar-week-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 240, 255, 0.06) 100%);
    border: 2px solid rgba(0, 102, 255, 0.25);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--blur-backdrop-md);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-week-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-brand);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transition: width 0.4s ease, box-shadow 0.4s ease;
}

.calendar-week-header:hover {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 12px 48px rgba(0, 102, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.calendar-week-header:hover::before {
    width: 8px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

.calendar-week-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.week-number-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #03120f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 6px 30px rgba(0, 240, 255, 0.4), 0 0 40px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.week-label {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.calendar-week-title {
    flex: 1;
}

.week-title-text {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
    background: var(--gradient-aurora-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.calendar-week-header:hover .week-title-text {
    background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 40%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.week-modules-count {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.calendar-week-content {
    position: relative;
    padding-left: 2.5rem;
    border-left: 2px solid rgba(0, 102, 255, 0.2);
    margin-left: 40px;
    margin-top: 1.5rem;
    transition: border-color 0.3s ease;
}

.calendar-week:hover .calendar-week-content {
    border-color: rgba(0, 102, 255, 0.35);
}

.calendar-week-content .calendar-item {
    margin-bottom: 1.5rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.calendar-week-content .calendar-item:hover {
    opacity: 1;
}

.calendar-week-content .calendar-item:last-child {
    margin-bottom: 0;
}

.pathway-week-final .pathway-week-header {
    background: transparent;
    border-color: rgba(0, 102, 255, 0.2);
    position: relative;
}

.pathway-week-final .pathway-week-header::before {
    background: linear-gradient(135deg, #0066ff 0%, #00f0ff 100%);
    opacity: 0.6;
}

.pathway-week-final .pathway-week-number {
    background: linear-gradient(135deg, #0066ff 0%, #00f0ff 100%);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    font-size: 2rem; /* Larger for emoji */
}

/* Prima settimana - stile speciale */
.calendar-week:first-child .calendar-week-header {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.18) 0%, rgba(0, 102, 255, 0.12) 100%);
    border-color: rgba(0, 240, 255, 0.5);
    border-width: 2.5px;
    box-shadow: 0 12px 48px rgba(0, 240, 255, 0.25), 
                0 0 80px rgba(0, 102, 255, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
}

.calendar-week:first-child .calendar-week-header::before {
    background: linear-gradient(135deg, #00f0ff 0%, #0066ff 100%);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.8), 0 0 60px rgba(0, 102, 255, 0.4);
    width: 8px;
}

.calendar-week:first-child .calendar-week-header::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(0, 102, 255, 0.3));
    z-index: -1;
    opacity: 0.6;
    filter: blur(20px);
    animation: pulse-glow-border 3s ease-in-out infinite;
}

@keyframes pulse-glow-border {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.calendar-week:first-child .calendar-week-header:hover {
    border-color: rgba(0, 240, 255, 0.7);
    box-shadow: 0 16px 64px rgba(0, 240, 255, 0.35), 
                0 0 100px rgba(0, 102, 255, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.calendar-week:first-child .week-number-badge {
    background: linear-gradient(135deg, #00f0ff 0%, #0066ff 100%);
    box-shadow: 0 8px 40px rgba(0, 240, 255, 0.6), 
                0 0 60px rgba(0, 102, 255, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 40px rgba(0, 240, 255, 0.5), 0 0 60px rgba(0, 102, 255, 0.4);
    }
    50% {
        box-shadow: 0 8px 50px rgba(0, 240, 255, 0.7), 0 0 80px rgba(0, 102, 255, 0.6);
    }
}

.calendar-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(0, 240, 255, 0.3) 0%, 
        rgba(0, 102, 255, 0.2) 50%, 
        rgba(255, 0, 85, 0.3) 100%);
    opacity: 0.4;
}

.calendar-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.calendar-item:last-child {
    margin-bottom: 0;
}

.calendar-date {
    flex-shrink: 0;
    width: 120px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.date-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 240, 255, 0.2) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(0, 102, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-item:hover .date-number {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.6);
}

.date-label {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 0.25rem;
}

.date-week {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    margin-top: 0.25rem;
    opacity: 0.6;
}

.calendar-content {
    flex: 1;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-backdrop-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.calendar-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.calendar-content:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.calendar-content:hover::before {
    opacity: 1;
}

.calendar-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.calendar-content:hover .calendar-title {
    color: #ffffff;
}

.calendar-meta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
}

.calendar-teachers-section {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.calendar-teacher-label {
    font-size: 0.95rem;
    color: var(--color-text-tertiary);
    margin: 0;
    white-space: nowrap;
    font-weight: 500;
}

.calendar-teacher-label strong {
    color: var(--color-text-secondary);
    font-weight: 600;
}

.calendar-teachers-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.calendar-teacher-avatar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.calendar-teacher-avatar:hover {
    transform: translateX(4px);
}

.teacher-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.calendar-teacher-avatar:hover .teacher-avatar-img {
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
    transform: scale(1.1);
}

.teacher-avatar-name {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    white-space: nowrap;
    font-weight: 500;
    transition: color 0.3s ease;
}

.calendar-teacher-avatar:hover .teacher-avatar-name {
    color: var(--color-text-primary);
}

.calendar-teacher,
.calendar-focus {
    font-size: 0.95rem;
    color: var(--color-text-tertiary);
    line-height: 1.6;
}

.calendar-teacher strong,
.calendar-focus strong {
    color: var(--color-text-secondary);
}

.calendar-skills-section {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
    max-width: 100%;
    overflow: hidden;
}

.calendar-skills-label {
    font-size: 0.95rem;
    color: var(--color-text-tertiary);
    margin: 0;
    white-space: nowrap;
    font-weight: 500;
    flex-shrink: 0;
}

.calendar-skills-label strong {
    color: var(--color-text-secondary);
    font-weight: 600;
}

.calendar-skills-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
    max-width: 100%;
    overflow: hidden;
}

.calendar-skill-bubble {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-secondary);
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.calendar-skill-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendar-skill-bubble:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.calendar-skill-bubble:hover::before {
    opacity: 1;
}

/* Calendar Skill Bubbles - Colored Borders by Category */
.calendar-skill-essenziali {
    border-color: rgba(0, 240, 255, 0.4) !important;
}

.calendar-skill-essenziali:hover {
    border-color: rgba(0, 240, 255, 0.6) !important;
    background: rgba(0, 240, 255, 0.1);
}

.calendar-skill-defi {
    border-color: rgba(0, 102, 255, 0.4) !important;
}

.calendar-skill-defi:hover {
    border-color: rgba(0, 102, 255, 0.6) !important;
    background: rgba(0, 102, 255, 0.1);
}

.calendar-skill-nft {
    border-color: rgba(255, 0, 85, 0.4) !important;
}

.calendar-skill-nft:hover {
    border-color: rgba(255, 0, 85, 0.6) !important;
    background: rgba(255, 0, 85, 0.1);
}

.calendar-skill-trading {
    border-color: rgba(50, 215, 131, 0.4) !important;
}

.calendar-skill-trading:hover {
    border-color: rgba(50, 215, 131, 0.6) !important;
    background: rgba(50, 215, 131, 0.1);
}

.calendar-skill-investigazione {
    border-color: rgba(251, 191, 36, 0.4) !important;
}

.calendar-skill-investigazione:hover {
    border-color: rgba(251, 191, 36, 0.6) !important;
    background: rgba(251, 191, 36, 0.1);
}

.calendar-skill-sicurezza {
    border-color: rgba(239, 68, 68, 0.4) !important;
}

.calendar-skill-sicurezza:hover {
    border-color: rgba(239, 68, 68, 0.6) !important;
    background: rgba(239, 68, 68, 0.1);
}

.calendar-skill-strategia {
    border-color: rgba(251, 146, 60, 0.4) !important;
}

.calendar-skill-strategia:hover {
    border-color: rgba(251, 146, 60, 0.6) !important;
    background: rgba(251, 146, 60, 0.1);
}

.calendar-skill-blockchain {
    border-color: rgba(0, 102, 255, 0.4) !important;
}

.calendar-skill-blockchain:hover {
    border-color: rgba(0, 102, 255, 0.6) !important;
    background: rgba(0, 102, 255, 0.1);
}

.calendar-skill-mindset {
    border-color: rgba(204, 255, 0, 0.4) !important;
}

.calendar-skill-mindset:hover {
    border-color: rgba(204, 255, 0, 0.6) !important;
    background: rgba(204, 255, 0, 0.1);
}

.calendar-skill-networking {
    border-color: rgba(255, 0, 85, 0.4) !important;
}

.calendar-skill-networking:hover {
    border-color: rgba(255, 0, 85, 0.6) !important;
    background: rgba(255, 0, 85, 0.1);
}

.calendar-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
    max-width: 100%;
    overflow: hidden;
}

.calendar-module {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    min-height: 180px;
    backdrop-filter: var(--blur-backdrop-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    max-width: 100%;
    box-sizing: border-box;
}

.calendar-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.calendar-module::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 102, 255, 0.08),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.calendar-module:hover {
    border-color: rgba(0, 102, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.2), 
                0 0 60px rgba(0, 102, 255, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.calendar-module:hover::before {
    opacity: 1;
}

.calendar-module:hover::after {
    opacity: 1;
}

.calendar-module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
    min-width: 0;
    max-width: 100%;
}

.calendar-module-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.calendar-module:hover .calendar-module-title {
    color: #ffffff;
}

.calendar-module-duration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
    color: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0, 102, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.calendar-module:hover .calendar-module-duration {
    background: var(--gradient-brand);
    border-color: rgba(0, 102, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.calendar-module-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.calendar-module-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.calendar-module-points li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.calendar-module-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(0, 102, 255, 0.6);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.calendar-module:hover .calendar-module-points li {
    color: rgba(255, 255, 255, 0.9);
}

.calendar-module:hover .calendar-module-points li::before {
    color: rgba(0, 102, 255, 0.8);
}

.calendar-item-final .calendar-content {
    border-color: rgba(255, 215, 0, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.calendar-item-final .date-number {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: #000;
}

@media (max-width: 900px) {
    .calendar-week-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .calendar-week-number {
        flex-direction: row;
        gap: 1rem;
    }

    .week-number-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .calendar-week-content {
        padding-left: 1.5rem;
        margin-left: 30px;
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-item {
        flex-direction: column;
        padding-left: 0;
        gap: 1.5rem;
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-timeline::before {
        left: 15px;
    }

    .calendar-date {
        display: flex;
        align-items: center;
        gap: 1rem;
        max-width: 100%;
    }

    .date-number {
        margin: 0;
    }

    .calendar-content {
        padding: 1.5rem;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .calendar-modules {
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-module {
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .calendar-module-header {
        flex-wrap: wrap;
        max-width: 100%;
    }

    .calendar-module-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .calendar-skills-section {
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-skills-bubbles {
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-skill-bubble {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    .calendar-modules {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calendar-module {
        padding: 1.25rem;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .calendar-module-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .calendar-module-title {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .calendar-module-duration {
        align-self: flex-start;
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    .calendar-module-points {
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-module-points li {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .calendar-module-meta {
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-skills-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-skills-label {
        white-space: normal;
        word-wrap: break-word;
        margin-bottom: 0.25rem;
    }

    .calendar-skills-bubbles {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-skill-bubble {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    background-color: var(--glass-surface);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-backdrop-md);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    font-family: var(--font-body);
    margin: 0;
    letter-spacing: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
}

.testimonial-avatar-image {
    object-fit: cover;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-avatar-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.testimonial-avatar-3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.testimonial-avatar-4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.testimonial-avatar-5 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.testimonial-avatar-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.testimonial-avatar-7 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.testimonial-avatar-8 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-avatar-9 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.testimonial-avatar-10 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.testimonial-avatar-11 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-avatar-12 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.testimonial-role {
    display: none;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
    justify-items: center;
}

.pricing-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
    min-height: 780px;
    background: var(--glass-surface);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-backdrop-md);
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.3);
    border-width: 2px;
}

.pricing-card-unavailable {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.pricing-card-unavailable::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.pricing-card-unavailable:hover {
    transform: none;
    border-color: var(--border-light);
}

.pricing-card-featured {
    min-height: 780px;
}

.pricing-card-featured .pricing-features {
    margin-bottom: 2rem;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-price-wrapper {
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.total-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.total-value-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.total-value-amount {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-weight: 600;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-tertiary);
    margin-left: 0.5rem;
}

.original-price {
    margin-bottom: 0.5rem;
}

.original-amount {
    font-size: 1.25rem;
    color: #f87171;
    text-decoration: line-through;
}

.discount-badge {
    display: inline-block;
    background-color: #10b981;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.global-coupon-section {
    max-width: 600px;
    width: 100%;
    margin: 4rem auto 0;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.coupon-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.coupon-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.coupon-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.coupon-section {
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.coupon-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}

.coupon-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.coupon-button {
    width: 100%;
    gap: 0.5rem;
    white-space: nowrap;
    justify-content: center;
}

.coupon-message {
    font-size: 0.9rem;
    min-height: 1.5rem;
    text-align: center;
    padding-top: 0;
    margin-top: 0;
    font-weight: 500;
}

.coupon-message.success {
    color: #4ade80;
}

.coupon-message.error {
    color: #f87171;
}

/* Fullscreen Overlay Animation */
.coupon-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, #03050f 0%, #010105 30%, #031635 65%, #02030a 100%);
    z-index: 9999;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.coupon-fullscreen-overlay.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-text-primary);
    font-weight: 700;
}

.pricing-features li.feature-unavailable {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-features li.feature-unavailable::before {
    content: '✗';
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.pricing-features li.feature-unavailable .feature-value {
    color: rgba(255, 255, 255, 0.4);
}

.feature-item {
    flex: 1;
}

.feature-value {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 1rem;
}

.feature-total {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.feature-total .feature-item {
    font-size: 1.125rem;
    color: var(--color-text-primary);
}

.feature-total .feature-value {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    font-weight: 700;
}

.feature-total::before {
    display: none;
}

.pricing-button {
    width: 100%;
    font-size: 1.125rem;
    justify-content: center;
    margin-top: auto;
}

.pricing-button.primary {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.15rem 2.25rem;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-button.primary:hover:not(:disabled):not([aria-disabled="true"]) {
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 56px rgba(255, 255, 255, 0.6), 
                0 0 120px rgba(255, 255, 255, 0.4),
                0 0 180px rgba(0, 102, 255, 0.35),
                0 0 220px rgba(0, 217, 255, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    /* Text-shadow rimosso - ora gestito da .btn-text */
}

.pricing-button.primary:hover:not(:disabled):not([aria-disabled="true"]) > *,
.pricing-button.primary:hover:not(:disabled):not([aria-disabled="true"]) * {
    color: #ffffff !important;
    /* Text-shadow rimosso - ora gestito da .btn-text */
}

.pricing-button.primary:active:not(:disabled):not([aria-disabled="true"]) {
    transform: translateY(0) scale(0.98);
    animation: button-press 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Pricing button eredita da button--primary, ma assicuriamo che tutto sia allineato */
.pricing-button.primary::before {
    background: linear-gradient(
        90deg,
        #FFA500 0%,
        #F7931A 15%,
        #FF6B35 22%,
        #0066ff 42%,
        #00B8FF 57%,
        #00D9FF 72%,
        #00E5FF 87%,
        #00D9FF 100%
    );
    background-size: 250% 100%;
    filter: brightness(1.25) saturate(1.5);
}

.pricing-button.primary::after {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.pricing-button.primary:hover:not(:disabled):not([aria-disabled="true"])::after {
    opacity: 0.35;
}

/* Pricing Container Responsive */
@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding-top: 0.75rem;
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Sponsors Section */
.sponsors-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
}

.sponsors-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.sponsor-card {
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background-color: var(--glass-surface);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                background-color 0.4s ease,
                box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: var(--blur-backdrop-md);
}

/* Sponsor Cards - Enhanced Hover Effect */
.sponsors-bento-grid:hover .sponsor-card {
    opacity: 0.4;
    transform: scale(0.95);
}

.sponsors-bento-grid .sponsor-card:hover {
    opacity: 1 !important;
    transform: translateY(-8px) scale(1.05) !important;
    z-index: 10;
    border-color: rgba(0, 102, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 102, 255, 0.3),
                0 0 60px rgba(0, 102, 255, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Large cards - span 2 columns */
.sponsor-card-large {
    grid-column: span 2;
    grid-row: span 1;
}

/* Medium cards - span 1 column */
.sponsor-card-medium {
    grid-column: span 1;
    grid-row: span 1;
}

/* Small cards - span 1 column */
.sponsor-card-small {
    grid-column: span 1;
    grid-row: span 1;
    padding: 1.5rem;
}

/* Become sponsor card - special styling */
.sponsor-card-become {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.sponsor-card-become::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.sponsor-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: transparent;
    border: none;
    width: auto;
    height: auto;
}

.sponsor-logo-img {
    width: 100%;
    height: auto;
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.sponsor-card:hover .sponsor-logo-img {
    filter: brightness(1.3);
}

.sponsor-card-small .sponsor-logo-img {
    max-width: 80px;
    max-height: 60px;
}

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

.sponsor-card-small .sponsor-name {
    font-size: 1rem;
}

.sponsor-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.sponsor-card-small .sponsor-description {
    display: block;
}

.sponsor-card-small .sponsor-icon {
    font-size: 2rem;
}

/* Blurred sponsor elements */
.sponsor-icon-blurred {
    filter: blur(8px);
}

.sponsor-name-blurred {
    filter: blur(8px);
}

.sponsor-description-blurred {
    filter: blur(8px);
}

.become-sponsor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.sponsor-card-main-sponsor .become-sponsor-content {
    justify-content: center;
    padding-top: 0;
    gap: 1.5rem;
}

.become-sponsor-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes pulseLight {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes floatLight {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Scroll-triggered Animation Classes */
.fade-in-up {
    opacity: 0 !important;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animate {
    opacity: 1 !important;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.animate {
    opacity: 1;
}

/* Stagger animation support */
.stagger-item {
    opacity: 0 !important;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-item.animate {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Ensure sections start hidden */
.features-section,
.how-it-works-section,
.teachers-section,
.testimonials-section,
.pricing-section,
.faq-section,
.cta-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.features-section.animate,
.how-it-works-section.animate,
.teachers-section.animate,
.testimonials-section.animate,
.pricing-section.animate,
.faq-section.animate,
.cta-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Calendar section - always visible, animate on scroll */
.calendar-section {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Ensure calendar-section overrides fade-up-element */
.calendar-section.fade-up-element {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure any fade-up-element children inside calendar-section are visible */
.calendar-section .fade-up-element {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.calendar-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in-up,
    .fade-in,
    .stagger-item {
        opacity: 1 !important;
        transform: none !important;
    }
}

.become-sponsor-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.become-sponsor-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

/* Main Sponsor Description - Larger */
.sponsor-card-main-sponsor .become-sponsor-description {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 0.1em;
}

/* Main Sponsor Badge */
.sponsor-badge {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.2) 0%, rgba(240, 185, 11, 0.1) 100%);
    border: 1px solid rgba(240, 185, 11, 0.4);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    color: #F0B90B;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
    box-shadow: 0 4px 12px rgba(240, 185, 11, 0.15);
}

/* Main Sponsor Logo */
.sponsor-card-main-sponsor .sponsor-logo {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-main {
    max-width: 266px !important;
    max-height: 168px !important;
    width: 100%;
    height: auto;
    margin: 0;
    filter: brightness(1.15);
    object-fit: contain;
}

/* Main Sponsor Card Styling */
.sponsor-card-main-sponsor {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(240, 185, 11, 0.3);
}

.sponsor-card-main-sponsor:hover {
    border-color: rgba(240, 185, 11, 0.6);
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 24px 48px rgba(240, 185, 11, 0.25),
                0 0 60px rgba(240, 185, 11, 0.15),
                inset 0 0 0 1px rgba(240, 185, 11, 0.2);
}

.system-showcase {
    padding-top: calc(var(--section-padding) * 1.1);
    position: relative;
}

.system-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 245, 160, 0.08), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 124, 228, 0.12), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.system-showcase .container {
    position: relative;
    z-index: 1;
}

.system-showcase__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-end;
    margin-bottom: var(--space-xl);
}

.system-showcase__header .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.system-showcase__intro {
    max-width: 420px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.system-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.system-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.system-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.system-card__header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.system-card__header p {
    font-size: 0.95rem;
    color: var(--color-text-tertiary);
}

.system-card--palette {
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.02));
}

.swatch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.swatch {
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.swatch__label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
}

.swatch__value {
    font-size: 0.95rem;
    font-weight: 600;
}

.swatch[data-token="bg-900"] {
    background: #02030a;
}

.swatch[data-token="bg-800"] {
    background: #080b1a;
}

.swatch[data-token="plasma"] {
    background: var(--gradient-plasma);
}

.swatch[data-token="flare"] {
    background: linear-gradient(135deg, #ff7ce4, #6b6bff);
}

.swatch[data-token="ion"] {
    background: var(--gradient-ion);
}

.swatch[data-token="neutral"] {
    background: rgba(248, 251, 255, 0.08);
}

.system-card--type .type-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.type-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.type-label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
}

.type-preview.display {
    font-size: var(--type-display-lg);
    font-weight: 600;
}

.type-preview.subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.type-preview.body {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.component-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chip-collection {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.demo-card {
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-sm);
}

.demo-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.demo-body {
    font-size: 0.95rem;
    color: var(--color-text-tertiary);
}

.motion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.motion-list li {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.motion-list strong {
    color: var(--color-text-primary);
    margin-right: 0.35rem;
}

@media (max-width: 768px) {
    .system-showcase__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .system-showcase__header .section-title {
        text-align: left;
    }

    .swatch-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-title br {
        display: block;
    }
    
    .cta-description br {
        display: block;
    }
    
    .cta-description {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

/* --- INTERACTIVE COMPONENTS --- */

/* FAQ Accordion */
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.faq-question:hover {
    color: #fff;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: currentColor;
    transition: transform 0.3s ease;
}

.faq-toggle-icon::before {
    width: 12px;
    height: 2px;
}

.faq-toggle-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Approximate max height */
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Teacher Cards - Enhanced Hover Effect */
.teachers-grid:hover .teacher-card {
    opacity: 0.4;
    transform: scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.teachers-grid .teacher-card {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.teachers-grid .teacher-card:hover {
    opacity: 1 !important;
    transform: translateY(-12px) scale(1.05) !important;
    z-index: 10;
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 24px 48px rgba(0, 102, 255, 0.3),
                0 0 60px rgba(0, 102, 255, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

/* Scroll Animations */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.fade-up-element.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.15s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.25s;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--color-bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-partnership {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.footer-company-info p {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--color-text-tertiary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--color-ionic-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    color: var(--color-text-tertiary);
    font-size: 0.85rem;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-container {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .companies-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem 2rem;
    }

    .profile-pic {
        width: 40px;
        height: 40px;
    }

    .profile-pic {
        margin-left: -6px;
    }

    .profile-pic:nth-child(1) {
        margin-left: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .skill-benefits li {
        font-size: 0.85rem;
        padding: 0.2rem 0 0.2rem 1.25rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .coupon-input-wrapper {
        flex-direction: column;
    }

    .coupon-button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-partnership {
        font-size: 0.875rem;
    }

    .company-name {
        font-size: 1.9rem;
    }

    .company-number,
    .company-address {
        font-size: 0.75rem;
    }

    .footer-disclaimer {
        font-size: 0.7rem;
    }

    .container {
        padding: 0 1rem;
    }

    .features-section,
    .how-it-works-section,
    .teachers-section,
    .calendar-section,
    .testimonials-section,
    .pricing-section,
    .faq-section,
    .cta-section,
    .sponsors-section {
        padding: 4rem 0;
    }

    .sponsors-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .sponsor-card-large,
    .sponsor-card-become {
        grid-column: span 2;
    }

    .sponsor-card-become {
        grid-row: span 1;
    }

    /* Sposta Binance Main Sponsor come primo elemento su tablet e mobile */
    .sponsor-card-main-sponsor {
        order: -1;
    }

    .become-sponsor-title {
        font-size: 1.5rem;
    }

    .become-sponsor-description {
        font-size: 1rem;
    }

    @media (max-width: 480px) {
        .sponsors-bento-grid {
            grid-template-columns: 1fr;
        }

        .sponsor-card-large,
        .sponsor-card-become,
        .sponsor-card-medium,
        .sponsor-card-small {
            grid-column: span 1;
        }

        .sponsor-card {
            padding: 1.5rem;
        }

        /* Sposta Binance Main Sponsor come primo elemento su mobile */
        .sponsor-card-main-sponsor {
            order: -1;
        }
    }

    .teachers-grid {
        grid-template-columns: 1fr;
    }

    .calendar-item {
        flex-direction: column;
        gap: 1rem;
    }

    .calendar-date {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .date-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0;
    }

    .calendar-timeline::before {
        display: none;
    }

    .calendar-content {
        padding: 0;
    }

    .calendar-title {
        font-size: 1.25rem;
    }
}

/* Mobile Fixes for Community and Calendar */
@media (max-width: 600px) {

    /* Community Section Fix */
    .community-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .community-info {
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .member-count {
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .community-row {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    .profile-pic {
        width: 34px;
        height: 34px;
        margin-left: -12px;
    }

    .profile-pictures {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 0.5rem;
    }

    /* Calendar Section Fix */
    .calendar-teachers-section,
    .calendar-skills-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-teacher-label,
    .calendar-skills-label {
        margin-bottom: 0.25rem;
        white-space: normal;
        word-wrap: break-word;
    }

    .calendar-teachers-list,
    .calendar-skills-bubbles {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .calendar-skill-bubble {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    /* Calendar Padding Fix */
    .calendar-item {
        padding-left: 0;
    }

    .calendar-timeline::before {
        left: 30px;
    }

    .calendar-content {
        padding: 1.25rem;
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS - Enhanced Responsive
   ============================================ */

/* Safe Area Insets for iPhone X and newer */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .site-header {
        padding-left: max(var(--container-padding), env(safe-area-inset-left));
        padding-right: max(var(--container-padding), env(safe-area-inset-right));
    }

    .hero-section,
    .section {
        padding-left: max(var(--container-padding), env(safe-area-inset-left));
        padding-right: max(var(--container-padding), env(safe-area-inset-right));
    }
}

/* Enhanced Mobile Breakpoints */
@media (max-width: 480px) {
    /* Typography optimizations for small screens */
    :root {
        --container-padding: clamp(1rem, 4vw, 1.5rem);
        --section-padding: clamp(3rem, 8vw, 4rem);
    }

    /* Hero Section - Mobile Optimizations */
    .hero-section {
        padding-top: clamp(6rem, 12vw, 8rem);
        padding-bottom: clamp(2rem, 5vw, 3rem);
        gap: 1.5rem;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }

    .sub-headline {
        font-size: clamp(1rem, 4vw, 1.125rem);
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.7;
        text-align: center;
        hyphens: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .sub-headline br {
        display: none;
    }
    
    .sub-headline strong {
        display: inline;
        white-space: normal;
    }

    .pre-headline {
        font-size: 0.85rem;
        padding: 0.6rem 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
    }
    
    .pre-headline strong {
        font-size: 1em;
    }
    
    .eyebrow-date-text {
        font-size: 0.95em;
        white-space: nowrap;
    }
    
    .eyebrow-separator {
        margin: 0 0.3rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px; /* Touch-friendly */
        width: 100%;
        max-width: 100%;
    }

    /* Buttons - Touch-friendly sizing */
    .button,
    .button--primary,
    .pricing-button,
    .site-header__cta {
        min-height: 48px;
        min-width: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .btn-text {
        font-size: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
    }

    /* Feature Cards - Mobile Optimizations */
    .feature-card {
        padding: 1.25rem;
        min-height: auto;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .skill-benefits {
        gap: 0.5rem 0.75rem;
    }

    .skill-benefits li {
        font-size: 0.85rem;
        padding: 0.15rem 0;
    }

    /* Teacher Cards */
    .teacher-card {
        padding: 1.5rem;
    }

    .teacher-avatar,
    .teacher-avatar-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    /* Calendar - Mobile Optimizations */
    .calendar-week-header {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .week-number-badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .week-title-text {
        font-size: 1.35rem;
    }

    .week-modules-count {
        font-size: 0.85rem;
    }

    .calendar-module {
        padding: 1rem;
    }

    .calendar-module-title {
        font-size: 1.1rem;
    }

    .calendar-module-points li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }

    /* Pricing Cards */
    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .price-period {
        font-size: 0.9rem;
    }

    .pricing-button {
        width: 100%;
        padding: 1rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* Footer */
    .footer-main {
        gap: 2rem;
    }

    .footer-logo {
        font-size: 1.1rem;
    }

    .footer-partnership {
        font-size: 0.8rem;
    }

    /* Community Section */
    .community-section {
        padding: 1.25rem;
    }

    .profile-pic {
        width: 36px;
        height: 36px;
    }

    /* Steps */
    .step-item {
        padding: 1.25rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    /* Sponsors */
    .sponsor-card {
        padding: 1.25rem;
    }

    .sponsor-name {
        font-size: 1.1rem;
    }

    .sponsor-description {
        font-size: 0.85rem;
    }

    .become-sponsor-title {
        font-size: 1.25rem;
    }

    .become-sponsor-description {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (320px - 375px) */
@media (max-width: 375px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .feature-card,
    .teacher-card,
    .pricing-card,
    .testimonial-card {
        padding: 1rem;
    }

    .calendar-week-header {
        padding: 0.875rem 1rem;
    }

    .week-title-text {
        font-size: 1.2rem;
    }

    .calendar-module {
        padding: 0.875rem;
    }

    .button,
    .button--primary,
    .pricing-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding-top: clamp(4rem, 8vw, 6rem);
        padding-bottom: clamp(2rem, 4vw, 3rem);
    }

    .hero-headline {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .section {
        padding: clamp(3rem, 6vw, 4rem) 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices for better performance */
    .feature-card:hover,
    .teacher-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover {
        transform: none;
    }

    /* Increase touch target sizes */
    a,
    button,
    .button,
    .site-header__link,
    .site-header__mobile-link {
        min-height: 44px;
        min-width: 44px;
        /* Prevent accidental zoom on double tap for interactive elements */
        touch-action: manipulation;
    }

    /* Improve tap feedback */
    .button:active,
    .button--primary:active,
    .pricing-button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Prevent text selection issues during zoom */
    * {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Allow text selection for actual text content */
    p, span, h1, h2, h3, h4, h5, h6, li, td, th, input, textarea {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
        touch-action: auto;
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 768px) {
    /* Prevent zoom-related layout shifts */
    html, body {
        position: relative;
        width: 100%;
        overflow-x: hidden;
        /* Prevent zoom gestures from causing layout issues */
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Reduce animations on mobile for better performance */
    * {
        transition-duration: 0.2s !important;
    }

    /* Slow down headline shine animation on mobile */
    .text-gradient {
        animation: shine 12s linear infinite !important;
    }

    /* Slow down marquee scroll animation on mobile */
    .companies-track {
        animation: marquee-scroll 80s linear infinite !important;
        width: fit-content !important;
        min-width: 200% !important;
    }
    
    .companies-marquee {
        overflow: hidden !important;
        width: 100% !important;
    }

    /* Slow down float animation for sponsor emoji on mobile */
    .become-sponsor-icon {
        animation: float 6s ease-in-out infinite !important;
    }

    /* Slow down pulse animations on mobile */
    .sponsor-card-become::before {
        animation: pulse 6s ease-in-out infinite !important;
    }

    /* Disable expensive effects on mobile */
    .hero-background-mesh {
        display: none;
    }

    /* Optimize backdrop filters */
    .feature-card,
    .teacher-card,
    .pricing-card,
    .testimonial-card {
        backdrop-filter: blur(8px);
    }
}

/* Improved Mobile Navigation */
@media (max-width: 1150px) {
    .site-header__mobile-toggle {
        width: 44px;
        height: 44px;
        padding: 0.5rem;
    }

    .site-header__mobile-link,
    .site-header__mobile-cta {
        min-height: 48px;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
}

/* Text Readability on Mobile */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Improve line height for readability */
    p,
    .sub-headline,
    .section-subtitle {
        line-height: 1.7;
    }

    /* Better spacing for lists */
    ul,
    ol {
        padding-left: 1.5rem;
    }

    li {
        margin-bottom: 0.5rem;
    }
}

/* Container Width Optimization */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    section {
        overflow-x: hidden;
    }
}

/* Grid Optimizations for Mobile */
@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .teachers-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Image Optimization for Mobile */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }

    .teacher-avatar,
    .testimonial-avatar,
    .profile-pic {
        max-width: 100%;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    body {
        overflow-x: hidden;
    }

    html {
        overflow-x: hidden;
    }
}
/* --- 9. NEW JUICY ELEMENTS --- */

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1000;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-brand);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    transition: width 0.1s linear;
}

/* Custom Cursor */
@media (hover: hover) and (pointer: fine) {
    body.has-custom-cursor {
        cursor: none;
    }

    .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        mix-blend-mode: difference;
    }

    .custom-cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: difference;
    }

    .custom-cursor.hovered {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        border-color: transparent;
        backdrop-filter: blur(2px);
    }
}

/* Crypto Background Pattern */
.crypto-background-pattern {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.15;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

.bg-crypto-symbol {
    position: absolute;
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
    animation: float-random 20s infinite alternate ease-in-out;
}

@keyframes float-random {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(var(--move-x), var(--move-y)) rotate(var(--rotate-deg)); }
}

/* Hero Floating Elements */
.hero-floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); /* Smoother float */
    user-select: none;
}

/* Nuova classe per le immagini */
.float-icon {
    opacity: 0.15; /* Un po' più visibili ma sempre background */
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1)) grayscale(30%);
}

.float-btc {
    width: 180px;
    top: 25%; /* Moved down from 10% */
    right: 5%;
    transform: rotate(15deg);
    filter: drop-shadow(0 0 30px rgba(247, 147, 26, 0.2)); /* Orange glow */
    opacity: 0.2;
}

.float-eth {
    width: 140px;
    bottom: 15%;
    left: 2%;
    transform: rotate(-15deg);
    filter: drop-shadow(0 0 30px rgba(98, 126, 234, 0.2)); /* Blue glow */
    opacity: 0.2;
}

.float-sol {
    width: 100px;
    top: 15%; /* Adjusted to make room */
    left: 12%;
    transform: rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(20, 241, 149, 0.2)); /* Green/Purple glow */
    opacity: 0.2;
}

.float-usdt {
    width: 90px;
    bottom: 30%;
    right: 15%;
    transform: rotate(-10deg);
    filter: drop-shadow(0 0 20px rgba(38, 161, 123, 0.2)); /* Green glow */
    opacity: 0.15;
}

.float-xrp {
    width: 80px;
    top: 45%;
    right: 25%;
    transform: rotate(20deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    opacity: 0.1;
}

.float-doge {
    width: 95px;
    top: 12%;
    right: 25%;
    transform: rotate(-12deg);
    filter: drop-shadow(0 0 25px rgba(186, 159, 51, 0.2)); /* Gold/Yellow glow */
    opacity: 0.15;
}

.float-pepe {
    width: 85px;
    bottom: 25%;
    left: 20%;
    transform: rotate(8deg);
    filter: drop-shadow(0 0 25px rgba(76, 175, 80, 0.2)); /* Pepe Green glow */
    opacity: 0.15;
}

/* Background Pattern con Loghi Reali */
.bg-crypto-logo {
    position: absolute;
    opacity: 0.05;
    filter: grayscale(100%);
    user-select: none;
    animation: float-random 25s infinite alternate ease-in-out;
}

/* Enhanced Section Transitions */
.section {
    position: relative;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0.5;
}
/* Mobile sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9990;
    width: calc(100% - 32px);
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default, shown in media query */
}

.mobile-sticky-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-sticky-cta .button {
    width: 100%;
    justify-content: center;
    background: var(--color-text-primary); /* White background */
    color: #000000; /* Black text */
    border: none;
    font-weight: 700;
}

.mobile-sticky-cta .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(255, 255, 255, 0.3);
}

/* Hide the duplicate close button in mobile menu */
.site-header__mobile-close {
    display: none !important;
}

/* Ensure mobile menu CTA text is white */
.site-header__mobile-cta {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.site-header__mobile-cta .btn-text {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    /* Reduce background distractions on mobile */
    .crypto-background-pattern img,
    .hero-floating-element {
        opacity: 0.05 !important; /* Very faint */
        pointer-events: none;
    }
    
    /* Fix overlap issues */
    .hero-floating-element {
        display: none; /* Hide floating elements completely on mobile if they overlap too much */
    }

    /* Optimize Community/Teacher Box */
    .community-section {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
        background: rgba(3, 3, 4, 0.6); /* More opaque background */
        backdrop-filter: blur(10px);
    }
    
    .profile-pictures {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .community-info {
        align-items: center;
    }
    
    .community-rating {
        justify-content: center;
    }
}

/* ============================================
   WORKSHOP SQUEEZE PAGE (scoped)
   ============================================ */
.workshop-page .hero-section {
    /* Override hero padding-top (default è molto alto per lasciare spazio all'header) */
    padding-top: clamp(1.25rem, 2.4vw, 2.1rem);
    padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.workshop-hero-top {
    display: grid;
    /* più aria tra banda e logo (leggera) */
    gap: clamp(1.9rem, 3vw, 2.65rem);
    justify-items: center;
    /* meno aria sopra la banda, più “squeeze” */
    margin-top: clamp(0rem, 0.35vw, 0.15rem);
    /* più aria tra logo e headline (molto più, ~x2) */
    margin-bottom: clamp(2.2rem, 4.6vw, 3.4rem);
}

.workshop-date-band {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 200, 255, 0.2);
    background: rgba(0, 180, 220, 0.08);
    backdrop-filter: blur(8px);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(180, 240, 255, 0.95);
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

.workshop-hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    /* logo più vicino all'inizio pagina */
    margin-top: 0;
    --workshop-brand-height: 36px;
}

.workshop-hero-brand__icon {
    width: var(--workshop-brand-height);
    height: var(--workshop-brand-height);
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.65));
}

.workshop-hero-brand__wordmark {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.workshop-hero-brand .brand-title {
    font-size: var(--workshop-brand-height);
    line-height: 1;
    min-width: unset;
}

.workshop-hero-top {
    /* logo sopra, badge sotto: centra e gestisci ritmo verticale */
    justify-items: center;
}

.workshop-page .hero-headline {
    text-wrap: balance;
}

.workshop-page .sub-headline {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.workshop-page .sub-headline strong {
    color: #fff;
    font-weight: 600;
}

.workshop-page .sub-headline .sub-line {
    display: block;
}

/* Legacy layout removed - now using centered hero */

.workshop-bullets-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.workshop-bullets-simple li {
    position: relative;
    padding-left: 2.25rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.06rem;
    line-height: 1.55;
    max-width: 64ch;
}

.workshop-bullets-simple li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.22), rgba(0, 102, 255, 0.12));
    border: 1px solid rgba(0, 240, 255, 0.24);
    box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.05);
}

.workshop-bullets-simple li::after {
    content: '✓';
    position: absolute;
    left: 0.39rem;
    top: 0.06rem;
    font-weight: 800;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
}

.workshop-bullets-simple li strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 750;
}

.workshop-highlights {
    margin-top: 0.25rem;
}

.workshop-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.workshop-highlight-card {
    padding: 1.35rem;
    border-radius: 22px;
}

.workshop-highlight-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
}

.workshop-highlight-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.6);
}

.workshop-highlight-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.workshop-highlight-card .feature-title {
    margin-bottom: 0.45rem;
    font-size: 1.1rem;
}

.workshop-highlight-card .feature-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.55;
}

.workshop-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.workshop-points li {
    position: relative;
    padding-left: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.65;
}

.workshop-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(0, 102, 255, 0.18));
    border: 1px solid rgba(0, 240, 255, 0.25);
    box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.06);
}

.workshop-points li::after {
    content: '✓';
    position: absolute;
    left: 0.35rem;
    top: 0.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Hero proof row (centered, minimal) */
.workshop-hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.workshop-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.workshop-badge:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
}

.workshop-badge__icon {
    font-size: 1rem;
}

.workshop-badge__text {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
}

/* Hero CTA (centered) */
.workshop-hero-cta {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.workshop-hero-cta .button--large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive: hero badges */
@media (max-width: 640px) {
    .workshop-hero-badges {
        gap: 0.5rem;
    }
    
    .workshop-badge {
        padding: 0.45rem 0.8rem;
        gap: 0.4rem;
    }
    
    .workshop-badge__icon {
        font-size: 0.9rem;
    }
    
    .workshop-badge__text {
        font-size: 0.82rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   VARIANTE 1: Layout centrato con pain points come pills
   ═══════════════════════════════════════════════════════════════ */
.workshop-problem-v1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.problem-intro {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem 0;
}

.problem-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.problem-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 100, 100, 0.95);
    background: rgba(255, 80, 80, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.2);
}

.problem-statement {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-statement p {
    margin: 0;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.6);
}

.problem-statement__strong {
    font-size: clamp(1.3rem, 2.8vw, 1.75rem) !important;
    font-weight: 700;
    color: #fff !important;
    margin-top: 0.5rem !important;
}

/* ═══════════════════════════════════════════════════════════════
   VARIANTE 2: Layout split - problema a sinistra, insight a destra
   ═══════════════════════════════════════════════════════════════ */
.workshop-problem-v2 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.problem-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.problem-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 200, 255, 0.8);
    margin-bottom: 1rem;
}

.problem-headline-v2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.02em;
}

.problem-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.problem-split__right {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    gap: 1rem;
}

.problem-list-v2 li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.85);
}

.problem-list-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 100, 100, 0.9);
    background: rgba(255, 80, 80, 0.12);
    border: 1px solid rgba(255, 80, 80, 0.25);
}

.problem-conclusion-v2 {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-conclusion-v2 p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.problem-conclusion-v2 strong {
    color: #fff;
    font-size: 1.15rem;
}

/* ═══════════════════════════════════════════════════════════════
   VARIANTE 3: Card manifesto - glass card drammatica
   ═══════════════════════════════════════════════════════════════ */
.workshop-problem-v3 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.problem-manifesto {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.problem-manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 80, 80, 0.08), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.problem-manifesto > * {
    position: relative;
    z-index: 1;
}

.problem-manifesto__header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-align: center;
    letter-spacing: -0.02em;
}

.problem-manifesto__intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-manifesto__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.problem-manifesto__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
}

.problem-manifesto__number {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 100, 100, 0.7);
    letter-spacing: 0.05em;
}

.problem-manifesto__footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-manifesto__footer p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.problem-manifesto__punchline {
    font-size: clamp(1.4rem, 3vw, 1.85rem) !important;
    font-weight: 700;
    color: #fff !important;
    margin-top: 0.5rem !important;
}

/* Responsive: Problem sections */
@media (max-width: 768px) {
    .problem-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-manifesto__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .problem-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .problem-pill {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "DIVERSO" - Layout tabella 2 colonne
   ═══════════════════════════════════════════════════════════════ */
.workshop-compare {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.compare-table {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table--two-col .compare-header,
.compare-table--two-col .compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.compare-header {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.compare-cell {
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.compare-cell--no {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-header .compare-cell {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    justify-content: center;
}

.compare-header .compare-cell--no {
    color: rgba(255, 120, 120, 0.85);
    background: rgba(255, 80, 80, 0.04);
}

.compare-header .compare-cell--yes {
    color: rgba(100, 220, 180, 0.85);
    background: rgba(0, 200, 150, 0.04);
}

.compare-cell span:not(.compare-icon) {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.compare-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.compare-icon--no {
    color: rgba(255, 100, 100, 0.9);
    background: rgba(255, 80, 80, 0.12);
}

.compare-icon--yes {
    color: rgba(100, 220, 180, 0.95);
    background: rgba(0, 200, 150, 0.15);
}

.compare-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.compare-footer p {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
}

.compare-footer strong {
    color: #fff;
}

/* Responsive: Compare table 2 col */
@media (max-width: 640px) {
    .compare-table--two-col .compare-header,
    .compare-table--two-col .compare-row {
        grid-template-columns: 1fr;
    }
    
    .compare-cell--no {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    
    .compare-row:last-child .compare-cell--no {
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    
    .compare-cell {
        padding: 0.85rem 1rem;
    }
    
    .compare-header .compare-cell {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
    
    .compare-icon {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    
    .compare-cell span:not(.compare-icon) {
        font-size: 0.92rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "3 GIORNI" - VARIANTE 1: Card verticali affiancate
   ═══════════════════════════════════════════════════════════════ */
.workshop-days-v1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.day-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.day-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.day-card__header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.day-card__number {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-accent-cyan);
    margin-bottom: 0.5rem;
}

.day-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.day-card__subtitle {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.day-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: grid;
    gap: 0.5rem;
    flex: 1;
}

.day-card__list li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.25rem;
    position: relative;
}

.day-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent-cyan);
}

.day-card__result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(0, 200, 150, 0.08);
    border: 1px solid rgba(0, 200, 150, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(100, 220, 180, 0.95);
}

.day-card__result-icon {
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "3 GIORNI" - VARIANTE 2: Card orizzontali full-width
   ═══════════════════════════════════════════════════════════════ */
.workshop-days-v2 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.days-stack {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.day-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
    transition: border-color 0.3s ease;
}

.day-row:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.day-row__badge {
    width: 100px;
    text-align: center;
}

.day-row__day {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-accent-cyan);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.2);
}

.day-row__content {
    display: grid;
    gap: 0.75rem;
}

.day-row__header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.day-row__header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.day-row__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.day-row__topics span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.day-row__result {
    text-align: right;
    min-width: 180px;
}

.day-row__result-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(100, 220, 180, 0.7);
    margin-bottom: 0.25rem;
}

.day-row__result-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(100, 220, 180, 0.95);
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "3 GIORNI" - VARIANTE 3: Timeline con card espanse
   ═══════════════════════════════════════════════════════════════ */
.workshop-days-v3 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.days-timeline {
    max-width: 700px;
    margin: 2rem auto 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent-cyan), rgba(0, 102, 255, 0.8));
    box-shadow: 0 8px 24px -8px rgba(0, 200, 255, 0.4);
}

.timeline-line {
    flex: 1;
    width: 2px;
    margin-top: 0.75rem;
    background: linear-gradient(180deg, var(--color-accent-cyan), transparent);
    opacity: 0.3;
}

.timeline-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
}

.timeline-card__header {
    margin-bottom: 0.75rem;
}

.timeline-card__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    margin-bottom: 0.35rem;
}

.timeline-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.timeline-card__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 1rem 0;
}

.timeline-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: grid;
    gap: 0.45rem;
}

.timeline-card__list li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.25rem;
    position: relative;
}

.timeline-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent-cyan);
}

.timeline-card__result {
    font-size: 0.92rem;
    color: rgba(100, 220, 180, 0.95);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(0, 200, 150, 0.08);
    border: 1px solid rgba(0, 200, 150, 0.15);
}

.timeline-card__result strong {
    color: rgba(100, 220, 180, 1);
}

/* Responsive: Days sections */
@media (max-width: 1024px) {
    .days-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .day-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .day-row__badge {
        width: auto;
        text-align: left;
    }
    
    .day-row__result {
        text-align: left;
        min-width: unset;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .timeline-number {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .day-card {
        padding: 1.25rem;
    }
    
    .day-card__title {
        font-size: 1.1rem;
    }
    
    .timeline-card__title {
        font-size: 1.15rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "CHI TI GUIDERÀ" - VARIANTE 1: Grid di avatar
   ═══════════════════════════════════════════════════════════════ */
.workshop-speakers-v1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.speaker-card {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.speaker-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.speaker-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.speaker-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.speaker-role {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.speakers-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "CHI TI GUIDERÀ" - VARIANTE 2: Avatar stack + lead card
   ═══════════════════════════════════════════════════════════════ */
.workshop-speakers-v2 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.speakers-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    text-align: center;
    margin-bottom: 0.5rem;
}

.speakers-leads {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.lead-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.lead-card:hover {
    border-color: rgba(0, 200, 255, 0.25);
}

.lead-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent-cyan);
    flex-shrink: 0;
}

.lead-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.15rem 0;
}

.lead-info p {
    font-size: 0.82rem;
    color: var(--color-accent-cyan);
    margin: 0 0 0.35rem 0;
    font-weight: 600;
}

.lead-bio {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.speakers-stack-wrapper {
    margin-top: 2rem;
    text-align: center;
}

.speakers-stack-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.speakers-stack {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speakers-stack img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-bg-primary);
    margin-left: -12px;
    transition: transform 0.2s ease, z-index 0.2s ease;
}

.speakers-stack img:first-child {
    margin-left: 0;
}

.speakers-stack img:hover {
    transform: scale(1.15);
    z-index: 10;
}

.speakers-stack-more {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--color-bg-primary);
    margin-left: -12px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.speakers-tagline {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "CHI TI GUIDERÀ" - VARIANTE 3: Card compatta con loghi
   ═══════════════════════════════════════════════════════════════ */
.workshop-speakers-v3 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.speakers-showcase {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
}

.showcase-header {
    margin-bottom: 1.5rem;
}

.showcase-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.showcase-brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.showcase-brand-icon {
    font-size: 1.25rem;
}

.showcase-plus {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.showcase-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.showcase-avatars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.showcase-avatars img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.showcase-avatars img:hover {
    transform: scale(1.1);
    border-color: var(--color-accent-cyan);
}

.showcase-roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.showcase-roles span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-footer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

.showcase-footer strong {
    color: #fff;
}

/* Responsive: Speakers sections */
@media (max-width: 1024px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .speakers-leads {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .speaker-avatar {
        width: 56px;
        height: 56px;
    }
    
    .speaker-name {
        font-size: 0.82rem;
    }
    
    .speaker-role {
        font-size: 0.72rem;
    }
    
    .speakers-stack img {
        width: 40px;
        height: 40px;
        margin-left: -10px;
    }
    
    .speakers-stack-more {
        width: 40px;
        height: 40px;
        margin-left: -10px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .speaker-card {
        padding: 0.85rem 0.5rem;
    }
    
    .speaker-avatar {
        width: 48px;
        height: 48px;
    }
    
    .showcase-avatars img {
        width: 44px;
        height: 44px;
    }
    
    .showcase-headline {
        font-size: 1.25rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "PER CHI È" - VARIANTE 1: Card split orizzontale
   ═══════════════════════════════════════════════════════════════ */
.workshop-forwhom-v1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.forwhom-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.forwhom-col {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.forwhom-col--yes {
    border-color: rgba(0, 200, 150, 0.15);
    background: rgba(0, 200, 150, 0.03);
}

.forwhom-col--no {
    border-color: rgba(255, 80, 80, 0.12);
    background: rgba(255, 80, 80, 0.02);
}

.forwhom-col__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.forwhom-col__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 700;
}

.forwhom-col--yes .forwhom-col__icon {
    background: rgba(0, 200, 150, 0.15);
    color: rgba(100, 220, 180, 0.95);
}

.forwhom-col--no .forwhom-col__icon {
    background: rgba(255, 80, 80, 0.12);
    color: rgba(255, 120, 120, 0.9);
}

.forwhom-col__header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.forwhom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.forwhom-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.5rem;
    position: relative;
}

.forwhom-col--yes .forwhom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(100, 220, 180, 0.9);
    font-weight: 700;
}

.forwhom-col--no .forwhom-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: rgba(255, 120, 120, 0.85);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "PER CHI È" - VARIANTE 2: Card glass centrata
   ═══════════════════════════════════════════════════════════════ */
.workshop-forwhom-v2 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.forwhom-glass {
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.forwhom-glass__header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: #fff;
}

.forwhom-glass__grid {
    display: grid;
    gap: 1.5rem;
}

.forwhom-glass__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.forwhom-glass__section li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.forwhom-glass__section--yes .check-icon {
    color: rgba(100, 220, 180, 0.95);
    font-weight: 700;
}

.forwhom-glass__section--no .x-icon {
    color: rgba(255, 120, 120, 0.85);
    font-weight: 700;
}

.forwhom-glass__section--no h4 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 120, 120, 0.7);
    margin: 0 0 0.75rem 0;
}

.forwhom-glass__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0.5rem 0;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "PER CHI È" - VARIANTE 3: Layout verticale con badge
   ═══════════════════════════════════════════════════════════════ */
.workshop-forwhom-v3 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.forwhom-badges {
    max-width: 600px;
    margin: 2rem auto 0 auto;
}

.forwhom-badges__group {
    display: grid;
    gap: 0.65rem;
}

.forwhom-badge {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.forwhom-badge:hover {
    transform: translateX(4px);
}

.forwhom-badge--yes {
    border-color: rgba(0, 200, 150, 0.12);
}

.forwhom-badge--yes:hover {
    border-color: rgba(0, 200, 150, 0.3);
}

.forwhom-badge--no {
    border-color: rgba(255, 80, 80, 0.1);
}

.forwhom-badge--no:hover {
    border-color: rgba(255, 80, 80, 0.25);
}

.forwhom-badge__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.forwhom-badge--yes .forwhom-badge__icon {
    background: rgba(0, 200, 150, 0.15);
    color: rgba(100, 220, 180, 0.95);
}

.forwhom-badge--no .forwhom-badge__icon {
    background: rgba(255, 80, 80, 0.12);
    color: rgba(255, 120, 120, 0.9);
}

.forwhom-badge__text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.forwhom-badges__separator {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.forwhom-badges__separator::before,
.forwhom-badges__separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 80px);
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.forwhom-badges__separator::before {
    left: 0;
}

.forwhom-badges__separator::after {
    right: 0;
}

.forwhom-badges__separator span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 120, 120, 0.7);
    letter-spacing: 0.03em;
}

/* Responsive: ForWhom sections */
@media (max-width: 768px) {
    .forwhom-split {
        grid-template-columns: 1fr;
    }
    
    .forwhom-glass__section li {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .forwhom-col {
        padding: 1.25rem;
    }
    
    .forwhom-badge {
        padding: 0.85rem 1rem;
    }
    
    .forwhom-badge__text {
        font-size: 0.92rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "PERCHÉ PARTECIPARE" - VARIANTE 1: Statement cards
   ═══════════════════════════════════════════════════════════════ */
.workshop-why-v1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.why-statements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.why-statement {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-statement:hover {
    border-color: rgba(0, 200, 255, 0.2);
    transform: translateY(-4px);
}

.why-statement__highlight {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent-cyan);
    margin-bottom: 0.35rem;
}

.why-statement__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.why-closing {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
}

.why-closing strong {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "PERCHÉ" - ALT 1: Contrasto drammatico
   ═══════════════════════════════════════════════════════════════ */
.workshop-why-alt1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.why-contrast {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-contrast__header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 0.35rem 0;
    color: #fff;
}

.why-contrast__header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 2rem 0;
}

.why-contrast__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.why-contrast__bad,
.why-contrast__good {
    padding: 1.5rem;
    border-radius: 16px;
    text-align: left;
}

.why-contrast__bad {
    background: rgba(255, 80, 80, 0.05);
    border: 1px solid rgba(255, 80, 80, 0.15);
}

.why-contrast__good {
    background: rgba(0, 200, 150, 0.05);
    border: 1px solid rgba(0, 200, 150, 0.2);
}

.why-contrast__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.why-contrast__bad .why-contrast__label {
    color: rgba(255, 120, 120, 0.9);
}

.why-contrast__good .why-contrast__label {
    color: rgba(100, 220, 180, 0.95);
}

.why-contrast__items {
    display: grid;
    gap: 0.5rem;
}

.why-contrast__items span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.why-contrast__vs {
    font-size: 1.25rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    padding: 0.5rem;
}

.why-contrast__punchline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.why-contrast__punchline strong {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "PERCHÉ" - ALT 2: Quote style
   ═══════════════════════════════════════════════════════════════ */
.workshop-why-alt2 {
    padding-top: clamp(5rem, 10vw, 8rem);
    padding-bottom: clamp(5rem, 10vw, 8rem);
}

.why-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.why-quote__mark {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: rgba(0, 200, 255, 0.08);
    line-height: 0.5;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.why-quote__text {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.why-quote__fade {
    color: rgba(255, 255, 255, 0.4);
}

.why-quote__accent {
    color: var(--color-accent-cyan);
}

.why-quote__strong {
    color: #fff;
    font-weight: 700;
}

.why-quote__author {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "PERCHÉ" - ALT 3: Progress steps
   ═══════════════════════════════════════════════════════════════ */
.workshop-why-alt3 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.why-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-progress__step {
    position: relative;
    padding: 1.5rem;
    text-align: center;
}

.why-progress__bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.why-progress__step--1 .why-progress__bar {
    background: linear-gradient(90deg, rgba(255, 100, 100, 0.4), rgba(255, 100, 100, 0.1));
}

.why-progress__step--2 .why-progress__bar {
    background: linear-gradient(90deg, rgba(255, 200, 100, 0.4), rgba(255, 200, 100, 0.1));
}

.why-progress__step--3 .why-progress__bar {
    background: linear-gradient(90deg, rgba(100, 220, 180, 0.6), rgba(100, 220, 180, 0.2));
}

.why-progress__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
}

.why-progress__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.why-progress__step--3 .why-progress__num {
    background: rgba(0, 200, 150, 0.1);
    border-color: rgba(0, 200, 150, 0.3);
    color: rgba(100, 220, 180, 0.95);
}

.why-progress__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.why-progress__text strong {
    font-size: 1.1rem;
    color: #fff;
}

.why-progress__text span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
}

.why-progress__step--3 .why-progress__text strong {
    color: var(--color-accent-cyan);
}

.why-progress__footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-progress__footer p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.why-progress__footer strong {
    color: #fff;
}

/* Responsive: Why alternatives */
@media (max-width: 768px) {
    .why-contrast__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-contrast__vs {
        padding: 0;
    }
    
    .why-progress {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .why-progress__step {
        padding: 1rem;
    }
    
    .why-progress__bar {
        width: 4px;
        height: auto;
        top: 0;
        bottom: 0;
        right: auto;
    }
    
    .why-progress__content {
        flex-direction: row;
        padding-top: 0;
        padding-left: 1rem;
    }
    
    .why-progress__text {
        text-align: left;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "PERCHÉ PARTECIPARE" - VARIANTE 2: Manifesto card
   ═══════════════════════════════════════════════════════════════ */
.workshop-why-v2 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.why-manifesto {
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.why-manifesto__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    margin-bottom: 0.5rem;
}

.why-manifesto__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: #fff;
}

.why-manifesto__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.why-manifesto__item {
    padding: 1.25rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.why-manifesto__icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.why-manifesto__item p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.why-manifesto__item strong {
    color: #fff;
}

.why-manifesto__footer p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "PERCHÉ PARTECIPARE" - VARIANTE 3: Vertical flow
   ═══════════════════════════════════════════════════════════════ */
.workshop-why-v3 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.why-vertical {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.why-vertical__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.why-vertical__intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 2rem 0;
}

.why-vertical__flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.why-flow-item {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-flow-item--bad {
    border-color: rgba(255, 100, 100, 0.15);
}

.why-flow-item--good {
    border-color: rgba(255, 200, 100, 0.15);
}

.why-flow-item--best {
    border-color: rgba(100, 220, 180, 0.2);
    background: rgba(100, 220, 180, 0.03);
}

.why-flow-item__label {
    font-weight: 700;
    color: #fff;
}

.why-flow-item__value {
    color: rgba(255, 255, 255, 0.6);
}

.why-flow-item--best .why-flow-item__value {
    color: rgba(100, 220, 180, 0.9);
    font-weight: 600;
}

.why-flow-connector {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.25rem;
}

.why-vertical__punchline {
    margin-top: 2rem;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
}

.why-vertical__punchline strong {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "COME FUNZIONA" - VARIANTE 1: Timeline orizzontale
   ═══════════════════════════════════════════════════════════════ */
.workshop-howto-v1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.howto-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 2rem;
}

.howto-step {
    text-align: center;
    max-width: 180px;
}

.howto-step__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem auto;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent-cyan), rgba(0, 102, 255, 0.8));
    box-shadow: 0 8px 24px -8px rgba(0, 200, 255, 0.4);
}

.howto-step__content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.35rem 0;
}

.howto-step__content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.howto-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-cyan), transparent);
    margin-top: 24px;
    opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "COME FUNZIONA" - VARIANTE 2: Card numerate
   ═══════════════════════════════════════════════════════════════ */
.workshop-howto-v2 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.howto-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.howto-card {
    position: relative;
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.howto-card:hover {
    border-color: rgba(0, 200, 255, 0.2);
    transform: translateY(-4px);
}

.howto-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: var(--color-accent-cyan);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
}

.howto-card__emoji {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.howto-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.35rem 0;
}

.howto-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "COME FUNZIONA" - VARIANTE 3: Lista compatta
   ═══════════════════════════════════════════════════════════════ */
.workshop-howto-v3 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.howto-compact {
    max-width: 600px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 2.5rem);
}

.howto-compact h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #fff;
    text-align: center;
}

.howto-compact__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.howto-compact__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.howto-compact__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-accent-cyan);
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.2);
}

.howto-compact__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.howto-compact__text strong {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "BONUS" - VARIANTE 1: Grid con icone
   ═══════════════════════════════════════════════════════════════ */
.workshop-bonus-v1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.bonus-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    text-align: center;
    margin-bottom: 0.5rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.bonus-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.bonus-item:hover {
    border-color: rgba(0, 200, 255, 0.2);
}

.bonus-item__icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.bonus-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.bonus-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.bonus-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "BONUS" - VARIANTE 2: Card singola con lista
   ═══════════════════════════════════════════════════════════════ */
.workshop-bonus-v2 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.bonus-card {
    max-width: 550px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 2.5rem);
}

.bonus-card__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-card__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 200, 100, 0.15), rgba(255, 150, 50, 0.15));
    border: 1px solid rgba(255, 180, 80, 0.3);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 200, 120, 0.95);
    margin-bottom: 0.75rem;
}

.bonus-card__header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.bonus-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}

.bonus-card__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.bonus-check {
    color: rgba(100, 220, 180, 0.95);
    font-weight: 700;
}

.bonus-card__list li span:not(.bonus-check) {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.bonus-card__footer {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.bonus-card__footer strong {
    color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "BONUS" - VARIANTE 3: Horizontal badges
   ═══════════════════════════════════════════════════════════════ */
.workshop-bonus-v3 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.bonus-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.bonus-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.bonus-badge:hover {
    border-color: rgba(0, 200, 255, 0.25);
    transform: translateY(-2px);
}

.bonus-badge__icon {
    font-size: 1.15rem;
}

.bonus-badge__text {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.bonus-disclaimer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "CTA" - VARIANTE 1: Hero CTA con urgency
   ═══════════════════════════════════════════════════════════════ */
.workshop-cta-v1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.cta-hero {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-hero__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 0.75rem 0;
    color: #fff;
}

.cta-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 2rem 0;
}

.cta-hero__btn {
    margin-bottom: 1.5rem;
}

.cta-hero__proof {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-hero__proof span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "CTA" - VARIANTE 2: Card con features
   ═══════════════════════════════════════════════════════════════ */
.workshop-cta-v2 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.cta-card__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-cyan);
    margin-bottom: 1rem;
}

.cta-card__content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.cta-card__content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.5rem 0;
}

.cta-card__features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-feature__icon {
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "CTA" - VARIANTE 3: Full-width minimal
   ═══════════════════════════════════════════════════════════════ */
.workshop-cta-v3 {
    padding-top: clamp(5rem, 10vw, 8rem);
    padding-bottom: clamp(5rem, 10vw, 8rem);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 200, 255, 0.03) 50%, transparent 100%);
}

.cta-minimal {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-minimal__intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.5rem 0;
}

.cta-minimal__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0 0 2rem 0;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "FAQ" - VARIANTE 1: Grid compatta
   ═══════════════════════════════════════════════════════════════ */
.workshop-faq-v1 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.faq-item p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "FAQ" - VARIANTE 2: Lista verticale
   ═══════════════════════════════════════════════════════════════ */
.workshop-faq-v2 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.faq-vertical {
    max-width: 600px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 2.5rem);
}

.faq-vertical h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #fff;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 0;
}

.faq-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-row:last-child {
    border-bottom: none;
}

.faq-q {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.faq-a {
    font-size: 0.95rem;
    color: var(--color-accent-cyan);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "FAQ" - VARIANTE 3: Accordion style
   ═══════════════════════════════════════════════════════════════ */
.workshop-faq-v3 {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.faq-accordion {
    max-width: 700px;
    margin: 2rem auto 0 auto;
    display: grid;
    gap: 0.75rem;
}

.faq-details {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-details[open] {
    border-color: rgba(0, 200, 255, 0.2);
}

.faq-details summary {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-details summary::after {
    content: '+';
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.faq-details[open] summary::after {
    transform: rotate(45deg);
}

.faq-details p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "CLOSING" - VARIANTE 1: Manifesto finale
   ═══════════════════════════════════════════════════════════════ */
.workshop-closing-v1 {
    padding-top: clamp(5rem, 10vw, 8rem);
    padding-bottom: clamp(5rem, 10vw, 8rem);
}

.closing-manifesto {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.closing-manifesto__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 2rem 0;
    color: #fff;
}

.closing-manifesto__statements {
    margin-bottom: 1.5rem;
}

.closing-manifesto__statements p {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.closing-manifesto__values {
    margin-bottom: 2.5rem;
}

.closing-manifesto__values p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.closing-manifesto__values p strong {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "CLOSING" - VARIANTE 2: Card centrata
   ═══════════════════════════════════════════════════════════════ */
.workshop-closing-v2 {
    padding-top: clamp(5rem, 10vw, 8rem);
    padding-bottom: clamp(5rem, 10vw, 8rem);
}

.closing-card {
    max-width: 650px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

.closing-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: #fff;
}

.closing-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.closing-card__item {
    padding: 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.closing-card__label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.35rem;
}

.closing-card__value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-cyan);
}

/* ═══════════════════════════════════════════════════════════════
   SEZIONE "CLOSING" - VARIANTE 3: Minimal tipografico
   ═══════════════════════════════════════════════════════════════ */
.workshop-closing-v3 {
    padding-top: clamp(5rem, 10vw, 8rem);
    padding-bottom: clamp(5rem, 10vw, 8rem);
}

.closing-typo {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.closing-typo__line {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.closing-typo__line--accent {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-accent-cyan);
    margin-bottom: 1.5rem;
}

.closing-typo__line--strong {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   WORKSHOP FOOTER - Minimal e pulito
   ═══════════════════════════════════════════════════════════════ */
.workshop-footer {
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.workshop-footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.workshop-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.workshop-footer__logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.workshop-footer__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.workshop-footer__links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.workshop-footer__links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.workshop-footer__links a:hover {
    color: var(--color-accent-cyan);
}

.workshop-footer__sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

.workshop-footer__copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.workshop-footer__disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    max-width: 500px;
}

/* Responsive: New sections */
@media (max-width: 1024px) {
    .howto-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-statements {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .why-manifesto__grid {
        grid-template-columns: 1fr;
    }
    
    .howto-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .howto-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, var(--color-accent-cyan), transparent);
    }
    
    .howto-step {
        max-width: 280px;
    }
    
    .howto-cards {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .closing-card__grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card__features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-hero__proof {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .why-statement {
        padding: 1.5rem 1rem;
    }
    
    .why-statement__highlight {
        font-size: 1.25rem;
    }
    
    .bonus-badge {
        padding: 0.7rem 1rem;
    }
    
    .faq-details summary {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Workshop Quick Card (event details box) */
.workshop-quick-card {
    padding: clamp(1.5rem, 2.5vw, 2rem);
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(18, 20, 28, 0.92), rgba(10, 12, 18, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    box-shadow:
        0 32px 64px -32px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.workshop-quick-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: 
        radial-gradient(circle at 50% 0%, rgba(163, 230, 53, 0.12), transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(0, 212, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.workshop-quick-card > * {
    position: relative;
    z-index: 1;
}

.workshop-quick-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(20, 30, 10, 0.95);
    background: linear-gradient(135deg, #d4f970, #a3e635);
    box-shadow:
        0 12px 28px -12px rgba(163, 230, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.workshop-quick-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
    width: 100%;
}

.workshop-quick-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.workshop-quick-list li:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.10);
}

.workshop-quick-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}

.workshop-quick-value {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
}

/* Responsive: quick card */
@media (max-width: 1024px) {
    .workshop-quick-card {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .workshop-quick-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .workshop-quick-badge {
        padding: 0.45rem 1rem;
        font-size: 0.85rem;
    }
    
    .workshop-quick-list li {
        padding: 0.65rem 0.85rem;
        gap: 0.7rem;
    }
    
    .workshop-quick-value {
        font-size: 0.95rem;
    }
}

.workshop-event-card {
    padding: clamp(1.35rem, 2.2vw, 1.85rem);
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 40px 80px -58px rgba(0, 0, 0, 0.92);
}

.workshop-event-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at 30% 20%, rgba(0, 240, 255, 0.18), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 85, 0.12), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.workshop-event-card > * {
    position: relative;
    z-index: 1;
}

.workshop-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.workshop-event-card .chip {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

.workshop-event-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
}

.workshop-event-subtitle {
    margin: 0 0 1.25rem 0;
    color: rgba(255, 255, 255, 0.75);
}

.workshop-event-list {
    display: grid;
    gap: 0;
    margin: 0 0 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.workshop-event-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.workshop-event-item:last-child {
    border-bottom: 0;
}

.workshop-event-item__title {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.workshop-event-item__value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: right;
}

.workshop-event-cta {
    width: 100%;
    justify-content: center;
}

.workshop-event-fineprint {
    margin: 0.75rem 0 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
}

.pricing-grid.workshop-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workshop-audit-card {
    padding: clamp(1.25rem, 2.5vw, 2rem);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: start;
}

.audit-divider {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    opacity: 0.8;
}

.audit-column {
    display: grid;
    gap: 0.85rem;
}

.audit-title {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.audit-title--yes {
    color: rgba(0, 240, 255, 0.95);
}

.audit-title--no {
    color: rgba(255, 0, 85, 0.9);
}

.audit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.78);
}

.audit-list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.audit-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.35);
}

.workshop-list {
    margin: 0.75rem 0 0 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
}

.workshop-list li {
    margin-bottom: 0.5rem;
}

.workshop-micro-proof {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.workshop-proof-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.workshop-center-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.workshop-center-cta .button {
    justify-content: center;
}

.workshop-fineprint {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

.workshop-cta-band {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.workshop-cta-card {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem;
    align-items: center;
}

.workshop-cta-title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.workshop-cta-subtitle {
    margin: 0.35rem 0 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.workshop-cta-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.workshop-how .section-header {
    margin-bottom: 2.25rem;
}

.workshop-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workshop-steps .step-item {
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--glass-surface);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-backdrop-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workshop-steps .step-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.workshop-steps .step-title {
    font-size: 1.35rem;
}

@media (max-width: 1024px) {
    .workshop-highlights-grid {
        grid-template-columns: 1fr;
    }

    .workshop-audit-card {
        grid-template-columns: 1fr;
    }

    .audit-divider {
        width: 100%;
        height: 1px;
        margin: 0.25rem 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    }
}

@media (max-width: 640px) {
    .workshop-hero-top {
        gap: 1.45rem;
        margin-top: 0.05rem;
        margin-bottom: 2rem;
    }

    .workshop-date-band {
        padding: 0.6rem 1.25rem;
        font-size: 0.82rem;
        letter-spacing: 0.04em;
    }

    .workshop-hero-brand {
        margin-top: 0;
        --workshop-brand-height: 30px;
    }
    
    .workshop-hero-cta .button--large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .pricing-grid.workshop-two-col {
        grid-template-columns: 1fr;
    }

    .workshop-hero-actions {
        justify-items: stretch;
    }

    .workshop-hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .workshop-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .workshop-cta-actions {
        justify-content: center;
    }
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.checkout-modal.is-open {
    display: flex;
}

.checkout-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: checkoutFadeIn 0.3s ease-out;
}

.checkout-modal-container {
    position: relative;
    background: linear-gradient(145deg, rgba(12, 12, 14, 0.95), rgba(8, 8, 10, 0.98));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 102, 255, 0.1);
    animation: checkoutSlideUp 0.4s var(--ease-out-expo);
    z-index: 1;
}

.checkout-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-modal-close:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.checkout-step-header {
    margin-bottom: 2rem;
    text-align: center;
}

.checkout-step-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.checkout-step-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.checkout-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkout-form .form-group label {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.checkout-form .form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    color: var(--color-text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.checkout-form .form-group input:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.checkout-form .form-group input::placeholder {
    color: var(--color-text-tertiary);
}

.checkout-form .form-group input:invalid:not(:placeholder-shown) {
    border-color: var(--color-accent-magenta);
}

.form-error {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--color-accent-magenta);
    font-size: 0.9rem;
    text-align: center;
}

.checkout-btn-submit {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
}

.checkout-btn-submit .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-btn-submit .spinner {
    animation: spin 1s linear infinite;
}

.checkout-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.checkout-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--color-text-tertiary);
    font-size: 0.85rem;
}

.checkout-secure-note svg {
    color: var(--color-accent-cyan);
}

@keyframes checkoutFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes checkoutSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .checkout-modal-container {
        padding: 1.5rem;
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .checkout-step-header h2 {
        font-size: 1.4rem;
    }
    
    .checkout-form .form-group input {
        padding: 0.75rem;
    }
}

