/*
Theme Name: Clickclock
Theme URI: https://www.clickclock.it
Author: Clickclock Team
Author URI: https://www.clickclock.it
Description: Tema leggero e moderno per Clickclock.it - Servizio recensioni Google
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clickclock
*/

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colori dal logo Clickclock */
    --viola: #5E3F9E;
    --viola-light: #7B5CB8;
    --rosso: #E53935;
    --giallo: #FBC02D;
    --blu: #1E88E5;
    --verde: #43A047;
    
    /* Colori UI */
    --bg-light: #FAFBFC;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-gray: #5A5A6E;
    --text-light: #8A8A9E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 245, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(94, 63, 158, 0.1);
    padding: 0.7rem 5%;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.navbar.scrolled .nav-links a::after {
    background: linear-gradient(90deg, var(--viola), var(--blu));
}

.navbar.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.nav-logo {
    height: 45px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--giallo), white);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--rosso), #FF5252) !important;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.5);
}

.nav-cta::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle span {
    background: var(--text-dark);
}

/* ========== HERO SECTION - ACCATTIVANTE ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--text-dark);
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-bg-slide.active {
    opacity: 1;
    animation: zoomBg 20s ease-in-out infinite alternate;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Overlay con gradient animato */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(94, 63, 158, 0.85) 0%,
        rgba(30, 136, 229, 0.75) 50%,
        rgba(67, 160, 71, 0.7) 100%
    );
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(251, 192, 45, 0.2), transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(229, 57, 53, 0.15), transparent 50%);
    animation: pulseGradient 8s ease-in-out infinite;
}

@keyframes pulseGradient {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Particles effect */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite;
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 2rem;
    animation: epicZoomIn 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
               floatingBounce 4s ease-in-out 2s infinite;
    opacity: 0;
    transform: scale(0);
}

@keyframes epicZoomIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg) translateY(100px);
        filter: blur(20px);
    }
    30% {
        opacity: 0.5;
        transform: scale(1.3) rotate(5deg) translateY(-30px);
        filter: blur(5px);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.85) rotate(-3deg) translateY(15px);
        filter: blur(2px);
    }
    70% {
        transform: scale(1.1) rotate(2deg) translateY(-10px);
        filter: blur(0);
    }
    85% {
        transform: scale(0.97) rotate(-1deg) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0) translateY(0);
        filter: blur(0);
    }
}

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

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInDown 1s ease forwards;
}

.hero-badge i {
    color: var(--giallo);
}

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

/* Logo animato */
.hero-logo {
    width: 400px;
    max-width: 85%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: zoomInLogo 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0);
}

@keyframes zoomInLogo {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-10deg);
    }
    60% {
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* Titolo con effetto typing/reveal */
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    overflow: hidden;
}

.title-line {
    display: inline-block;
    animation: revealTitle 1s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(100%);
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

/* HERO SHOWCASE */
.hero-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 2.5rem;
    flex-wrap: wrap;
}

.showcase-stars {
    display: flex;
    gap: 0.3rem;
}

.showcase-stars i {
    font-size: 1.8rem;
    color: var(--giallo);
    animation: starPop 0.5s ease forwards, starGlow 2s ease-in-out 2s infinite;
    opacity: 0;
    transform: scale(0);
}

.showcase-stars i:nth-child(1) { animation-delay: 0.1s, 2.1s; }
.showcase-stars i:nth-child(2) { animation-delay: 0.2s, 2.2s; }
.showcase-stars i:nth-child(3) { animation-delay: 0.3s, 2.3s; }
.showcase-stars i:nth-child(4) { animation-delay: 0.4s, 2.4s; }
.showcase-stars i:nth-child(5) { animation-delay: 0.5s, 2.5s; }

