/* ============================================
   CSS VARIABLES - LUXURY DARK THEME
   ============================================ */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    --gold: #c9a962;
    --gold-light: #d4b978;
    --gold-dark: #a08040;
    --gold-glow: rgba(201, 169, 98, 0.3);
    
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    --accent-blue: #1a1a2e;
    --accent-purple: #16213e;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: auto; /* Lenis gestisce lo smooth scroll */
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--transition-smooth), 
                height 0.3s var(--transition-smooth),
                border-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 50px;
    height: 50px;
    border-color: var(--gold-light);
    background: var(--gold-glow);
}

@media (max-width: 768px) {
    .cursor, .cursor-dot { display: none; }
    body { cursor: auto; }
}

/* ============================================
   NOISE OVERLAY (TEXTURE)
   ============================================ */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   ANIMATED GRADIENT BACKGROUND
   ============================================ */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: var(--bg-primary);
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 26, 46, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

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

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 10s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { 
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* ============================================
   FUTURISTIC GRID LINES
   ============================================ */
.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
}

.grid-line-v {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.grid-line-h {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ============================================
   GLOWING TEXT EFFECT
   ============================================ */
.glow-text {
    text-shadow: 0 0 40px var(--gold-glow);
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ANIMATED BORDER
   ============================================ */
.animated-border {
    position: relative;
    overflow: hidden;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: borderSlide 3s linear infinite;
}

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

/* ============================================
   HOVER GLOW EFFECT
   ============================================ */
.hover-glow {
    transition: all 0.4s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(201, 169, 98, 0.1);
}

/* ============================================
   CYBER LINES ANIMATION
   ============================================ */
.cyber-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: cyberPulse 2s ease-in-out infinite;
}

@keyframes cyberPulse {
    0%, 100% { opacity: 0.1; transform: scaleX(0.5); }
    50% { opacity: 0.5; transform: scaleX(1); }
}

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

.aurora-beam {
    position: absolute;
    width: 200%;
    height: 300px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(201, 169, 98, 0.03) 20%,
        rgba(201, 169, 98, 0.08) 50%,
        rgba(201, 169, 98, 0.03) 80%,
        transparent 100%
    );
    filter: blur(60px);
    animation: auroraMove 15s ease-in-out infinite;
}

.aurora-beam:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
}

.aurora-beam:nth-child(2) {
    top: 40%;
    animation-delay: -5s;
    opacity: 0.5;
}

.aurora-beam:nth-child(3) {
    top: 70%;
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes auroraMove {
    0%, 100% { transform: translateX(-30%) rotate(-5deg); }
    50% { transform: translateX(-10%) rotate(5deg); }
}

/* ============================================
   MORPHING BLOB
   ============================================ */
.morph-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1), transparent 60%);
    filter: blur(40px);
    animation: morphBlob 20s ease-in-out infinite;
}

@keyframes morphBlob {
    0%, 100% { 
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% { 
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% { 
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
        transform: rotate(180deg) scale(0.95);
    }
    75% { 
        border-radius: 60% 40% 60% 50% / 70% 30% 50% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* ============================================
   SCAN LINE EFFECT
   ============================================ */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(201, 169, 98, 0.2), 
        var(--gold),
        rgba(201, 169, 98, 0.2),
        transparent
    );
    opacity: 0.6;
    animation: scanLine 6s linear infinite;
    pointer-events: none;
    z-index: 9996;
    box-shadow: 0 0 20px var(--gold-glow);
}

@keyframes scanLine {
    0% { top: -3px; }
    100% { top: 100vh; }
}

/* ============================================
   FLOATING ICONS
   ============================================ */
.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.03;
    animation: floatIcon 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ============================================
   HOLOGRAPHIC EFFECT
   ============================================ */
.holo-effect {
    background: linear-gradient(
        135deg,
        rgba(201, 169, 98, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(201, 169, 98, 0.1) 100%
    );
    background-size: 200% 200%;
    animation: holoShift 5s ease infinite;
}

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

/* ============================================
   PULSING RING
   ============================================ */
.pulse-ring {
    position: absolute;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out infinite;
}

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

/* ============================================
   NEON GLOW NAV
   ============================================ */
.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s var(--transition-smooth);
    z-index: -1;
}

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

.nav-cta:hover {
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(201, 169, 98, 0.2);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    overflow: hidden;
}

.preloader-text span {
    display: inline-block;
    transform: translateY(100%);
    animation: preloaderReveal 0.8s var(--transition-smooth) forwards;
}

.preloader-text .gold {
    color: var(--gold);
}

.preloader-counter {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-top: 2rem;
    opacity: 0;
}

.preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-top: 1.5rem;
}

@keyframes preloaderReveal {
    to { transform: translateY(0); }
}

@keyframes preloaderLine {
    to { width: 200px; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent; /* in cima all’hero resta “pulita” */
    transition:
        padding 0.5s var(--transition-smooth),
        background 0.4s var(--transition-smooth),
        box-shadow 0.4s var(--transition-smooth),
        backdrop-filter 0.4s var(--transition-smooth);
}

/* appena scrolli diventa barra scura con blur */
.nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}


.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.nav-logo span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition-smooth);
}

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

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.4s var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav { padding: 1.5rem 2rem; }
    .nav-menu { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s var(--transition-smooth);
    }
    .nav-menu.active { right: 0; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-link { font-size: 1.2rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
}

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

.hero-gradient {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(ellipse at 30% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(26, 26, 46, 0.3) 0%, transparent 50%);
    animation: heroGradient 15s ease-in-out infinite alternate;
}

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

.hero-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.hero-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-label::before,
.hero-label::after {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: inline-block;
    transform: translateY(120%);
}

.hero-title .highlight {
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 0 60px var(--gold-glow), 0 0 120px rgba(201, 169, 98, 0.2);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--gold);
    padding: 1.25rem 3rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s var(--transition-smooth);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    box-shadow: 0 0 40px var(--gold-glow), 0 0 80px rgba(201, 169, 98, 0.2);
    transform: translateY(-2px);
}

