/* =========================================================================
   Webinar uniTE — Corso DAE · Landing
   Design system "Direzione Lime" — token da Figma (variabili di file)
   ========================================================================= */

/* ---------- Token ---------- */
:root {
  /* Colore */
  --color-bg-base: #f9f9f9;
  --color-bg-surface: #ffffff;
  --color-text-primary: #002715;
  --color-text-secondary: #3e5c4e;
  --color-text-muted: #577065;
  --color-text-on-action: #f9f9f9;
  --color-line-rule: #d6dcd9;
  --color-line-strong: #3e5c4e;
  --color-accent-action: #114a29;
  --color-accent-action-hover: #002715;
  --color-accent-highlight: #bcec6c;
  --color-accent-on-highlight: #002715;
  --color-accent-spark: #114a29;
  --color-grey: #ececec;
  --color-error: #b3261e;
  --color-tab-unselected: #999999;

  /* Forma */
  --shape-raggio-sm: 6px;
  --shape-raggio-md: 12px;
  --shape-raggio-pill: 999px;
  --shape-bordo-sottile: 1px;

  /* Dimensione */
  --size-campo-altezza: 48px;
  --size-bottone-altezza: 48px;
  --size-colonna-testo: 620px;
  --size-colonna-form: 520px;

  /* Spazio */
  --space-s-24: 24px;
  --space-s-48: 48px;
  --space-s-64: 64px;
  --space-s-120: 120px;

  /* Ombra */
  --shadow-200: 0 1px 2px rgba(12, 12, 13, 0.1), 0 1px 2px rgba(12, 12, 13, 0.05);

  /* Tipografia */
  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Larghezza tela di riferimento */
  --canvas: 1440px;
  --gutter: 78px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg-base);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  overflow-x: hidden;
}

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

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--color-accent-action);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Scale tipografiche ---------- */
.t-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.96px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.t-h1 {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 56px;
  letter-spacing: -0.64px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.t-h2 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.72px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.t-h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.44px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.t-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 22px;
  margin: 0;
}

.t-base { font-size: 17px; line-height: 27px; margin: 0; }
.t-small { font-size: 15px; line-height: 16px; margin: 0; }

.t-mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  line-height: 20px;
}

/* ---------- Impianto sezioni ---------- */
.section {
  position: relative;
  padding: var(--space-s-64) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}

.section__inner {
  position: relative;
  z-index: 1;
  max-width: calc(var(--canvas) - var(--gutter) * 2);
  margin-inline: auto;
}

/* Forme organiche di sfondo: decorative, mai leggibili da AT */
.shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  max-width: none;
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  padding: 72px 120px;
  overflow: hidden;
  isolation: isolate;
  min-height: 737px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: -1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: calc(var(--canvas) - 240px);
  margin-inline: auto;
}

.hero__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  width: var(--size-colonna-testo);
  flex: 0 1 var(--size-colonna-testo);
}

.hero__logo { width: 268px; height: auto; }
.hero__eyebrow { color: var(--color-accent-spark); }
.hero__lead { color: var(--color-text-secondary); }
.hero__when { color: var(--color-text-primary); }

/* «scopri di più» */
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: 0;
  padding: 4px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 35px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.scroll-cue__icon {
  width: 27px;
  height: 30px;
  transition: transform 0.25s ease;
}

.scroll-cue:hover .scroll-cue__icon { transform: translateY(4px); }

/* =========================================================================
   Form (registrazione + richiesta informazioni)
   ========================================================================= */
.card-form {
  background: var(--color-bg-surface);
  color: var(--color-text-primary);
  border: var(--shape-bordo-sottile) solid var(--color-line-rule);
  border-radius: var(--shape-raggio-md);
  padding: 24px;
  width: var(--size-colonna-form);
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-200);
}

.card-form__head { display: flex; flex-direction: column; }
.card-form__head--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.card-form__head--row .card-form__logo { width: 178px; height: auto; flex: 0 0 auto; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field__label {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: var(--color-text-primary);
}

.field select,
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;   /* mai sotto i 16: iOS ingrandisce al focus */
  line-height: 24px;
  color: var(--color-text-primary);
  background: var(--color-bg-surface);
  border: var(--shape-bordo-sottile) solid var(--color-line-rule);
  border-radius: var(--shape-raggio-sm);
  padding: 0 16px;
  height: var(--size-campo-altezza);
}

.field textarea {
  height: 108px;
  padding: 12px 16px;
  resize: vertical;
  line-height: 24px;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--color-text-muted); opacity: 1; }

