      /* =================================
       MODERN MILITARY-INDUSTRIAL DESIGN
       ================================= */
    
    :root {
      /* Color Palette - Military/Industrial */
      --danger-red: #DC2626;
      --warning-amber: #e28f00;
      --tactical-green: #059669;
      --steel-gray: #374151;
      --dark-slate: #030303;
      --concrete-gray: #64748B;
      --light-gray: #F1F5F9;
      --white-smoke: #fafafa;
      
      /* Gradients */
      --gradient-danger: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
      --gradient-dark: linear-gradient(135deg, #111111 0%, #141414 100%);
      --gradient-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 100%);
      
      /* Shadows */
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
      --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.25);
      --shadow-danger: 0 8px 20px rgba(220, 38, 38, 0.2);
      
      /* Transitions */
      --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-fast: all 0.15s ease;
    }

    /* Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--steel-gray);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      background: var(--white-smoke);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--dark-slate);
    }

    /* Scroll Progress Bar */
    #scrollProgress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0;
      height: 4px;
      background: var(--gradient-danger);
      z-index: 9999;
      transition: width 0.1s ease-out;
    }

    /* Navigation */
    .navbar {
      backdrop-filter: blur(20px) saturate(180%);
      background-color: rgba(255, 255, 255, 0.938) !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      transition: var(--transition-base);
      padding: 0.5rem 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar.scrolled {
      padding: 0.1rem 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .navbar-brand {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--dark-slate) !important;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      transition: var(--transition-base);
    }

    .navbar-brand img {
      height: 55px;
      width: auto;
      transition: var(--transition-base);
    }

    .navbar-brand:hover {
      transform: translateX(3px);
    }

    .navbar-nav {
      gap: 0.5rem;
    }

    .nav-link {
      position: relative;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      padding: 0.625rem 1rem !important;
      color: var(--steel-gray) !important;
      transition: var(--transition-base);
      border-radius: 6px;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) scaleX(0);

      height: 3px;
      border-radius: 2px 2px 0 0;
      transition: transform 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--danger-red) !important;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
      transform: translateX(-50%) scaleX(1);
    }

    .btn-cta {
      background: var(--warning-amber);
      color: white;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.75rem 2rem;
      border-radius: 8px;
      border: none;
      transition: var(--transition-base);
      position: relative;
      overflow: hidden;
    }

    .btn-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.5s;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
      color: #F1F5F9;
      background-color: #e28f00;
    }

    .btn-cta:hover::before {
      left: 100%;
    }

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-slate);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1) grayscale(0.2);
}

/* YouTube iframe styling */
.hero-video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: brightness(0.6) contrast(1.1) grayscale(0.2);
}

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient-overlay);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: white;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.75rem 1.5rem;
      background: rgba(220, 38, 38, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      border: 2px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      letter-spacing: -0.03em;
      color: #F1F5F9;
    }

    .hero-title .highlight {
      background: var(--danger-red);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      position: relative;
    }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
      max-width: 650px;
      line-height: 1.6;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: left;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: var(--warning-amber);
      line-height: 1;
      display: block;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 600;
    }

    .hero-cta-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-hero-primary {
      background: var(--gradient-danger);
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 1rem 2.5rem;
      border-radius: 10px;
      border: none;
      text-decoration: none;
      transition: var(--transition-base);
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }

    #vantaggi .btn-hero-primary:hover {
      transform: translateY(-3px);
      background: #e28f00;
      color: #F1F5F9;
    }

      #vantaggi .btn-hero-primary {
      background: var(--warning-amber);
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 1rem 2.5rem;
      border-radius: 10px;
      border: none;
      text-decoration: none;
      transition: var(--transition-base);
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
      color: #F1F5F9;
    }

    .btn-hero-secondary {
      background: rgba(255, 255, 255, 0);
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 1rem 2.5rem;
      border-radius: 10px;
      border: 2px solid rgba(255, 255, 255, 0.712);
      transition: var(--transition-base);
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
      color: #F1F5F9;
    }

    .hero-scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      text-align: center;
    }

    .scroll-mouse {
      width: 30px;
      height: 50px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-radius: 15px;
      position: relative;
      margin: 0 auto 10px;
    }

    .scroll-mouse::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 8px;
      background: white;
      border-radius: 2px;
      animation: scroll-down 2s infinite;
    }

    @keyframes scroll-down {
      0% { top: 8px; opacity: 1; }
      100% { top: 28px; opacity: 0; }
    }

    .scroll-text {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 600;
    }

    /* Section Styling */
    .section {
      padding: 4rem 0;
      position: relative;
    }

    .section-dark {
      background: var(--dark-slate);
      color: white;
    }

    .section-light {
      background: var(--white-smoke);
    }

    .section-white {
      background: white;
    }

    .section-header {
      margin-bottom: 3rem;
    }

    .section-label {
      display: inline-block;
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--danger-red);
      margin-bottom: 1rem;
      padding: 0.5rem 1.5rem;
      background: rgba(220, 38, 38, 0.1);
      border-radius: 50px;
      border: 1px solid rgba(220, 38, 38, 0.2);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 1.25rem;
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 1.25rem;
      color: var(--concrete-gray);
      max-width: 700px;
      line-height: 1.6;
    }

