/* ===== VARIABILI E RESET ===== */
:root {
    --primary-color: #ed1c24;
    --primary-rgb: 237, 28, 36;
    --primary-light: #ff4d54;
    --primary-dark: #c4151b;
    --secondary-color: #000000;
    --secondary-light: #333333;
    --secondary-dark: #000000;
    --accent-color: #ff9500;
    --accent-rgb: 255, 149, 0;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #e0e0e0;
    --dark-gray: #666666;
    --success: #00c853;
    --warning: #ffc107;
    --error: #f44336;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-section: #181818;
    --header-height: 80px;
    --header-scrolled-height: 60px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #ffce00 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background-color: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-section);
}

section:nth-child(odd) {
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

#loader-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 1.5s ease-in-out infinite alternate;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.loader-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ===== UTILITIES ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    position: relative;
    display: inline-block; /* Importante per il funzionamento del background-clip */
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.coming-soon-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    animation: pulse 2s infinite;
}

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

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

.glitch-effect {
    position: relative;
    color: var(--white);
    text-shadow: 0 0 10px var(--primary-color);
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--white);
}

.glitch-effect::before {
    left: 2px;
    text-shadow: -1px 0 var(--primary-color);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-effect::after {
    left: -2px;
    text-shadow: 1px 0 var(--accent-color);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
    }
    20% {
        clip-path: inset(60% 0 40% 0);
    }
    40% {
        clip-path: inset(40% 0 60% 0);
    }
    60% {
        clip-path: inset(80% 0 20% 0);
    }
    80% {
        clip-path: inset(10% 0 90% 0);
    }
    100% {
        clip-path: inset(70% 0 30% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(30% 0 70% 0);
    }
    20% {
        clip-path: inset(10% 0 90% 0);
    }
    40% {
        clip-path: inset(50% 0 50% 0);
    }
    60% {
        clip-path: inset(20% 0 80% 0);
    }
    80% {
        clip-path: inset(70% 0 30% 0);
    }
    100% {
        clip-path: inset(40% 0 60% 0);
    }
}

/* Classe per nascondere su mobile */
.hero-desktop-only {
    display: flex;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s;
    z-index: 0;
}

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

.btn i, .btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

.btn-accent:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.5);
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(var(--primary-rgb), 0.5) 50%,
        transparent 55%
    );
    animation: btn-shine 3s infinite;
    z-index: -1;
}

@keyframes btn-shine {
    0% {
        transform: translate(-30%, -30%) rotate(45deg);
    }
    100% {
        transform: translate(30%, 30%) rotate(45deg);
    }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

/* ===== HEADER ===== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgb(10 10 10 / 0%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
}

#main-header.scrolled {
    height: var(--header-scrolled-height);
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: var(--white);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo span {
    color: var(--primary-color);
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.8);
}

.beta-tag {
    font-size: 8px;
    padding: 1px 4px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 3px;
    margin-left: 3px;
    position: relative;
    top: -8px;
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}

#main-nav ul {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 10px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-size: 12px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
    z-index: 0;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link .nav-icon {
    margin-right: 5px;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    font-size: 14px;
}

.nav-link .nav-text {
    position: relative;
    z-index: 1;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-cta {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 16px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.1s ease;
    z-index: 101;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 200;
    padding: 20px;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-menu {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.close-menu i {
    color: var(--white);
    font-size: 18px;
}

.mobile-nav {
    margin-bottom: 30px;
    flex: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.mobile-nav ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0a0a0a;
    padding-top: var(--header-height);
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}

/* Titolo principale con effetto glitch */
.hero h1 {
    font-size: 54px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ff6b00; /* Arancione come nella immagine */
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
    max-width: 600px;
}

.hero h2 {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.4;
}

/* Layout con vantaggi a destra */
.hero-content-wrapper {
    display: flex;
    width: 100%;
    gap: 50px;
    margin-top: 5rem;
    align-items: flex-start;
}

.hero-main-content {
    flex: 1;
    max-width: 50%;
}

.hero-advantages-container {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card dei vantaggi */
.advantage-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #ed1c24;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: #ed1c24;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.5);
}

.advantage-icon i {
    color: white;
    font-size: 22px;
}

.advantage-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
}

