/* ========================================
   GOD LANDING - STILE MODERNO
   Bianco / Arancio Acceso / Nero
   ======================================== */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Arancio Acceso, Bianco e Nero */
    --orange: #FF6B00;
    --orange-light: #FF8C33;
    --orange-dark: #E55A00;
    --orange-gradient: linear-gradient(135deg, #FF6B00 0%, #FF8C33 50%, #FF5500 100%);
    --orange-glow: rgba(255, 107, 0, 0.4);
    
    --black: #0A0A0A;
    --black-light: #141414;
    --black-card: #1A1A1A;
    --black-border: #2A2A2A;
    --black-soft: #1E1E1E;
    
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --gray-50: #FAFAFA;
    --gray-100: #F0F0F0;
    --gray-200: #E0E0E0;
    --gray-300: #C0C0C0;
    --gray-400: #909090;
    --gray-500: #707070;
    --gray-600: #505050;
    --gray-700: #404040;
    --gray-800: #303030;
    --gray-900: #1A1A1A;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-orange: 0 0 40px rgba(255, 107, 0, 0.3);
    --shadow-orange-strong: 0 0 60px rgba(255, 107, 0, 0.5);
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-orange {
    color: var(--orange);
}

.text-gradient {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 30px var(--orange-glow);
    }
    50% {
        box-shadow: 0 0 60px var(--orange-glow), 0 0 100px var(--orange-glow);
    }
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes barFill {
    from {
        width: 0;
    }
}

@keyframes particle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ========================================
   PARTICLES
   ======================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: particle 15s linear infinite;
    opacity: 0;
}

/* ========================================
   LEGAL POPUP
   ======================================== */
.legal-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal-popup.hidden {
    display: none;
}

.legal-popup-content {
    background: linear-gradient(180deg, var(--black-card) 0%, var(--black) 100%);
    border: 2px solid var(--orange);
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 320px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-orange-strong);
    position: relative;
    overflow: hidden;
}

.legal-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange-gradient);
}

.legal-logo-video {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid var(--orange);
    box-shadow: var(--shadow-orange);
}

.legal-logo-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-age-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: var(--shadow-orange);
}

.legal-age-circle span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.legal-popup-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
}

.legal-popup-content p {
    font-size: 13px;
    color: var(--gray-300);
    margin-bottom: 12px;
    line-height: 1.5;
}

.legal-terms {
    font-size: 11px !important;
    color: var(--gray-400) !important;
}

.legal-terms a {
    color: var(--orange);
    text-decoration: none;
    transition: var(--transition-fast);
}

.legal-terms a:hover {
    text-decoration: underline;
}

.legal-accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--orange-gradient);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    margin: 14px 0;
    box-shadow: var(--shadow-orange);
}

.legal-accept-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-orange-strong);
}

.btn-icon {
    font-size: 16px;
}

.legal-warning {
    font-size: 10px !important;
    color: var(--gray-500) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.warning-icon {
    width: 14px;
    height: 14px;
    fill: var(--orange);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-video-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--orange);
    box-shadow: 0 0 20px var(--orange-glow);
    flex-shrink: 0;
}

.logo-video-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-gradient);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-medium);
    flex-shrink: 0;
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-orange);
}

.header-cta .tg-icon {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--orange);
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Header CTA Bar - Nuovo Design */
.mobile-header-cta {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 10px 12px;
    flex-direction: column;
    align-items: stretch;
    z-index: 1000;
    border-bottom: 2px solid var(--orange);
    gap: 8px;
}

.mobile-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.mobile-countdown-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.mobile-countdown-label {
    font-size: 9px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-countdown-timer {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.mobile-countdown-timer span {
    color: var(--orange);
}

.mobile-spots-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 82, 82, 0.15);
    border: 1px solid rgba(255, 82, 82, 0.3);
    border-radius: 8px;
    padding: 6px 12px;
    position: relative;
}

.mobile-spots-pulse {
    width: 8px;
    height: 8px;
    background: #FF5252;
    border-radius: 50%;
    animation: spotsPulse 1.5s ease-out infinite;
}

.mobile-spots-count {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: #FF5252;
}

.mobile-spots-label {
    font-size: 9px;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.mobile-header-btn svg {
    width: 18px;
    height: 18px;
}

@keyframes spotsPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

/* ========================================
   MOBILE TAB BAR (BOTTOM)
   ======================================== */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    border-top: 1px solid var(--black-border);
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--gray-400);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
    transition: color 0.3s;
}

.tab-item svg {
    width: 20px;
    height: 20px;
}

.tab-item:hover,
.tab-item.active {
    color: var(--orange);
}

.tab-cta {
    color: var(--white);
}

.tab-cta-btn {
    width: 48px;
    height: 48px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -22px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.tab-cta-btn svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

/* ========================================
   HERO SECTION - NUOVO LAYOUT CENTRATO
   ======================================== */
.hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 40px) 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Logo Side - Posizionato a destra */
.hero-logo-side {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.hero-logo-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo video centrale */
.hero-logo-side .hero-logo-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--orange);
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.5);
    position: relative;
    z-index: 10;
}

.hero-logo-side .hero-logo-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glow pulsante */
.logo-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 1;
}

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

/* Orbite animate */
.orbit {
    position: absolute;
    border: 1px dashed rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    z-index: 5;
}

.orbit-1 {
    width: 220px;
    height: 220px;
    animation: orbit-spin 12s linear infinite;
}

.orbit-2 {
    width: 270px;
    height: 270px;
    animation: orbit-spin 18s linear infinite reverse;
}

.orbit-3 {
    width: 320px;
    height: 320px;
    animation: orbit-spin 25s linear infinite;
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--orange), 0 0 30px var(--orange);
}

/* Ring pulses */
.ring-pulse {
    position: absolute;
    border: 2px solid var(--orange);
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
}

.ring-1 {
    width: 170px;
    height: 170px;
    animation: ring-expand 3s ease-out infinite;
}

.ring-2 {
    width: 170px;
    height: 170px;
    animation: ring-expand 3s ease-out infinite 1s;
}

.ring-3 {
    width: 170px;
    height: 170px;
    animation: ring-expand 3s ease-out infinite 2s;
}

@keyframes ring-expand {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Sparkles */
.sparkles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--orange), 0 0 12px var(--orange);
    animation: sparkle-anim 1.5s ease-in-out forwards;
}

@keyframes sparkle-anim {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Top - Badge */
.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--orange);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.4);
}