/* Service Cards */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-danger);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.4s ease;
}


    .service-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 70px;
      height: 70px;
      background: var(--gradient-danger);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 2rem;
      color: white;
      box-shadow: 0 6px 15px rgba(220, 38, 38, 0.2);
      transition: var(--transition-base);
    }

    .service-card:hover .service-icon {
      transform: scale(1.1);
    }

    .service-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--dark-slate);
    }

    .service-description {
      color: var(--concrete-gray);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .service-features li {
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--steel-gray);
      font-size: 0.95rem;
    }

    .service-features li i {
      color: var(--tactical-green);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    /* Why Choose Us Section */
    .advantage-card {
      background: #ffffff0a;
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
      box-shadow: var(--shadow-lg);
      transition: var(--transition-base);
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .advantage-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .advantage-card:hover {
      transform: translateY(-10px);
      border-color: var(--warning-amber);
    }

    .advantage-card:hover::before {
      opacity: 1;
    }

    .advantage-number {
      font-size: 4rem;
      font-weight: 800;
      line-height: 1;
      background: var(--warning-amber);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }

    .advantage-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--white-smoke);
      position: relative;
      z-index: 1;
    }

    .advantage-description {
      color: var(--white-smoke);
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    /* Contact Info Cards */
    .contact-card {
      background: var(--gradient-dark);
      color: white;
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      transition: var(--transition-base);
      height: 100%;
    }

    .contact-card:hover {
      transform: translateY(-5px);
    }

    .contact-card-icon {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 1.8rem;
      backdrop-filter: blur(10px);
    }

    .contact-card h4 {
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
      color: white;
    }

    .contact-card a,
    .contact-card p {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition-fast);
    }

    .contact-card a:hover {
      color: var(--warning-amber);
    }

    /* Footer */
    footer {
      background: var(--dark-slate);
      color: white;
      padding: 4rem 0 2.5rem;
    }

    .footer-logo {
      margin-bottom: 1.5rem;
    }

    .footer-logo img {
      height: 50px;
    }

    .footer-description {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .footer-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: white;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition-fast);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-links a:hover {
      color: var(--danger-red);
      transform: translateX(5px);
    }

    .footer-contact-item {
      display: flex;
      align-items: start;
      gap: 1rem;
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-contact-item i {
      color: var(--danger-red);
      font-size: 1.2rem;
      margin-top: 0.2rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 2rem;
      padding-top: 1.5rem;
      text-align: center;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
      font-size: 0.9rem;
    }

    .footer-bottom a {
      color: var(--warning-amber);
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition-fast);
    }

    .footer-bottom a:hover {
      color: var(--danger-red);
    }


    /* Responsive Design */
    @media (max-width: 991px) {

     .hero-section {
        height: 800px;
      }
      .hero-stats {
        gap: 2rem;
      }

      .stat-number {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 767px) {

      .hero-section {
        height: 800px;
      }

      .hero-title {
        font-size: 3rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .section {
        padding: 3rem 0;
      }

      .hero-cta-group {
        flex-direction: column;
      }

        .navbar .btn-cta {
          margin-bottom: 0.5rem;
        }

      .btn-hero-primary,
      .btn-hero-secondary {
        width: 100%;
        justify-content: center;
      }
    }

    /* Utility Classes */
    .text-danger-gradient {
      background: var(--gradient-danger);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .bg-pattern {
      background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.02) 10px, rgba(0, 0, 0, 0.02) 20px);
    }

    /* Loading Animation */
    .pulse-shadow {
      box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    }


      /* Page Hero */
    .page-hero {
      position: relative;
      min-height: 70vh !important;
      display: flex;
      align-items: center;
      background: var(--dark-slate);
      overflow: hidden;
      padding: 8rem 0 4rem;
    }

    .page-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    .page-hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      color: white;
    }

    .page-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.25rem;
      background: rgba(220, 38, 38, 0.9);
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .page-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      color: white;
    }

    .page-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      color: rgba(255, 255, 255, 0.9);
      max-width: 800px;
      line-height: 1.6;
    }

    /* Section */
    .section {
      padding: 5rem 0;
    }

    .section-dark {
      background: var(--dark-slate);
      color: white;
    }

    .section-light {
      background: var(--white-smoke);
    }

    .section-white {
      background: white;
    }

    .section-label {
      display: inline-block;
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--danger-red);
      margin-bottom: 1rem;
      padding: 0.5rem 1.5rem;
      background: rgba(220, 38, 38, 0.1);
      border-radius: 50px;
      border: 1px solid rgba(220, 38, 38, 0.2);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 1.25rem;
    }

    .section-subtitle {
      font-size: 1.25rem;
      color: var(--concrete-gray);
      line-height: 1.7;
      margin-bottom: 2rem;
    }



    /* Content Box */
    .content-box {
      background: rgba(220, 38, 38, 0.05);
      border-left: 4px solid var(--danger-red);
      border-radius: 12px;
      padding: 2rem;
      margin: 2rem 0;
    }

    .content-box h4 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--dark-slate);
    }

    /* Stats Grid */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .stat-card {
      background: white;
      border-radius: 16px;
      padding: 2.5rem;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-base);
      border: 2px solid rgba(0, 0, 0, 0.05);
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 0;
    }

    .page-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
    }

    

    .stat-icon {
      width: 70px;
      height: 70px;
      background: var(--gradient-danger);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
      color: white;
      box-shadow: 0 6px 15px rgba(220, 38, 38, 0.2);
    }

    .stat-value {
      font-family: 'Rajdhani', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      color: var(--dark-slate);
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark-slate);
      margin-bottom: 0.5rem;
    }

    .stat-sub {
      font-size: 0.9rem;
      color: var(--concrete-gray);
    }

