@font-face {
  font-family: "High Billion Sans";
  src: url("./assets/high-billion-sans.otf") format("opentype");
  font-display: swap;
}

:root {
  --paper: #fbfaf7;
  --paper-deep: #f0ebe3;
  --ink: #1e1b17;
  --muted: #71685d;
  --line: rgba(30, 27, 23, 0.14);
  --brand: #925c38;
  --brand-dark: #5b3420;
  --sage: #7f8a74;
  --clay: #c9bca9;
  --white: #fffaf2;
  --surface: #ffffff;
  --shadow: 0 18px 60px rgba(55, 37, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 28px clamp(20px, 5vw, 72px) 76px;
  isolation: isolate;
}

.texture {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.97), rgba(251, 250, 247, 0.9)),
    url("./assets/textura.png") center / cover;
  opacity: 0.72;
}

.texture::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 26%, rgba(146, 92, 56, 0.12), transparent 28%),
    linear-gradient(180deg, transparent 74%, var(--paper) 100%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  height: auto;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  margin-left: 8px;
  color: var(--brand);
}

.topbar-cta,
.primary-link,
.primary-button,
.ghost-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar-cta {
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.7);
  color: var(--brand-dark);
  font-size: 0.92rem;
  backdrop-filter: blur(12px);
}

.primary-link,
.primary-button {
  background: var(--ink);
  color: var(--white);
}

.ghost-button {
  border-color: var(--line);
  background: transparent;
  color: var(--brand-dark);
}

.primary-button:hover,
.primary-link:hover,
.ghost-button:hover,
.topbar-cta:hover {
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: clamp(36px, 6vw, 78px);
  max-width: 1180px;
  margin: 10vh auto 0;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

h1 span,
.section-copy h2 span,
.form-intro h2 span {
  color: var(--brand);
}

.lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: #3d352d;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.58;
}

.hero-copy .primary-link {
  margin-top: 32px;
}

.hero-cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(30, 27, 23, 0.18);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 250, 242, 0.28) 46%, transparent 64% 100%);
  transform: translateX(-130%);
  animation: ctaSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: var(--brand-dark);
  box-shadow: 0 18px 42px rgba(91, 52, 32, 0.26);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(30, 27, 23, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.story-section,
.form-section,
.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px clamp(20px, 5vw, 72px);
}

.problem {
  position: relative;
  max-width: none;
  min-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 112px;
  background:
    linear-gradient(180deg, rgba(30, 27, 23, 0.34) 0%, rgba(30, 27, 23, 0.64) 44%, rgba(30, 27, 23, 0.76) 100%),
    linear-gradient(90deg, rgba(30, 27, 23, 0.22) 0%, rgba(30, 27, 23, 0.44) 52%, rgba(30, 27, 23, 0.22) 100%),
    url("./assets/problema-comunicacao.png") center / cover;
}

.problem::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 250, 242, 0.1), transparent 36%),
    radial-gradient(circle at 72% 22%, transparent 0 28%, rgba(30, 27, 23, 0.22) 70%);
  pointer-events: none;
}

.problem .section-copy {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.problem .eyebrow {
  color: #e4c7ad;
}

.problem .section-copy h2 {
  color: var(--white);
  margin-inline: auto;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.34);
}

.problem .section-copy h2 span {
  color: #e4b58e;
}

.problem-points {
  display: grid;
  gap: 12px;
  max-width: 940px;
  margin-inline: auto;
  margin-block: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.problem-points li {
  position: relative;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.06);
  color: rgba(255, 250, 242, 0.88);
  padding: 18px 20px 18px 56px;
  font-size: clamp(1.04rem, 1.55vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 250, 242, 0.88);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.32);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.problem-points li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e4b58e;
  box-shadow: 0 0 0 8px rgba(228, 181, 142, 0.12);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.problem-points li:hover,