.hero-logo-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Hero Center - Titolo */
.hero-center {
    text-align: center;
    max-width: 850px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.hero-subtitle strong {
    color: var(--white);
}

/* Hero Columns - 3 colonne */
.hero-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 750px;
    margin-bottom: 40px;
}

.hero-col {
    background: transparent;
    border: none;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    padding: 16px 16px 16px 20px;
    text-align: left;
    transition: var(--transition-medium);
    position: relative;
}

.hero-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-medium);
}

.hero-col:hover::before {
    opacity: 1;
}

.hero-col:hover {
    border-left-color: var(--orange-light);
    transform: translateX(5px);
}

.hero-col-main {
    border-left: 3px solid var(--white);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
}

.hero-col-main::before {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, transparent 60%);
}

.hero-col-main:hover {
    border-left-color: var(--orange);
}

.hero-col-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 8px;
    color: var(--orange);
}

.hero-col-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.hero-col-main .hero-col-icon {
    color: var(--white);
}

.hero-col-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.hero-col-main .hero-col-number {
    color: var(--white);
}

.hero-col-label {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-col-main .hero-col-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange-gradient);
    color: var(--white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 60px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange-strong);
}

.btn-glow {
    animation: glow 3s ease-in-out infinite;
}

.btn-primary .tg-icon {
    width: 18px;
    height: 18px;
}

.btn-arrow {
    font-size: 18px;
    transition: var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-note {
    font-size: 13px;
    color: var(--gray-400);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note-icon {
    width: 16px;
    height: 16px;
    fill: var(--orange);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-video-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--orange);
    box-shadow: var(--shadow-orange-strong);
}

.hero-video-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--orange);
    pointer-events: none;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: ring-pulse 3s ease-out infinite;
}

.ring-2 {
    width: 100%;
    height: 100%;
    animation: ring-pulse 3s ease-out infinite 1s;
}

.ring-3 {
    width: 100%;
    height: 100%;
    animation: ring-pulse 3s ease-out infinite 2s;
}

/* Hero Canvas */
.hero-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
}

/* Orbit Container */
.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    border: 1px dashed rgba(255, 107, 0, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring.orbit-1 {
    width: 420px;
    height: 420px;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-ring.orbit-2 {
    width: 500px;
    height: 500px;
    animation: orbit-rotate 30s linear infinite reverse;
}

.orbit-ring.orbit-3 {
    width: 580px;
    height: 580px;
    animation: orbit-rotate 40s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--orange-gradient);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--orange-glow), 0 0 40px var(--orange-glow);
}

.orbit-dot.delay {
    top: auto;
    bottom: 0;
}

.orbit-dot.delay-2 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes orbit-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Floating Stats around video - STYLE DISTINTIVO */
.floating-stat {
    position: absolute;
    z-index: 10;
    animation: float-stat 4s ease-in-out infinite;
}

.floating-stat.stat-1 {
    top: 5%;
    right: -30px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C33 100%);
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4), 0 0 60px rgba(255, 107, 0, 0.2);
    animation-delay: 0s;
    position: relative;
    overflow: hidden;
    border: none;
}