.field select {
  appearance: none;
  color: var(--color-text-muted);
  background-image: url("../icons/chevron.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px 7px;
  padding-right: 40px;
  cursor: pointer;
}

.field select.is-filled { color: var(--color-text-primary); }

.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1 1 0; min-width: 0; }

/* stato errore */
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--color-error); }

.field__error {
  display: none;
  font-size: 13px;
  line-height: 18px;
  color: var(--color-error);
}

.field.has-error .field__error { display: block; }

/* consenso */
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  /* l'intera riga e il bersaglio: il quadrato resta 20x20 per il design,
     ma l'area toccabile e alta almeno 44px (WCAG 2.5.8) */
  min-height: 44px;
  padding-block: 12px;
  margin-block: -12px;
}

.consent__box {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-block: 2px;
}

.consent__box input {
  appearance: none;
  position: absolute;
  inset: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  border: var(--shape-bordo-sottile) solid var(--color-line-strong);
  border-radius: var(--shape-raggio-sm);
  background: var(--color-bg-surface);
  cursor: pointer;
}

.consent__box input::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../icons/check.svg") center / 14px 14px no-repeat;
  opacity: 0;
}

.consent__box input:checked {
  background: var(--color-accent-highlight);
  border-color: var(--color-accent-action);
}

.consent__box input:checked::after { opacity: 1; }

.consent__box input:focus-visible {
  outline: 3px solid var(--color-accent-action);
  outline-offset: 2px;
}

.consent__text {
  flex: 1 1 0;
  min-width: 0;
  font-size: 15px;
  line-height: 16px;
  color: var(--color-text-secondary);
  padding-top: 2px;
  cursor: pointer;
}

.consent.has-error .consent__box input { border-color: var(--color-error); }

/* bottone */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--size-bottone-altezza);
  padding-inline: 24px;
  border: 0;
  border-radius: var(--shape-raggio-pill);
  background: var(--color-accent-highlight);
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn--block { width: 100%; }

.btn:hover {
  background: var(--color-accent-action-hover);
  color: var(--color-text-on-action);
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.form-error {
  font-size: 15px;
  line-height: 20px;
  color: var(--color-error);
  margin: 0;
}

.btn.is-busy { pointer-events: none; }

/* stato «Registrato» / «Messaggio inviato» */
.card-form__done { display: none; flex-direction: column; gap: 16px; }
.card-form.is-done .card-form__live { display: none; }
.card-form.is-done .card-form__done { display: flex; }

.card-form__done:focus { outline: none; }
.card-form__done:focus-visible { outline: 3px solid var(--color-accent-action); outline-offset: 4px; }
.card-form__done p { color: var(--color-text-primary); }

.done-msg {
  font-weight: 300;
  font-size: 15px;
  line-height: 22px;
}

/* =========================================================================
   Tema
   ========================================================================= */
.tema { background: var(--color-accent-action-hover); color: var(--color-text-on-action); }

.tema .shape--a { left: -215px; top: 209px; width: 1370px; }
.tema .shape--b { left: calc(50% + 67px); top: -257px; width: 1370px; }

.tema__inner { display: flex; flex-direction: column; gap: 24px; align-items: center; }

.tema__title { display: flex; flex-direction: column; gap: 12px; text-align: center; max-width: 728px; }
.tema__title .t-h1 { color: var(--color-accent-highlight); }

.compare {
  display: flex;
  gap: 27px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.compare__card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-grey);
  border-radius: var(--shape-raggio-md);
  padding: 41px 24px;
  width: 334px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #000;
}

.compare__card--accent {
  background: var(--color-accent-highlight);
  border-color: var(--color-text-muted);
  width: 338px;
}

.compare__card h3 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 32px;
  line-height: 30px;
  margin: 0;
}

.compare__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }

.compare__item { display: flex; gap: 8px; align-items: center; font-size: 15px; line-height: 16px; }
.compare__item img { width: 22px; height: 22px; flex: 0 0 22px; }
.compare__item--off { color: var(--color-tab-unselected); }

.tema__settori { display: flex; flex-direction: column; gap: 12px; align-items: center; }

.chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.chip {
  border: 1px solid var(--color-text-on-action);
  border-radius: 24px;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 19px;
  line-height: 22px;
  color: var(--color-text-on-action);
}

.chip--pill {
  background: var(--color-accent-highlight);
  border-color: var(--color-accent-highlight);
  border-radius: var(--shape-raggio-pill);
  color: var(--color-accent-on-highlight);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  line-height: 20px;
  padding: 0 16px;
}

/* =========================================================================
   Fascia chiara: Speaker + Topic
   Le due sezioni condividono fondo e macchia. Tenendo la macchia sulla fascia
   invece che dentro ciascuna sezione, non si vede piu la cucitura sul bordo.
   ========================================================================= */
