/* =========================================
       1. ROOT VARIABLES & RESET
    ========================================= */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    :root {
      --gold: #c9a84c;
      --gold-light: #e8cc7a;
      --cyan: #00d4ff;
      --cyan-bright: #5ee7ff;
      --purple: #a855f7;
      --pink: #ec4899;
      --dark: #030306;
      --dark2: #08080d;
      --dark3: #0f0f18;
      --text: #ffffff; 
      --muted: #a1a1aa; 
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }
    
    body.modal-open { overflow: hidden; }
    a { text-decoration: none; color: inherit; }

    .section-container { max-width: 1300px; margin: 0 auto; padding: 100px 20px; }

    /* =========================================
       PRELOADER & ANIMAZIONI LASER
    ========================================= */
    .preloader { position: fixed; inset: 0; background: var(--dark); z-index: 100000; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s ease, visibility 0.8s; }
    .preloader.fade-out { opacity: 0; visibility: hidden; }
    .intro-visuals { display: flex; align-items: center; justify-content: center; gap: 15px; }

    .laser-icon-base { width: 60px; height: 60px; filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4)); animation: symbolRotate 8s linear infinite; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    .laser-text-container { position: relative; height: 22px; display: flex; align-items: center; transform: translateY(-2px); }
    .laser-wordmark { height: 100%; width: auto; display: block; clip-path: inset(0 100% 0 0); animation: laserWriteWord 1.8s ease-in-out 0.2s forwards; filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4)); }
    .laser-point { position: absolute; top: 50%; left: 0; width: 10px; height: 10px; background: #fff; border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 20px 5px var(--cyan), 0 0 40px 15px var(--purple); animation: laserPointMove 1.8s ease-in-out 0.2s forwards; opacity: 0; }

    @keyframes laserWriteWord { 0% { clip-path: inset(0 100% 0 0); } 100% { clip-path: inset(0 0 0 0); } }
    @keyframes laserPointMove { 0% { left: 0%; opacity: 1; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
    @keyframes symbolRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

    /* =========================================
       2. CINEMATIC BACKGROUND EFFECTS
    ========================================= */
    .bg-grid { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; background-image: linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%); animation: gridMove 30s linear infinite; will-change: transform; }
    @keyframes gridMove { 0% { transform: translate(0, 0); } 100% { transform: translate(80px, 80px); } }

    .bg-gradient { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; background: radial-gradient(ellipse 100% 100% at 50% -30%, rgba(0, 212, 255, 0.12), transparent 50%), radial-gradient(ellipse 80% 60% at 100% 0%, rgba(168, 85, 247, 0.08), transparent 40%), radial-gradient(ellipse 60% 50% at 0% 100%, rgba(201, 168, 76, 0.06), transparent 40%), radial-gradient(ellipse 40% 40% at 80% 80%, rgba(236, 72, 153, 0.04), transparent 30%); }

    .orbs { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: hidden; filter: blur(60px); }
    .orb { position: absolute; border-radius: 50%; animation: orbFloat 20s ease-in-out infinite; will-change: transform; }
    .orb-1 { width: 400px; height: 400px; background: rgba(0, 212, 255, 0.15); top: 10%; left: 10%; animation-delay: 0s; }
    .orb-2 { width: 300px; height: 300px; background: rgba(201, 168, 76, 0.12); top: 60%; right: 10%; animation-delay: -5s; }
    .orb-3 { width: 350px; height: 350px; background: rgba(168, 85, 247, 0.1); bottom: 10%; left: 30%; animation-delay: -10s; }
    @keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -50px) scale(1.05); } 66% { transform: translate(-20px, 30px) scale(0.95); } }

    .scan-lines { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1000; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px); }
    .vignette { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 999; background: radial-gradient(ellipse at center, transparent 0%, rgba(3, 3, 6, 0.4) 100%); }

    .data-stream-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: hidden; mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 60%, transparent 100%); }

    .data-line { position: absolute; left: 0; height: 1px; border-radius: 2px; animation: dataStreak 5s linear infinite; opacity: 0; will-change: transform, opacity; }
    .cyan-line { width: 150px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); box-shadow: 0 0 10px var(--cyan); }
    .purple-line { width: 120px; background: linear-gradient(90deg, transparent, var(--purple), transparent); box-shadow: 0 0 10px var(--purple); }
    .gold-line { width: 180px; background: linear-gradient(90deg, transparent, var(--gold), transparent); box-shadow: 0 0 10px var(--gold); }
    @keyframes dataStreak { 0% { transform: translateX(-200px); opacity: 0; } 5% { opacity: 0.7; } 95% { opacity: 0.7; } 100% { transform: translateX(100vw); opacity: 0; } }

    /* =========================================
       3. LOGO HEADER E FOOTER 
    ========================================= */
    .brand-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .brand-symbol { width: 45px; height: 45px; flex-shrink: 0; animation: symbolRotate 8s linear infinite; filter: drop-shadow(0 0 6px var(--cyan)); display: flex; align-items: center; justify-content: center; will-change: transform; }
    .brand-symbol img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .brand-text { height: 16px; flex-shrink: 0; display: flex; align-items: center; transform: translateY(-1px); }
    .brand-text img { height: 100%; width: auto; object-fit: contain; display: block; }
    
    .footer-logo.brand-logo { justify-content: center; margin-bottom: 20px; gap: 8px; } 
    .footer-logo .brand-symbol { width: 40px; height: 40px; filter: drop-shadow(0 0 8px var(--purple)); } 
    .footer-logo .brand-text { height: 14px; transform: translateY(-1px); }

    /* =========================================
       NAVIGATION E TABS
    ========================================= */
    nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 0 50px; background: rgba(3, 3, 6, 0.7); backdrop-filter: blur(30px); border-bottom: 1px solid rgba(0, 212, 255, 0.1); }
    nav .nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: 80px; }
    .nav-right { display: flex; align-items: center; gap: 35px; }
    
    .nav-link { font-family: 'Outfit', sans-serif; color: var(--text); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: color 0.3s; }
    .nav-link:hover { color: var(--cyan); }
    .nav-social { color: var(--text); transition: color 0.3s; display: flex; align-items: center; cursor: pointer; }
    .nav-social:hover { color: var(--cyan); }
    .nav-social svg { width: 20px; height: 20px; stroke: currentColor; }
    .nav-lang-switch { font-family: 'Outfit', sans-serif; color: var(--text); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: color 0.3s; cursor: pointer; }
    .nav-lang-switch:hover { color: var(--cyan); }

    .nav-cta {
      padding: 12px 28px; border: 1px solid transparent; background: linear-gradient(var(--dark2), var(--dark2)) padding-box, linear-gradient(135deg, var(--cyan), var(--purple)) border-box;
      border-radius: 8px; color: var(--text); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.4s; position: relative; overflow: hidden; cursor: pointer; white-space: nowrap; 
    }
    .nav-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent); transition: left 0.6s; }
    .nav-cta:hover::before { left: 100%; }
    .nav-cta:hover { background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1)) padding-box, linear-gradient(135deg, var(--cyan), var(--purple)) border-box; box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
    
    .mobile-only { display: none !important; }

    /* =========================================
       4. HERO SECTION & TYPOGRAPHY
    ========================================= */
    .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 140px 20px 100px; position: relative; z-index: 2; }
    .hero-content { position: relative; z-index: 2; max-width: 1100px; width: 100%; }

    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes slideUp { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }

    .hero-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); margin-bottom: 40px; display: flex; align-items: center; justify-content: center; gap: 16px; opacity: 0; animation: fadeInUp 0.8s ease forwards 0.2s; }
    .hero-eyebrow::before { content: '<'; color: var(--gold); opacity: 0.5; }
    .hero-eyebrow::after { content: '/>'; color: var(--gold); opacity: 0.5; }

    .hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(40px, 8vw, 90px); font-weight: 700; line-height: 1; margin-bottom: 40px; letter-spacing: -3px; position: relative; }
    .hero h1 .line { display: block; overflow: hidden; padding-bottom: 5px; }
    .hero h1 .line span { display: inline-block; animation: slideUp 1s ease forwards; opacity: 0; }
    .hero h1 .line:nth-child(1) span { animation-delay: 0.4s; }
    .hero h1 .line:nth-child(2) span { animation-delay: 0.6s; }
    .hero h1 .line:nth-child(3) span { animation-delay: 0.8s; }

    .gradient-text {
      background: linear-gradient(90deg, var(--text) 0%, var(--cyan) 25%, var(--purple) 50%, var(--gold) 75%, var(--text) 100%);
      background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: gradientShift 8s linear infinite; will-change: background-position;
    }
    @keyframes gradientShift { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

    .outline-text { -webkit-text-stroke: 1px rgba(0, 212, 255, 0.4); color: transparent; position: relative; }
    .outline-text::after { content: attr(data-text); position: absolute; left: 0; top: 0; -webkit-text-stroke: 1px rgba(168, 85, 247, 0.3); animation: glitch 3s infinite; clip-path: inset(0 0 0 0); }
    @keyframes glitch { 0%, 90%, 100% { transform: translate(0); } 92% { transform: translate(-2px, 1px); } 94% { transform: translate(2px, -1px); } 96% { transform: translate(-1px, 2px); } }

    .neon-glow-cyan { display: inline-block; filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6)); animation: neonPulseOpacity 2s infinite alternate; will-change: opacity; }
    .neon-glow-purple { display: inline-block; filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6)); animation: neonPulseOpacity 2s infinite alternate; will-change: opacity; }
    @keyframes neonPulseOpacity { 0% { opacity: 0.75; } 100% { opacity: 1; } }

    .hero-sub { font-size: 18px; color: var(--muted); max-width: 700px; margin: 0 auto 56px; font-weight: 300; line-height: 1.9; opacity: 0; animation: fadeInUp 0.8s ease forwards 1s; }

    /* =========================================
       BOTTONI HERO
    ========================================= */
    .hero-actions { display: grid !important; grid-template-columns: 280px 280px !important; gap: 24px !important; justify-content: center !important; align-items: center !important; margin: 0 auto !important; opacity: 0; animation: fadeInUp 0.8s ease forwards 1.2s; }
    .btn { position: relative; padding: 0 15px !important; width: 100% !important; height: 55px !important; font-weight: 600; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border-radius: 10px; cursor: pointer; transition: all 0.4s; overflow: hidden; display: flex !important; align-items: center !important; justify-content: center !important; text-align: center; line-height: 1.2; }
    
    .btn-primary { background: linear-gradient(135deg, var(--cyan), var(--purple)); color: var(--dark); border: 1px solid transparent !important; }
    .btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); transition: left 0.6s; }
    .btn-primary:hover::before { left: 100%; }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4), 0 0 100px rgba(168, 85, 247, 0.2); }

    .btn-secondary { background: transparent; border: 1px solid rgba(0, 212, 255, 0.3) !important; color: var(--cyan); }
    .btn-secondary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1)); opacity: 0; transition: opacity 0.4s; }
    .btn-secondary:hover::before { opacity: 1; }
    .btn-secondary:hover { border-color: var(--cyan); box-shadow: 0 0 40px rgba(0, 212, 255, 0.2); }

    /* =========================================
       LAYOUTS & CONTAINERS
    ========================================= */
    .bg-section { background: linear-gradient(180deg, rgba(8, 8, 13, 0.5) 0%, rgba(3, 3, 6, 1) 50%, rgba(8, 8, 13, 0.5) 100%); position: relative; z-index: 2; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
    .card { background: rgba(8, 8, 13, 0.6); padding: 40px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.03); transition: all 0.5s; position: relative; overflow: hidden; }
    .card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent); opacity: 0; transition: opacity 0.5s; }
    .card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(168, 85, 247, 0.03)); opacity: 0; transition: opacity 0.5s; }
    .card:hover::before, .card:hover::after { opacity: 1; }
    .card:hover { border-color: rgba(0, 212, 255, 0.15); transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 212, 255, 0.1); }
    .card-icon { width: 56px; height: 56px; stroke: var(--cyan); margin-bottom: 28px; padding: 14px; background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.05)); border-radius: 16px; position: relative; z-index: 1; transition: all 0.4s; }
    .card:hover .card-icon { background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(168, 85, 247, 0.1)); transform: scale(1.1); filter: drop-shadow(0 0 15px var(--cyan)); }
    .card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; margin-bottom: 16px; color: var(--text); position: relative; z-index: 1; transition: color 0.4s; }
    .card:hover h3 { color: var(--cyan); }
    .card p { font-size: 14px; color: var(--muted); line-height: 1.8; position: relative; z-index: 1; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }

    /* =========================================
       CARD PORTFOLIO
    ========================================= */
    .portfolio-card { padding: 40px !important; min-height: 350px; display: flex !important; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; border: 1px solid rgba(0, 212, 255, 0.15) !important; }
    .portfolio-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.4; transition: all 0.6s ease; }
    .portfolio-bg picture, .portfolio-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,3,6,1) 0%, rgba(3,3,6,0.5) 60%, rgba(3,3,6,0.1) 100%); z-index: 1; }
    .portfolio-card:hover .portfolio-bg { transform: scale(1.08); opacity: 0.7; }
    .portfolio-content { position: relative; z-index: 2; }
    .coming-soon-badge { position: absolute; top: 20px; right: 20px; background: rgba(0, 212, 255, 0.1); border: 1px solid var(--cyan); color: var(--cyan); padding: 6px 14px; border-radius: 50px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; z-index: 10; backdrop-filter: blur(5px); }

    /* =========================================
       SEZIONE CONTATTI
    ========================================= */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 50px; align-items: center; }
    .contact-info h3 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; margin-bottom: 20px; color: var(--text); }
    .contact-info p { color: var(--muted); margin-bottom: 40px; font-size: 16px; line-height: 1.8; }
    .contact-item { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; color: var(--text); font-size: 16px; }
    .contact-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.05)); border: 1px solid rgba(0, 212, 255, 0.2); display: flex; align-items: center; justify-content: center; color: var(--cyan); }
    .contact-form { background: rgba(8, 8, 13, 0.6); padding: 40px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); position: relative; overflow: hidden; }
    .contact-form::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--purple)); }
    .form-group { margin-bottom: 20px; }
    .form-control { width: 100%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); padding: 16px 20px; border-radius: 8px; color: #fff; font-family: 'Outfit', sans-serif; font-size: 15px; transition: border-color 0.3s; }
    .form-control:focus { border-color: var(--cyan); outline: none; }
    textarea.form-control { resize: vertical; min-height: 120px; }

    /* =========================================
       FOOTER & COOKIE BANNER
    ========================================= */
    footer { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 100px 40px 60px; text-align: center; position: relative; z-index: 2; }
    .footer-tagline { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; }

    .cookie-banner { position: fixed; bottom: -100%; left: 50%; transform: translateX(-50%); width: 90%; max-width: 800px; background: rgba(8, 8, 13, 0.85); backdrop-filter: blur(20px); border: 1px solid rgba(0, 212, 255, 0.2); border-radius: 16px; padding: 30px; display: flex; justify-content: space-between; align-items: center; gap: 30px; z-index: 99999; transition: bottom 0.6s cubic-bezier(0.23, 1, 0.32, 1); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(0, 212, 255, 0.1); }
    .cookie-banner.show { bottom: 40px; }
    .cookie-content h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: var(--cyan); margin-bottom: 8px; }
    .cookie-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }
    .cookie-link { font-size: 12px; color: var(--text); text-decoration: underline; margin-top: 10px; display: inline-block; transition: color 0.3s; cursor: pointer; }
    .cookie-link:hover { color: var(--cyan); }
    .cookie-actions { display: flex; gap: 15px; flex-shrink: 0; }
    .btn-cookie { padding: 12px 24px; font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 8px; cursor: pointer; transition: all 0.3s; }
    .btn-reject { background: transparent; border: 1px solid rgba(255, 255, 255, 0.1); color: var(--muted); }
    .btn-reject:hover { border-color: var(--text); color: var(--text); }
    .btn-accept { background: linear-gradient(135deg, var(--cyan), var(--purple)); border: none; color: var(--dark); }

    /* =========================================
       MODAL PRIVACY E RESPONSIVE
    ========================================= */
    .privacy-modal-overlay { position: fixed; inset: 0; background: rgba(3, 3, 6, 0.7); backdrop-filter: blur(20px); z-index: 200000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.5s ease; padding: 20px; }
    .privacy-modal-overlay.open { opacity: 1; visibility: visible; }
    .privacy-modal-container { background: rgba(8, 8, 13, 0.9); width: 100%; max-width: 900px; max-height: 80vh; border-radius: 20px; border: 1px solid rgba(0, 212, 255, 0.2); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 212, 255, 0.1); display: flex; flex-direction: column; overflow: hidden; position: relative; transform: translateY(30px) scale(0.95); transition: transform 0.5s ease; }
    .privacy-modal-overlay.open .privacy-modal-container { transform: translateY(0) scale(1); }
    .privacy-modal-header { padding: 25px 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; background: rgba(8, 8, 13, 1); z-index: 10; }
    .privacy-modal-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; color: var(--text); }
    .close-modal-btn { background: none; border: none; color: var(--muted); font-size: 30px; cursor: pointer; transition: color 0.3s; line-height: 1; }
    .close-modal-btn:hover { color: var(--pink); }
    .privacy-modal-body { padding: 40px; overflow-y: auto; color: var(--muted); font-size: 15px; line-height: 1.8; }
    .legal-text-content h3 { font-family: 'Space Grotesk', sans-serif; color: var(--text); margin: 30px 0 15px; font-size: 18px; }
    .legal-text-content h3:first-child { margin-top: 0; }
    .legal-text-content p { margin-bottom: 20px; }
    .legal-text-content ul { margin-bottom: 20px; padding-left: 20px; }
    .privacy-modal-footer { padding: 20px 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); background: rgba(8, 8, 13, 1); text-align: right; z-index: 10; }
    .privacy-modal-body::-webkit-scrollbar { width: 6px; }
    .privacy-modal-body::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); }
    .privacy-modal-body::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan), var(--purple)); border-radius: 3px; }

    .desktop-only { display: flex; }
    
    @media (max-width: 1200px) { .grid-4, .contact-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) {
      .hero { padding: 100px 16px 80px; }
      .bg-grid, .orbs, .scan-lines, .data-stream-container { display: none !important; }
      .hero-actions { grid-template-columns: 1fr !important; width: 100% !important; max-width: 320px !important; }
      .grid-4, .grid-2, .contact-grid { grid-template-columns: 1fr; }
      
      .desktop-only { display: none !important; }
      .mobile-only { display: flex !important; align-items: center; }
      .nav-container { position: relative; justify-content: space-between !important; width: 100%; }
      nav .brand-logo { position: absolute; left: 50%; transform: translateX(-50%); }
      .nav-lang-switch.mobile-only { font-size: 14px; font-weight: 600; }
      
      .cookie-banner { flex-direction: column; padding: 20px; width: 95%; bottom: -100%; }
      .cookie-banner.show { bottom: 20px; }
      .cookie-actions { width: 100%; justify-content: stretch; }
      .btn-cookie { flex: 1; text-align: center; }
      .privacy-modal-container { max-height: 90vh; }
      .privacy-modal-header, .privacy-modal-body, .privacy-modal-footer { padding-left: 20px; padding-right: 20px; }
      .privacy-modal-header h2 { font-size: 20px; }
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan), var(--purple)); border-radius: 3px; }