.floating-stat.stat-1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.floating-stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.floating-stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--white);
    line-height: 1;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.floating-stat-label {
    font-family: var(--font-display);
    font-size: 10px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.floating-stat.stat-2 {
    bottom: 25%;
    right: -50px;
    background: var(--black);
    border: 2px solid var(--orange);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation-delay: 1.5s;
    position: relative;
}

.floating-stat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid var(--orange);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.floating-stat-emoji {
    font-size: 18px;
    animation: bounce-emoji 1s ease-in-out infinite;
}

@keyframes bounce-emoji {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.floating-stat-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
}

.floating-stat.stat-3 {
    bottom: 5%;
    left: -20px;
    animation-delay: 2.5s;
    background: none;
    border: none;
    padding: 0;
}

.floating-stat-free {
    font-family: var(--font-display);
    font-size: 52px;
    color: transparent;
    -webkit-text-stroke: 2px var(--orange);
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
    animation: glow-text 2s ease-in-out infinite alternate;
}

@keyframes glow-text {
    0% {
        text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
        -webkit-text-stroke: 2px var(--orange);
    }
    100% {
        text-shadow: 0 0 40px rgba(255, 107, 0, 0.8), 0 0 60px rgba(255, 107, 0, 0.4);
        -webkit-text-stroke: 2px var(--orange-light);
    }
}

@keyframes float-stat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   SECTIONS - SFONDI ALTERNATI
   ======================================== */
.section {
    padding: 100px 24px;
    position: relative;
    scroll-margin-top: 70px;
}

@media (min-width: 769px) {
    .section {
        scroll-margin-top: 80px;
    }
}

/* Sfondo Nero */
.section-dark {
    background: var(--black);
    color: var(--white);
}

/* Sfondo Bianco */
.section-white {
    background: var(--white);
    color: var(--black);
}

.section-white .section-tag {
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
}

.section-white .section-title {
    color: var(--black);
}

.section-white .section-desc {
    color: var(--gray-600);
}

.section-white .text-orange {
    color: var(--orange);
}

.section-white .comparison-card {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.section-white .comparison-card h3 {
    color: var(--black);
}

.section-white .comparison-list li {
    color: var(--gray-700);
}

.section-white .clarity-card {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.section-white .clarity-title {
    color: var(--black);
}

.section-white .clarity-list li {
    color: var(--gray-700);
}

/* Sfondo Arancione */
.section-orange {
    background: var(--orange-gradient);
    color: var(--white);
}

.section-orange .section-tag {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.section-orange .section-title {
    color: var(--white);
}

.section-orange .text-gradient {
    background: linear-gradient(135deg, #fff 0%, #FFE4CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-orange .section-desc,
.section-orange .about-text {
    color: rgba(255, 255, 255, 0.9);
}

.section-orange .about-video-circle {
    border-color: var(--white);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
}

.section-orange .floating-badge {
    background: var(--white);
    color: var(--orange);
}

.section-orange .badge-number {
    color: var(--orange);
}

.section-orange .badge-text {
    color: var(--gray-600);
}

.section-orange .feature-item {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-orange .feature-item span {
    color: var(--white);
}

.section-orange .about-conclusion {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Stats section su sfondo nero */
.section-dark .stats-card {
    background: var(--black-card);
    border-color: var(--black-border);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-300);
    max-width: 600px;
}

/* ========================================
   EXCLUSIVE SECTION - NUOVO DESIGN
   ======================================== */
.exclusive-header {
    text-align: center;
    margin-bottom: 60px;
}

.exclusive-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.exclusive-tag svg {
    width: 16px;
    height: 16px;
}

.exclusive-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.4;
}

/* Split layout */
.exclusive-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.exclusive-block {
    padding: 40px;
    position: relative;
}

.block-no {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border-left: 4px solid #ccc;
}

.block-yes {
    background: linear-gradient(135deg, #fff8f3 0%, #fff0e6 100%);
    border-left: 4px solid var(--orange);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.block-icon-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.block-no .block-icon-circle {
    background: #ddd;
    color: #666;
}

.block-yes .block-icon-circle {
    background: var(--orange);
    color: white;
}

.block-icon-circle svg {
    width: 24px;
    height: 24px;
}

.block-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.block-no .block-label {
    color: #888;
}

.block-yes .block-label {
    color: var(--orange);
}

.block-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.block-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.item-line {
    width: 24px;
    height: 2px;
}

.block-no .item-line {
    background: #ccc;
}

.block-yes .item-line {
    background: var(--orange);
}

.block-item span {
    font-size: 1rem;
    font-weight: 500;
}

.block-no .block-item span {
    color: #666;
}

.block-yes .block-item span {
    color: var(--black);
}

.block-verdict {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-weight: 700;
    font-size: 1.1rem;
}

.block-no .block-verdict {
    color: #888;
}

.block-yes .block-verdict {
    color: var(--orange);
}

.verdict-icon {
    font-size: 1.2rem;
}

/* Divider */
.exclusive-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

.divider-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid #ddd;
    border-radius: 50%;
    font-weight: 700;
    color: #888;
    font-size: 0.9rem;
}

/* Footer */
.exclusive-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.exclusive-footer p {
    font-size: 1.2rem;
    color: #666;
}

.exclusive-footer strong {
    color: var(--orange);
}

/* ========================================
   COMPARISON GRID (LEGACY - manteniamo per compatibilità)
   ======================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-card {
    background: transparent;
    border-radius: 0;
    padding: 40px;
    border: none;
    border-left: 4px solid;
    transition: var(--transition-medium);
    position: relative;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-card.negative {
    border-left-color: #FF3B3B;
}

.comparison-card.positive {
    border-left-color: var(--orange);
}

.comparison-card:hover {
    transform: translateX(8px);
}

.comparison-card.positive:hover {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, transparent 60%);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: none;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 2px;
}

.comparison-card.negative .card-icon::after {
    background: #FF3B3B;
}

.comparison-card.positive .card-icon::after {
    background: var(--orange);
}

.comparison-card.negative .card-icon svg {
    width: 36px;
    height: 36px;
    fill: #FF3B3B;
}

.comparison-card.positive .card-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--orange);
}

.comparison-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-dark .comparison-card h3 {
    color: var(--white);
}

.comparison-list {
    list-style: none;
    margin-bottom: 28px;
}

.comparison-list li {
    padding: 14px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 32px;
}

.section-dark .comparison-list li {
    color: var(--gray-300);
    border-bottom-color: var(--black-border);
}

.comparison-list li::before {
    position: absolute;
    left: 0;
    font-size: 14px;
    font-weight: 700;
}

.comparison-card.negative .comparison-list li::before {
    content: '—';
    color: #FF3B3B;
}

.comparison-card.positive .comparison-list li::before {
    content: '+';
    color: var(--orange);
}

.card-verdict {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.comparison-card.negative .card-verdict {
    color: #FF6B6B;
}

.comparison-card.positive .card-verdict {
    color: var(--orange);
}

/* ========================================
   ABOUT SECTION - NUOVO DESIGN
   ======================================== */
.about-new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-intro {
    margin-bottom: 48px;
}

.about-eyebrow {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 20px;
}

.text-white {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.about-lead {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.6;
    max-width: 400px;
}

/* Timeline */
.about-timeline {
    position: relative;
    padding-left: 32px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,0,0,0.15);
}

.timeline-item {
    position: relative;
    padding-bottom: 28px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 3px solid rgba(0,0,0,0.2);
    border-radius: 50%;
}

.timeline-item.active .timeline-marker {
    background: var(--black);
    border-color: var(--black);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
}

.timeline-item.active .timeline-year {
    color: var(--black);
}

.timeline-content p {
    font-size: 0.95rem;
    color: rgba(0,0,0,0.6);
    margin: 0;
}

.timeline-item.active .timeline-content p {
    color: var(--black);
    font-weight: 600;
}

/* About Cards */
.about-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-left: 4px solid var(--black);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateX(8px);
    box-shadow: -8px 0 24px rgba(0,0,0,0.1);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    flex-shrink: 0;
}

.about-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.about-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-card-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.about-card-text span {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.5);
}

/* ========================================
   METHODS SECTION
   ======================================== */
.methods-header {
    text-align: center;
    margin-bottom: 48px;
}

.methods-flag {
    font-size: 2rem;
    margin-bottom: 12px;
}

.methods-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.methods-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.methods-subtitle {
    font-size: 1rem;
    color: var(--gray-400);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.method-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-600);
    transition: background 0.3s ease;
}

.method-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}

.method-card:hover::before {
    background: var(--orange);
}

.method-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 2px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.method-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
}

.method-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--gray-400);
}

.method-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.method-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.method-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #4ade80;
    font-weight: 600;
}

.method-status svg {
    width: 12px;
    height: 12px;
    fill: #4ade80;
}

/* Varianti speciali */
.method-card.method-premium::before {
    background: linear-gradient(90deg, var(--orange), #ffd700);
}

.method-card.method-premium .method-amount {
    background: linear-gradient(90deg, var(--orange), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.method-card.method-trading::before {
    background: #3b82f6;
}

.method-card.method-trading .method-icon svg {
    fill: #3b82f6;
}

.method-card.method-special::before {
    background: #a855f7;
}

.method-card.method-special .method-icon svg {
    fill: #a855f7;
}

.method-card.method-main {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.method-card.method-main::before {
    background: var(--orange);
}

.method-card.method-main .method-icon svg {
    fill: var(--orange);
}

.methods-footer {
    text-align: center;
}

.methods-footer p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.methods-footer strong {
    color: var(--white);
}

/* Legacy about styles - manteniamo per compatibilità */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 17px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--white);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: transparent;
    border-radius: 0;
    border: none;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.feature-item:hover {
    border-left-color: var(--white);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.about-conclusion {
    font-size: 18px;
    font-weight: 600;
    color: var(--orange);
}

/* About Visual */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.about-video-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--orange);
    box-shadow: var(--shadow-orange);
}

.about-video-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: transparent;
    border: none;
    border-left: 3px solid var(--white);
    border-radius: 0;
    padding: 16px 24px 16px 20px;
    text-align: left;
    box-shadow: none;
    animation: float 4s ease-in-out infinite;
}

.floating-badge.badge-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 10%;
    left: 0;
    animation-delay: 2s;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    display: block;
    line-height: 1;
    letter-spacing: 2px;
}