.hero-cta span {
    position: relative;
    z-index: 1;
}

.hero-cta svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s var(--transition-smooth);
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
}

.hero-scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

@media (max-width: 768px) {
    .hero { padding: 0 2rem; }
    .hero-label::before, .hero-label::after { width: 30px; }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
section {
    padding: 7rem 4rem;
    position: relative;
}

@media (max-width: 768px) {
    section { padding: 4rem 2rem; }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    color: var(--gold);
    font-style: italic;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.stat:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.about-visual {
    position: relative;
    height: 600px;
}

.about-image {
    position: absolute;
    width: 80%;
    height: 90%;
    right: 0;
    top: 5%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    animation: aboutGlow 8s ease-in-out infinite alternate;
}

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

.about-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l7.9-7.9h-.828zm5.656 0L19.515 8.485 17.343 10.657 28 0zm5.656 0l-8.485 8.485 1.414 1.414 7.9-7.9h-.828zm5.656 0l-8.485 8.485-2.172 2.172L39.312 0h-.828zm5.656 0l-8.485 8.485-3.586 3.586L44.97 0h-.828z' fill='%23c9a962' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-image-text {
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 169, 98, 0.15);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    animation: textFloat 6s ease-in-out infinite;
}

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

.about-year {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201, 169, 98, 0.15);
    z-index: 2;
}

.about-frame {
    position: absolute;
    width: 50%;
    height: 60%;
    left: 0;
    bottom: 0;
    border: 1px solid rgba(201, 169, 98, 0.3);
    z-index: -1;
}

.about-dots {
    position: absolute;
    top: -1rem;
    right: 10%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.4;
}

@media (max-width: 968px) {
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 4rem;
    }
    .about-visual { 
        height: 400px;
        order: -1;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--bg-primary);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

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

.service-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 98, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.service-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(201, 169, 98, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROBLEMS SECTION (FAQ STYLE)
   ============================================ */
.problems {
    background: var(--bg-secondary);
    position: relative;
}

.problems-container {
    max-width: 900px;
    margin: 0 auto;
}

.problems-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problems-list {
    display: block;
}

.problem-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: rgba(201, 169, 98, 0.2);
}

.problem-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.problem-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.problem-icon svg {
    transition: transform 0.3s ease;
    stroke: var(--gold);
}

.problem-item.active .problem-icon {
    background: var(--gold);
}

.problem-item.active .problem-icon svg {
    transform: rotate(45deg);
    stroke: var(--bg-primary);
}

.problem-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.problem-item.active .problem-answer {
    max-height: 200px;
}

.problem-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: var(--bg-primary);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
    text-align: right;
}

.process-content {
    flex: 1;
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    z-index: 1;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
    transition: all 0.4s var(--transition-smooth);
}

