:root {
    --background: 220 25% 6%;
    --foreground: 210 100% 95%;
  
    --card: 220 20% 10%;
    --card-foreground: 210 100% 95%;
  
    --primary: 213 90% 60%;
    --primary-foreground: 220 25% 6%;
    --primary-light: 213 100% 70%;
    --primary-dark: 213 80% 45%;
  
    --secondary: 101 80% 50%;
    --secondary-foreground: 220 25% 6%;
  
    --muted: 220 15% 15%;
    --muted-foreground: 213 10% 60%;
  
    --border: 213 40% 20%;
    --border-glow: 213 90% 60%;
  
    --shadow-neon: 0 0 30px hsl(213 90% 60% / 0.4), 0 10px 40px hsl(213 90% 60% / 0.2);
  
    --radius: 0.75rem;
  
    --transition-smooth: all 0.25s ease-out;
  }
  
  /* RESET BASE */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
  }
  
  body {
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 2px, hsl(213 90% 60% / 0.03) 2px, hsl(213 90% 60% / 0.03) 4px),
      repeating-linear-gradient(90deg, transparent, transparent 2px, hsl(213 90% 60% / 0.03) 2px, hsl(213 90% 60% / 0.03) 4px);
  }
  
  /* TYPO */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', system-ui, sans-serif;
    margin: 0;
  }
  
  p {
    margin: 0;
  }
  
  /* LAYOUT GENERALE */
  .page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  /* HEADER */
  .main-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, hsl(220 25% 6% / 0.9), hsl(220 25% 6% / 0.6));
    border-bottom: 1px solid hsl(var(--border));
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    max-width: 1120px;
    margin: 0 auto;
  }
  
  .logo img {
    max-width: 300px;
    display: block;
  }
  
  /* NAV DESKTOP */
  .nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
  }
  
  .nav-link:hover {
    color: hsl(var(--foreground));
    border-color: hsl(var(--border));
    background: hsl(220 20% 12%);
  }
  
  .nav-link.is-active {
    /*background: hsl(var(--primary));*/
    color: white;
  }
  
  /* LANGUAGE DROPDOWN */
  .nav-dropdown {
    position: relative;
  }
  
  .nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
  }
  
  .nav-dropdown-menu {
    position: absolute;
    right: 0;
    top: 110%;
    min-width: 120px;
    background: hsl(220 20% 10%);
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 20px 40px hsl(220 20% 4% / 0.6);
    padding: 0.35rem 0;
    display: none;
    z-index: 50;
  }
  
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
  
  .nav-dropdown-menu a {
    display: block;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
  }
  
  .nav-dropdown-menu a:hover {
    background: hsl(220 20% 16%);
    color: hsl(var(--foreground));
  }
  
  /* MOBILE NAV TOGGLE */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .nav-toggle span {
    display: block;
    height: 2px;
    background: hsl(var(--foreground));
    border-radius: 999px;
    transition: var(--transition-smooth);
  }
  
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  /* MOBILE MENU */
  .mobile-menu {
    display: none;
    border-top: 1px solid hsl(var(--border));
    background: hsl(220 25% 6% / 0.98);
  }
  
  .mobile-menu.is-open {
    display: block;
  }
  
  .mobile-nav-links {
    padding: 1rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .mobile-lang {
    margin-top: 0.5rem;
  }
  
  .mobile-lang .nav-dropdown-menu {
    position: static;
    margin-top: 0.3rem;
    box-shadow: none;
  }
  
  .mobile-contact-info {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
  }
  
  .mobile-contact-info h4 {
    font-family: 'Orbitron', system-ui, sans-serif;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .mobile-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-contact-info li {
    margin: 0.2rem 0;
  }
  
  /* HERO */
  .hero {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
  }
  
  .hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
      linear-gradient(to right, hsl(213 90% 60% / 0.12) 1px, transparent 1px),
      linear-gradient(to bottom, hsl(213 90% 60% / 0.12) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
  }
  
  .hero-glow {
    position: absolute;
    inset: -40%;
    background:
      radial-gradient(circle at top, hsl(213 60% 20% / 0.9), transparent 60%),
      radial-gradient(circle at center right, hsl(213 90% 60% / 0.25), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
  }
  
  .hero-layout {
    position: relative;
    display: grid;
    gap: 2.5rem;
    align-items: center;
  }
  
  @media (min-width: 900px) {
    .hero-layout {
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    }
  }
  
  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.7rem;
    color: hsl(213 20% 70%);
    margin-bottom: 0.9rem;
  }
  
  .hero-kicker-line {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: hsl(213 90% 70%);
  }
  
  .hero-title {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px hsl(213 90% 60% / 0.5);
  }
  
  .hero-title-accent {
    color: hsl(101 80% 55%);
  }
  
  .hero-subtitle {
    font-size: 1rem;
    max-width: 480px;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.5rem;
  }
  
  .hero-meta {
    font-size: 0.8rem;
    color: hsl(var(--muted-foreground));
  }
  
  .hero-media {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: hsl(var(--card));
  }
  
  .hero-media img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  
  /* BUTTONS */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
  }
  
  .btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-neon);
  }
  .btn-primary:hover {
    background: hsl(var(--primary-light));
  }
  
  /* GENERIC SECTIONS */
  .section {
    padding: 3.5rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header.center {
    text-align: center;
  }
  
  .section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.4rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: hsl(var(--muted-foreground));
    max-width: 460px;
  }
  
  /* GRID UTILITY */
  .grid-3 {
    display: grid;
    gap: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .grid-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  /* CARD STEP */
  .card-step {
    position: relative;
    padding: 1.35rem 1.1rem 1.3rem;
    border-radius: 1.1rem;
    background: hsl(220 20% 9% / 0.95);
    border: 1px solid hsl(var(--border));
    box-shadow: 0 10px 30px hsl(220 20% 4% / 0.7);
    transition: var(--transition-smooth);
  }
  
  .card-step:hover {
    transform: translateY(-4px);
    border-color: hsl(var(--border-glow));
    box-shadow: var(--shadow-neon);
  }
  
  .card-step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .card-step p {
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
  }
  
  .card-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: hsl(213 90% 60% / 0.18);
    border: 1px solid hsl(213 90% 60% / 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
  }
  
  /* GLANCE SECTION */
  .glance-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  @media (min-width: 900px) {
    .glance-layout {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    }
  }
  
  .glance-media {
    border-radius: 1.4rem;
    overflow: hidden;
  }
  
  .glance-media img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  
  .glance-text {
    padding: 0.25rem 0;
  }
  
  .glance-items {
    margin-top: 1.3rem;
    display: grid;
    gap: 1rem;
  }
  
  .glance-item h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }
  .glance-item p {
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
  }
  
  /* NEON BORDER */
  .neon-border {
    position: relative;
    border-radius: 1.4rem;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 18px 45px hsl(220 20% 4% / 0.8);
  }
  .neon-border::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid hsl(var(--border-glow) / 0.4);
    pointer-events: none;
  }
  
  /* GALLERY */
  .gallery-grid {
    display: grid;
    gap: 1.25rem;
  }
  
  @media (min-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  .gallery-item {
    border-radius: 1.1rem;
    overflow: hidden;
    background: hsl(var(--card));
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .gallery-item img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
  }
  
  /* SLIDE STRIP */
  .slide-strip {
    border-block: 1px solid hsl(var(--border));
    padding: 0.85rem 0;
    margin: 0.5rem 0 3.25rem;
    overflow: hidden;
  }
  
  .slide-inner {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: slide-x 20s linear infinite;
    font-family: 'Orbitron', system-ui, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: hsl(var(--muted-foreground));
  }
  .slide-inner span {
    position: relative;
  }
  .slide-inner span::after {
    content: "";
    position: absolute;
    right: -1.4rem;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: hsl(213 90% 60%);
    transform: translateY(-50%);
  }
  
  @keyframes slide-x {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* FAQ */
  .section-faq {
    padding-bottom: 4rem;
  }
  
  .faq-layout {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 900px) {
    .faq-layout {
      grid-template-columns: 0.9fr 1.5fr;
    }
  }
  
  .faq-left {
    padding-right: 1rem;
  }
  
  .faq-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .faq-item {
    border-radius: 0.9rem;
    border: 1px solid hsl(var(--border));
    background: hsl(220 20% 9% / 0.95);
    overflow: hidden;
    transition: var(--transition-smooth);
  }
  
  .faq-item.is-open {
    border-color: hsl(var(--border-glow));
    box-shadow: var(--shadow-neon);
  }
  
  .faq-question {
    width: 100%;
    padding: 0.8rem 1rem;
    background: none;
    border: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
    cursor: pointer;
  }
  
  .faq-question span:first-child {
    font-size: 0.95rem;
  }
  
  .faq-toggle {
    font-family: 'Orbitron', system-ui, sans-serif;
    font-size: 1rem;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.25s ease-out;
  }
  
  .faq-item.is-open .faq-answer {
    padding-bottom: 0.85rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
  }
  
  /* FOOTER */
  .footer {
    margin-top: auto;
    border-top: 1px solid hsl(var(--border));
    background: hsl(220 25% 5%);
    padding-top: 2.5rem;
  }
  
  .footer-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 1.75rem;
  }
  
  @media (min-width: 900px) {
    .footer-grid {
      grid-template-columns: 1.2fr 0.9fr 1.1fr;
    }
  }
  
  .footer-logo img {
    max-width: 170px;
  }
  
  .footer-text {
    margin-top: 0.7rem;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
  }
  .footer-text.small {
    font-size: 0.8rem;
  }
  
  .footer-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links li {
    margin: 0.25rem 0;
  }
  .footer-links a {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
  }
  .footer-links a:hover {
    color: hsl(var(--foreground));
  }
  
  .newsletter-form {
    margin-top: 0.6rem;
  }
  
  .newsletter-row {
    display: flex;
    align-items: stretch;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }
  
  .newsletter-row input[type="email"] {
    flex: 1;
    min-width: 0;
    border-radius: 999px;
    border: 1px solid hsl(var(--border));
    background: hsl(220 25% 6%);
    color: hsl(var(--foreground));
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    outline: none;
  }
  .newsletter-row input[type="email"]::placeholder {
    color: hsl(var(--muted-foreground));
  }
  
  .footer-bottom {
    border-top: 1px solid hsl(var(--border));
    padding: 0.75rem 0;
    font-size: 0.8rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
  }
  .footer-bottom a {
    color: hsl(213 90% 60%);
    text-decoration: none;
  }
  
  /* ALERTS */
  .alert {
    border-radius: 0.6rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }
  .alert-success {
    background: hsl(140 70% 20%);
    border: 1px solid hsl(140 70% 40%);
  }
  .alert-danger {
    background: hsl(0 60% 18%);
    border: 1px solid hsl(0 70% 45%);
  }
  
  /* SCROLL TO TOP */
  .scroll-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--border-glow));
    background: hsl(220 20% 12%);
    color: hsl(var(--foreground));
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
  }
  .scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* RESPONSIVE TWEAKS */
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
    .nav-toggle {
      display: flex;
    }
    .hero {
      padding-top: 4rem;
    }
    .section {
      padding: 3rem 0;
    }
    .footer-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  /* === CONTACT PAGE === */