.badge-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   STATS SECTION - STILE DISTINTIVO
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.stats-card {
    background: transparent;
    border-radius: 0;
    padding: 40px 24px;
    text-align: left;
    border: none;
    border-bottom: 3px solid var(--orange);
    transition: var(--transition-medium);
    position: relative;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange);
}

.stats-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, transparent 100%);
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
}

.stats-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--orange);
}

.stats-number-wrapper {
    margin-bottom: 8px;
}

.stats-prefix {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--orange);
    letter-spacing: 2px;
}

.stats-number {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--orange);
    letter-spacing: 2px;
}

.stats-label-top {
    font-size: 14px;
    color: var(--gray-400);
    display: block;
}

.stats-text-highlight {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--orange);
    display: block;
}

.stats-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-bar {
    height: 6px;
    background: var(--black-border);
    border-radius: 3px;
    margin-top: 24px;
    overflow: hidden;
}

.stats-bar-fill {
    height: 100%;
    background: var(--orange-gradient);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease;
}

.stats-bar-fill.animated {
    animation: barFill 1.5s ease forwards;
}

.stats-conclusion {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stats-conclusion p {
    font-size: 20px;
    color: var(--gray-300);
}

.stats-conclusion strong {
    color: var(--orange);
}

/* ========================================
   CLARITY SECTION (ANTI-FUFFA) - STILE DISTINTIVO
   ======================================== */
.clarity-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}

.clarity-card {
    background: transparent;
    border-radius: 0;
    padding: 40px;
    border: none;
    border-top: 3px solid;
    transition: var(--transition-medium);
    position: relative;
}

.clarity-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
}

.clarity-card:hover {
    transform: translateY(-5px);
}

.clarity-card.no-card {
    border-top-color: #FF3B3B;
}

.clarity-card.no-card::before {
    background: #FF3B3B;
}

.clarity-card.yes-card {
    border-top-color: var(--orange);
}

.clarity-card.yes-card::before {
    background: var(--orange);
}

.clarity-card.yes-card:hover {
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.05) 0%, transparent 100%);
}

.clarity-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.clarity-icon {
    font-size: 24px;
}

.clarity-list {
    list-style: none;
}

.clarity-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.section-dark .clarity-list li {
    color: var(--gray-300);
    border-bottom-color: var(--black-border);
}

.clarity-list li:last-child {
    border-bottom: none;
}

.list-x {
    width: 24px;
    height: 24px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF3B3B;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    border-left: 2px solid #FF3B3B;
    padding-left: 8px;
}

.list-check {
    width: 24px;
    height: 24px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    border-left: 2px solid var(--orange);
    padding-left: 8px;
}

.clarity-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-vs {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: transparent;
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
}

/* ========================================
   STEPS SECTION - STILE DISTINTIVO
   ======================================== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.step-card {
    background: transparent;
    border-radius: 0;
    padding: 40px 24px;
    text-align: left;
    border: none;
    border-left: 3px solid var(--black-border);
    position: relative;
    transition: var(--transition-medium);
}

.step-card:hover {
    border-left-color: var(--orange);
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
}

.step-number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1;
}

.step-number::after {
    content: '.';
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 20px 0;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gray-400);
}

.step-card:hover .step-icon svg {
    fill: var(--orange);
}

.step-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.step-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

.steps-note {
    text-align: center;
}

.note-badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.note-badge {
    background: transparent;
    border: none;
    border-left: 2px solid var(--orange);
    padding: 10px 0 10px 16px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--orange);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.section-reviews {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-card) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.review-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 24px;
    transition: var(--transition-medium);
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.review-info {
    flex: 1;
}

.review-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.review-time {
    font-size: 12px;
    color: var(--gray-400);
}

.review-stars {
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.review-badge svg {
    width: 14px;
    height: 14px;
    fill: #4CAF50;
}

.reviews-cta {
    text-align: center;
    display: flex;
    justify-content: center;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.section-faq {
    background: var(--black);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 48px;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.faq-item.active {
    border-color: var(--orange);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--orange);
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    background: var(--orange);
}

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

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

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

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

.faq-cta-text {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.faq-cta .btn-section-cta {
    padding: 14px 32px;
    font-size: 14px;
    gap: 10px;
}

.faq-cta .btn-section-cta svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.section-cta {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 120px 24px;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-glow.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--orange-glow);
    top: -100px;
    left: 10%;
}

.cta-glow.glow-2 {
    width: 300px;
    height: 300px;
    background: var(--orange-glow);
    bottom: -50px;
    right: 10%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-video-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--orange);
    box-shadow: var(--shadow-orange-strong);
    margin: 0 auto 32px;
    animation: float 4s ease-in-out infinite;
}

.cta-video-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-desc {
    font-size: 20px;
    color: var(--gray-300);
    margin-bottom: 40px;
}

.cta-desc strong {
    color: var(--orange);
}

.btn-large {
    padding: 22px 48px;
    font-size: 18px;
}

/* ========================================
   SECTION CTA BUTTONS
   ======================================== */
.btn-section-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange-gradient);
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-medium);
    margin-top: 24px;
}

.btn-section-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange-strong);
}

.btn-section-cta .tg-icon {
    width: 18px;
    height: 18px;
}

/* Variante scura (per sfondi arancioni) */
.btn-section-cta-dark {
    background: var(--black);
    color: var(--white);
}

.btn-section-cta-dark:hover {
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Wrapper per centrare i CTA */
.clarity-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.exclusive-footer {
    text-align: center;
    margin-top: 50px;
}

.exclusive-footer .btn-section-cta {
    margin-top: 20px;
}

.cta-note-final {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 24px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black-light);
    padding: 60px 24px 40px;
    border-top: 1px solid var(--black-border);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-video-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--orange);
}