.band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-bg-base);
}

.band__glow {
  right: -460px;
  top: 50%;
  transform: translateY(-44%);
  width: 900px;
  opacity: 0.85;
}

/* =========================================================================
   Speaker
   ========================================================================= */
.speaker { background: transparent; }

.speaker__inner { display: flex; gap: 30px; align-items: center; justify-content: center; }

.speaker__photo {
  width: 299px;
  height: 357px;
  object-fit: cover;
  border: 1px solid var(--color-line-rule);
  border-radius: var(--shape-raggio-md);
  box-shadow: var(--shadow-200);
  flex: 0 0 299px;
}

.speaker__text { display: flex; flex-direction: column; gap: 12px; width: 412px; }
.speaker__kicker { opacity: 0.7; }
.speaker__rule { height: 1px; width: 412px; max-width: 100%; background: var(--color-line-rule); border: 0; margin: 0; }
.speaker__bio { color: var(--color-text-secondary); }

.speaker__linkedin {
  display: inline-flex;
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}
.speaker__linkedin:hover { transform: translateY(-2px); }

/* =========================================================================
   Topic
   ========================================================================= */
.topic { background: transparent; }

.topic__inner { display: flex; gap: 98px; align-items: flex-start; justify-content: center; }

.topic__title { display: flex; flex-direction: column; gap: 12px; max-width: 533px; }
.topic__kicker { opacity: 0.7; }

.topic__reasons { display: flex; flex-direction: column; gap: 12px; }

.reason { display: flex; gap: 18px; align-items: flex-start; }

.reason__num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 56px;
  letter-spacing: -0.64px;
  color: var(--color-accent-highlight);
  text-align: right;
  width: 67px;
  flex: 0 0 67px;
  margin: 0;
}

.reason__body { display: flex; flex-direction: column; gap: 4px; }
.reason__body .t-h1 { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.reason__body p { color: var(--color-text-primary); }

/* link «Scrivici» */
.contact-line { color: var(--color-text-primary); }
.contact-line strong { font-weight: 700; }

.link-write {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: inherit;
  text-decoration: underline;
  text-underline-position: from-font;
  cursor: pointer;
}

.link-write:hover { color: var(--color-accent-action); }

/* =========================================================================
   Partner
   ========================================================================= */
.partner { background: var(--color-bg-surface); padding: 48px 62px; }
.partner__inner { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.partner__title { color: var(--color-text-secondary); text-align: center; }

.partner__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  flex-wrap: nowrap;
}

.partner__item {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.partner__item img { object-fit: contain; }
.partner__item figcaption { font-size: 15px; line-height: 16px; color: #000; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { background: var(--color-bg-base); }
.faq .shape--a { left: -560px; top: -180px; width: 1000px; }

.faq__inner { display: flex; flex-direction: column; gap: 64px; align-items: center; }
.faq__block { display: flex; flex-direction: column; gap: 24px; align-items: center; width: 100%; }
.faq__title { text-align: center; }

.faq__list { display: flex; flex-direction: column; gap: 23px; width: 998px; max-width: 100%; }

.faq__item {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-line-rule);
  border-radius: 99px;
  transition: border-radius 0.28s cubic-bezier(0.22, 0.7, 0.3, 1),
              box-shadow 0.28s ease;
}

.faq__item.is-expanded {
  border-radius: var(--shape-raggio-md);
  box-shadow: var(--shadow-200);
}

/* Il pannello si apre animando la riga della griglia: e l'unico modo di
   transire da «altezza zero» ad «altezza del contenuto» senza fissarla. */
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.22, 0.7, 0.3, 1);
}

.faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq__item.is-expanded .faq__panel { grid-template-rows: 1fr; }

.faq__a {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.24s ease 0.06s, transform 0.24s ease 0.06s;
}

.faq__item.is-expanded .faq__a { opacity: 1; transform: none; }

.faq__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  min-height: 59px;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  line-height: 27px;
  color: var(--color-text-secondary);
}

.faq__q::-webkit-details-marker { display: none; }

.faq__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transition: transform 0.32s cubic-bezier(0.22, 0.7, 0.3, 1);
}

.faq__item.is-expanded .faq__icon { transform: rotate(135deg); }

.faq__a {
  padding: 4px 24px 20px;
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 27px;
  margin: 0;
}

.faq__contact {
  display: flex;
  gap: 68px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

/* =========================================================================
   Form CTA
   ========================================================================= */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-accent-action-hover);
  color: var(--color-text-on-action);
  padding: 120px var(--gutter);
}

