/* ============================================
   MASTERY EXPERIENCE — Premium Dark & Gold
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --gold: #d4af37;
  --gold-light: #f0d875;
  --gold-dark: #b8860b;
  --gold-shine: linear-gradient(135deg, #b8860b 0%, #f0d875 25%, #d4af37 50%, #f0d875 75%, #b8860b 100%);
  --text: #e8e6e3;
  --text-muted: #a0a0a0;
  --border: rgba(212, 175, 55, 0.28);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden { display: none !important; }

/* ========== VIDEO INTRO ========== */
.video-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
}

.video-intro.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-intro video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #0a0a0a;
  opacity: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4.5rem;
  background: transparent;
  pointer-events: none;
}

.btn-enter {
  display: none;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(6px);
  pointer-events: auto;
}

.btn-enter.is-visible {
  display: inline-block;
}

.btn-enter:hover {
  background: var(--gold);
  color: var(--black);
}

.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201, 162, 39, 0.15);
}

.video-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 90px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
}

.logo-img-footer {
  height: 110px;
  max-width: 300px;
}

@media (max-width: 640px) {
  .logo-img {
    height: 64px;
    max-width: 200px;
  }
  .logo-img-footer {
    height: 80px;
    max-width: 220px;
  }
}


.logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ========== SECTIONS ========== */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-alt {
  background: var(--black-soft);
}

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

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.gold {
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

/* Oro lucido per titoli e accenti */
.eyebrow,
.logo-text,
.logo-mark,
.section-title,
.mission-quote,
.nav-link:hover,
.nav-link.active,
.value-number,
.service-icon,
.service-cta,
.result-level,
.contact-label,
.btn-outline,
.btn-enter {
  color: var(--gold);
}

.eyebrow,
.logo-text,
.logo-mark,
.mission-quote,
.result-level {
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-partner {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-partner strong {
  color: var(--gold);
  font-weight: 500;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ========== CHI SIAMO ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-text strong {
  color: var(--text);
  font-weight: 500;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.value-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--black-card);
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--gold);
}

.value-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== SERVIZI ========== */

/* ========== METHOD: COSA COME PERCHE ========== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.method-card {
  border: 1px solid var(--border);
  background: var(--black-card);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s ease;
}

.method-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
}

.method-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.method-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.method-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

.method-footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.25rem;
}

@media (max-width: 900px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

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

.service-card {
  padding: 2.25rem;
  border: 1px solid var(--border);
  background: var(--black);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-icon {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-problem {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.service-benefit {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.service-cta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}

.service-cta:hover {
  color: var(--gold-light);
}

/* ========== MISSION ========== */
.mission-section {
  background: var(--black);
}

.mission-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.mission-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.mission-text strong {
  color: var(--text);
}

.mission-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  padding: 2.5rem 0;
  margin: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ========== UPV ========== */
.upv-framework {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 3rem;
}

.upv-step {
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: var(--black);
  text-align: center;
}

.upv-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
}

.upv-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.upv-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.upv-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  align-self: center;
  opacity: 0.6;
}

.upv-cta {
  text-align: center;
}

/* ========== QUIZ ========== */
.quiz-wrapper {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--black-card);
  padding: 2.5rem;
}

.quiz-progress {
  height: 2px;
  background: rgba(201, 162, 39, 0.15);
  margin-bottom: 2rem;
}

.quiz-progress-bar {
  height: 100%;
  width: 12.5%;
  background: var(--gold);
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.quiz-option:hover,
.quiz-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.quiz-option input {
  accent-color: var(--gold);
}

.quiz-scale {
  padding: 1rem 0;
}

.quiz-scale input[type="range"] {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 2px;
  outline: none;
}

.quiz-scale input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.scale-labels span:nth-child(2) {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.quiz-step textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--black);
  color: var(--text);
  resize: vertical;
  min-height: 90px;
  transition: border-color var(--transition);
}

