@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: light;
  --vf-navy: #213044;
  --vf-navy-deep: #172331;
  --vf-teal: #2b625d;
  --vf-paper: #f7f3eb;
  --vf-white: #fffdf8;
  --vf-blue: #dfe8ee;
  --vf-border: #bdc8cf;
  --vf-muted: #53616c;
  --vf-error: #a43b32;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--vf-paper); color: var(--vf-navy-deep); font-family: "Manrope", sans-serif; }
.page--sales-valuation-start > .site-head,
.page--sales-valuation-start > .site-foot,
.page--sales-valuation-start > .legalstrip,
.page--sales-valuation-start > .launcher { display: none !important; }
.page--sales-valuation-start .main { padding: 0; }
button,
input,
select,
textarea { font: inherit; }
a { text-underline-offset: .28em; }
::selection { background: #c9dbd7; color: var(--vf-navy-deep); }
.skip { position: fixed; top: .5rem; left: .5rem; z-index: 20; padding: .7rem 1rem; background: var(--vf-navy-deep); color: #fff; transform: translateY(-150%); }
.skip:focus { transform: none; }

.flow-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 92px;
  align-items: center;
  padding: .75rem max(1.25rem, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid #d9d3c9;
  background: var(--vf-white);
}
.flow-head__back,
.flow-head__call { color: var(--vf-navy-deep); text-decoration: none; }
.flow-head__back { display: inline-flex; gap: .45rem; align-items: center; justify-self: start; font-weight: 700; }
.flow-head__back svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.flow-head__brand img { display: block; width: 88px; height: auto; }
.flow-head__call { justify-self: end; text-align: right; }
.flow-head__call span,
.flow-head__call strong { display: block; }
.flow-head__call span { margin-bottom: .1rem; color: var(--vf-muted); font-size: .75rem; }
.flow-head__call strong { font-size: .94rem; }

.valuation-flow { width: min(100% - 2rem, 1240px); margin: 0 auto; padding: clamp(3.5rem, 7vw, 6.5rem) 0 6rem; }
.valuation-flow__intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(30rem, .8fr); gap: 3rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 5rem); }
.valuation-flow__intro h1 { max-width: 13ch; margin: 0 0 1rem; font-size: clamp(2.8rem, 5vw, 5.25rem); font-weight: 650; line-height: 1; letter-spacing: -.04em; text-wrap: balance; }
.valuation-flow__intro p { max-width: 55ch; margin: 0; color: var(--vf-muted); font-size: 1.08rem; line-height: 1.65; }

