@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-900.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black:    #190c1f;
  --purple:   #3d1054;
  --magenta:  #d4006e;
  --magenta-bright: #f0008a;
  --orange:   #e8501a;
  --orange-bright: #ff6040;
  --off-white: #f5f2f8;
  --white:    #ffffff;
  --gray-mid: #9e8faa;
  --gray-light: #e8e0f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Gotham', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 88px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(25,12,31,0.05);
  transition: height .3s ease;
}
nav.scrolled { height: 64px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { height: 52px; width: auto; transition: height .3s ease; }
nav.scrolled .nav-logo svg { height: 38px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--purple); transform: translateY(-1px); }
.nav-cta-mobile { display: none; }
@media (max-width: 768px) {
  .nav-cta-desktop { display: none; }
  .nav-cta-mobile  { display: inline; }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 120px 7% 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 48px,
    rgba(212,0,110,0.6) 48px,
    rgba(212,0,110,0.6) 49px
  );
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,0,110,0.09) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(212,0,110,0.1);
  border: 1px solid rgba(212,0,110,0.2);
  color: #ff4db3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4db3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Eyebrow hidden — editorial rhythm starts with headline */
.hero-eyebrow { display: none; }

.hero-headline {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 900;
  line-height: 0.93;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 0;
  max-width: 1160px;
}

.hero-headline em {
  font-style: normal;
  color: var(--magenta);
}

/* Editorial divider between headline and sub */
.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 40px 0;
}

.hero-sub {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: rgba(255,255,255,0.68);
  max-width: 860px;
  margin-bottom: 0;
  line-height: 1.55;
}

.hero-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin-bottom: 0;
}

.hero-sub-col {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-sub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
}

.hero-pill-check { color: var(--magenta); font-weight: 900; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--magenta);
  color: var(--white);
  text-decoration: none;
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 17px 38px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(212,0,110,0.4);
}
.btn-primary:hover {
  background: var(--magenta-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(212,0,110,0.55);
}

/* Dark button — glow matches button color */
.btn-dark {
  background: var(--black);
  box-shadow: 0 8px 32px rgba(25,12,31,0.5);
}
.btn-dark:hover {
  background: var(--purple);
  box-shadow: 0 14px 44px rgba(61,16,84,0.6);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 15px 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color .2s;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.7);
  transition: opacity .4s ease;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { opacity: 0; }

/* ─── SECTION BASE ─── */
section { padding: 100px 5%; }
.section-inner { max-width: 1120px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(212,0,110,0.1);
  border: 1px solid rgba(212,0,110,0.2);
  color: #ff4db3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.section-label::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4db3;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  font-weight: 400;
  color: #6b5c7a;
  max-width: 600px;
  line-height: 1.75;
}

/* ─── DIFFERENTIATORS ─── */
.diff-section { background: var(--off-white); text-align: center; }
.diff-section .section-label { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
.diff-section .section-title { text-align: center; }
.diff-section .section-sub {
  text-align: center;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  color: var(--black);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.diff-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 28px;
  padding: 36px;
  min-height: 307px;
  box-shadow: 0 8px 8px rgba(0,0,0,0.1);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.diff-blob {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.diff-blob--1 { background: radial-gradient(circle, var(--purple), var(--magenta)); top: 15%; right: 10%; }
.diff-blob--2 { background: radial-gradient(circle, var(--magenta), var(--magenta-bright)); top: 50%; left: 10%; }
.diff-blob--3 { background: radial-gradient(circle, var(--orange), var(--orange-bright)); top: 3%; right: 5%; }

.diff-card-title {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-mid);
  line-height: 1.2;
  margin: 0;
}
.diff-card-title em {
  display: block;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: var(--black);
  margin-top: 12px;
}

.diff-card-body {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.75;
  margin-top: 28px;
}
.diff-card-body strong {
  font-weight: 700;
  color: var(--black);
}

@media (max-width: 768px) {
  .diff-section { text-align: left; }
  .diff-section .section-label { margin-left: 0; }
  .diff-section .section-title { text-align: left; }
  .diff-section .section-sub { text-align: left; margin-left: 0; }
  .diff-grid { grid-template-columns: 1fr; text-align: left; }
  .diff-card { min-height: auto; padding: 28px; }
  .diff-blob { width: 160px; height: 160px; }
}

/* ─── BRAND STATEMENT ─── */
.brand-statement {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  padding: 0;
  background-image: url('https://zfwabcmwudxvczrxgspe.supabase.co/storage/v1/object/public/media/Image_1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.brand-statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 12, 31, 0.35);
  z-index: 1;
}

.brand-statement-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 0;
}

.brand-statement-text {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  letter-spacing: -0.025em;
  text-align: center;
  padding: 0 5%;
  margin: 0;
}

.brand-statement-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
  font-style: normal;
  color: var(--white);
  text-align: center;
  padding: 0 5%;
  margin: 0;
  opacity: 0.9;
}

.brand-statement-cta {
  margin-top: 8px;
}

.btn-bs-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 8px 36px rgba(61,16,84,0.4);
}
.btn-bs-purple:hover {
  background: #5a2075;
  box-shadow: 0 14px 48px rgba(61,16,84,0.55);
}

.btn-bs-magenta {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 8px 36px rgba(212,0,110,0.38);
}
.btn-bs-magenta:hover {
  background: var(--magenta-bright);
  box-shadow: 0 14px 48px rgba(212,0,110,0.54);
}

.btn-bs-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 36px rgba(232,80,26,0.38);
}
.btn-bs-orange:hover {
  background: var(--orange-bright);
  box-shadow: 0 14px 48px rgba(232,80,26,0.55);
}