.quiz-step textarea:focus {
  border-color: var(--gold);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.quiz-result {
  text-align: center;
  padding: 1rem 0;
}

.quiz-result h3 {
  margin-bottom: 1rem;
}

.result-level {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

#result-message {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ========== BOOKING ========== */
.booking-wrapper {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--black);
  padding: 2.5rem;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.booking-step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.booking-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-option {
  display: block;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.booking-option:hover,
.booking-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.booking-option input {
  display: none;
}

.option-title {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.option-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.date-btn {
  padding: 0.85rem 0.5rem;
  border: 1px solid var(--border);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}

.date-btn:hover,
.date-btn.selected {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
}

.date-btn .day-name {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-slots h4 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.slot-btn {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.slot-btn:hover,
.slot-btn.selected {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--black-soft);
  color: var(--text);
  transition: border-color var(--transition);
}

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

.booking-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.booking-confirm {
  text-align: center;
  padding: 1.5rem 0;
}

.confirm-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.booking-confirm h3 {
  margin-bottom: 1rem;
}

#confirm-details {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.confirm-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ========== CONTATTI ========== */
.contact-intro {
  max-width: 520px;
  margin: 0.75rem auto 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.3fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.25rem;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-list a {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-list a:hover {
  color: var(--gold);
}

.contact-list span:not(.contact-label) {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}

.contact-social-block {
  padding-top: 0.25rem;
}

.contact-social-block .contact-label {
  margin-bottom: 0.65rem;
}

.contact-form-wrap {
  border: 1px solid var(--border);
  background: var(--black-card);
  padding: 1.75rem 1.75rem 1.5rem;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.contact-form {
  border: none;
  padding: 0;
  background: transparent;
}

.contact-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.contact-layout-merged {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.contact-chip {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--border);
  background: var(--black-card);
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--text);
  min-height: 84px;
}
.contact-chip strong {
  font-weight: 500;
  font-size: 0.95rem;
  word-break: break-word;
}
.contact-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.contact-chip-social {
  justify-content: center;
}
.contact-dual {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}
.contact-dual .booking-wrapper,
.contact-dual .contact-form-wrap {
  max-width: none;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--black-card);
}
.contact-dual .contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-dual .contact-form .form-grid {
  flex: 1;
}
.reply-note {
  margin: 0.35rem 0 0;
  color: var(--gold-light);
  font-size: 0.88rem;
  line-height: 1.55;
}
.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.25rem;
}
.confirm-actions a { text-decoration: none; }
.booking-lead {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: -0.5rem 0 1.25rem;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-dual {
    grid-template-columns: 1fr;
  }
  .contact-bar {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .contact-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .contact-form-wrap {
    padding: 1.35rem 1.15rem;
  }
}

.privacy {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.form-success {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.95rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold) !important;
  font-weight: 500;
}

.whatsapp-link:hover {
  color: var(--gold-light) !important;
}

.social-links {
  margin-top: 2.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
}

/* ========== FORMAZIONE FINANZIATA ========== */
.strategic-block {
  max-width: 820px;
  margin: 0 auto 4rem;
  text-align: center;
}

.strategic-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--gold);
  margin-bottom: 2rem;
}

.strategic-text {
  text-align: left;
  margin-bottom: 2.5rem;
}

.strategic-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.strategic-text strong {
  color: var(--gold);
  font-weight: 600;
}

.strategic-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1.45;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.finanziata-intro {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.finanziata-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.finanziata-intro strong {
  color: var(--text);
}

.europa-note {
  margin-top: 1.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.modalita-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.modalita-tags span {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.chart-box {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--black-card);
}

.chart-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  text-align: center;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.chart-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(100px, 180px) 1fr 48px;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.bar-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
}

.bar-track {
  height: 10px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-pct {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

.mission-uvp-box {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
}

.mission-uvp-box h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.mission-uvp-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.mission-uvp-box strong {
  color: var(--text);
}

.guided-box {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--black);
}

.guided-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.guided-box > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.guided-quiz { margin-top: 1.5rem; }
.guided-step { display: none; }
.guided-step.active { display: block; }
.guided-step p { font-weight: 500; margin-bottom: 1rem; }

.guided-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.guided-options label {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.guided-options label:hover,
.guided-options label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.guided-options input {
  margin-right: 0.5rem;
  accent-color: var(--gold);
}

.guided-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  gap: 1rem;
}

.guided-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--gold);
  text-align: center;
}

.guided-result h4 { margin-bottom: 0.75rem; }
.guided-result p { color: var(--text-muted); line-height: 1.6; }


/* ========== DISCIPLINE SHOWCASE + BRIDGE ========== */
.disciplines-showcase {
  margin: 3rem 0 2.5rem;
}

.showcase-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--text);
  margin-bottom: 0.6rem;
}

.showcase-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.disc-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.disc-track-wrap {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 28px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 28px), transparent 100%);
}