@keyframes starPop {
    0% { opacity: 0; transform: scale(0) rotate(-180deg); }
    70% { transform: scale(1.3) rotate(10deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes starGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(251, 192, 45, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(251, 192, 45, 1)); }
}

.showcase-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.counter-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-pulse {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-pulse i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    animation: phoneBounce 2s ease-in-out infinite;
}

@keyframes phoneBounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.pulse-ring:nth-child(2) { animation-delay: 0.5s; }
.pulse-ring:nth-child(3) { animation-delay: 1s; }

@keyframes pulseRing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* HERO FEATURES */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: featureSlideIn 0.6s ease forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.hero-feature:nth-child(1) { animation-delay: 0.3s; }
.hero-feature:nth-child(2) { animation-delay: 0.5s; }
.hero-feature:nth-child(3) { animation-delay: 0.7s; }

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--giallo), #FFD54F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feature-text strong {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.feature-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* LIVE ACTIVITY FEED */
.hero-live-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: rgba(67, 160, 71, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(67, 160, 71, 0.3);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--verde);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.7);
    }
    50% { 
        opacity: 0.7; 
        box-shadow: 0 0 0 8px rgba(67, 160, 71, 0);
    }
}

.live-feed {
    height: 1.4rem;
    overflow: hidden;
    position: relative;
}

.live-text {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    animation: liveFeed 10s ease-in-out infinite;
    white-space: nowrap;
}

.live-text strong {
    color: var(--giallo);
}

.live-feed .live-text:nth-child(1) { animation-delay: 0s; }
.live-feed .live-text:nth-child(2) { animation-delay: 2s; }
.live-feed .live-text:nth-child(3) { animation-delay: 4s; }
.live-feed .live-text:nth-child(4) { animation-delay: 6s; }
.live-feed .live-text:nth-child(5) { animation-delay: 8s; }

@keyframes liveFeed {
    0%, 16% {
        transform: translateY(0);
        opacity: 1;
    }
    20%, 100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* FLOATING REVIEWS - 10 reviews, max 5 visible at once */
.floating-reviews {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.floating-review {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: floatReview 16s ease-in-out infinite;
    opacity: 0;
}

/* Posizioni distribuite - mai troppo vicine */
.floating-review.r1 { top: 12%; left: 3%; animation-delay: 0s; }
.floating-review.r2 { top: 25%; right: 4%; animation-delay: 1.6s; }
.floating-review.r3 { top: 55%; left: 2%; animation-delay: 3.2s; }
.floating-review.r4 { top: 70%; right: 3%; animation-delay: 4.8s; }
.floating-review.r5 { top: 40%; left: 5%; animation-delay: 6.4s; }
.floating-review.r6 { top: 85%; right: 6%; animation-delay: 8s; }
.floating-review.r7 { top: 18%; right: 8%; animation-delay: 9.6s; }
.floating-review.r8 { top: 62%; right: 5%; animation-delay: 11.2s; }
.floating-review.r9 { top: 45%; left: 4%; animation-delay: 12.8s; }
.floating-review.r10 { top: 78%; left: 6%; animation-delay: 14.4s; }

@keyframes floatReview {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    5%, 45% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-10px) scale(1.02);
    }
    50%, 100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
}

.review-avatar {
    font-size: 1.5rem;
}

.review-content {
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--giallo);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.review-content span {
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 600;
}

/* BRANDS TICKER */
.hero-brands {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brands-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.brands-ticker {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: 2rem;
    animation: tickerScroll 20s linear infinite;
    width: max-content;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* GOOGLE BADGE */
.google-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    margin: 2rem auto;
    max-width: fit-content;
    animation: badgePop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.5s forwards;
    opacity: 0;
    transform: scale(0);
}

@keyframes badgePop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.google-logo {
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid #eee;
    padding-left: 1rem;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.rating-stars {
    color: var(--giallo);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.7rem;
    color: var(--text-gray);
}

/* CTA Buttons Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-cta:hover::before {
    transform: translateX(100%);
}

.hero-cta.primary {
    background: linear-gradient(135deg, var(--rosso), #FF5252);
    color: white;
    box-shadow: 0 10px 40px rgba(229, 57, 53, 0.4);
}

.hero-cta.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(229, 57, 53, 0.5);
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

/* Trust badges */
.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.2s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--verde);
}

