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

        :root {
            --bg: #060608;
            --bg2: #0c0c10;
            --bg3: #111118;
            --accent: #00e5ff;
            --accent2: #7b2fff;
            --accent3: #ff2d78;
            --text: #e8e8f0;
            --muted: #6b6b80;
            --border: rgba(255, 255, 255, 0.07);
            --glow: 0 0 40px rgba(0, 229, 255, 0.15);
            --gradient: linear-gradient(135deg, var(--accent), var(--accent2));
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Syne', sans-serif;
            overflow-x: hidden;
            cursor: none;
        }

        /* CUSTOM CURSOR */
        .cursor {
            position: fixed;
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease;
            mix-blend-mode: screen;
        }

        .cursor-ring {
            position: fixed;
            width: 36px;
            height: 36px;
            border: 1px solid rgba(0, 229, 255, 0.4);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.15s ease, width 0.2s, height 0.2s;
        }

        /* NOISE OVERLAY */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            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)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 1000;
            opacity: 0.4;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            padding: 24px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(to bottom, rgba(6, 6, 8, 0.95), transparent);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: white;
        }

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

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: var(--muted);
            text-decoration: none;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s;
        }

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

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

        .nav-cta {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            padding: 10px 24px;
            border: 1px solid var(--accent);
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--accent);
            transform: translateX(-100%);
            transition: transform 0.3s;
            z-index: -1;
        }

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

        .nav-cta:hover::before {
            transform: translateX(0);
        }

        /* HERO */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 60px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(123, 47, 255, 0.12) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            animation: pulse 6s ease-in-out infinite;
        }

        .hero-glow2 {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
            bottom: 0;
            left: 10%;
            animation: pulse 8s ease-in-out infinite reverse;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.7;
            }
        }

        .hero-content {
            position: relative;
            max-width: 900px;
        }

        .hero-tag {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            color: var(--accent);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-tag::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--accent);
        }

        .hero-title {
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.03em;
            margin-bottom: 32px;
        }

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

        .hero-title .line span {
            display: block;
            animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .hero-title .line:nth-child(2) span {
            animation-delay: 0.1s;
        }

        .hero-title .line:nth-child(3) span {
            animation-delay: 0.2s;
        }

        @keyframes slideUp {
            from {
                transform: translateY(110%);
                opacity: 0;
            }

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

        .hero-title .highlight {
            color: transparent;
            -webkit-text-stroke: 1px var(--accent);
        }

        .hero-desc {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.8;
            max-width: 520px;
            margin-bottom: 48px;
            animation: fadeIn 1s 0.5s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        .hero-actions {
            display: flex;
            gap: 20px;
            align-items: center;
            animation: fadeIn 1s 0.7s both;
        }

        .btn-primary {
            padding: 16px 40px;
            background: var(--accent);
            color: var(--bg);
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        }

        .btn-primary:hover {
            background: white;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
        }

        .btn-ghost {
            padding: 16px 40px;
            color: var(--text);
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-ghost:hover {
            color: var(--accent);
        }

        .btn-ghost svg {
            transition: transform 0.3s;
        }

        .btn-ghost:hover svg {
            transform: translateX(6px);
        }

        .hero-stats {
            position: absolute;
            right: 60px;
            bottom: 80px;
            display: flex;
            flex-direction: column;
            gap: 32px;
            animation: fadeIn 1s 0.9s both;
        }

        .stat {
            text-align: right;
        }

        .stat-num {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .stat-num span {
            color: var(--accent);
        }

        .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        /* SECTION COMMON */
        section {
            padding: 120px 60px;
            position: relative;
        }

        .section-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: var(--accent);
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

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

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        /* MARQUEE */
        .marquee-wrap {
            overflow: hidden;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--bg2);
        }

        .marquee-track {
            display: flex;
            gap: 60px;
            animation: marquee 20s linear infinite;
            width: max-content;
        }

        .marquee-item {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .marquee-dot {
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
        }

        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* SERVICES */
        #servizi {
            background: var(--bg2);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            margin-top: 70px;
        }

        .service-card {
            background: var(--bg2);
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            transition: background 0.4s;
            cursor: none;
        }

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

        .service-card:hover {
            background: var(--bg3);
        }

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

        .service-num {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: var(--accent);
            letter-spacing: 0.15em;
            margin-bottom: 32px;
            opacity: 0.6;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            color: var(--accent);
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .service-desc {
            font-family: 'Space Mono', monospace;
            font-size: 0.78rem;
            color: var(--muted);
            line-height: 1.8;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 28px;
        }

        .tag {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            padding: 4px 10px;
            border: 1px solid var(--border);
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* CHI SIAMO */
        #chi-siamo {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

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

        .about-box {
            position: absolute;
            border: 1px solid var(--border);
            background: var(--bg3);
        }

        .about-box-main {
            inset: 0 0 60px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .about-box-accent {
            bottom: 0;
            left: 40px;
            right: -20px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent2), var(--accent));
            opacity: 0.15;
        }

        .grid-visual {
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
            background-size: 40px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-big {
            font-size: 5rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            color: transparent;
            -webkit-text-stroke: 1px rgba(0, 229, 255, 0.3);
            animation: flicker 4s ease-in-out infinite;
        }

        @keyframes flicker {

            0%,
            100% {
                opacity: 1;
            }

            92% {
                opacity: 1;
            }

            93% {
                opacity: 0.3;
            }

            94% {
                opacity: 1;
            }

            96% {
                opacity: 0.5;
            }

            97% {
                opacity: 1;
            }
        }

        .about-text .section-title {
            margin-bottom: 28px;
        }

        .about-desc {
            font-family: 'Space Mono', monospace;
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.9;
            margin-bottom: 48px;
        }

        .about-desc strong {
            color: var(--accent);
            font-weight: 400;
        }

        .pillars {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .pillar {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 24px;
            border: 1px solid var(--border);
            transition: border-color 0.3s;
        }

        .pillar:hover {
            border-color: rgba(0, 229, 255, 0.3);
        }

        .pillar-icon {
            color: var(--accent);
            font-size: 1.2rem;
            min-width: 24px;
        }

        .pillar-name {
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .pillar-sub {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            color: var(--muted);
            margin-top: 2px;
        }

        /* PORTFOLIO */
        #portfolio {
            background: var(--bg2);
        }

        .portfolio-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 70px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .project-card {
            background: var(--bg3);
            border: 1px solid var(--border);
            overflow: hidden;
            position: relative;
            transition: border-color 0.4s, transform 0.4s;
            cursor: none;
        }

        .project-card:hover {
            border-color: rgba(0, 229, 255, 0.25);
            transform: translateY(-4px);
        }

        .project-card:first-child {
            grid-column: span 2;
        }

        .project-thumb {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .project-card:first-child .project-thumb {
            height: 300px;
        }

        .project-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
            filter: grayscale(0.4) brightness(0.7);
        }

        .project-card:hover .project-bg {
            transform: scale(1.05);
            filter: grayscale(0) brightness(1);
        }

        .pb-1 {
            background-image: url('fintech_dashboard_marketinggo.png');
        }

        .pb-2 {
            background-image: url('healthtech_mobile_app_marketinggo.png');
        }

        .pb-3 {
            background-image: url('ecommerce_saas_platform_marketinggo.png');
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-logo-placeholder {
            font-size: 2.5rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.08);
            letter-spacing: -0.04em;
        }

        .project-card:first-child .project-logo-placeholder {
            font-size: 4rem;
        }

        .project-info {
            padding: 28px 32px;
        }

        .project-category {
            font-family: 'Space Mono', monospace;
            font-size: 0.62rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            margin-bottom: 10px;
        }

        .project-name {
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }

        .project-desc {
            font-family: 'Space Mono', monospace;
            font-size: 0.72rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* CONTATTI */
        #contatti {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .contact-text .section-title {
            margin-bottom: 24px;
        }

        .contact-desc {
            font-family: 'Space Mono', monospace;
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.9;
            margin-bottom: 48px;
        }

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

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-family: 'Space Mono', monospace;
            font-size: 0.78rem;
            color: var(--muted);
        }

        .contact-icon {
            color: var(--accent);
            min-width: 20px;
        }

        .contact-form {
            background: var(--bg3);
            border: 1px solid var(--border);
            padding: 48px;
        }

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

        .form-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            display: block;
            margin-bottom: 10px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            background: var(--bg2);
            border: 1px solid var(--border);
            color: var(--text);
            font-family: 'Space Mono', monospace;
            font-size: 0.82rem;
            padding: 14px 18px;
            outline: none;
            transition: border-color 0.3s;
            resize: none;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: rgba(0, 229, 255, 0.4);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--muted);
        }

        .form-textarea {
            height: 120px;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: none;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--accent);
            transform: translateY(100%);
            transition: transform 0.3s;
            z-index: 0;
        }

        .form-submit span {
            position: relative;
            z-index: 1;
        }

        .form-submit:hover {
            color: var(--bg);
        }

        .form-submit:hover::before {
            transform: translateY(0);
        }

        /* FOOTER */
        footer {
            background: var(--bg2);
            border-top: 1px solid var(--border);
            padding: 40px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-logo {
            font-size: 1.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

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

        .footer-copy {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: var(--muted);
            letter-spacing: 0.05em;
        }

        .footer-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .footer-links a {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: var(--muted);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.3s;
        }

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

        /* SCROLL INDICATOR */
        .scroll-line {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent2), var(--accent));
            z-index: 600;
            transition: width 0.1s linear;
        }

        /* PRICING */
        #prezzi {
            background: var(--bg);
        }

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

        .pricing-card {
            background: var(--bg2);
            border: 1px solid var(--border);
            padding: 40px;
            display: flex;
            flex-direction: column;
            transition: all 0.4s;
            position: relative;
        }

        .pricing-card.popular {
            border-color: var(--accent);
            transform: scale(1.05);
            z-index: 2;
            background: var(--bg3);
        }

        .pricing-card.popular::after {
            content: attr(data-badge);
            position: absolute;
            top: 0;
            right: 0;
            background: var(--accent);
            color: var(--bg);
            font-size: 0.6rem;
            font-weight: 800;
            padding: 6px 12px;
            letter-spacing: 0.1em;
        }

        .pricing-header {
            margin-bottom: 30px;
        }

        .pricing-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--accent);
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .pricing-price span {
            font-size: 0.9rem;
            color: var(--muted);
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .pricing-features li {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: var(--muted);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pricing-features li::before {
            content: '→';
            color: var(--accent);
        }

        .pricing-btn {
            width: 100%;
            padding: 14px;
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s;
        }

        .pricing-btn:hover {
            background: var(--accent);
            color: var(--bg);
        }

        /* TESTIMONIALS */
        #testimonials {
            background: var(--bg2);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--bg3);
            border: 1px solid var(--border);
            padding: 40px;
        }

        .testimonial-text {
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-info .name {
            font-weight: 700;
            font-size: 0.95rem;
        }

        .author-info .role {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: var(--muted);
            text-transform: uppercase;
        }

        /* CTA SECTION */
        .cta-section {
            padding: 100px 60px;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300e5ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            border-top: 1px solid var(--border);
        }

        .cta-btn-big {
            display: inline-block;
            margin-top: 32px;
            padding: 20px 60px;
            background: var(--accent);
            color: var(--bg);
            font-size: 1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            text-decoration: none;
            clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
            transition: all 0.3s;
        }

        .cta-btn-big:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3);
            background: white;
        }

        /* CATALOGO MENU */
        #menu-servizi {
            background: var(--bg2);
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .catalog-item {
            background: var(--bg3);
            border: 1px solid var(--border);
            padding: 32px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .catalog-item:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
            background: var(--bg);
        }

        .catalog-info {
            flex: 1;
        }

        .catalog-cat {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 8px;
            display: block;
        }

        .catalog-name {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .catalog-desc {
            font-family: 'Space Mono', monospace;
            font-size: 0.72rem;
            color: var(--muted);
            line-height: 1.6;
            max-width: 80%;
        }

        .catalog-price {
            text-align: right;
            min-width: 120px;
        }

        .price-val {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            display: block;
        }

        .price-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        @media (max-width: 800px) {
            .catalog-grid {
                grid-template-columns: 1fr;
            }
            .catalog-item {
                flex-direction: column;
                gap: 20px;
            }
            .catalog-price {
                text-align: left;
            }
        }

        /* ENTERPRISE SECTION */
        #enterprise {
            background: var(--bg);
        }

        .enterprise-intro {
            font-family: 'Space Mono', monospace;
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.8;
            max-width: 640px;
            margin-bottom: 16px;
        }

        .enterprise-note {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            color: var(--accent);
            border-left: 2px solid var(--accent);
            padding: 10px 18px;
            margin-bottom: 60px;
            background: rgba(0,229,255,0.04);
            max-width: 640px;
        }

        .enterprise-tier {
            margin-bottom: 60px;
        }

        .tier-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .tier-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .enterprise-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .ent-card {
            background: var(--bg2);
            border: 1px solid var(--border);
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

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

        .ent-card:hover {
            border-color: rgba(0,229,255,0.25);
            transform: translateY(-4px);
            background: var(--bg3);
        }

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

        .ent-card.premium {
            border-color: rgba(123,47,255,0.35);
            background: var(--bg3);
        }

        .ent-card.premium::before {
            background: linear-gradient(90deg, var(--accent3), var(--accent2));
            transform: scaleX(1);
        }

        .ent-cat {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        .ent-card.premium .ent-cat {
            color: var(--accent2);
        }

        .ent-name {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .ent-desc {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: var(--muted);
            line-height: 1.8;
            flex: 1;
        }

        .ent-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ent-features li {
            font-family: 'Space Mono', monospace;
            font-size: 0.72rem;
            color: var(--muted);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .ent-features li::before {
            content: '→';
            color: var(--accent);
            flex-shrink: 0;
        }

        .ent-card.premium .ent-features li::before {
            color: var(--accent2);
        }

        .ent-price-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-top: 8px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            gap: 12px;
            flex-wrap: wrap;
        }

        .ent-price {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        .ent-price-sub {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 4px;
        }

        .ent-cta {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 1px solid var(--accent);
            padding: 10px 20px;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .ent-cta:hover {
            background: var(--accent);
            color: var(--bg);
        }

        .ent-card.premium .ent-cta {
            color: var(--accent2);
            border-color: var(--accent2);
        }

        .ent-card.premium .ent-cta:hover {
            background: var(--accent2);
            color: white;
        }

        /* REVEAL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 900px) {
            nav {
                padding: 20px 28px;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 80px 28px;
            }

            #hero {
                padding: 120px 28px 80px;
            }

            .hero-stats {
                position: static;
                flex-direction: row;
                gap: 40px;
                margin-top: 60px;
            }

            .stat {
                text-align: left;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            #chi-siamo,
            #contatti {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-visual {
                height: 300px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .project-card:first-child {
                grid-column: auto;
            }

            footer {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .portfolio-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            /* Enterprise mobile */
            .enterprise-grid {
                grid-template-columns: 1fr;
            }

            .ent-card {
                padding: 28px 24px;
            }

            .ent-price-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .ent-cta {
                width: 100%;
                text-align: center;
            }

            .enterprise-note {
                max-width: 100%;
            }

            /* Pricing mobile */
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.popular {
                transform: scale(1);
            }

            /* Testimonials mobile */
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