.disc-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.disc-track::-webkit-scrollbar {
  display: none;
}

.disc-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  border: 1px solid var(--border);
  background: var(--black-card);
  padding: 1.35rem 1.3rem;
  min-height: 160px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.disc-card:hover,
.disc-card:focus {
  border-color: rgba(212, 175, 55, 0.5);
  outline: none;
}

.disc-card h4 {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.disc-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.disc-nav {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--black-card);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.disc-nav:hover:not(:disabled) {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.disc-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.disc-carousel-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  margin-bottom: 2rem;
}

.showcase-title-lg {
  font-size: clamp(1.75rem, 4vw, 2.45rem) !important;
  line-height: 1.2;
  color: var(--text);
  text-transform: none;
}

.disc-section-header {
  margin-bottom: 1.75rem;
}

.disc-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.disc-card-base {
  transition: opacity 0.25s ease;
}

.disc-card-hover {
  position: absolute;
  inset: 0;
  padding: 1.25rem 1.3rem;
  background: linear-gradient(165deg, rgba(20,16,8,0.97), rgba(10,10,10,0.98));
  border: 1px solid rgba(212,175,55,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.disc-card:hover .disc-card-hover,
.disc-card:focus .disc-card-hover,
.disc-card.is-active .disc-card-hover {
  opacity: 1;
  transform: translateY(0);
}

.disc-card:hover .disc-card-base,
.disc-card:focus .disc-card-base,
.disc-card.is-active .disc-card-base {
  opacity: 0;
}

.disc-hover-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.disc-card-hover p {
  color: var(--text) !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

.disc-hover-cta {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.35rem;
}

/* Modal */
.disc-modal[hidden] { display: none !important; }
.disc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.disc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}

.disc-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 2rem 1.75rem 1.75rem;
  z-index: 1;
}

.disc-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.disc-modal-close:hover { color: var(--gold); }

.disc-modal-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.disc-modal-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text);
  margin-bottom: 1.35rem;
  line-height: 1.3;
  padding-right: 1.5rem;
}

.disc-modal-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.disc-modal-blocks h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.disc-modal-blocks p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.disc-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.disc-modal-actions .btn {
  flex: 1 1 auto;
  text-align: center;
  min-width: 180px;
}

/* Funnel */
.disc-funnel {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 960px;
  padding: 0 0.5rem;
}

.funnel-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--text);
  margin-bottom: 0.6rem;
}

.funnel-sub {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1.02rem;
}

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

.funnel-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--black-card);
  padding: 1.4rem 1.3rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
  min-height: 180px;
}

.funnel-option:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.funnel-option-primary {
  border-color: rgba(212,175,55,0.4);
  background: linear-gradient(165deg, rgba(212,175,55,0.08), var(--black-card));
}

.funnel-num {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.funnel-opt-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.funnel-opt-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0.85rem;
}

.funnel-opt-cta {
  font-size: 0.85rem;
  color: var(--gold);
}

@media (max-width: 800px) {
  .funnel-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .disc-nav {
    display: none;
  }
  .disc-track-wrap {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .disc-card {
    flex-basis: min(260px, 85vw);
  }
}

.discipline-bridge {
  text-align: center;
  border: 1px solid var(--border);
  background: var(--black);
  padding: 2.5rem 1.75rem;
  margin: 0 auto 3rem;
  max-width: 720px;
}

.bridge-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.bridge-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.bridge-guided {
  margin-bottom: 1.25rem;
}

.bridge-or {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1rem 0;
}

.bridge-cta {
  display: inline-block;
}

.discipline-section .discipline-item .disc-desc {
  display: none;
}

.discipline-section .discipline-item {
  padding: 0.65rem 0.85rem;
}


/* ========== FF CONVERSION BLOCK ========== */
.ff-main-title {
  font-size: clamp(1.6rem, 3.8vw, 2.35rem);
  line-height: 1.22;
}

.ff-opportunity {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.ff-opportunity p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ff-opportunity p strong {
  color: var(--text);
}


/* ========== DELIVERY MODES ========== */
.delivery-modes {
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 0 0.25rem;
}

.delivery-intro {
  text-align: center;
  margin-bottom: 1.75rem;
}

.delivery-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.delivery-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.delivery-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

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

.delivery-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--black-card);
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  min-height: 200px;
}

.delivery-card:hover,
.delivery-card:focus-visible {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  outline: none;
}

