/* ==========================================================
   Academy Futura - Pisa
   Demo realizzata da Future Is Now - futureisnow.cloud
   Palette: Viola #7B2CBF | Viola dark #5A189A | Accent giallo #FFD60A
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --primary: #7B2CBF;
  --primary-dark: #5A189A;
  --primary-light: #C77DFF;
  --primary-soft: rgba(123, 44, 191, 0.08);
  --accent: #FFD60A;
  --accent-dark: #E6C000;
  --accent-soft: rgba(255, 214, 10, 0.15);
  --bg: #F8F4FC;
  --white: #FFFFFF;
  --ink: #1A0E2E;
  --ink-soft: #5A5570;
  --border: #E8E0F0;
  --shadow-sm: 0 1px 3px rgba(26, 14, 46, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 14, 46, 0.10);
  --shadow-lg: 0 12px 32px rgba(26, 14, 46, 0.14);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- NAV --- */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand-logo { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
}
.brand-sub { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: var(--transition);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 9999px;
  font-weight: 600 !important;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--primary-dark); box-shadow: 0 4px 14px rgba(123, 44, 191, 0.35); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  font-family: var(--font-sans);
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123, 44, 191, 0.35); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary-soft); }
.btn-accent { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255, 214, 10, 0.45); }
.btn-large { padding: 18px 40px; font-size: 17px; }
.btn-block { width: 100%; }

/* --- EYEBROW --- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* --- HERO --- */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--white) 60%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero h1 em { color: var(--primary); font-style: normal; }
.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-trust > div { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1;
}
.hero-trust span { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}
.hero-tag-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  padding-left: 2px;
}
.hero-image-tag p { font-size: 13px; line-height: 1.4; color: var(--ink); }

/* --- INTRO STATEMENT --- */
.intro-statement {
  padding: 80px 0;
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
}
.intro-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}
.intro-quote em {
  color: var(--accent);
  font-style: normal;
}

/* --- SECTIONS BASE --- */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-head h2 em { color: var(--primary); font-style: normal; }
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --- CHI SIAMO --- */
.section-chi { background: var(--bg); }
.chi-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.chi-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.chi-image img { width: 100%; height: 480px; object-fit: cover; }
.chi-text h2 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.chi-text h2 em { color: var(--primary); font-style: normal; }
.chi-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}
.credentials { margin-top: 24px; }
.credentials li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.credentials li:last-child { border-bottom: none; }

/* --- VALORI --- */
.section-valori { background: var(--white); }
.valori-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.valore-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.valore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.valore-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}
.valore-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.valore-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* --- CORSI --- */
.section-corsi { background: var(--bg); }
.corsi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.corso-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.corso-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.corso-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.corso-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.corso-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.corso-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 4px;
}
.corso-livello {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}
.livello-base { background: rgba(74, 222, 128, 0.12); color: #15803d; }
.livello-medio { background: rgba(251, 191, 36, 0.15); color: #b45309; }
.livello-avanzato { background: rgba(239, 68, 68, 0.1); color: #b91c1c; }
.corso-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.corso-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.corso-features { margin-bottom: 24px; }
.corso-features li {
  padding: 5px 0 5px 22px;
  font-size: 13px;
  position: relative;
  color: var(--ink);
}
.corso-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.corso-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.corso-meta > div {
  display: flex;
  flex-direction: column;
}
.corso-meta strong { font-size: 14px; color: var(--ink); font-weight: 700; }
.corso-meta span { font-size: 11px; color: var(--ink-soft); }
.corso-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* --- PERCORSI --- */
.section-percorsi { background: var(--white); }
.percorsi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.percorso-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.percorso-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.percorso-card.featured {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}
.percorso-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.percorso-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.5;
}
.percorso-card.featured .percorso-num { color: var(--accent); opacity: 0.6; }
.percorso-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.percorso-card.featured h3 { color: var(--white); }
.percorso-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.percorso-card.featured .percorso-sub { color: rgba(255,255,255,0.75); }
.percorso-timeline { margin-bottom: 28px; }
.timeline-step {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.percorso-card.featured .timeline-step { border-bottom-color: rgba(255,255,255,0.15); }
.timeline-step:last-child { border-bottom: none; }
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
  margin-top: 5px;
}
.percorso-card.featured .t-dot { background: var(--accent); }
.timeline-step strong { font-size: 13px; font-weight: 700; color: var(--ink); display: block; }
.percorso-card.featured .timeline-step strong { color: var(--white); }
.timeline-step p { font-size: 12px; color: var(--ink-soft); line-height: 1.5; margin-top: 2px; }
.percorso-card.featured .timeline-step p { color: rgba(255,255,255,0.7); }
.percorso-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.percorso-card.featured .percorso-footer { border-top-color: rgba(255,255,255,0.15); }
.percorso-durata {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.percorso-card.featured .percorso-durata {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.percorso-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}
.percorso-card.featured .percorso-price { color: var(--accent); }

/* --- DOCENTI --- */
.section-docenti { background: var(--bg); }
.docenti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.docente-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
}
.docente-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.docente-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}
.docente-body { padding: 20px; }
.docente-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.docente-ruolo {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.docente-ruolo span { color: var(--primary); font-weight: 600; }
.docente-materia {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.docente-bio { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* --- TESTIMONIANZE --- */
.section-testi { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--bg);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: var(--accent-dark); margin-bottom: 16px; font-size: 18px; letter-spacing: 2px; }
.testi-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author { display: flex; gap: 14px; align-items: center; }
.testi-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-soft);
}
.testi-author strong { display: block; color: var(--ink); font-size: 14px; }
.testi-author span { font-size: 12px; color: var(--ink-soft); }

/* --- BANNER --- */
.section-banner { padding: 60px 0; background: var(--primary-soft); }
.banner-inner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
}
.banner-inner h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.banner-inner h2 em { color: var(--accent); font-style: normal; }
.banner-inner p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  opacity: 0.9;
}