.problem-points li:focus-within {
  border-color: rgba(228, 181, 142, 0.36);
  background: rgba(255, 250, 242, 0.13);
  color: var(--white);
  transform: translateX(6px);
}

.problem-points li:hover::before,
.problem-points li:focus-within::before {
  background: var(--white);
  box-shadow: 0 0 0 9px rgba(228, 181, 142, 0.2);
  transform: scale(1.08);
}

.section-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.section-copy.split {
  align-items: center;
}

.section-copy h2,
.form-intro h2,
.footer h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.25rem, 4vw, 4.35rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
  margin-inline: auto;
}

.text-stack {
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.text-stack p,
.form-intro p {
  margin: 0;
  color: #433a31;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.68;
}

.text-stack.narrow {
  max-width: 920px;
  margin-top: 34px;
  margin-inline: auto;
  text-align: center;
}

.brand-flow {
  position: relative;
  max-width: none;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.9), rgba(251, 250, 247, 0.78) 48%, rgba(251, 250, 247, 0.9)),
    linear-gradient(90deg, rgba(246, 242, 234, 0.88), rgba(255, 255, 255, 0.68), rgba(246, 242, 234, 0.88)),
    url("./assets/firenze-pattern.jpg") center top / cover;
}

.brand-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(146, 92, 56, 0.08), transparent 26%),
    radial-gradient(circle at 84% 52%, rgba(127, 138, 116, 0.08), transparent 32%),
    linear-gradient(180deg, transparent 0 72%, rgba(255, 255, 255, 0.4) 100%);
  pointer-events: none;
}

.brand-flow .story-section,
.brand-flow .form-section,
.brand-flow .footer {
  background: transparent;
}

.firenze-way {
  max-width: 1200px;
  border-top: 0;
  border-bottom: 0;
}

.firenze-way > *,
.pillars > .section-copy,
.pillars > .card-grid,
.why > .section-copy,
.why > .card-grid {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.journey-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
  padding-top: 42px;
}

.journey-map::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed rgba(146, 92, 56, 0.34);
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 190px;
  border: 1px solid rgba(30, 27, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(55, 37, 24, 0.07);
  padding: 48px 18px 20px;
  text-align: left;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.journey-step::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 4px solid var(--brand);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(146, 92, 56, 0.12);
  transform: translateX(-50%);
}

.journey-step::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  height: 28px;
  border-left: 2px solid rgba(146, 92, 56, 0.28);
}

.journey-step span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(146, 92, 56, 0.1);
  padding: 6px 10px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: background 220ms ease, color 220ms ease;
}

.journey-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.18;
  transition: color 220ms ease;
}

.journey-step:hover,
.journey-step:focus-within {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  box-shadow: 0 24px 58px rgba(55, 37, 24, 0.22);
  color: var(--white);
  transform: translateY(-6px);
}

.journey-step:hover span,
.journey-step:focus-within span {
  background: rgba(255, 250, 242, 0.14);
  color: var(--white);
}

.journey-step:hover h3,
.journey-step:focus-within h3 {
  color: var(--white);
}

.journey-step:hover::before,
.journey-step:focus-within::before {
  border-color: var(--brand-dark);
  background: var(--white);
  box-shadow: 0 0 0 9px rgba(91, 52, 32, 0.14);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid article {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 12px 38px rgba(55, 37, 24, 0.05);
  animation: cardRise 620ms ease both;
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
  transition-delay: var(--card-delay, 0ms);
}

.card-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--sage));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.card-grid article:nth-child(1) {
  --card-delay: 0ms;
}

.card-grid article:nth-child(2) {
  --card-delay: 90ms;
}

.card-grid article:nth-child(3) {
  --card-delay: 180ms;
}

.card-grid article:nth-child(4) {
  --card-delay: 270ms;
}

.card-grid article.is-visible:hover {
  border-color: rgba(146, 92, 56, 0.28);
  box-shadow: 0 22px 56px rgba(55, 37, 24, 0.11);
  transform: translateY(-6px);
}