.footer-video-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--orange);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-copy {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--gray-600);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: calc(var(--header-height) + 40px);
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-video-circle {
        width: 250px;
        height: 250px;
    }
    
    .hero-canvas {
        width: 450px;
        height: 450px;
    }
    
    .orbit-ring.orbit-1 {
        width: 320px;
        height: 320px;
    }
    
    .orbit-ring.orbit-2 {
        width: 380px;
        height: 380px;
    }
    
    .orbit-ring.orbit-3 {
        width: 440px;
        height: 440px;
    }
    
    .floating-stat {
        display: none;
    }
    
    .floating-stat.stat-1 {
        display: flex;
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        order: -1;
        min-height: 300px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .clarity-grid {
        grid-template-columns: 1fr;
    }
    
    .clarity-divider {
        padding: 20px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 24px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 0px;
    }
    
    .header {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-header-cta {
        display: flex;
    }
    
    .mobile-tab-bar {
        display: grid;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 110px 16px 100px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .hero-col {
        padding: 12px 8px;
        text-align: center;
        border-left: none;
        border-radius: 12px;
        background: rgba(255, 107, 0, 0.05);
        border: 1px solid rgba(255, 107, 0, 0.15);
    }
    
    .hero-col-main {
        background: rgba(255, 107, 0, 0.15);
        border: 1px solid rgba(255, 107, 0, 0.3);
    }
    
    .hero-col-icon {
        width: 20px;
        height: 20px;
        margin: 0 auto 6px;
    }
    
    .hero-col-number {
        font-size: 18px;
        white-space: nowrap;
    }
    
    .hero-col-label {
        font-size: 8px;
        line-height: 1.2;
    }
    
    .hero-logo-circle {
        width: 70px;
        height: 70px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .btn-primary {
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .section {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .floating-badge {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }
    
    .about-visual {
        flex-direction: column;
        gap: 20px;
    }
    
    .note-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .hero-top {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .hero-center {
        margin-bottom: 24px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-columns {
        margin-bottom: 24px;
    }
    
    .btn-primary {
        padding: 14px 20px;
        font-size: 13px;
        gap: 8px;
    }
    
    .btn-primary .tg-icon {
        width: 18px;
        height: 18px;
    }
    
    .cta-note {
        font-size: 12px;
    }
    
    .comparison-card,
    .clarity-card,
    .stats-card,
    .step-card {
        padding: 28px 20px;
    }
    
    .legal-popup-content {
        padding: 32px 20px;
    }
    
    /* Exclusive section responsive */
    .exclusive-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .exclusive-divider {
        flex-direction: row;
        padding: 16px 0;
    }
    
    .divider-line {
        width: auto;
        height: 2px;
        flex: 1;
        background: linear-gradient(to right, transparent, #ddd, transparent);
    }
    
    .exclusive-block {
        padding: 24px;
    }
    
    .exclusive-title {
        font-size: 1.8rem;
    }
    
    .exclusive-header {
        margin-bottom: 40px;
    }
    
    .exclusive-footer {
        margin-top: 40px;
    }
    
    /* About section responsive */
    .about-new-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-headline {
        font-size: 1.6rem;
    }
    
    .about-card {
        padding: 16px;
    }
    
    .about-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Methods section responsive */
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .method-card {
        padding: 16px 12px;
    }
    
    .method-amount {
        font-size: 1.1rem;
    }
    
    .method-label {
        font-size: 0.7rem;
    }
    
    .methods-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   SOCIAL PROOF SECTION - NUOVO DESIGN
   ======================================== */
.social-proof-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.sp-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 0, 0.1), transparent);
}

.sp-line-1 { left: 20%; }
.sp-line-2 { left: 50%; }
.sp-line-3 { left: 80%; }

.sp-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.sp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 24px;
}

.sp-pulse {
    width: 8px;
    height: 8px;
    background: #00FF00;
    border-radius: 50%;
    animation: sp-pulse 2s ease-in-out infinite;
}

@keyframes sp-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(0, 255, 0, 0); }
}

.sp-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

/* Metriche */
.sp-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.sp-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.sp-metric:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.sp-metric-visual {
    margin-bottom: 24px;
}

.sp-ring {
    width: 140px;
    height: 140px;
    position: relative;
}

.sp-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.sp-ring-bg {
    fill: none;
    stroke: rgba(255, 107, 0, 0.15);
    stroke-width: 6;
}

.sp-ring-fill {
    fill: none;
    stroke: var(--orange);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s ease;
    filter: drop-shadow(0 0 10px var(--orange));
}

.sp-ring-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.sp-ring-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--orange);
}

.sp-metric-data {
    width: 100%;
}

.sp-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.sp-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.sp-count {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.sp-count.counting {
    color: var(--orange);
}

.sp-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
}

.sp-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.sp-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #4ade80;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sp-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: sp-pulse 2s ease-in-out infinite;
}

/* Quote bottom */
.sp-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sp-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 107, 0, 0.08);
    border-left: 4px solid var(--orange);
    max-width: 700px;
    margin: 0 auto;
}

.sp-quote-icon {
    width: 32px;
    height: 32px;
    fill: var(--orange);
    opacity: 0.5;
    flex-shrink: 0;
}

.sp-quote p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin: 0;
}

.sp-quote strong {
    color: var(--orange);
}

/* ========================================
   CLARITY SECTION - NUOVO DESIGN
   ======================================== */
.clarity-header {
    text-align: center;
    margin-bottom: 60px;
}

.clarity-tag {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.clarity-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

.strikethrough-red {
    position: relative;
    color: #FF3B3B;
}

.strikethrough-red::after {
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    top: 50%;
    height: 4px;
    background: #FF3B3B;
    transform: rotate(-5deg);
}

/* Comparazione */
.clarity-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
}

.clarity-col {
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.clarity-col:hover {
    transform: translateY(-5px);
}

.clarity-no {
    background: linear-gradient(145deg, #FFF5F5 0%, #FFFFFF 100%);
    border: 2px solid rgba(255, 59, 59, 0.2);
}

.clarity-no:hover {
    border-color: rgba(255, 59, 59, 0.4);
    box-shadow: 0 15px 40px rgba(255, 59, 59, 0.1);
}

.clarity-yes {
    background: linear-gradient(145deg, #FFF8F0 0%, #FFFFFF 100%);
    border: 2px solid rgba(255, 107, 0, 0.2);
}

.clarity-yes:hover {
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.1);
}

.clarity-col-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.clarity-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clarity-badge svg {
    width: 24px;
    height: 24px;
}

.clarity-badge-no {
    background: rgba(255, 59, 59, 0.15);
}

.clarity-badge-no svg {
    fill: #FF3B3B;
}

.clarity-badge-yes {
    background: rgba(255, 107, 0, 0.15);
}

.clarity-badge-yes svg {
    fill: var(--orange);
}

.clarity-col-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
}

.clarity-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clarity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.clarity-item:hover {
    transform: translateX(5px);
}

.clarity-x {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 59, 59, 0.1);
    color: #FF3B3B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.clarity-check {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.clarity-item span {
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* VS Divider */
.clarity-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.clarity-vs-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, var(--gray-300), transparent);
}