.advantage-text p {
    font-size: 15px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA centralizzate */
.hero-centered-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.hero-centered-cta .btn {
    min-width: 280px;
    margin-bottom: 20px;
}

/* Video button */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Badges sotto i CTA */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.hero-badge i {
    color: #00c853;
    margin-right: 8px;
}

/* CTA Bar in basso colorata come richiesto */
.hero-cta-bar {
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin-top: auto;
    z-index: 10;
    overflow: hidden;
    background: #ff6b00; /* Colore arancione come nella immagine */
}

.cta-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-copy {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-copy i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.animate-flicker {
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    20%, 24%, 55% {
        opacity: 0.5;
        text-shadow: none;
    }
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cta-label {
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.cta-countdown {
    display: flex;
    gap: 10px;
    margin: 5px 0;
}

.time-unit {
    display: flex;
    align-items: center;
    gap: 2px;
}

.digit {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
}

.unit {
    font-size: 12px;
    opacity: 0.8;
}

.cta-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-accent {
    background: #121212; /* Bottone scuro nella barra arancione */
    color: white;
    font-weight: 700;
}

.btn-accent:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background-color: var(--bg-section);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.feature-card.featured {
    background: rgba(237, 28, 36, 0.1);
    border-color: var(--primary-color);
}

.feature-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
}

.feature-cta i {
    margin-left: 5px;
    transition: var(--transition);
}

.feature-cta:hover i {
    transform: translateX(5px);
}

.features-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 50px;
}

.features-cta p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    background-color: #121212;
    position: relative;
    color: white;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 0;
}

.roadmap-section .container {
    position: relative;
    z-index: 1;
}

.section-divider {
    position: relative;
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.divider-dot {
    width: 10px;
    height: 10px;
    background: #ed1c24;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.2);
}

.divider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #ed1c24;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Timeline container */
.timeline-container {
    position: relative;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Timeline centrale verticale */
.timeline {
    position: relative;
}

.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, 
        rgba(237, 28, 36, 0.2) 0%, 
        rgba(237, 28, 36, 1) 50%, 
        rgba(237, 28, 36, 0.2) 100%);
    border-radius: 4px;
    transform: translateX(-50%);
    height: 100%;
}

/* Items della timeline */
.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    counter-increment: timeline-counter;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline dots */
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #121212;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.2);
}

.timeline-dot span {
    width: 20px;
    height: 20px;
    background: #ed1c24;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(237, 28, 36, 0.5);
    animation: pulse-dot 2s infinite;
}

.timeline-dot::before {
    content: counter(timeline-counter);
    position: absolute;
    color: white;
    font-weight: 700;
    font-size: 16px;
    z-index: 3;
}

/* Pulse animation per i dots */
@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(237, 28, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0);
    }
}

/* Alternanza sinistra/destra degli elementi */
.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 30px);
}

/* Contenuto timeline */
.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    width: 100%;
    max-width: 450px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    border-right: 3px solid #ed1c24;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: 3px solid #ed1c24;
}

/* Frecce pointing alla linea centrale */
.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Icona nella timeline */
.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ed1c24, #ff6b00);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.5);
}

.timeline-icon i {
    font-size: 24px;
    color: white;
}

/* Testo timeline */
.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.timeline-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Info box in fondo */
.timeline-info {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
}

.timeline-day {
    font-weight: 600;
    color: #ed1c24;
}

.income {
    font-weight: 700;
    color: #00c853;
}

/* CTA sotto la timeline */
.roadmap-cta {
    text-align: center;
    margin-top: 60px;
}

.roadmap-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.roadmap-guarantee i {
    color: #00c853;
}