/* Scroll indicator - mouse style */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease 1.5s forwards;
    opacity: 0;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% { 
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== SECTION COMMON ========== */
section {
    padding: 100px 5%;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== COME FUNZIONA ========== */
.how-it-works {
    background: var(--bg-light);
    background-size: cover;
    background-position: center;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(250, 251, 252, 0.95));
    z-index: 0;
    pointer-events: none;
}

.how-it-works > * {
    position: relative;
    z-index: 1;
}

/* PHOTO SLIDER */
.photo-slider {
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
}

.slider-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1 / 1;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-slide.placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light), #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--text-gray);
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder-content span {
    display: block;
    font-size: 1.1rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--viola);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--viola);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(94, 63, 158, 0.3);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: var(--blu);
}

.slider-dot.active {
    background: var(--viola);
    transform: scale(1.2);
}

/* Slider Progress Bar (optional) */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--viola), var(--blu));
    border-radius: 0 0 0 20px;
    animation: sliderProgress 5s linear infinite;
}

@keyframes sliderProgress {
    from { width: 0%; }
    to { width: 100%; }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Frecce animate tra le card */
.steps-grid::before,
.steps-grid::after {
    content: '→';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--viola);
    animation: arrowPulse 1.5s ease infinite;
    z-index: 10;
}

.steps-grid::before {
    left: calc(33.33% - 1rem);
}

.steps-grid::after {
    left: calc(66.66% - 1rem);
}

@keyframes arrowPulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: translateY(-50%) translateX(0);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) translateX(10px);
    }
}

.step-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--viola), var(--blu), var(--verde));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.step-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(94, 63, 158, 0.25);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover .step-icon {
    animation: iconPulse 0.6s ease;
}

.step-card:hover .step-number {
    transform: scale(1.3) rotate(360deg);
    background: linear-gradient(135deg, var(--rosso), #FF5252);
    color: white;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    transition: all 0.5s ease;
}

.step-card:nth-child(1) .step-icon { background: linear-gradient(135deg, var(--viola), var(--viola-light)); }
.step-card:nth-child(2) .step-icon { background: linear-gradient(135deg, var(--blu), #42A5F5); }
.step-card:nth-child(3) .step-icon { background: linear-gradient(135deg, var(--verde), #66BB6A); }

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--viola);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== PERCHÉ CLICKCLOCK ========== */
.why-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(250, 251, 252, 0.88) 100%
    );
}

.why-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.why-section .section-title {
    color: var(--viola);
}

.why-section .section-subtitle {
    color: var(--text-gray);
}

.why-text {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(94, 63, 158, 0.12);
    border-left: 5px solid var(--viola);
}

.why-text p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.why-text p:last-of-type {
    margin-bottom: 0;
}

.why-highlight {
    background: linear-gradient(135deg, var(--viola), var(--blu));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.why-feature i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--verde), #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.why-feature span {
    font-weight: 500;
    color: var(--text-dark);
}

/* ========== IL KIT ========== */
.kit-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.kit-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 63, 158, 0.08), transparent 70%);
    border-radius: 50%;
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.kit-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.kit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(94, 63, 158, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kit-card:hover::after {
    opacity: 1;
}

.kit-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg);
    border-color: var(--viola);
    box-shadow: 0 35px 70px rgba(94, 63, 158, 0.25);
}

.kit-card:hover .kit-card-icon {
    animation: iconShake 0.5s ease;
}

@keyframes iconShake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

.kit-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.kit-card:nth-child(1) .kit-card-icon { background: linear-gradient(135deg, var(--viola), var(--viola-light)); }
.kit-card:nth-child(2) .kit-card-icon { background: linear-gradient(135deg, var(--blu), #42A5F5); }
.kit-card:nth-child(3) .kit-card-icon { background: linear-gradient(135deg, var(--rosso), #FF5252); }
.kit-card:nth-child(4) .kit-card-icon { background: linear-gradient(135deg, var(--verde), #66BB6A); }

.kit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.kit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.kit-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--giallo), #FFD54F);
    color: var(--text-dark);
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.4);
    z-index: 5;
    white-space: nowrap;
    animation: badgeShine 2s ease infinite;
}

@keyframes badgeShine {
    0%, 100% { box-shadow: 0 4px 15px rgba(251, 192, 45, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(251, 192, 45, 0.7); }
}

/* ========== PREZZI ========== */
.pricing-section {
    position: relative;
    background: linear-gradient(135deg, #5E3F9E 0%, #1E88E5 50%, #43A047 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(94, 63, 158, 0.9) 0%,
        rgba(30, 136, 229, 0.85) 50%,
        rgba(67, 160, 71, 0.8) 100%
    );
}

.pricing-content {
    position: relative;
    z-index: 1;
}

.pricing-section .section-title {
    color: white;
}

.pricing-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.pricing-card {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    padding: 3.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    animation: priceFloat 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

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

.pricing-card:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--viola), var(--blu), var(--verde), var(--viola));
    background-size: 300% 100%;
    animation: gradientSlide 3s ease infinite;
}

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

.pricing-card::after {
    content: '🔥';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    animation: fireWiggle 1s ease infinite;
}

@keyframes fireWiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--verde), #66BB6A);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease infinite;
}

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