.clarity-vs-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .sp-metrics {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sp-metric {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }
    
    .sp-metric-visual {
        margin-bottom: 0;
    }
    
    .sp-ring {
        width: 100px;
        height: 100px;
    }
    
    .sp-metric-data {
        text-align: left;
    }
    
    .sp-number {
        justify-content: flex-start;
    }
    
    .sp-title {
        font-size: 2.5rem;
    }
    
    .clarity-compare {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .clarity-vs {
        flex-direction: row;
    }
    
    .clarity-vs-line {
        width: auto;
        height: 2px;
        flex: 1;
    }
    
    .clarity-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .sp-title {
        font-size: 2rem;
    }
    
    .sp-count, .sp-text {
        font-size: 2.2rem;
    }
    
    .sp-quote {
        flex-direction: column;
        text-align: center;
    }
    
    .clarity-col {
        padding: 24px;
    }
    
    .clarity-main-title {
        font-size: 1.8rem;
    }
}

/* ========================================
   FOOTER DISCLAIMER ADM - STILE LEGALE
   ======================================== */
.footer-disclaimer {
    background: var(--black);
    border-top: 1px solid var(--black-border);
    padding: 60px 20px;
}

.footer-disclaimer .footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-adm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.adm-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-18 .age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--orange);
    color: var(--orange);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-text {
    margin-bottom: 32px;
}

.footer-brand-text {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand-text strong {
    color: var(--orange);
}

.footer-warning {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-warning strong {
    color: var(--orange);
}

.footer-help {
    font-size: 0.9rem;
    color: var(--gray-300);
    background: rgba(255, 107, 0, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
}

.footer-help strong {
    color: var(--orange);
}

.footer-disclaimer .footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-disclaimer .footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-disclaimer .footer-links a:hover {
    color: var(--orange);
}

.footer-disclaimer .footer-links span {
    color: var(--gray-600);
}

.footer-disclaimer .footer-copy {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========================================
   LEGAL POPUP - STILE AGGIORNATO
   ======================================== */
.legal-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.legal-popup.hidden {
    display: none;
}

.legal-popup-content {
    background: linear-gradient(145deg, var(--black-light), var(--black));
    border: 1px solid var(--orange);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.3);
}

.legal-logo {
    margin-bottom: 24px;
}

.legal-logo-video {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.legal-age-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.legal-age-circle span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
}

.legal-popup-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--white);
}

.legal-popup-content > p {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.legal-terms {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.legal-terms a {
    color: var(--orange);
    text-decoration: underline;
}

.legal-accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange-gradient);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    width: 100%;
}

.legal-accept-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.legal-adm {
    margin-bottom: 20px;
}

.legal-adm-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.legal-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.legal-warning .warning-icon {
    width: 20px;
    height: 20px;
    fill: var(--orange);
}

.legal-help {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.legal-help strong {
    color: var(--orange);
}

@media (max-width: 576px) {
    .legal-popup-content {
        padding: 32px 24px;
    }
    
    .legal-logo-video {
        width: 80px;
        height: 80px;
    }
    
    .legal-age-circle {
        width: 60px;
        height: 60px;
    }
    
    .legal-age-circle span {
        font-size: 1.4rem;
    }
    
    .legal-popup-content h2 {
        font-size: 1.4rem;
    }
    
    .footer-adm {
        flex-direction: column;
        gap: 16px;
    }
    
    .adm-logo {
        height: 50px;
    }
}

/* ========================================
   HERO COUNTDOWN BANNER
   ======================================== */
.hero-countdown-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 2px solid var(--orange);
    border-radius: 16px;
    padding: 20px 40px;
    margin-top: 16px;
    margin-bottom: 40px;
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 0, 0.4); }
}

.countdown-icon {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.countdown-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.countdown-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 107, 0, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
}

.countdown-unit span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.countdown-unit small {
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange);
    font-weight: 700;
}

.countdown-spots {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 82, 82, 0.15);
    border: 1px solid rgba(255, 82, 82, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
}

.spots-pulse {
    width: 10px;
    height: 10px;
    background: #FF5252;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.spots-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF5252;
}

.spots-text {
    font-size: 0.85rem;
    color: var(--gray-300);
}

@media (max-width: 768px) {
    .hero-countdown-banner {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .countdown-icon {
        width: 40px;
        height: 40px;
    }
    
    .countdown-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .countdown-text {
        align-items: center;
        text-align: center;
    }
    
    .countdown-unit {
        min-width: 45px;
        padding: 6px 10px;
    }
    
    .countdown-unit span {
        font-size: 1.2rem;
    }
}

/* ========================================
   URGENCY POPUP
   ======================================== */
.urgency-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.urgency-popup.hidden {
    display: none;
}

.urgency-popup .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.urgency-popup .popup-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, var(--black-light) 0%, var(--black) 100%);
    border: 2px solid var(--orange);
    border-radius: 20px;
    padding: 28px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(255, 107, 0, 0.3);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.urgency-popup .popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.urgency-popup .popup-close svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.urgency-popup .popup-close:hover {
    background: var(--orange);
}

.urgency-popup .popup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.popup-logo-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--orange);
    flex-shrink: 0;
}

.popup-logo-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.urgency-popup .popup-title-wrapper {
    flex: 1;
}

.urgency-popup .popup-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.urgency-popup .popup-label .fire-icon {
    width: 14px;
    height: 14px;
}

.urgency-popup .popup-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
}

/* Popup Urgency Bar - REWORKED */
.urgency-popup .popup-urgency-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 82, 82, 0.15) 100%);
    border: 2px solid rgba(255, 107, 0, 0.5);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.urgency-popup .popup-urgency-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.2), transparent);
    animation: urgencyShine 2s infinite;
}

@keyframes urgencyShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.popup-countdown-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.popup-countdown-mini svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
    animation: pulse 1.5s infinite;
}

.popup-countdown-mini span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.popup-countdown-mini span:last-child {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.popup-spots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 82, 82, 0.15);
    border-radius: 12px;
    border: 2px solid rgba(255, 82, 82, 0.5);
}