/* ===== PIANI SECTION ===== */
.piani-section {
    background-color: var(--bg-section);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-label {
    margin: 0 15px;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
}

.toggle-label.active {
    opacity: 1;
    font-weight: 700;
    color: var(--primary-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.pricing-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 1px solid var(--primary-color);
    background: rgba(237, 28, 36, 0.1);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 30px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.starter-plan .ribbon {
    background: var(--accent-color);
}

.enterprise-plan .ribbon {
    background: var(--secondary-light);
}

.pricing-card-header {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card-header::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--secondary-dark);
    transform: skewY(-2deg);
}

.pricing-card-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.pricing {
    margin-bottom: 15px;
}

.price {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 16px;
    opacity: 0.8;
}

.price.monthly {
    display: none;
}

.pricing-card-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.pricing-card-features {
    padding: 30px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.feature-item.disabled {
    opacity: 0.5;
}

.feature-item i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.feature-item.disabled i {
    color: var(--dark-gray);
}

.feature-text {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.feature-text span {
    font-size: 16px;
    margin-right: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.tooltip-trigger {
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 14px;
    position: relative;
}

.tooltip {
    position: absolute;
    top: -30px;
    right: 0;
    background: var(--secondary-dark);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.tooltip-trigger:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: var(--secondary-dark) transparent transparent;
}

.pricing-card-cta {
    padding: 0 30px 30px;
}

.pricing-comparison {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-comparison .btn {
    display: inline-flex;
    align-items: center;
}

.pricing-comparison .btn i {
    margin-right: 8px;
    margin-left: 0;
}

.pricing-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-cta p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* ===== RISULTATI SECTION ===== */
.risultati-section {
    background-color: var(--bg-dark);
}

.case-studies-carousel {
    margin-bottom: 60px;
}

.case-study {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    font-weight: 600;
    font-size: 14px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.case-study-content {
    flex: 1;
    padding: 30px;
}

.case-study-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--white);
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 15px;
}

.metric {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    flex: 1;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.case-quote {
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.results-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.summary-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.summary-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.summary-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.summary-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

.results-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.results-cta p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* ===== ADDON SECTION ===== */
.addon-section {
    background-color: var(--bg-section);
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.addon-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.addon-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.addon-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.addon-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.addon-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.addon-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.addon-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.addon-cta p {
    margin-top: 20px;
    color: var(--accent-color);
    font-weight: 600;
}


/* Stile per i bottoni del listino prezzi negli addon */
.addon-price-btn {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    width: auto;
    align-self: center;
}

.addon-price-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Stili per la sezione listino prezzi */
.listino-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
    position: relative;
}

.listino-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 0;
}

.price-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.price-category-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.price-category-btn:hover,
.price-category-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.listino-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.listino-gruppo {
    margin-bottom: 40px;
    display: none;
}

.listino-gruppo.active {
    display: block;
}

.listino-header {
    padding: 20px;
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listino-header h3 {
    margin: 0;
    color: var(--white);
    font-size: 22px;
}

.listino-item {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    transition: var(--transition);
}

.listino-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.listino-item:last-child {
    border-bottom: none;
}

.listino-info {
    flex: 1;
    min-width: 300px;
}

.listino-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.listino-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.listino-price-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    min-width: 200px;
}

.listino-price {
    text-align: center;
}

.listino-price .price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.listino-price .price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contatta-btn {
    padding: 8px 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.contatta-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.listino-cta {
    text-align: center;
    margin-top: 40px;
}

.listino-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive design per il listino */
@media (max-width: 768px) {
    .listino-item {
        flex-direction: column;
    }
    
    .listino-price-cta {
        margin-top: 20px;
        justify-content: space-between;
        width: 100%;
    }
}

/* Stile per i bottoni del listino prezzi negli addon */
.addon-price-btn {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    width: auto;
    align-self: center;
}

.addon-price-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Modifica per posizionare meglio i bottoni nelle card */
.addon-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.addon-card p {
    margin-bottom: 20px;
}
/* ===== CONTATTI SECTION ===== */
.contatti-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 120px 0;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.contatti-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.form-icon i {
    font-size: 24px;
    color: var(--white);
}

.form-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkbox-consent {
    display: flex;
    align-items: center;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
}

.checkbox span {
    color: rgba(255, 255, 255, 0.9);
}

.checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
}

.offer-timer {
    margin: 30px 0;
    padding: 15px;
    background: rgba(237, 28, 36, 0.2);
    border-radius: var(--border-radius);
}

.timer-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.slots-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.counter-value {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.counter-value.pulse {
    animation: pulse 1s;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 600;
}

.testimonial-mini {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    gap: 15px;
    border-left: 3px solid var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== POPUP STYLES ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: var(--bg-section);
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.popup-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.popup-content {
    padding: 40px;
}

.popup-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--white);
    text-align: center;
}

.funnel-popup {
    color: var(--white);
    width: 100%;
}

.funnel-popup h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.funnel-popup p {
    text-align: center;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.funnel-steps {
    position: relative;
    margin: 30px 0;
}

.funnel-step {
    display: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.funnel-step.active {
    display: block;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-btn i {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.option-btn span {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.option-btn p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.option-btn:hover,
.option-btn.selected {
    background: rgba(237, 28, 36, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.funnel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.progress-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    flex-grow: 1;
    margin: 0 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-btn {
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-light);
}

.nav-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.9);
}

.comparison-table i.fa-check {
    color: var(--success);
}

.comparison-table i.fa-times {
    color: var(--error);
}

.popup-cta {
    text-align: center;
    margin-top: 30px;
}

.faq-container {
    max-width: 100%;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    color: var(--white);
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 15px;
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 15px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Privacy Policy Popup Styles */
.privacy-content {
    margin-bottom: 30px;
}

.privacy-content h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.privacy-content ul li {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-section);
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 90;
    transform: translateX(100%);
    opacity: 0;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta.active {
    transform: translateX(0);
    opacity: 1;
}

.sticky-timer {
    margin-right: 15px;
    text-align: center;
}

.timer-label {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.timer-digits {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.timer-digits span {
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
footer {
    position: relative;
    background: var(--bg-darker);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-list li i {
    width: 25px;
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-cta {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-form {
    display: flex;
    margin-top: 20px;
}

.footer-form input {
    flex-grow: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    color: var(--white);
}

.footer-form button {
    padding: 10px 15px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.footer-form button:hover {
    background: var(--primary-light);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.payment-methods i:hover {
    color: var(--white);
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

#back-to-top.active {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== SHAKE ANIMATION ===== */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Force visibility for all sections and headers */
.section-header h2, .feature-card h3, .timeline-item, .pricing-card, .addon-card, .summary-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}