.card-grid article:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.card-grid article:hover .card-icon {
  transform: translateY(-3px) rotate(-3deg);
}

.why .card-grid article:hover span:not(.card-icon) {
  color: var(--brand-dark);
}

.card-grid span:not(.card-icon) {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
}

.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--paper-deep);
  font-size: 1.35rem;
  transition: transform 220ms ease, background 220ms ease;
}

.card-grid article:hover .card-icon {
  background: rgba(146, 92, 56, 0.12);
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(30, 27, 23, 0.18);
  }

  50% {
    box-shadow: 0 18px 46px rgba(146, 92, 56, 0.24);
  }
}

@keyframes ctaSheen {
  0%,
  58% {
    transform: translateX(-130%);
  }

  78%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes headlineLift {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headlineAccent {
  0%,
  100% {
    color: var(--brand);
    transform: translateY(0);
  }

  50% {
    color: #b9784c;
    transform: translateY(-2px);
  }
}

@keyframes accentUnderline {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.68);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-grid article,
  .card-grid article::before,
  .card-icon,
  .hero-cta,
  .hero-cta::after,
  .form-headline,
  .form-headline span,
  .form-headline span::after {
    animation: none;
    transition: none;
  }

  .card-grid article {
    opacity: 1;
    transform: none;
  }
}

.card-grid h3 {
  margin: 34px 0 10px;
  font-size: 1.32rem;
  line-height: 1.08;
}

.card-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 500px);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  border-top: 1px solid rgba(30, 27, 23, 0.08);
  background: var(--paper);
}

.form-intro {
  position: static;
  align-self: center;
  padding-bottom: clamp(12px, 5vw, 42px);
}

.form-intro p {
  max-width: 560px;
  margin-top: 22px;
}

.form-headline {
  max-width: 9.5ch;
  animation: headlineLift 720ms ease both;
}

.form-headline span {
  position: relative;
  display: inline-block;
  color: var(--brand);
  animation: headlineAccent 3.8s ease-in-out 900ms infinite;
}

.form-headline span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(146, 92, 56, 0), rgba(146, 92, 56, 0.38), rgba(146, 92, 56, 0));
  opacity: 0.75;
  transform: scaleX(0.72);
  transform-origin: center;
  animation: accentUnderline 3.8s ease-in-out 900ms infinite;
}

.form-panel {
  border: 1px solid rgba(255, 250, 242, 0.78);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 28px);
  backdrop-filter: blur(18px);
}

.success-panel {
  display: grid;
  gap: 18px;
  padding-top: 24px;
}

.success-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.success-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.panel-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.step-counter {
  display: inline-flex;
  min-width: 54px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--brand-dark);
  font-weight: 800;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  margin: 24px 0;
  background: rgba(30, 27, 23, 0.08);
}

.progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--sage));
  transition: width 220ms ease;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 18px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--muted);
}

.step {
  display: none;
  min-height: 272px;
}

.step.is-active {
  display: grid;
  gap: 16px;
  align-content: start;
}