.popup-spots-dot {
    width: 12px;
    height: 12px;
    background: #FF5252;
    border-radius: 50%;
    animation: urgencyPulse 1s infinite;
    box-shadow: 0 0 15px rgba(255, 82, 82, 0.8);
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.popup-spots span {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.popup-spots strong {
    color: #FF5252;
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-display);
    text-shadow: 0 0 20px rgba(255, 82, 82, 0.6);
    animation: spotsFlash 2s infinite;
}

@keyframes spotsFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; text-shadow: 0 0 30px rgba(255, 82, 82, 1); }
}

/* Popup Timer Warning - Time on page */
.popup-timer-warning {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.15));
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 16px;
    text-align: center;
    animation: warningPulse 2s infinite;
}

@keyframes warningPulse {
    0%, 100% { border-color: rgba(255, 193, 7, 0.4); }
    50% { border-color: rgba(255, 193, 7, 0.8); background: linear-gradient(90deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2)); }
}

.popup-timer-warning span {
    color: var(--white);
    font-size: 13px;
}

.popup-timer-warning strong {
    color: #FFC107;
    font-family: var(--font-display);
    font-size: 15px;
}

/* Popup Description - HIDDEN NOW */
.popup-description {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.popup-description p {
    color: var(--gray-300);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.popup-description strong {
    color: var(--orange);
}

/* Popup Benefits - HIDDEN for compact layout */
.popup-benefits {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.popup-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 107, 0, 0.08);
    border-radius: 8px;
    transition: all 0.3s;
}

.popup-benefit:hover {
    background: rgba(255, 107, 0, 0.15);
}

.popup-benefit svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
}

.popup-benefit span {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

/* Popup CTA */
.popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--orange);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.popup-cta:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.popup-cta .tg-icon {
    width: 20px;
    height: 20px;
}

.popup-warning {
    text-align: center;
    color: var(--gray-400);
    font-size: 12px;
}

@media (max-width: 576px) {
    .urgency-popup .popup-content {
        padding: 20px;
    }
    
    .popup-logo-circle {
        width: 48px;
        height: 48px;
    }
    
    .urgency-popup .popup-title {
        font-size: 18px;
    }
    
    .urgency-popup .popup-urgency-bar {
        padding: 14px;
        gap: 12px;
    }
    
    .popup-countdown-mini {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 10px;
    }
    
    .popup-countdown-mini span:last-child {
        font-size: 22px;
    }
    
    .popup-spots {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 12px;
    }
    
    .popup-spots strong {
        font-size: 26px;
    }
    
    .popup-spots span {
        font-size: 14px;
    }
}

/* ========================================
   MOBILE APP-LIKE OPTIMIZATION
   Ottimizzazione completa per mobile
   ======================================== */
