    /* ===== CSS VARIABLES ===== */
    :root {
      /* Colori principali */
      --primary-red: #E41E26;
      --dark-red: #B91820;
      --black: #0A0A0A;
      --white: #FFFFFF;
      --gray-dark: #1E1E1E;
      --gray-medium: #2A2A2A;
      --gray-light: #F5F5F5;
      --text-light: #CCCCCC;
      
      /* Tipografia */
      --font-display: 'Archivo', sans-serif;
      --font-body: 'Inter', sans-serif;
      
      /* Spaziature */
      --section-padding: 120px;
      --container-padding: 80px;
      
      /* Transizioni */
      --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-smooth: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      
      /* Ombre */
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
      --shadow-lg: 0 12px 40px rgba(228, 30, 38, 0.15);
    }

    /* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-body);
      color: var(--black);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
    h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
    h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
    h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

    p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #4A4A4A;
    }

    /* ===== UTILITIES ===== */
    .text-red { color: var(--primary-red) !important; }
    .bg-red { background-color: var(--primary-red) !important; }
    .bg-black { background-color: var(--black) !important; }
    .bg-gray-dark { background-color: var(--gray-dark) !important; }
    .bg-gray-light { background-color: var(--gray-light) !important; }

    .section-padding {
      padding: var(--section-padding) 0;
    }

    /* ===== NAVBAR MINIMALE ===== */
    .navbar {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      background: rgb(255, 255, 255);
      backdrop-filter: blur(20px);
      padding: 0.3rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar.scrolled {
      padding: 0.1rem 0;
      box-shadow: var(--shadow-sm);
    }

    .navbar-brand {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: 1.5rem;
      color: var(--black) !important;
      letter-spacing: -0.03em;
      transition: var(--transition-base);
    }

    .navbar-brand span {
      color: var(--primary-red);
    }

    .navbar-nav {
      gap: 0.5rem;
    }

    .nav-link {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--black) !important;
      padding: 0.6rem 1.2rem !important;
      position: relative;
      transition: var(--transition-base);
    }

    .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--primary-red);
      transition: var(--transition-base);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
      width: 0%;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-red) !important;
    }

    /* ===== HERO SECTION ===== */
    .hero-section {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--black);
    }

    .hero-swiper {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    .hero-slide {
      position: relative;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(0, 0, 0, 0.3));
    }
/* Hero Content Wrapper */
.hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-content-wrapper * {
  pointer-events: auto;
}

/* Hero Text Swiper */
.hero-text-swiper {
  width: 100%;
}