label {
  display: grid;
  gap: 8px;
  color: #3f382f;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(30, 27, 23, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 14px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
  min-height: 116px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(146, 92, 56, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(146, 92, 56, 0.12);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice {
  position: relative;
  display: block;
  min-height: 94px;
  cursor: pointer;
}

.choice-wide {
  grid-column: 1 / -1;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: flex;
  height: 100%;
  align-items: flex-end;
  border: 1px solid rgba(30, 27, 23, 0.14);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  color: var(--ink);
  line-height: 1.18;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.choice input:checked + span {
  border-color: var(--brand);
  background: rgba(146, 92, 56, 0.13);
}

.form-error {
  min-height: 20px;
  margin: 12px 0 0;
  color: #9d2f1e;
  font-size: 0.88rem;
  font-weight: 800;
}

.form-actions {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  margin-top: 12px;
}

.form-actions .primary-button,
.form-actions .ghost-button {
  min-height: 54px;
  padding: 0 22px;
}

.is-hidden {
  display: none;
}

.footer {
  display: grid;
  gap: 24px;
  border-top: 1px solid rgba(30, 27, 23, 0.08);
  text-align: center;
  background: #fff;
}

.brand-flow .form-section,
.brand-flow .footer {
  border-top-color: transparent;
}

.footer h2 {
  max-width: 900px;
  margin: 0 auto;
}

.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .card-grid,
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 0;
  }

  .journey-map::before {
    display: none;
  }

  .journey-step::before {
    top: 18px;
    left: 20px;
    transform: none;
  }

  .journey-step::after {
    display: none;
  }

  .journey-step {
    min-height: 160px;
    padding-top: 48px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 20px;
  }

  .hero-grid,
  .section-copy,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    margin-top: 58px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-visual {
    min-height: 380px;
  }

  h1 {
    max-width: 760px;
  }

  .form-intro {
    position: static;
    padding-bottom: 0;
  }

  .text-stack.narrow {
    margin-inline: 0;
    text-align: left;
  }

  .problem {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 76px;
    background:
      linear-gradient(180deg, rgba(30, 27, 23, 0.58), rgba(30, 27, 23, 0.82)),
      url("./assets/problema-comunicacao.png") center / cover;
  }

  .problem .section-copy {
    width: min(100%, 720px);
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding-bottom: 58px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .hero-grid {
    margin-top: 42px;
  }

  h1 {
    max-width: 12.5ch;
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1.06;
  }

  .section-copy h2,
  .form-intro h2,
  .footer h2 {
    max-width: 21ch;
    font-size: clamp(1.45rem, 5.8vw, 1.95rem);
    line-height: 1.12;
  }

  .lead {
    margin-top: 22px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .story-section,
  .form-section,
  .footer {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .problem {
    padding-inline: 20px;
  }

  .problem .section-copy h2 {
    max-width: 21ch;
    font-size: clamp(1.45rem, 5.8vw, 1.95rem);
    line-height: 1.12;
  }

  .problem .section-copy {
    padding: 0;
  }

  .problem-points li {
    padding: 14px 14px 14px 42px;
    font-size: 0.98rem;
  }

  .problem-points li::before {
    top: 21px;
    left: 18px;
    width: 8px;
    height: 8px;
  }

  .problem-points li:hover,
  .problem-points li:focus-within {
    transform: translateX(3px);
  }

  .card-grid,
  .card-grid.four,
  .choice-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-panel {
    margin-inline: -4px;
  }

  .journey-map {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 38px;
    padding-left: 24px;
    padding-top: 0;
  }

  .firenze-way .section-copy h2 {
    max-width: 22ch;
    font-size: clamp(1.4rem, 5.4vw, 1.85rem);
    line-height: 1.12;
  }

  .pillars .section-copy h2,
  .why .section-copy h2,
  .form-intro h2,
  .footer h2 {
    max-width: 22ch;
  }

  .form-headline {
    max-width: 12ch;
  }

  .panel-header h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    line-height: 1.12;
  }

  .success-panel h2 {
    font-size: clamp(1.45rem, 6.2vw, 2rem);
    line-height: 1.08;
  }

  .card-grid h3,
  .journey-step h3 {
    font-size: 1rem;
    line-height: 1.16;
  }

  .journey-map::before {
    display: block;
    top: 8px;
    bottom: 8px;
    left: 7px;
    right: auto;
    width: 0;
    border-left: 2px dashed rgba(146, 92, 56, 0.38);
    border-top: 0;
  }

  .journey-step {
    min-height: 104px;
    padding: 18px 18px 18px 20px;
    text-align: left;
  }

  .journey-step::before {
    left: -24px;
    top: 22px;
    transform: none;
  }

  .ghost-button {
    order: 2;
  }

  .step {
    min-height: 0;
  }
}