@media (max-width: 768px) {
    /* Body - spazio per barre fisse */
    body {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: calc(100vh - 130px);
        padding: 24px 16px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-top {
        margin-bottom: 20px;
    }
    
    .hero-badge {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    .hero-countdown-banner {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .countdown-text {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .countdown-label {
        font-size: 12px;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-unit span {
        font-size: 22px;
        padding: 8px 12px;
    }
    
    .countdown-unit small {
        font-size: 8px;
    }
    
    .countdown-spots {
        padding: 8px 16px;
    }
    
    .spots-number {
        font-size: 20px;
    }
    
    .spots-text {
        font-size: 11px;
    }
    
    .hero-center {
        margin-bottom: 24px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .hero-columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .hero-col {
        padding: 12px 8px;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border-left: none;
        display: flex;
    }
    
    .hero-col::before {
        display: none;
    }
    
    .hero-col:hover {
        transform: none;
    }
    
    .hero-col-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin: 0 auto 4px;
    }
    
    .hero-col-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-col-number {
        font-size: 16px;
        white-space: nowrap;
    }
    
    .hero-col-label {
        font-size: 8px;
        line-height: 1.2;
    }
    
    .hero-cta .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .cta-note {
        font-size: 11px;
        text-align: center;
    }
    
    /* Hero Logo Mobile */
    .hero-logo-side {
        display: none;
    }
    
    .hero-logo-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
    
    .hero-logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .orbit {
        display: none;
    }
    
    .ring-pulse {
        display: none;
    }
    
    /* Sections General Mobile */
    .section {
        padding: 50px 16px;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-tag {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* ESCLUSIVITÀ Section Mobile */
    .exclusive-header {
        margin-bottom: 32px;
    }
    
    .exclusive-tag {
        font-size: 11px;
        padding: 8px 14px;
    }
    
    .exclusive-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .exclusive-split {
        gap: 16px;
    }
    
    .exclusive-block {
        padding: 20px;
        border-radius: 16px;
    }
    
    .block-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .block-icon-circle {
        width: 40px;
        height: 40px;
    }
    
    .block-icon-circle svg {
        width: 20px;
        height: 20px;
    }
    
    .block-label {
        font-size: 14px;
    }
    
    .block-items {
        gap: 10px;
    }
    
    .block-item {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .block-verdict {
        margin-top: 16px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .exclusive-divider {
        padding: 12px 0;
    }
    
    .divider-circle {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .exclusive-footer {
        margin-top: 32px;
    }
    
    .exclusive-footer p {
        font-size: 14px;
    }
    
    /* ABOUT Section Mobile */
    .about-new-layout {
        gap: 32px;
    }
    
    .about-intro {
        margin-bottom: 24px;
    }
    
    .about-eyebrow {
        font-size: 12px;
    }
    
    .about-headline {
        font-size: 22px;
    }
    
    .about-lead {
        font-size: 14px;
    }
    
    .about-timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-bottom: 20px;
        padding-left: 24px;
    }
    
    .timeline-marker {
        width: 10px;
        height: 10px;
        left: -5px;
    }
    
    .timeline-year {
        font-size: 13px;
    }
    
    .timeline-content p {
        font-size: 13px;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .about-card {
        padding: 14px;
        gap: 12px;
    }
    
    .about-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-card-text strong {
        font-size: 14px;
    }
    
    .about-card-text span {
        font-size: 12px;
    }
    
    /* METHODS Section Mobile */
    .methods-header {
        margin-bottom: 32px;
    }
    
    .methods-flag {
        font-size: 32px;
    }
    
    .methods-tag {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .methods-title {
        font-size: 22px;
    }
    
    .methods-subtitle {
        font-size: 13px;
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .method-card {
        padding: 14px 10px;
        border-radius: 12px;
    }
    
    .method-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .method-amount {
        font-size: 14px;
    }
    
    .method-label {
        font-size: 9px;
    }
    
    .method-status {
        font-size: 8px;
        padding: 3px 6px;
    }
    
    .method-status svg {
        width: 8px;
        height: 8px;
    }
    
    .method-badge {
        font-size: 8px;
        padding: 2px 6px;
    }
    
    .methods-footer {
        margin-top: 32px;
        gap: 16px;
    }
    
    .methods-footer p {
        font-size: 13px;
    }
    
    .methods-footer .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    /* SOCIAL PROOF Section Mobile */
    .sp-header {
        margin-bottom: 40px;
    }
    
    .sp-badge {
        font-size: 10px;
        padding: 6px 14px;
    }
    
    .sp-title {
        font-size: 26px;
    }
    
    .sp-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .sp-metric {
        padding: 24px 16px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }
    
    .sp-metric-visual {
        flex-shrink: 0;
    }
    
    .sp-ring {
        width: 70px;
        height: 70px;
    }
    
    .sp-ring-icon {
        width: 28px;
        height: 28px;
    }
    
    .sp-ring-icon svg {
        width: 100%;
        height: 100%;
    }
    
    .sp-metric-data {
        text-align: left;
    }
    
    .sp-number {
        justify-content: flex-start;
    }
    
    .sp-count {
        font-size: 28px;
    }
    
    .sp-text {
        font-size: 24px;
    }
    
    .sp-label {
        font-size: 12px;
    }
    
    .sp-status {
        font-size: 11px;
    }
    
    .sp-bottom {
        padding-top: 32px;
    }
    
    .sp-quote {
        padding: 20px;
    }
    
    .sp-quote p {
        font-size: 14px;
    }
    
    .sp-quote-icon {
        width: 28px;
        height: 28px;
    }
    
    /* CLARITY Section Mobile */
    .clarity-header {
        margin-bottom: 32px;
    }
    
    .clarity-tag {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .clarity-main-title {
        font-size: 24px;
    }
    
    .clarity-compare {
        flex-direction: column;
        gap: 16px;
    }
    
    .clarity-col {
        padding: 20px;
        border-radius: 16px;
    }
    
    .clarity-col-header {
        margin-bottom: 16px;
        gap: 12px;
    }
    
    .clarity-col-header h3 {
        font-size: 16px;
    }
    
    .clarity-badge {
        width: 36px;
        height: 36px;
    }
    
    .clarity-items {
        gap: 10px;
    }
    
    .clarity-item {
        padding: 10px 12px;
        font-size: 13px;
        gap: 10px;
    }
    
    .clarity-x,
    .clarity-check {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .clarity-vs {
        padding: 10px 0;
    }
    
    .clarity-vs-circle {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    /* COME FUNZIONA Section Mobile */
    .steps-container {
        gap: 16px;
    }
    
    .step-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
    }
    
    .step-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-desc {
        font-size: 13px;
    }
    
    .steps-note {
        margin-top: 32px;
    }
    
    .note-badges {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .note-badge {
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    /* REVIEWS Section Mobile */
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .review-card {
        padding: 16px;
    }
    
    .review-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .review-avatar {
        width: 36px;
        height: 36px;
    }
    
    .review-avatar span {
        font-size: 14px;
    }
    
    .review-name {
        font-size: 13px;
    }
    
    .review-time {
        font-size: 10px;
    }
    
    .review-stars {
        font-size: 12px;
        width: 100%;
        order: 3;
    }
    
    .review-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .review-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .reviews-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    /* FAQ Section Mobile */
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question span {
        font-size: 14px;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    
    .faq-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .faq-cta-text {
        font-size: 14px;
    }
    
    .faq-cta .btn-section-cta {
        padding: 12px 24px;
        font-size: 12px;
        gap: 8px;
    }
    
    .faq-cta .btn-section-cta svg {
        width: 16px;
        height: 16px;
    }
    
    /* FINAL CTA Section Mobile */
    .section-cta {
        padding: 60px 16px;
    }
    
    .cta-video-circle {
        width: 80px;
        height: 80px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-desc {
        font-size: 14px;
    }
    
    .cta-content .btn-primary.btn-large {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 14px;
    }
    
    .cta-note-final {
        font-size: 12px;
    }
    
    /* FOOTER Mobile */
    .footer-disclaimer {
        padding: 40px 16px 100px;
    }
    
    /* Section CTA Mobile */
    .btn-section-cta {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        margin-top: 20px;
    }
    
    .clarity-cta-wrapper {
        margin-top: 30px;
    }
    
    .exclusive-footer {
        margin-top: 30px;
    }
    
    .exclusive-footer p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .sp-bottom .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-adm {
        gap: 16px;
    }
    
    .adm-logo {
        height: 40px;
    }
    
    .age-badge {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .footer-brand-text {
        font-size: 14px;
    }
    
    .footer-warning {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .footer-help {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-copy {
        font-size: 10px;
    }
    
    /* Legal Popup Mobile */
    .legal-popup-content {
        padding: 28px 20px;
        max-width: 340px;
        border-radius: 20px;
    }
    
    .legal-logo-video {
        width: 70px;
        height: 70px;
    }
    
    .legal-age-circle {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .legal-popup-content h2 {
        font-size: 20px;
    }
    
    .legal-popup-content p {
        font-size: 13px;
    }
    
    .legal-terms {
        font-size: 11px;
    }
    
    .legal-accept-btn {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .legal-adm-logo {
        height: 32px;
    }
    
    .legal-warning {
        font-size: 11px;
    }
    
    .legal-help {
        font-size: 11px;
    }
    
    /* Urgency Popup Mobile */
    .urgency-popup .popup-content {
        padding: 20px 16px;
        max-width: 340px;
        border-radius: 20px;
    }
    
    .popup-header {
        gap: 12px;
    }
    
    .popup-logo-circle {
        width: 44px;
        height: 44px;
    }
    
    .popup-label {
        font-size: 10px;
    }
    
    .popup-title {
        font-size: 16px;
    }
    
    .popup-urgency-bar {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    
    .popup-countdown-mini {
        padding: 10px 14px;
        gap: 6px;
        font-size: 11px;
    }
    
    .popup-countdown-mini span:last-child {
        font-size: 20px;
    }
    
    .popup-spots {
        padding: 10px 14px;
        gap: 6px;
    }
    
    .popup-spots strong {
        font-size: 24px;
    }
    
    .popup-timer-warning {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .popup-cta {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .popup-warning {
        font-size: 11px;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero-title {
        font-size: 22px;
    }
    
    .countdown-unit span {
        font-size: 18px;
        padding: 6px 10px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .exclusive-title {
        font-size: 20px;
    }
    
    .sp-title {
        font-size: 22px;
    }
    
    .clarity-main-title {
        font-size: 20px;
    }
}