.pricing-amount {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.pricing-amount .currency {
    font-size: 2rem;
    vertical-align: top;
    color: var(--viola);
}

.pricing-amount .price {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    display: inline-block;
    animation: priceShine 3s ease infinite;
    background: linear-gradient(90deg, var(--text-dark), var(--viola), var(--text-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes priceShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.pricing-amount .cents {
    font-size: 2rem;
    vertical-align: top;
    color: var(--viola);
}

.pricing-vat {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.pricing-total {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--viola);
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

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

.pricing-feature i {
    color: var(--verde);
    font-size: 1.2rem;
}

.pricing-cta {
    display: block;
    background: linear-gradient(135deg, var(--rosso), #FF5252);
    color: white;
    padding: 1.3rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
    transition: all 0.4s ease;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.5);
    color: white;
}

/* ========== CONTATTI ========== */
.contact-section {
    background: var(--bg-light);
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 251, 252, 0.93);
    z-index: 0;
    pointer-events: none;
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--viola), var(--blu));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(94, 63, 158, 0.15);
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:hover i {
    animation: contactIconBounce 0.5s ease;
}

@keyframes contactIconBounce {
    0%, 100% { transform: scale(1) rotate(0); }
    50% { transform: scale(1.2) rotate(-10deg); }
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--viola), var(--blu));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-item-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.contact-item-text span {
    color: var(--text-gray);
}

/* SOCIAL ICONS */
.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-social h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2, #3b5998);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-icon:hover i {
    animation: socialIconBounce 0.5s ease;
}

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

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--viola);
    box-shadow: 0 0 0 4px rgba(94, 63, 158, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--viola), var(--blu));
    color: white;
    padding: 1.1rem;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(94, 63, 158, 0.3);
}