/* --- FAQ --- */
.section-faq { background: var(--bg); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 0 24px;
  transition: var(--transition);
}
.faq-item[open] { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  padding: 20px 40px 20px 0;
  position: relative;
  list-style: none;
  font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 300;
  color: var(--primary);
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding-bottom: 20px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
}

/* --- CONTATTI --- */
.section-contatti { background: var(--white); }
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contatti-text h2 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.contatti-text h2 em { color: var(--primary); font-style: normal; }
.contatti-text > p { color: var(--ink-soft); margin-bottom: 28px; line-height: 1.65; }
.contatti-info > div {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.contatti-info > div:last-child { border-bottom: none; }
.contatti-info span:first-child { font-size: 20px; }
.contatti-info strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: 13px; font-weight: 700; }
.contatti-info > div > div { font-size: 14px; color: var(--ink-soft); }
.contatti-form-wrap {
  background: var(--bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.contatti-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contatti-form label { display: block; margin-bottom: 16px; }
.contatti-form label > span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.contatti-form input,
.contatti-form select,
.contatti-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  transition: var(--transition);
}
.contatti-form input:focus,
.contatti-form select:focus,
.contatti-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-check {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.form-check input { width: auto !important; margin-top: 3px; flex-shrink: 0; }
.form-check a { color: var(--primary); text-decoration: underline; }
.form-promise {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}

/* --- FOOTER --- */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand-name { color: var(--white); display: block; margin-bottom: 4px; font-size: 20px; }
.footer .brand-sub { color: var(--primary-light); display: block; margin-bottom: 16px; font-size: 11px; }
.footer > .container > .footer-grid > div > p {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.7;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer ul li { padding: 5px 0; }
.footer a { font-size: 14px; opacity: 0.8; transition: var(--transition); }
.footer a:hover { opacity: 1; color: var(--accent); }
.footer p { font-size: 14px; opacity: 0.75; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- DEMO BADGE --- */
.demo-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.45);
  font-size: 13px;
  max-width: 380px;
  z-index: 200;
}
.demo-badge a { color: var(--accent); font-weight: 600; text-decoration: underline; }
.demo-badge a:hover { color: var(--accent-dark); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .corsi-grid { grid-template-columns: repeat(2, 1fr); }
  .docenti-grid { grid-template-columns: repeat(2, 1fr); }
  .valori-grid { grid-template-columns: repeat(2, 1fr); }
  .percorsi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 48px 0 64px; }
  .hero-grid,
  .chi-grid,
  .contatti-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.4rem; }
  .chi-text h2,
  .contatti-text h2,
  .banner-inner h2 { font-size: 1.9rem; }
  .section-head h2 { font-size: 1.8rem; }
  .intro-quote { font-size: 1.5rem; }
  section { padding: 64px 0; }
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-200%);
    transition: var(--transition);
    z-index: 99;
    gap: 0;
  }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; padding-top: 12px; }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .valori-grid,
  .docenti-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .corsi-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; flex-wrap: wrap; }
  .hero-image img { height: 340px; }
  .banner-inner { padding: 40px 24px; }
  .demo-badge { right: 8px; left: 8px; max-width: none; font-size: 12px; bottom: 12px; }
  .contatti-form-wrap { padding: 28px 20px; }
  .percorsi-grid { max-width: 100%; }
  .percorso-card.featured { grid-column: auto; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .btn-large { padding: 16px 28px; font-size: 15px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