.hero-text-swiper .swiper-slide {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-text-swiper .swiper-slide-active {
  opacity: 1;
}

/* Adjust pagination z-index */
.hero-section .swiper-pagination {
  z-index: 20;
}
    .hero-title {
      font-size: clamp(3rem, 8vw, 5rem);
      font-weight: 900;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      color: #fff ;
    }

    .hero-subtitle {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      font-weight: 300;
      margin-bottom: 3rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .btn-hero {
      display: inline-block;
      padding: 1.2rem 3rem;
      background: var(--primary-red);
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-decoration: none;
      border: none;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }

    .btn-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--dark-red);
      transition: var(--transition-base);
      z-index: -1;
    }

    .btn-hero:hover {
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .btn-hero:hover::before {
      left: 0;
    }

    /* Swiper Controls */
    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: #adadad;
      opacity: 0.5;
    }

    .swiper-pagination-bullet-active {
      background: var(--primary-red);
      opacity: 1;
      width: 40px;
      border-radius: 6px;
    }

    /* ===== ABOUT SECTION ===== */
    .about-section {
      background: var(--white);
    }

    .section-title {
      position: relative;
      display: inline-block;
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 3rem;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 4px;
      background: var(--primary-red);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .stat-item {
      text-align: center;
      padding: 2rem;
      background: var(--gray-light);
      transition: var(--transition-base);
      border-radius: 4px;
    }

    .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--primary-red);
      line-height: 1;
      display: block;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--black);
    }

    /* ===== DISCIPLINE SECTION ===== */
    .discipline-section {
      background: var(--gray-dark);
      color: var(--white);
    }

    .discipline-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .discipline-card {
      background: var(--gray-medium);
      padding: 3rem 2rem;
      text-align: center;
      transition: var(--transition-smooth);
      border-left: 4px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .discipline-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
      transition: var(--transition-base);
      z-index: 0;
    }

    .discipline-card:hover::before {
      width: 100%;
    }

    .discipline-card:hover {
      transform: translateY(-10px);
      border-left-color: var(--primary-red);
    }

    .discipline-card > * {
      position: relative;
      z-index: 1;
    }

    .discipline-icon {
      font-size: 3.5rem;
      color: var(--primary-red);
      margin-bottom: 1.5rem;
      transition: var(--transition-base);
    }

    .discipline-card:hover .discipline-icon {
      color: var(--white);
      transform: scale(1.1);
    }

    .discipline-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .discipline-desc {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .discipline-card:hover .discipline-desc {
      color: rgba(255, 255, 255, 0.95);
    }

    /* ===== TEAM SECTION ===== */
    .team-section {
      background: var(--gray-light);
    }

    .team-swiper {
      padding: 1rem 0 3rem;
    }

    .team-card {
      background: var(--white);
      overflow: hidden;
      transition: var(--transition-base);
      height: 100%;
    }


    .team-image {
      position: relative;
      overflow: hidden;
      padding-top: 80%;
      background: var(--gray-medium);
    }

    .team-image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      object-fit: cover;
      transition: var(--transition-base);
    }

    .team-card:hover .team-image img {
      transform: scale(1.0);
    }

    .team-info {
      padding: 2rem;
      text-align: center;
    }

    .team-name {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--black);
    }


    /* ===== RESULTS SECTION ===== */
    .results-section {
      background: var(--white);
    }

    .result-card {
      background: var(--gray-light);
      padding: 2.5rem;
      margin-bottom: 2rem;
      border-left: 6px solid var(--primary-red);
      transition: var(--transition-base);
    }

    .result-card:hover {
      transform: translateX(10px);
      box-shadow: var(--shadow-md);
    }

    .result-athlete {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--black);
    }

    .result-achievement {
      font-size: 1.1rem;
      color: var(--primary-red);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .result-details {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.6;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      background: var(--primary-red);
      color: var(--white);
      text-align: center;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
    }

    .cta-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .cta-text {
      font-size: 1.3rem;
      margin-bottom: 3rem;
      opacity: 0.95;
      position: relative;
      z-index: 1;
      color: #fff;
    }

    .btn-cta {
      display: inline-block;
      padding: 1.2rem 3rem;
      background: var(--white);
      color: var(--primary-red);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-decoration: none;
      transition: var(--transition-smooth);
      position: relative;
      z-index: 1;
    }

    .btn-cta:hover {
      background: var(--black);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* ===== CONTACT SECTION ===== */
    .contact-section {
      background: var(--white);
      color: var(--dark);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3rem;
      margin-top: 4rem;
    }

    .contact-item {
      text-align: center;
    }

    .contact-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--black);
      border-radius: 50%;
      font-size: 2rem;
      transition: var(--transition-smooth);
      color: #fff;
    }

    .contact-item:hover .contact-icon {
      transform: rotate(360deg) scale(1.1);
    }

    .contact-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .contact-info {
      color: var(--black);
    }

    .contact-info a {
      color: var(--black);
      text-decoration: none;
      transition: var(--transition-base);
    }

    .contact-info a:hover {
      color: var(--primary-red);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--black);
      color: var(--white);
      padding: 4rem 0 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-section h5 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      color: var(--primary-red);
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: var(--text-light);
      text-decoration: none;
      transition: var(--transition-base);
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      color: var(--primary-red);
      padding-left: 5px;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .social-icon {
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-medium);
      border-radius: 50%;
      color: var(--white);
      font-size: 1.2rem;
      transition: var(--transition-base);
      text-decoration: none;
    }

    .social-icon:hover {
      background: var(--primary-red);
      transform: translateY(-5px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      text-align: center;
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .footer-bottom a {
      color: var(--primary-red);
      text-decoration: none;
      font-weight: 600;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    /* ===== WHATSAPP BUTTON ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 10px;
      right: 10px;
      width: 60px;
      height: 60px;
      background: #25D366;
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: var(--shadow-lg);
      z-index: 999;
      transition: var(--transition-smooth);
      text-decoration: none;
      opacity: 0;
      transform: translateY(100px);
    }

    .whatsapp-float.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .whatsapp-float:hover {
      background: #128C7E;
      transform: translateY(-5px) scale(1.1);
    }

    /* ===== SCROLL TO TOP ===== */
    .scroll-top {
      position: fixed;
      bottom: 100px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--primary-red);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: var(--shadow-md);
      z-index: 999;
      transition: var(--transition-smooth);
      cursor: pointer;
      opacity: 0;
      transform: translateY(100px);
      text-decoration: none;
    }

    .scroll-top.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .scroll-top:hover {
      background: var(--dark-red);
      transform: translateY(-5px);
    }

      @media (max-width: 1291px) {
      .hero-title {
          font-size: 3rem !important;
        }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      :root {
        --section-padding: 80px;
      }
      .hero-section {
      height: 800px !important;
      }

      .hero-title {
        font-size: 2.5rem !important;
      }

      .discipline-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      :root {
        --section-padding: 60px;
      }

      .navbar-nav {
        gap: 0;
        padding: 1rem 0;
      }

      .nav-link {
        padding: 0.8rem 1rem !important;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .whatsapp-float,
      .scroll-top {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
      }

      .scroll-top {
        bottom: 90px;
      }
    }

    /* ===== LOADING ANIMATION ===== */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeIn 0.8s ease-out;
    }

    /* CTA dentro la card (aggiungi al tuo CSS esistente) */
    .discipline-card{
      display:flex;
      flex-direction:column;
    }

    .discipline-cta{
      font-weight:700;
      text-decoration:none;
      color:#fff;           /* coerente con titoli white */
      opacity:.9;
    }

    .discipline-cta:hover{
      opacity:1;
      text-decoration:underline;
      text-underline-offset: 6px;
    }

    /* ===== DISCIPLINE PAGE SPECIFIC STYLES ===== */

/* PAGE HEADER */
.page-header {
  margin-top: 80px;
  padding: 200px 0 160px;
  background-image: url('../newpics/23.jpg');
  color: var(--white);
  text-align: start;
  position: relative;
  overflow: hidden;
}


    .page-header::before  {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(0, 0, 0, 0.3));
    }

.page-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* APP SECTION */
.app-section {
  background: var(--white);
}

.app-preview {
  max-width: 300px;
  margin: 0 auto;
}

.store-badge {
  height: 50px !important;
  transition: var(--transition-base);
}

.store-badge:hover {
  transform: translateY(-3px);
}

.logo{
  width: 80px;
}


/* RESPONSIVE ADDITIONS */
@media (max-width: 991px) {
  .page-header {
    padding: 130px 0 110px;
  }
}

@media (max-width: 768px) {
  .banner-swiper {
    height: 400px;
  }
  .logo{
  width: 60px;
}

}