.contact-hero {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.contact-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .contact-hero-inner {
    flex-direction: row;
    align-items: flex-end;
  }
}

.contact-breadcrumb {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contact-breadcrumb a {
  color: hsl(213 90% 60%);
  text-decoration: none;
}
.contact-breadcrumb a:hover {
  text-decoration: underline;
}

/* MAP */
.contact-map-section {
  padding-top: 0;
  padding-bottom: 2.5rem;
}
.contact-map-wrapper {
  border-radius: 1.4rem;
  overflow: hidden;
}
.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 320px;
}
@media (min-width: 900px) {
  .contact-map-wrapper iframe {
    height: 420px;
  }
}

/* GRID INFO + FORM */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.4fr;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(220 20% 9% / 0.95);
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}
.contact-card h3 {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: hsl(var(--foreground));
}
.contact-card a {
  color: hsl(213 90% 60%);
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}
.contact-meta {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

/* FORM */
.contact-form-col {
  padding: 0.25rem 0;
}

.contact-form {
  margin-top: 0.5rem;
}

.contact-form-grid {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 768px) {
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.form-group-full {
  grid-column: 1 / -1;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form label {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.7rem;
  border: 1px solid hsl(var(--border));
  background: hsl(220 25% 6%);
  color: hsl(var(--foreground));
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

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

/* un minimo margin-top tra la hero dei contatti e il resto su mobile */
@media (max-width: 768px) {
  .contact-hero {
    padding-top: 3.5rem;
  }
}

  