/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --off-white: #f8f6f3;
  --red: #c2282e;
  --red-dark: #a11f24;
  --grey-light: #e8e4df;
  --grey: #8a8580;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-text {
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

/* On academy, navbar starts transparent over dark hero */
.navbar .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

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

.navbar .nav-links .nav-back {
  color: rgba(255, 255, 255, 0.4);
  border-left-color: rgba(255, 255, 255, 0.15);
}

.navbar .nav-links .nav-back:hover {
  color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  padding: 0.8rem 0;
  backdrop-filter: blur(12px);
}

.navbar.scrolled .nav-links a {
  color: var(--black);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--red);
}

.navbar.scrolled .nav-links .nav-back {
  color: var(--grey);
  border-left-color: var(--grey-light);
}

.navbar.scrolled .nav-links .nav-back:hover {
  color: var(--black);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-wov-logo {
  height: 42px;
  width: auto;
  display: block;
  filter: invert(1);
  transition: filter 0.4s ease;
}

.navbar.scrolled .navbar-wov-logo {
  filter: none;
}

.navbar-logo .logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.navbar-logo .logo-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  transition: color 0.4s ease;
}

.navbar-logo .logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.4s ease;
}

/* Inversione su sfondo bianco */
.navbar.scrolled .logo-brand {
  color: var(--red);
}

.navbar.scrolled .logo-sub {
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--red);
  transition: width 0.3s ease;
}

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

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

.nav-links .nav-back {
  font-size: 0.78rem;
  color: var(--grey);
  border-left: 1px solid var(--grey-light);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.nav-links .nav-back:hover {
  color: var(--black);
}

.nav-links .nav-back::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background-color: var(--black);
}

.navbar.scrolled .hamburger.active span {
  background-color: var(--black);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-color: var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-logo {
  width: auto;
  max-width: 320px;
  height: auto;
  margin: 0 auto 2.5rem;
  filter: invert(1);
}

.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 .accent {
  color: var(--red);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover {
  background-color: var(--red-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 auto 0.5rem;
  animation: scrollLine 2s ease-in-out infinite;
}

.scroll-indicator p {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== ABOUT ===== */
.about {
  padding: 8rem 0;
  background-color: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-box {
  width: 100%;
  position: relative;
  background-color: var(--black);
}

.about-visual-box::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.about-visual-box::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-visual:hover .about-photo {
  transform: scale(1.02);
}

.about-stats-overlay {
  display: flex;
  gap: 0;
  background-color: var(--off-white);
  padding: 1.4rem 2rem;
  position: relative;
}

.about-stats-overlay::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.about-stats-overlay::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  border-right: 1px solid var(--grey-light);
  padding: 0 1rem;
}

.stat-item:last-child {
  border-right: none;
}


.stat-item strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat-item span {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.3rem;
}

.about-content .section-text {
  margin-bottom: 1.5rem;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.3s ease;
}

.learn-more-link:hover {
  gap: 1rem;
  color: var(--red);
}

.learn-more-link svg {
  width: 14px;
  height: 14px;
}

/* ===== PERCORSO ===== */
.percorso {
  padding: 8rem 0;
  background-color: var(--off-white);
}

.percorso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.percorso-card {
  background-color: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.percorso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--grey-light);
  transition: background-color 0.4s ease;
}

.percorso-card:hover::before {
  background-color: var(--red);
}

.percorso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.percorso-card.featured {
  background-color: var(--black);
}

.percorso-card.featured::before {
  background-color: var(--red);
}

.percorso-card.featured .card-year {
  color: rgba(255, 255, 255, 0.06);
}

.percorso-card.featured .card-level {
  color: var(--red);
}

.percorso-card.featured h3,
.percorso-card.featured p {
  color: rgba(255, 255, 255, 0.85);
}

.percorso-card.featured p {
  color: rgba(255, 255, 255, 0.5);
}

.percorso-card.featured ul li {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.percorso-card.featured ul li::before {
  background-color: var(--red);
}

.card-year {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  margin-bottom: -1.5rem;
  user-select: none;
}

.card-level {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.percorso-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.percorso-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.percorso-card ul {
  list-style: none;
}

.percorso-card ul li {
  font-size: 0.88rem;
  color: var(--black);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.percorso-card ul li:last-child {
  border-bottom: none;
}

.percorso-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== ARGOMENTI ===== */
.argomenti {
  padding: 8rem 0;
  background-color: var(--white);
}

.argomenti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.argomento-item {
  padding: 2rem;
  border: 1px solid var(--grey-light);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.argomento-item:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.argomento-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--off-white);
  color: var(--red);
  margin-bottom: 1.2rem;
}

.argomento-icon svg {
  width: 22px;
  height: 22px;
}

.argomento-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.argomento-item p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===== ATTIVITÀ BANNER ===== */
.attivita-banner {
  padding: 7rem 0;
  background-color: var(--black);
  color: var(--white);
}

.attivita-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.attivita-banner .section-label {
  color: var(--red);
}

.attivita-banner .section-title {
  color: var(--white);
}

.attivita-banner .section-text {
  color: rgba(255, 255, 255, 0.5);
  max-width: 100%;
}

.attivita-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.attivita-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.attivita-item:last-child {
  border-bottom: none;
}

.attivita-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.attivita-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.3px;
}

.attivita-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ===== ISCRIZIONE ===== */
.iscrizione {
  padding: 8rem 0;
  background-color: var(--white);
}

.iscrizione .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.iscrizione-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.iscrizione-requisiti {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-light);
}

.iscrizione-requisiti h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}

.iscrizione-requisiti ul {
  list-style: none;
}

.iscrizione-requisiti ul li {
  font-size: 0.92rem;
  color: var(--black);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.iscrizione-requisiti ul li:last-child {
  border-bottom: none;
}

.iscrizione-requisiti ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-light);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--off-white);
  color: var(--red);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.25rem;
}

.contact-detail a {
  font-size: 1rem;
  color: var(--black);
}

.contact-detail a:hover {
  color: var(--red);
}

/* ===== FORMS ===== */
.registration-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 1rem;
  border: 1px solid var(--grey-light);
  background-color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group--checkbox {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0;
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border: 1px solid var(--grey-light);
  background-color: var(--off-white);
  cursor: pointer;
  accent-color: var(--red);
  margin-top: 2px;
}

.checkbox-label span {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.checkbox-label span a {
  color: var(--red);
}

.checkbox-label span a:hover {
  text-decoration: underline;
}

.form-submit {
  padding: 1rem 2.5rem;
  background-color: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background-color: var(--red-dark);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-feedback {
  font-size: 0.85rem;
  min-height: 1.2em;
}

.form-feedback.success {
  color: #2e7d32;
}

.form-feedback.error {
  color: var(--red);
}

.form-note {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.6;
}

.form-note a {
  color: var(--red);
}

.form-note a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0;
  background-color: var(--off-white);
  border-top: 1px solid var(--grey-light);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-wov-logo {
  height: 52px;
  width: auto;
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-wov-logo:hover {
  opacity: 1;
}

.footer p {
  font-size: 0.8rem;
  color: var(--grey);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--grey);
  transition: color 0.3s ease;
}

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

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .argomenti-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-links .nav-back {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .attivita-banner .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .iscrizione .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-logo {
    width: 95px;
    height: 95px;
  }

  .hero-badges {
    gap: 0.5rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}