/* ========== FOOTER ========== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
}

.footer-disclaimer {
    max-width: 500px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-disclaimer strong {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--giallo);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .steps-grid,
    .kit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(94, 63, 158, 0.98) 0%, rgba(30, 136, 229, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(94, 63, 158, 0.3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        color: white !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1,
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        width: 280px;
    }
    
    /* Hide floating reviews on mobile */
    .floating-reviews {
        display: none;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
    }
    
    .hero-showcase {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .google-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .google-rating {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 0.8rem;
        align-items: center;
    }
    
    .hero-brands {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .steps-grid,
    .kit-grid {
        grid-template-columns: 1fr;
    }
    
    .why-features {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 5%;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-amount .price {
        font-size: 3.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        max-width: 100%;
    }
}

/* ========== ANIMATIONS ON SCROLL - FLUIDE ========== */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay progressivo per elementi multipli */
.steps-grid .step-card.fade-in:nth-child(1) { transition-delay: 0.1s; }
.steps-grid .step-card.fade-in:nth-child(2) { transition-delay: 0.25s; }
.steps-grid .step-card.fade-in:nth-child(3) { transition-delay: 0.4s; }

.kit-grid .kit-card.fade-in:nth-child(1) { transition-delay: 0.1s; }
.kit-grid .kit-card.fade-in:nth-child(2) { transition-delay: 0.2s; }
.kit-grid .kit-card.fade-in:nth-child(3) { transition-delay: 0.3s; }
.kit-grid .kit-card.fade-in:nth-child(4) { transition-delay: 0.4s; }

.why-features .why-feature { 
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-features .why-feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.why-features .why-feature:nth-child(1) { transition-delay: 0.1s; }
.why-features .why-feature:nth-child(2) { transition-delay: 0.2s; }
.why-features .why-feature:nth-child(3) { transition-delay: 0.3s; }
.why-features .why-feature:nth-child(4) { transition-delay: 0.4s; }

/* ========== SEZIONE IMPATTO ZERO ========== */
.impact-section {
    position: relative;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, #e0f2f1 100%);
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.88) 0%, rgba(241, 248, 233, 0.88) 50%, rgba(224, 242, 241, 0.88) 100%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-section.has-bg::before {
    opacity: 1;
}

.impact-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.impact-section .decorative-circle {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.impact-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.impact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--verde), #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(67, 160, 71, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

.impact-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(67, 160, 71, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 60px rgba(67, 160, 71, 0.5);
        transform: scale(1.05);
    }
}

.impact-section .section-title {
    color: var(--verde);
    margin-bottom: 0.5rem;
}

.impact-section .section-subtitle {
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.impact-text {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: left;
    margin-bottom: 3rem;
    border-top: 5px solid var(--verde);
}

.impact-text p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.impact-text p:last-of-type {
    margin-bottom: 0;
}

.impact-highlight {
    background: linear-gradient(135deg, var(--verde), var(--blu));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.brand-name {
    color: var(--viola);
    font-weight: 700;
    font-size: 1.1em;
}

.made-italy {
    background: linear-gradient(90deg, #009246, #ffffff, #ce2b37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1em;
}

.impact-conclusion {
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.1), rgba(30, 136, 229, 0.1));
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--verde);
}

.impact-conclusion p {
    margin-bottom: 0 !important;
    font-size: 1.1rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-stat {
    background: white;
    padding: 2rem 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-stat:hover::before {
    opacity: 1;
}

.impact-stat:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(67, 160, 71, 0.25);
}

.impact-stat:hover .stat-number {
    animation: numberPop 0.5s ease;
}

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

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--verde);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Responsive Impatto Zero */
@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-text {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ========== WORDPRESS SPECIFIC ========== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* ========== FONT AWESOME FALLBACK - ICONE SVG ========== */
/* Se Font Awesome non carica, mostra comunque le icone base */

.hero-cta i.fa-play::before,
.hero-cta i.fas.fa-play::before {
    content: "▶";
    font-family: inherit;
    font-style: normal;
}

.scroll-indicator i.fa-chevron-down::before,
.scroll-indicator i.fas.fa-chevron-down::before {
    content: "▼";
    font-family: inherit;
    font-style: normal;
}

.pricing-cta i.fa-shopping-cart::before,
.pricing-cta i.fas.fa-shopping-cart::before {
    content: "🛒";
    font-family: inherit;
    font-style: normal;
}

.form-submit i.fa-paper-plane::before,
.form-submit i.fas.fa-paper-plane::before {
    content: "✈";
    font-family: inherit;
    font-style: normal;
}

/* Step icons fallback */
.step-icon i.fa-mobile-alt::before { content: "📱"; font-family: inherit; }
.step-icon i.fa-star::before { content: "⭐"; font-family: inherit; }
.step-icon i.fa-chart-line::before { content: "📈"; font-family: inherit; }

/* Kit icons fallback */
.kit-card-icon i.fa-sticky-note::before { content: "📝"; font-family: inherit; }
.kit-card-icon i.fa-cube::before { content: "📦"; font-family: inherit; }
.kit-card-icon i.fa-id-card::before { content: "💳"; font-family: inherit; }
.kit-card-icon i.fa-book::before { content: "📖"; font-family: inherit; }

/* Contact icons fallback */
.contact-item i.fa-phone::before { content: "📞"; font-family: inherit; }
.contact-item i.fa-envelope::before { content: "✉"; font-family: inherit; }
.contact-item i.fa-map-marker-alt::before { content: "📍"; font-family: inherit; }

/* Check icons fallback */
.why-feature i.fa-check::before { content: "✓"; font-family: inherit; }
.pricing-feature i.fa-check-circle::before { content: "✅"; font-family: inherit; }