.flow-progress { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.flow-progress li { position: relative; display: grid; gap: .45rem; justify-items: start; color: #75818a; }
.flow-progress li::before { position: absolute; top: 1rem; right: .6rem; left: 2.6rem; height: 1px; background: #c7d0d5; content: ""; }
.flow-progress li:last-child::before { display: none; }
.flow-progress span { position: relative; z-index: 1; display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid #aab6bd; border-radius: 50%; background: var(--vf-paper); font-size: .8rem; font-weight: 800; }
.flow-progress strong { font-size: .8rem; }
.flow-progress li.is-current,
.flow-progress li.is-complete { color: var(--vf-navy-deep); }
.flow-progress li.is-current span { border-color: var(--vf-teal); background: var(--vf-teal); color: #fff; }
.flow-progress li.is-complete span { border-color: var(--vf-teal); background: #d7e6e3; color: var(--vf-teal); }

.valuation-flow__workspace { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(20rem, .75fr); align-items: stretch; overflow: hidden; border-radius: 16px; box-shadow: 0 26px 70px -48px rgba(23,35,49,.78); }
.valuation-form { min-width: 0; padding: clamp(2rem, 5vw, 4.5rem); background: var(--vf-white); }
.flow-step__head { margin-bottom: 2.5rem; }
.flow-step__head h2 { max-width: 18ch; margin: 0 0 .8rem; font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 650; line-height: 1.08; letter-spacing: -.035em; }
.flow-step__head p { max-width: 54ch; margin: 0; color: var(--vf-muted); line-height: 1.6; }
.flow-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; }
.flow-field { display: grid; gap: .55rem; }
.flow-field--wide { grid-column: 1 / -1; }
.flow-field > span,
.flow-options legend { font-size: .88rem; font-weight: 750; }
.flow-field em { color: var(--vf-muted); font-size: .8rem; font-style: normal; font-weight: 500; }
.flow-field input,
.flow-field select,
.flow-field textarea {
  width: 100%;
  min-height: 58px;
  padding: .9rem 1rem;
  border: 1px solid var(--vf-border);
  border-radius: 12px;
  background: #fff;
  color: var(--vf-navy-deep);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.flow-field textarea { min-height: 8rem; resize: vertical; }
.flow-field input::placeholder,
.flow-field textarea::placeholder { color: #6e7982; opacity: 1; }
.flow-field input:focus,
.flow-field select:focus,
.flow-field textarea:focus { border-color: var(--vf-teal); outline: 0; box-shadow: 0 0 0 3px rgba(43,98,93,.16); }
.flow-field small,
.flow-options small { min-height: 1.1rem; color: var(--vf-error); font-size: .78rem; }
.flow-field.is-invalid input,
.flow-field.is-invalid select { border-color: var(--vf-error); }

.flow-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin: 0 0 2.25rem; padding: 0; border: 0; }
.flow-options legend { width: 100%; margin-bottom: .85rem; }
.flow-options label { position: relative; cursor: pointer; }
.flow-options input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; }
.flow-options label span { display: flex; min-height: 76px; align-items: center; justify-content: center; padding: .85rem; border: 1px solid var(--vf-border); border-radius: 12px; background: #fff; color: var(--vf-navy-deep); font-size: .9rem; font-weight: 700; line-height: 1.35; text-align: center; }
.flow-options input:checked + span { border-color: var(--vf-teal); background: #dce9e6; box-shadow: inset 0 0 0 1px var(--vf-teal); }
.flow-options input:focus-visible + span { outline: 3px solid #d1785f; outline-offset: 3px; }
.flow-options small { grid-column: 1 / -1; }

.flow-step__actions { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #d8dedf; }
.flow-button,
.flow-copy { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: .85rem 1.3rem; border: 1px solid var(--vf-teal); border-radius: 12px; background: var(--vf-teal); color: #fff; cursor: pointer; font-weight: 750; text-decoration: none; transition: background-color 160ms ease, color 160ms ease, transform 160ms ease; }
.flow-button--back,
.flow-copy { border-color: var(--vf-border); background: transparent; color: var(--vf-navy-deep); }
.flow-button--whatsapp { background: var(--vf-navy); border-color: var(--vf-navy); }
.flow-button:focus-visible,
.flow-copy:focus-visible,
.flow-head a:focus-visible { outline: 3px solid #d1785f; outline-offset: 4px; }

.valuation-flow__assurance { padding: clamp(2rem, 4vw, 4rem); background: var(--vf-navy); color: #fff; }
.valuation-flow__assurance h2 { margin: 0 0 2.75rem; color: #fff; font-size: clamp(1.8rem, 2.5vw, 2.8rem); font-weight: 650; letter-spacing: -.03em; }
.valuation-flow__assurance ul { margin: 0 0 3rem; padding: 0; list-style: none; }
.valuation-flow__assurance li { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.24); }
.valuation-flow__assurance li:last-child { border-bottom: 1px solid rgba(255,255,255,.24); }
.valuation-flow__assurance strong,
.valuation-flow__assurance span { display: block; }
.valuation-flow__assurance strong { margin-bottom: .35rem; }
.valuation-flow__assurance span { color: #dbe3e8; font-size: .9rem; line-height: 1.55; }
.valuation-flow__assurance > p { margin: 0 0 .35rem; color: #dbe3e8; font-size: .82rem; }
.valuation-flow__assurance > a { color: #fff; font-weight: 750; }

.flow-summary { margin: 0; }
.flow-summary div { display: grid; grid-template-columns: minmax(8rem, .45fr) minmax(0, 1fr); gap: 1.5rem; padding: 1rem 0; border-top: 1px solid #d2dadd; }
.flow-summary div:last-child { border-bottom: 1px solid #d2dadd; }
.flow-summary dt { color: var(--vf-muted); font-size: .82rem; }
.flow-summary dd { margin: 0; font-weight: 650; overflow-wrap: anywhere; }
.flow-contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.flow-copy-status { min-height: 1.4rem; margin: .75rem 0 0; color: var(--vf-teal); font-size: .86rem; }

@media (hover: hover) and (pointer: fine) {
  .flow-button:hover,
  .flow-copy:hover { transform: translateY(-2px); }
  .flow-button:not(.flow-button--back):not(.flow-button--whatsapp):hover { background: var(--vf-navy); border-color: var(--vf-navy); }
  .flow-button--back:hover,
  .flow-copy:hover { background: var(--vf-blue); }
}
@media (max-width: 62em) {
  .valuation-flow__intro { grid-template-columns: 1fr; }
  .valuation-flow__workspace { grid-template-columns: 1fr; }
  .valuation-flow__assurance { order: -1; }
  .valuation-flow__assurance ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
  .valuation-flow__assurance li,
  .valuation-flow__assurance li:last-child { border-bottom: 0; }
}
@media (max-width: 47.99em) {
  .flow-head { grid-template-columns: auto 1fr auto; min-height: 76px; padding-inline: 1rem; }
  .flow-head__brand { justify-self: center; }
  .flow-head__brand img { width: 70px; }
  .flow-head__call span { display: none; }
  .flow-head__call strong { font-size: .78rem; }
  .valuation-flow { width: 100%; padding-top: 3rem; }
  .valuation-flow__intro { padding-inline: 1rem; }
  .flow-progress strong { display: none; }
  .valuation-flow__workspace { border-radius: 0; box-shadow: none; }
  .valuation-flow__assurance { padding: 2.75rem 1.25rem; }
  .valuation-flow__assurance ul { grid-template-columns: 1fr; }
  .valuation-form { padding: 3rem 1.25rem; }
  .flow-fields,
  .flow-options { grid-template-columns: 1fr; }
  .flow-options small { grid-column: 1; }
  .flow-step__actions { justify-content: stretch; }
  .flow-step__actions .flow-button { flex: 1; }
  .flow-contact-actions { display: grid; }
  .flow-summary div { grid-template-columns: 1fr; gap: .35rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flow-button,
  .flow-copy { transition: none; transform: none !important; }
}