.delivery-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-icon svg {
  width: 100%;
  height: 100%;
}

.delivery-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.delivery-card-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1rem;
  flex: 1;
}

.delivery-card-more {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.delivery-modal[hidden] { display: none !important; }
.delivery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.delivery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.delivery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(88vh, 640px);
  overflow-y: auto;
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 2rem 1.75rem 1.75rem;
}

.delivery-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.delivery-modal-close:hover { color: var(--gold); }

.delivery-modal-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.delivery-modal-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1.15rem;
  line-height: 1.3;
  padding-right: 1.5rem;
}

.delivery-modal-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.delivery-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.delivery-modal-actions .btn {
  flex: 1 1 auto;
  text-align: center;
  min-width: 160px;
}

@media (max-width: 800px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  .delivery-card {
    min-height: 0;
  }
}

.ff-convert {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(165deg, rgba(212,175,55,0.1) 0%, var(--black-card) 40%, var(--black-card) 100%);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.06);
}

.ff-convert-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.9rem;
}

.ff-convert-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 1.75rem;
}

.ff-convert-text strong {
  color: var(--gold);
  font-weight: 600;
}

.ff-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 380px);
  padding: 1.15rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #0a0a0a;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.25);
}

.ff-cta-btn:hover {
  background: #e8c84a;
  border-color: #e8c84a;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.ff-convert-hint {
  margin-top: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .ff-convert {
    padding: 1.75rem 1.25rem;
  }
  .ff-cta-btn {
    width: 100%;
    min-width: 0;
    padding: 1.05rem 1.25rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }
}

.preverifica-box {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(165deg, rgba(212,175,55,0.06) 0%, var(--black-card) 35%, var(--black-card) 100%);
  padding: 2.75rem 2.5rem 2.5rem;
  max-width: 920px;
  margin: 0 auto 3rem;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.08);
}

.preverifica-header {
  text-align: center;
  margin-bottom: 2.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.preverifica-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.preverifica-title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.1rem;
  color: var(--text);
}

.preverifica-header h3,
.preverifica-title {
  color: var(--text);
}

.preverifica-cta-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.preverifica-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  margin: 0;
  padding: 0;
}

.preverifica-benefits li {
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.preverifica-benefits li::before {
  content: "✓ ";
  font-weight: 600;
}

.preverifica-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.radio-option {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.radio-option:hover,
.radio-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.radio-option input {
  margin-right: 0.4rem;
  accent-color: var(--gold);
}

.discipline-section {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.discipline-section h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.discipline-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.discipline-item {
  display: block;
  padding: 1rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.discipline-item:hover,
.discipline-item:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.discipline-item input {
  margin-right: 0.5rem;
  accent-color: var(--gold);
  vertical-align: top;
  margin-top: 0.2rem;
}

.disc-title {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.disc-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  padding-left: 1.4rem;
}

.preverifica-success {
  text-align: center;
  padding: 2rem 1rem;
}

.preverifica-success .success-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.preverifica-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.preverifica-success p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.finanziata-cta {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--black-soft);
}

.finanziata-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.finanziata-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
}

.footer-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.footer-text a {
  color: var(--gold);
  transition: color var(--transition);
}

.footer-text a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .upv-framework {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .upv-arrow {
    display: none;
  }

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

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 5rem 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

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

  .quiz-wrapper,
  .booking-wrapper,
  .contact-form,
  .preverifica-box {
    padding: 1.5rem;
  }

  .logo-text {
    display: none;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }

  .bar-label {
    text-align: left;
  }
}

/* ========== TALENT BANK / PORTALE ORO ========== */
.talent-section {
  background: var(--black);
  padding-bottom: 6rem;
}

.gold-portal {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  border: 1px solid var(--gold);
  background: linear-gradient(145deg, rgba(212,175,55,0.08) 0%, rgba(10,10,10,0.95) 40%, rgba(212,175,55,0.06) 100%);
  text-align: center;
  overflow: hidden;
  cursor: default;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.gold-portal::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, transparent 30%, rgba(240,216,117,0.4), transparent 70%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.portal-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240,216,117,0.12), transparent);
  animation: shineMove 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineMove {
  0% { left: -100%; }
  50% { left: 120%; }
  100% { left: 120%; }
}

.gold-portal:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.15), 0 0 40px rgba(212,175,55,0.08);
  border-color: var(--gold-light);
}