.cta .shape--a { left: calc(58.33% + 15px); top: 517px; width: 1689px; }
.cta .shape--b { left: -272px; top: 70px; width: 1370px; }
.cta .shape--c { left: 348px; top: 227px; width: 1370px; }

.cta__inner { display: flex; gap: 78px; align-items: center; justify-content: center; }

.cta__col { display: flex; flex-direction: column; gap: 34px; width: 546px; flex: 0 1 546px; }
.cta__logo { width: 310px; height: auto; }
.cta__when { color: var(--color-accent-highlight); }
.cta__title { color: var(--color-text-on-action); }
.cta__body { color: var(--color-text-on-action); }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--color-bg-surface); padding: var(--space-s-24) var(--gutter); }
.footer__inner { display: flex; flex-direction: column; gap: var(--space-s-24); align-items: center; }
.footer__logos { display: flex; gap: var(--space-s-120); align-items: center; justify-content: center; flex-wrap: wrap; }
.footer__logos img { height: 77px; width: auto; }
.footer__logos img.footer__unite { height: 74px; }
.footer__legal { color: #000; text-align: center; }
.footer__legal a { color: inherit; text-decoration: underline; text-underline-position: from-font; }

/* =========================================================================
   Modale «Richiedi informazioni»
   ========================================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  overflow-y: auto;
}

.modal.is-open { display: flex; }

/* Comparsa e uscita: lo sfondo sfuma, la finestra sale di poco.
   `is-open` accende il display, `is-visible` fa partire la transizione — servono
   due classi perche da `display:none` non si transisce. */
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 39, 21, 0.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.modal.is-visible .modal__backdrop { opacity: 1; }

.modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: var(--size-colonna-form);
  max-width: 100%;
  margin: auto;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transform-origin: center top;
  transition: opacity 0.26s ease, transform 0.32s cubic-bezier(0.22, 0.7, 0.3, 1);
}

.modal.is-visible .modal__panel {
  opacity: 1;
  transform: none;
}

.modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.modal__action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
  color: #fff;
  font-size: 17px;
  line-height: 27px;
}

.modal__action img { width: 24px; height: 24px; }
.modal__action:hover { color: var(--color-accent-highlight); }

body.has-modal { overflow: hidden; }

/* Modalita anteprima: si vede che le iscrizioni non vengono registrate */
.is-preview body::before {
  content: "Anteprima — le registrazioni non vengono ancora raccolte";
  display: block;
  padding: 10px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-text-primary);
  background: var(--color-accent-highlight);
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1439px) {
  .hero { padding: 72px 48px; }
  .hero__inner { max-width: 100%; }
  .topic__inner { gap: 48px; }
  .cta__inner { gap: 48px; }
  .partner__row { gap: 32px; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 1100px) {
  :root { --gutter: 40px; }

  .hero { min-height: 0; padding: 48px 40px; }
  .hero__inner { flex-direction: column; align-items: stretch; gap: 40px; }
  .hero__col { width: 100%; flex: 1 1 auto; }
  .hero__bg { object-position: top right; }

  .card-form { width: 100%; max-width: 520px; }

  .speaker__inner { flex-direction: column; text-align: left; }
  .speaker__text { width: 100%; max-width: 412px; }

  .topic__inner { flex-direction: column; align-items: flex-start; }
  .topic__title { max-width: 100%; }

  .cta { padding: 64px 40px; }
  .cta__inner { flex-direction: column; align-items: stretch; }
  .cta__col { width: 100%; flex: 1 1 auto; }

  .faq__contact { gap: 24px; flex-direction: column; }

  .footer__logos { gap: 48px; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }

  .section { padding: 48px var(--gutter); }
  .hero { padding: 32px var(--gutter) 48px; }

  .t-h1 { font-size: 32px; line-height: 35px; letter-spacing: 0.64px; }
  .t-h2 { font-size: 28px; line-height: 32px; }
  .scroll-cue { font-size: 24px; line-height: 28px; }

  .hero__logo { width: 200px; }
  .cta__logo { width: 220px; }

  .compare__card,
  .compare__card--accent { width: 100%; }

  .field-row { flex-direction: column; gap: 16px; }

  .reason__num { font-size: 44px; line-height: 40px; width: 48px; flex-basis: 48px; }

  .partner__row { gap: 28px; }
  .partner__item img { max-height: 56px; }

  .faq__q { font-size: 16px; line-height: 24px; }
  .faq__item { border-radius: var(--shape-raggio-md); }

  .footer__logos { gap: 32px; }
  .footer__logos img { height: 56px; }
  .footer__logos img.footer__unite { height: 54px; }

  .modal { padding: 24px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