.cta-section {
  background: var(--dark-slate);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-dark {
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--danger-red);
}

.cta-dark-tag {
  display: inline-block;
  background: var(--danger-red);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.cta-dark .cta-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 600px;
}

.cta-dark .cta-subtitle {
  color: #9ca3af;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--danger-red);
  color: var(--danger-red);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition-base);
}

.btn-cta-dark:hover {
  background: var(--danger-red);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-dark {
    padding-left: 1.25rem;
  }
}
 
    /* Responsive */
    @media (max-width: 991px) {
      .section {
        padding: 3rem 0;
      }

      .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
      }
    }

    @media (max-width: 767px) {
      .page-hero {
        padding: 6rem 0 3rem;
      }
    }

     .floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--danger-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 9999;
  text-decoration: none;
  transition: var(--transition-base);
}

.floating-cta:hover {
  background: var(--danger-red);
  color: white;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

    .page-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.25rem;
      background: rgba(220, 38, 38, 0.9);
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .page-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      color: white;
    }

    .page-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      color: rgba(255, 255, 255, 0.9);
      max-width: 800px;
      line-height: 1.6;
    }

    /* Section */
    .section {
      padding: 5rem 0;
    }

    .section-label {
      display: inline-block;
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--danger-red);
      margin-bottom: 1rem;
      padding: 0.5rem 1.5rem;
      background: rgba(220, 38, 38, 0.1);
      border-radius: 50px;
      border: 1px solid rgba(220, 38, 38, 0.2);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 1.25rem;
    }


  


    /* Responsive */
    @media (max-width: 991px) {
      .section {
        padding: 3rem 0;
      }

    }

    @media (max-width: 767px) {
      .page-hero {
        padding: 9rem 0 3rem;
      }

    }

      /* Memorie Section */
  .memorie-section {
    padding: 5rem 0;
    background: white;
  }

  .memorie-header {
    margin-bottom: 2rem;
  }

  .memorie-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #DC2626;
    padding: 0.5rem 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    margin-bottom: 1rem;
  }

  .memorie-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #111111;
    margin-bottom: 1rem;
  }

  .memorie-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #111111;
  }

  /* Content */
  .memorie-content {
    color: #374151;
  }

  .memorie-intro {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .memorie-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  /* Pull Quote */
  .memorie-quote {
    position: relative;
    padding: 2rem 2rem 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-left: 6px solid #F59E0B;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  }

  .memorie-quote blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #111111;
    font-weight: 600;
    font-style: italic;
    margin: 0;
  }

  .memorie-quote figcaption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #64748B;
    font-style: normal;
  }

  

  /* PDF Downloads */
  .memorie-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
  }

  .memorie-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #DC2626;
    color: #DC2626;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .memorie-pdf-btn:hover {
    background: #DC2626;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
  }

  .memorie-pdf-btn i {
    font-size: 1.5rem;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .memorie-section {
      padding: 3rem 0;
    }
  }

  @media (max-width: 767px) {
    .memorie-quote {
      padding: 1.5rem;
    }

    .memorie-quote blockquote {
      font-size: 1.1rem;
    }

    .memorie-downloads {
      flex-direction: column;
    }

    .memorie-pdf-btn {
      width: 100%;
      justify-content: center;
    }
  }

    /* Cert Info Cards */
  .cert-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .cert-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-danger);
    transform: scaleY(0.8);
    transform-origin: top;
    transition: transform 0.4s ease;
  }

  .cert-info-card:hover::before {
    transform: scaleY(1);
  }

  .cert-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  }

  .cert-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
  }

  .cert-info-icon.red {
    background: var(--danger-red);
    color: white;
  }

  .cert-info-icon.amber {
    background: var(--warning-amber);
    color: white;
  }

  .cert-info-content {
    position: relative;
  }

  .cert-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-slate);
  }

  .cert-info-description {
    color: var(--concrete-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .cert-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }

  .cert-info-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--steel-gray);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .cert-info-list li:last-child {
    border-bottom: none;
  }

  .cert-info-list li i {
    color: var(--tactical-green);
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .cert-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--danger-red);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
    padding: 0.75rem 0;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
  }

  .cert-info-link:hover {
    gap: 1rem;
    color: var(--warning-amber);
  }

  .cert-info-link i {
    transition: var(--transition-base);
  }


  @media (max-width: 767px) {
    .cert-info-icon {
      width: 70px;
      height: 70px;
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }

    .cert-info-title {
      font-size: 1.5rem;
    }

    .trust-badges {
      grid-template-columns: 1fr;
    }
  }

    /* Responsive */
    @media (max-width: 991px) {
      .section {
        padding: 3rem 0;
      }
    }

    

    /* Responsive */
    @media (max-width: 991px) {
      .section {
        padding: 3rem 0;
      }

    }

  /* ========== FASI TIMELINE STYLES ========== */
  
  /* Section */
  .fasi-timeline-section {
    padding: 3rem 0;
    background: #ffffff;
    position: relative;
  }

  /* Timeline Wrapper */
  .timeline-wrapper {
    position: relative;
    padding-left: 90px;
  }

  /* Vertical Line */
  .timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 4px;
    background: linear-gradient(
      180deg, 
      #DC2626 0%, 
      #B91C1C 50%, 
      #991B1B 100%
    );
    border-radius: 2px;
  }

  /* Timeline Phase Item */
  .timeline-phase {
    position: relative;
    margin-bottom: 3rem;
  }

  .timeline-phase-last {
    margin-bottom: 0;
  }

  /* Timeline Dot (Circle with Number) */
  .timeline-dot {
    position: absolute;
    left: -90px;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
      0 4px 15px rgba(220, 38, 38, 0.4),
      0 0 0 4px rgba(255, 255, 255, 1),
      0 0 0 6px rgba(220, 38, 38, 0.2);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .timeline-phase:hover .timeline-dot {
    transform: scale(1.1);
    box-shadow: 
      0 6px 20px rgba(220, 38, 38, 0.5),
      0 0 0 4px rgba(255, 255, 255, 1),
      0 0 0 8px rgba(220, 38, 38, 0.3);
  }

  .dot-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
  }

  /* Timeline Card Wrapper */
  .timeline-card-wrapper {
    position: relative;
  }

  /* Timeline Card */
  .timeline-card {
    background: #ffffff;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  /* Subtle gradient overlay on hover */
  .timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .timeline-card:hover::before {
    opacity: 1;
  }

  /* Card Title */
  .card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #111111;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(220, 38, 38, 0.15);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  /* Card Content */
  .card-content {
    color: #374151;
  }

  .card-content p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: #374151;
  }

  .card-content p:last-of-type:not(:only-of-type) {
    margin-bottom: 1.5rem;
  }

  .card-content em {
    font-style: italic;
    color: #1F2937;
  }

  .card-content strong {
    font-weight: 700;
    color: #111111;
  }


  /* Card Grid (for Fase 05) */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
  }

  .grid-col .card-list {
    margin-top: 0;
  }

  /* ========== RESPONSIVE ========== */

  @media (max-width: 991px) {
    .fasi-timeline-section {
      padding: 3rem 0;
    }

    .timeline-wrapper {
      padding-left: 70px;
    }

    .timeline-wrapper::before {
      left: 22px;
    }

    .timeline-dot {
      left: -70px;
      width: 52px;
      height: 52px;
    }

    .dot-number {
      font-size: 1.35rem;
    }

    .card-title {
      font-size: 1.5rem;
    }

    .card-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }

  @media (max-width: 767px) {
    .fasi-timeline-section {
      padding: 1rem 0;
    }

    .timeline-wrapper {
      padding-left: 50px;
    }

    .timeline-wrapper::before {
      left: 17px;
      width: 3px;
      top: 20px;
      bottom: 20px;
    }

    .timeline-dot {
      left: -50px;
      width: 44px;
      height: 44px;
      box-shadow: 
        0 3px 12px rgba(220, 38, 38, 0.4),
        0 0 0 3px rgba(255, 255, 255, 1),
        0 0 0 5px rgba(220, 38, 38, 0.2);
    }

    .timeline-phase:hover .timeline-dot {
      box-shadow: 
        0 4px 16px rgba(220, 38, 38, 0.5),
        0 0 0 3px rgba(255, 255, 255, 1),
        0 0 0 6px rgba(220, 38, 38, 0.3);
    }

    .dot-number {
      font-size: 1.2rem;
    }

    .timeline-card {
      padding: 0.6rem;
    }

    .card-title {
      font-size: 1.35rem;
      margin-bottom: 1.25rem;
      padding-bottom: 0.875rem;
    }

    .card-content p {
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .card-list li {
      font-size: 0.9rem;
      padding: 0.75rem 0 0.75rem 0;
    }

    .card-list li::before {
      font-size: 1.1rem;
      top: 0.75rem;
    }

    .timeline-phase {
      margin-bottom: 2.5rem;
    }
  }

  @media (max-width: 575px) {
    .timeline-wrapper {
      padding-left: 45px;
    }

    .timeline-wrapper::before {
      left: 15px;
    }

    .timeline-dot {
      left: -45px;
      width: 40px;
      height: 40px;
    }

    .dot-number {
      font-size: 1.1rem;
    }

    .card-title {
      font-size: 1.25rem;
    }
  }

  /* ========== PRINT STYLES ========== */
  @media print {
    .timeline-wrapper::before {
      background: #000000 !important;
    }

    .timeline-dot {
      background: #000000 !important;
      box-shadow: none !important;
    }

    .timeline-card {
      box-shadow: none !important;
      border: 1px solid #000000 !important;
      page-break-inside: avoid;
    }
  }

    /* Contact List */
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
  }

  .contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
  }

  .contact-list li:last-child {
    border-bottom: none;
  }

  .contact-list li i {
    font-size: 1.1rem;
    color: var(--concrete-gray);
    flex-shrink: 0;
  }

  .contact-list li a {
    color: var(--steel-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
  }

  .contact-list li a:hover {
    color: var(--danger-red);
  }

  .contact-list li span {
    color: var(--steel-gray);
    font-weight: 500;
  }

  /* Map Container */
  .map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(0, 0, 0, 0.1);
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(110%);
  }

  /* Responsive */
  @media (max-width: 991px) {
    .map-container {
      height: 400px;
    }
  }

  @media (max-width: 767px) {
    .map-container {
      height: 350px;
      border-radius: 12px;
    }
  }


  /* Responsive Hero */
@media (max-width: 991px) {

  .hero-video-container iframe {
    min-width: 200vh; /* Più zoom su tablet */
  }
}

@media (max-width: 767px) {

  .hero-video-container iframe {
    width: 250vh; /* Più zoom su mobile */
    height: 800px;
    min-width: auto;
    min-height: auto;
  }
}