.process-step:hover .process-number {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 40px var(--gold-glow);
    transform: translateX(-50%) scale(1.1);
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.process-desc {
    color: var(--text-secondary);
    line-height: 1.8;
}

.process-placeholder {
    flex: 1;
}

@media (max-width: 768px) {
    .process-timeline::before { left: 30px; }
    .process-step,
    .process-step:nth-child(even) { 
        flex-direction: column; 
        padding-left: 80px;
    }
    .process-step:nth-child(even) .process-content { text-align: left; }
    .process-number { 
        left: 30px; 
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .process-placeholder { display: none; }
}

/* ============================================
   DIFFERENTIATORS SECTION
   ============================================ */
.differentiators {
    background: var(--bg-secondary);
    overflow: hidden;
}

.diff-container {
    max-width: 1400px;
    margin: 0 auto;
}

.diff-header {
    margin-bottom: 5rem;
}

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

.diff-card {
    padding: 3rem;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--gold-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.diff-card:hover {
    transform: scale(1.02);
    border-color: var(--gold-glow);
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.diff-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.diff-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.diff-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
}

@media (max-width: 768px) {
    .diff-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(-90deg, var(--gold-dark), transparent);
}

.marquee {
    display: flex;
    animation: marquee 40s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    padding-right: 3rem;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--bg-primary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.marquee-item span {
    width: 6px;
    height: 6px;
    background: var(--bg-primary);
    border-radius: 50%;
    opacity: 0.6;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 8rem 4rem;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.05) 0%, transparent 40%);
    animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--gold);
    padding: 1.5rem 4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    transition: left 0.4s var(--transition-smooth);
}

.cta-button:hover::before {
    left: 0;
}

.cta-button span,
.cta-button svg {
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 10rem 4rem;
    background: var(--bg-secondary);
}

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

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
}

.contact-item-text {
    font-size: 1rem;
    color: var(--text-primary);
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
}

.form-select option {
    background: var(--bg-primary);
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--gold);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}

.form-submit:hover {
    background: var(--gold-light);
}

@media (max-width: 968px) {
    .contact { padding: 6rem 2rem; }
    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 4rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 2rem;
    }

    .footer-content { 
        flex-direction: column; 
        gap: 2rem;
        text-align: center;
    }

    /* Footer links: layout a griglia su mobile */
    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, auto); /* 3 colonne di link */
        justify-content: center;
        justify-items: center;
        row-gap: 0.6rem;
        column-gap: 1.4rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-link {
        font-size: 0.8rem;
    }
}


/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* ============================================
   SMOOTH SCROLL INDICATOR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold);
    z-index: 9999;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
    /* General */
    section {
        padding: 4rem 1.5rem !important;
    }
    
    /* Typography */
    .section-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .section-label {
        font-size: 0.7rem !important;
    }
    
    /* Hero */
    .hero {
        padding: 8rem 1.5rem 4rem !important;
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        padding-right: 0 !important;
    }
    
    .hero-cta {
        padding: 1rem 2rem !important;
        font-size: 0.8rem !important;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .about-visual {
        height: 300px !important;
        order: -1;
    }
    
    .about-image-text {
        font-size: 5rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .service-card {
        padding: 2rem 1.5rem !important;
    }
    
    .service-number {
        font-size: 2.5rem !important;
    }
    
    .service-title {
        font-size: 1.2rem !important;
    }
    
    .service-desc {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* Problems/FAQ */
    .problems-container {
        padding: 0 !important;
    }
    
    .problem-question {
        padding: 1.2rem 1rem !important;
        font-size: 1rem !important;
        gap: 1rem;
    }
    
    .problem-question span {
        flex: 1;
        padding-right: 0.5rem;
    }
    
    .problem-answer p {
        padding: 0 1rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
    
    .problem-icon {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0;
    }
    
    /* Process */
    .process-timeline {
        padding-left: 2rem !important;
    }
    
    .process-step {
        padding-left: 3rem !important;
    }
    
    .process-number {
        left: 0 !important;
        transform: none !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .process-title {
        font-size: 1.1rem !important;
    }
    
    .process-desc {
        font-size: 0.9rem !important;
    }
    
    /* Differentiators */
    .diff-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Marquee */
    .marquee-section {
        padding: 2rem 0 !important;
    }
    
    .marquee-item {
        font-size: 1rem !important;
        gap: 1rem !important;
    }
    
    .marquee-content {
        gap: 2rem !important;
        padding-right: 2rem !important;
    }
    
    /* CTA */
    .cta-section {
        padding: 5rem 1.5rem !important;
    }
    
    .cta-title {
        font-size: 2rem !important;
    }
    
    .cta-subtitle {
        font-size: 1rem !important;
    }
    
    .cta-button {
        padding: 1rem 2rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-form {
        padding: 2rem 1.5rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    /* Navigation Mobile */
    .nav {
        padding: 1rem 1.5rem !important;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    
    .nav-cta {
        display: none !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .about-image-text {
        font-size: 4rem !important;
    }
}