.gold-portal:hover .portal-shine {
  animation-duration: 2.5s;
}

.portal-content {
  position: relative;
  z-index: 2;
}

.portal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.portal-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.btn-portal {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.btn-portal:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(212,175,55,0.35);
}

/* Modal */
.talent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.talent-modal.open {
  opacity: 1;
  visibility: visible;
}

.talent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}

.talent-modal-panel {
  position: relative;
  z-index: 2;
  width: 94%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.talent-modal-x {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition);
}

.talent-modal-x:hover { color: var(--gold); }

.talent-screen { display: none; }
.talent-screen.active { display: block; animation: fadeIn 0.4s ease; }

.talent-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.talent-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text);
}

.talent-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.talent-sub {
  color: var(--text);
  margin-bottom: 2rem;
  font-weight: 500;
}

.talent-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.talent-door {
  text-align: left;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--black);
  cursor: pointer;
  transition: var(--transition);
  color: inherit;
}

.talent-door:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
  transform: translateY(-2px);
}

.door-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.door-title {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.door-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.talent-progress {
  height: 2px;
  background: rgba(212,175,55,0.15);
  margin-bottom: 1.5rem;
}

.talent-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--gold);
  transition: width 0.4s ease;
}

.talent-path-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.talent-step {
  display: none;
}

.talent-step.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.talent-step h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.talent-step select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--black);
  color: var(--text);
}

.talent-step select:focus {
  border-color: var(--gold);
  outline: none;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.check-grid label {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.check-grid label:hover,
.check-grid label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}

.check-grid input {
  margin-right: 0.4rem;
  accent-color: var(--gold);
}

.field-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.talent-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.talent-success {
  text-align: center;
  padding: 1.5rem 0;
}

.talent-finale {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 2rem 0;
  letter-spacing: 0.05em;
}

@media (max-width: 700px) {
  .talent-doors {
    grid-template-columns: 1fr;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
  .gold-portal {
    padding: 2.5rem 1.5rem;
  }
  .talent-modal-panel {
    padding: 2rem 1.25rem;
  }
}

/* ========== NAV DROPDOWN ========== */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(10,10,10,0.97);
  border: 1px solid var(--border);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 100;
  margin-top: 0.5rem;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.06);
}

@media (max-width: 960px) {
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    background: transparent;
    padding: 0.25rem 0 0.25rem 1rem;
    margin: 0;
    display: none;
  }
  .nav-item.open .nav-dropdown {
    display: block;
  }
  .nav-dropdown a {
    padding: 0.5rem 0;
  }
}

/* ========== REVIEWS ========== */
.reviews-note {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.reviews-config {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: var(--black);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-name {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviews-cta {
  text-align: center;
}

.reviews-attr {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

@media (max-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FOOTER PREMIUM ========== */
.footer-premium {
  padding: 4rem 0 0;
  border-top: 1px solid var(--border);
  text-align: left;
}

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

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-brand-col .footer-brand {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-address a {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-premium .footer-copy {
  margin: 0;
  opacity: 0.7;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
}


.ff-landing-link {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.ff-landing-link a {
  color: var(--gold);
  text-decoration: none;
}
.ff-landing-link a:hover {
  text-decoration: underline;
}

/* ========== FAQ PAGE ========== */
.page-faq {
  background: var(--black);
  color: var(--text);
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}
.faq-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-hero .eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
.faq-hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 0.75rem;
}
.faq-hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.faq-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.75rem 0 2.5rem;
}
.faq-toc a {
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  font-size: 0.82rem;
  border-radius: 999px;
}
.faq-toc a:hover {
  background: rgba(212, 175, 55, 0.12);
}
.faq-chapter {
  margin-bottom: 2.25rem;
}
.faq-chapter h2 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border: 1px solid var(--border);
  background: var(--black-card);
  margin-bottom: 0.65rem;
  border-radius: 8px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text);
  border: 0;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item button span.plus {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item .faq-a {
  display: none;
  padding: 0 1.15rem 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-cta {
  margin-top: 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
  padding: 1.75rem 1.25rem;
  border-radius: 10px;
}
.faq-cta a.btn-gold {
  display: inline-block;
  margin-top: 0.85rem;
  color: #0a0a0a;
  background: var(--gold);
  text-decoration: none;
  padding: 0.7rem 1.25rem;
  font-weight: 600;
  border-radius: 4px;
}