.brand-statement-logo {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  height: 52px;
  width: auto;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .brand-statement {
    height: auto;
    min-height: 480px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .brand-statement-text { font-size: 24px; }
  .brand-statement-sub { font-size: 14px; }
  .brand-statement-logo { height: 28px; bottom: 16px; }
  .brand-statement-cta { margin-bottom: 56px; }
  .brand-statement-content {
    height: auto;
    min-height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 72px;
    padding-top: 24px;
  }
  .brand-statement .btn-primary,
  .brand-statement .btn-bs-purple,
  .brand-statement .btn-bs-magenta,
  .brand-statement .btn-bs-orange {
    font-size: 13px;
    padding: 14px 24px;
  }
}

/* ─── RESPONSIVE LINE BREAKS ─── */
.br-desktop { display: block; }
.br-mobile  { display: none; }

@media (max-width: 768px) {
  .br-desktop { display: inline; }
  .br-mobile  { display: block; }
}

/* ─── NARRATIVE ─── */
.narrative {
  background: var(--white);
  padding: 80px 5%;
}

.narrative-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

/* Desktop: centra label, headline e body sopra la tabella */
@media (min-width: 769px) {
  .narrative-inner > .section-label {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .narrative-quote,
  .narrative-body {
    text-align: center;
  }
}

.narrative-quote {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--black);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.narrative-quote em {
  font-style: normal;
  color: var(--magenta);
}

.narrative-body {
  font-size: 18px;
  color: #6b5c7a;
  line-height: 1.8;
}

/* ─── COMPARISON TABLE (CSS Grid) ─── */
.comp-table {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 48px;
  position: relative;
}

.comp-header,
.comp-row {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  align-items: stretch;
}

/* HEADER */
.comp-h-label {
  padding: 16px 0;
}
.comp-h-fracta {
  background: var(--orange);
  border-radius: 24px 24px 0 0;
  padding: 24px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.comp-h-fracta > * {
  position: relative;
  z-index: 6;
}
.comp-h-traditional {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* RIGHE */
.comp-row {
  position: relative;
}

/* Linea orizzontale come pseudo-elemento sopra il box arancione */
.comp-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-light);
  z-index: 5;
  pointer-events: none;
}

/* Linea di chiusura sotto l'ultima riga (dentro il box) */
.comp-row--last::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 1px;
  background: var(--gray-light);
  z-index: 5;
  pointer-events: none;
}

.comp-label {
  padding: 28px 32px 28px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

/* Box arancione — stretch pieno, continuo */
.comp-fracta {
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.comp-fracta > * {
  position: relative;
  z-index: 6;
}

/* Ultima riga — box si estende in basso */
.comp-row--last .comp-fracta {
  border-radius: 0 0 24px 24px;
  padding-bottom: 56px;
  align-items: flex-start;
  padding-top: 28px;
}

/* Ultima riga — label e traditional non si allungano con l'orange box */
.comp-row--last .comp-label,
.comp-row--last .comp-traditional {
  align-self: flex-start;
}

/* Colonna destra — nero pieno */
.comp-traditional {
  padding: 28px 24px;
  font-size: 15px;
  color: var(--black);
  opacity: 1;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* SVG check icon */
.comp-fracta svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3a1f4d;
  box-shadow: 0 4px 16px rgba(61,16,84,0.5);
}

/* MOBILE */
@media (max-width: 768px) {
  .comp-header,
  .comp-row {
    grid-template-columns: 1fr 110px 1fr;
  }
  .comp-h-fracta {
    padding: 16px 6px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .comp-logo-full   { display: none !important; }
  .comp-logo-mobile { display: block !important; margin: 0 auto; }
  .comp-h-fracta    { display: flex; align-items: center; justify-content: center; }
  .comp-h-traditional {
    padding: 16px 6px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .comp-label {
    font-size: 13px;
    padding: 20px 8px 20px 0;
  }
  .comp-fracta {
    justify-content: center;
    align-items: center;
  }
  .comp-traditional {
    font-size: 13px;
    padding: 20px 8px;
  }
  /* Ultima riga — comportamento uguale alle altre su mobile */
  .comp-row--last .comp-fracta {
    align-self: stretch;
    padding-top: 16px;
    padding-bottom: 40px;
    align-items: center;
    justify-content: center;
  }
  .comp-row--last .comp-label,
  .comp-row--last .comp-traditional {
    align-self: stretch;
    padding-top: 16px;
    padding-bottom: 40px;
  }
}

/* ─── QUANDO INSERIRE ─── */
.quando-section {
  background: var(--black);
  color: var(--white);
}
.quando-section .section-title,
.section-title--white { color: var(--white); }
.quando-section .section-sub,
.section-sub--white { color: rgba(255,255,255,0.5); }

@media (min-width: 769px) {
  .quando-section .section-label {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .quando-section .section-title {
    text-align: center;
  }
  .quando-section .section-sub {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

.quando-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.quando-item {
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
}
.quando-num {
  display: none;
}
.quando-item h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.quando-item p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
@media (max-width: 768px) {
  .quando-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── PROCESS ─── */
.process-section {
  background: var(--off-white);
  color: var(--black);
  text-align: center;
}
.process-section .section-label { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
.process-section .section-title { color: var(--black); text-align: center; }
.process-section .section-sub { color: #6b5c7a; text-align: center; margin-left: auto; margin-right: auto; max-width: 1120px; }
.process-section .process-steps { text-align: left; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.process-step-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-phase {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-mid);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
}

.process-step-card {
  width: 100%;
  align-self: stretch;
  background: var(--white);
  border: 1px solid rgba(25,12,31,0.06);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(25,12,31,0.05);
  position: relative;
  overflow: hidden;
}

/* Blob gradients */
.process-blob {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.process-blob--1 { background: radial-gradient(circle, var(--purple), var(--magenta)); }
.process-blob--2 { background: radial-gradient(circle, var(--magenta), var(--magenta-bright)); }
.process-blob--3 { background: radial-gradient(circle, var(--orange), var(--orange-bright)); }

.process-card-title {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 24px 0;
}
.process-card-title em {
  display: block;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: var(--black);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,0,110,0.1);
  border: 1px solid rgba(212,0,110,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.process-step-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.018em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px 0;
  position: relative;
  z-index: 1;
}
.step-list li {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid rgba(25,12,31,0.05);
  display: block;
}
.step-list li strong {
  display: inline;
  font-weight: 700;
}
.step-list li:last-child { border-bottom: none; }
.step-list li::before {
  content: none;
}

.step-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  position: relative;
  z-index: 1;
}
.step-check::before {
  content: none;
}

.process-arrow {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding-top: 36px;
}

.process-arrow svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-steps { flex-direction: column; align-items: stretch; }
  .process-step-wrap { width: 100%; }
  .process-arrow { align-self: center; padding-top: 0; width: auto; height: auto; }
  .process-arrow svg { transform: rotate(90deg); }
  .process-blob { width: 160px; height: 160px; }
}

/* ─── FORM ─── */
.form-section {
  background: #000;
  color: var(--white);
  padding: 100px 5%;
}
.form-section .section-label { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
.form-section .section-title { color: var(--white); text-align: center; }
.form-section .section-sub { color: rgba(255,255,255,0.55); max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }

/* ─── FORM ─── */
.form-section {
  background: #000;
  color: var(--white);
  padding: 100px 5%;
}
.form-section .section-label { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
.form-section .section-title { color: var(--white); text-align: center; }
.form-section .section-sub { color: rgba(255,255,255,0.55); max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }

.form-container {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 900px;
  margin: 56px auto 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-row {
  display: contents;
}

.form-group { margin-bottom: 0; }

.form-group label { display: none; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #e8e8e8;
  border: none;
  border-radius: 50px;
  padding: 20px 32px;
  font-family: 'Gotham', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #111;
  outline: none;
  transition: box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #888; }

.form-group select {
  color: #888;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
  padding-right: 56px;
}
.form-group select.filled { color: #111; }
.form-group select option { color: #111; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(107,33,168,0.35);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
  border-radius: 28px;
  padding: 20px 32px;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 24px;
}

.form-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.form-bottom-right {
  flex-shrink: 0;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] { display: none; }

.form-checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}

.form-checkbox input:checked + .form-checkbox-box {
  background: var(--magenta);
  border-color: var(--magenta);
}

.form-checkbox input:checked + .form-checkbox-box::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.form-checkbox-text a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

.form-submit {
  background: var(--magenta);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 18px 32px;
  font-family: 'Gotham', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(212,0,110,0.4);
}
.form-submit:hover { background: var(--magenta-bright); transform: translateY(-2px); box-shadow: 0 14px 44px rgba(212,0,110,0.55); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.form-direct {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin: 0;
  white-space: nowrap;
}

.form-direct a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.form-direct strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .form-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .form-bottom-right {
    width: 100%;
  }
  .form-bottom-right .form-submit {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 18px 20px;
  }
  .form-direct {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group-full { grid-column: 1; }
}

/* ─── PRIVACY OVERLAY MODAL ─── */
.privacy-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(25,12,31,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.privacy-overlay.active {
  display: flex;
}

.privacy-modal {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(25,12,31,0.25);
}

.privacy-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-mid);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 4px;
}
.privacy-close:hover {
  color: var(--black);
}

.privacy-msg {
  font-family: 'Gotham', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  margin: 0;
}

@keyframes checkbox-highlight {
  0% {
    box-shadow: 0 0 0 0px rgba(240,0,138,0);
  }
  20% {
    box-shadow: 0 0 0 10px rgba(240,0,138,0.35);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(240,0,138,0.35);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(240,0,138,0);
  }
}
.form-bottom-left.highlight {
  animation: checkbox-highlight 2s ease 1;
  border-radius: 12px;
}

/* ─── FAQ ─── */
.faq-section { background: var(--white); }
.faq-section .section-label { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
.faq-section .section-title { text-align: center; }
.faq-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

.faq-list {
  max-width: 780px;
  margin: 56px auto 0;
}

.faq-item { border-bottom: 1px solid var(--gray-light); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  font-family: 'Gotham', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--magenta); }

.faq-toggle {
  display: inline-block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--black);
  transition: transform 0.25s ease, border-left-color 0.25s ease;
  margin-top: 2px;
}

.faq-item.open .faq-toggle {
  transform: rotate(90deg);
  border-color: transparent transparent transparent var(--magenta);
}

.faq-a {
  display: none;
  padding-bottom: 26px;
  font-size: 16px;
  color: #6b5c7a;
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* ─── ROSTER / EXECUTIVE VS SPECIALIST ─── */
.roster-section {
  background: var(--off-white);
}

.section-title em {
  font-style: normal;
  color: var(--magenta);
}

@media (min-width: 769px) {
  .roster-section .section-label {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .roster-section .section-title {
    text-align: center;
  }
  .roster-section .section-sub {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.intro-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 28px;
  padding: 36px 24px 36px 36px;
  min-height: 260px;
  box-shadow: 0 8px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intro-blob {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.36;
  pointer-events: none;
  z-index: 0;
}
.intro-card--executive .intro-blob {
  background: radial-gradient(circle, var(--purple), var(--magenta));
  top: 8%; right: 5%;
}
.intro-card--specialist .intro-blob {
  background: radial-gradient(circle, var(--orange), var(--orange-bright));
  top: 18%; right: 3%;
}

.intro-card-title {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-mid);
  line-height: 1.2;
  margin: 0;
}
.intro-card-title em {
  display: block;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  color: var(--black);
  letter-spacing: -0.02em;
}

.intro-card-body {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: var(--black);
  line-height: 1.75;
  margin-top: 24px;
}

/* Area stack */
.area-stack {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

.area-block {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 8px rgba(0,0,0,0.06);
}

.area-head {
  padding: 28px 36px;
  border-bottom: 1px solid var(--gray-light);
  background: rgba(245,242,248,0.72);
  text-align: center;
}

.area-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--black);
}

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.role-card {
  position: relative;
  min-height: 280px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}
.role-card + .role-card {
  border-left: 1px solid var(--gray-light);
}
.role-card::before {
  content: '';
  position: absolute;
  top: 36px; right: 36px;
  width: 120px; height: 120px;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.22;
  pointer-events: none;
}
.role-card.is-executive::before {
  background: radial-gradient(circle, var(--purple), var(--magenta));
}
.role-card.is-specialist::before {
  background: radial-gradient(circle, var(--orange), var(--orange-bright));
}

.role-top {
  position: relative;
  z-index: 1;
}

.role-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,0,110,0.1);
  border: 1px solid rgba(212,0,110,0.2);
  color: #ff4db3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.role-type::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.role-card.is-specialist .role-type {
  background: rgba(232,80,26,0.1);
  border-color: rgba(232,80,26,0.2);
  color: var(--orange);
}

.role-card h4 {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 7px;
  min-height: 2.16em;
  display: flex;
  align-items: flex-start;
}

.role-card p {
  font-size: 15px;
  color: #6b5c7a;
  line-height: 1.75;
}

/* Focus tag chips */
.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.focus-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.is-executive .focus-tag {
  background: rgba(212,0,110,0.1);
  border: 1px solid rgba(212,0,110,0.2);
  color: #ff4db3;
}
.is-specialist .focus-tag {
  background: rgba(232,80,26,0.1);
  border: 1px solid rgba(232,80,26,0.2);
  color: var(--orange);
}

/* Dark break */
.dark-break {
  margin-top: 56px;
  background: var(--black);
  border-radius: 28px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.dark-break::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,0,110,0.42), transparent 65%);
  filter: blur(20px);
  top: -180px; right: -80px;
  pointer-events: none;
}
.dark-break h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 16px;
}
.dark-break > p {
  position: relative;
  z-index: 1;
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 700px;
}

@media (max-width: 900px) {
  .intro-split,
  .pair { grid-template-columns: 1fr; }
  .role-card + .role-card { border-left: none; border-top: 1px solid var(--gray-light); }
}
@media (max-width: 768px) {
  .intro-card, .role-card { padding: 28px; }
  .area-head { padding: 22px 28px; }
  .dark-break { padding: 36px 28px; border-radius: 20px; }
  .role-card h4 { min-height: auto; display: block; }
}

/* ─── CLOSING ─── */
/* ─── CHI SIAMO ─── */
.chi-siamo-section {
  background: var(--black);
  color: var(--white);
}
.chi-siamo-grid {
  margin-top: 48px;
}
.chi-siamo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.chi-siamo-body p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .chi-siamo-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.chi-siamo-visual {
  position: relative;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chi-siamo-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple), var(--magenta));
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

/* ─── FOOTER ─── */
/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 5% 60px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-label {
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.footer-headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.22);
  margin-top: 8px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  line-height: 1.5;
}
a.footer-link:hover { color: rgba(255,255,255,0.75); }

.footer-admin-text {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}
.footer-admin-text em {
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

.footer-policy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  width: 44.8%;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 5%;
}

.footer-logo-giant {
  line-height: 0;
  overflow: hidden;
}
.footer-logo-giant svg {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 12px rgba(160, 40, 240, 0.45))
    drop-shadow(0 0 28px rgba(120, 0, 200, 0.28));
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding: 48px 5% 40px;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
  .footer-col--canali {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-col--canali .footer-col-title {
    width: 100%;
    margin-bottom: 0;
  }
  .footer-policy {
    width: 100%;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  section { padding: 72px 5%; }
  .hero { padding: 110px 5% 64px; }
  .hero-content { text-align: left; align-items: flex-start; }
  .hero-headline { font-size: 52px; line-height: 0.96; letter-spacing: -0.03em; }
  .hero-pills { display: none; }
  .hero-divider { margin: 24px 0; }
  .hero-actions { justify-content: flex-start; flex-direction: column; align-items: flex-start; width: 100%; gap: 12px; }
  .hero-sub { font-size: 14px; }
  .nav-logo svg { height: 36px; }
  nav { height: 72px; padding: 0 5%; }
  nav.scrolled { height: 56px; }
  .nav-cta { font-size: 11px; padding: 10px 18px; letter-spacing: 0.04em; }

  /* Buttons: full width on mobile, smaller text */
  .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 16px 24px;
    letter-spacing: 0.01em;
  }
  .btn-dark {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 16px 24px;
  }

  /* Section typography scale down */
  .section-title { font-size: 28px; }
  .section-sub { font-size: 16px; }
  .narrative-quote { font-size: clamp(26px, 6vw, 36px); }
  .diff-card h3 { font-size: 20px; }

  /* Cards and containers */
  .diff-grid { grid-template-columns: 1fr; gap: 16px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-features { grid-template-columns: 1fr; }
  /* Carousel on mobile */
  .process-steps {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    border-radius: 16px;
  }
  .process-steps::-webkit-scrollbar { display: none; }
  .process-step {
    min-width: calc(100vw - 10%);
    max-width: calc(100vw - 10%);
    width: calc(100vw - 10%);
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    word-break: break-word;
  }
  .process-step:first-child { border-radius: 16px 0 0 16px; }
  .process-step:last-child  { border-radius: 0 16px 16px 0; }
  .carousel-controls { display: flex; }
  .form-wrap { padding: 28px 20px; }
  .form-container { padding: 28px 20px; }
  .faq-list { max-width: 100%; }
  .neg-list { grid-template-columns: 1fr; border-left: none; }
  .neg-item { border-right: none; border-left: 2px solid var(--gray-light); padding: 14px 16px; margin-bottom: 8px; }
}

@media (max-width: 768px) {
  .chi-siamo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .chi-siamo-visual {
    height: 200px;
  }
}

/* Process steps mobile — override carousel gap:0 */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .process-arrow {
    align-self: center;
    padding-top: 0;
  }
}

/* ─── MOBILE GLOBAL FIXES ─── */
@media (max-width: 768px) {

  /* 1. Testo a sinistra ovunque */
  .section-inner,
  .section-label,
  .section-title,
  .section-sub,
  .narrative-quote,
  .narrative-body,
  .diff-section .section-inner,
  .process-section .section-inner,
  .faq-section .section-inner,
  .form-section .section-inner,
  .quando-section .section-inner,
  .chi-siamo-section .section-inner {
    text-align: left;
  }

  /* Pill label: inline, allineata a sinistra */
  .section-label {
    display: inline-flex;
    margin-left: 0;
    margin-right: auto;
  }

  /* 2. CTA larghezza omogenea */
  .btn-primary,
  .btn-dark {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }

  /* 3. Ghost button centrato nella hero */
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .btn-ghost {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .btn-ghost::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 140px;
  }

}

/* ─── MOBILE CONTAINER WIDTHS ─── */
@media (max-width: 768px) {

  .section-inner,
  .form-container,
  .narrative-inner {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .brand-statement-content {
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
  }

  .btn-primary,
  a.btn-primary,
  button.btn-primary {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Eccezione: nav CTA resta compatta */
  nav .nav-cta {
    width: auto;
    display: inline-flex;
  }

  .btn-ghost {
    width: 100%;
    display: flex;
    justify-content: center;
  }

}

/* ─── MOBILE LEFT-ALIGN: PROCESS, FORM, FAQ ─── */
@media (max-width: 768px) {
  .process-section .section-label,
  .form-section .section-label,
  .faq-section .section-label {
    margin-left: 0;
    margin-right: auto;
  }
  .process-section .section-title,
  .process-section .section-sub,
  .form-section .section-title,
  .form-section .section-sub,
  .faq-section .section-title,
  .faq-section .section-sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 44px; line-height: 0.97; }
  .hero-sub { font-size: 13px; }
  .section-title { font-size: 26px; }
  nav { padding: 0 4%; }
  section { padding: 64px 4%; }
  .hero { padding: 104px 4% 60px; }
}
