@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("../fonts/barlow-semi-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("../fonts/barlow-semi-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --orange: #ff7300;
  --ink: #101914;
  --warm: #f6f4ee;
  --white: #fff;
  --green: #1f7a4c;
  --red: #b42318;
  --line: #d9ddd8;
  --muted: #5e6861;
  --content: 1200px;
  --shadow: 0 22px 60px rgba(6,19,12,.14);
  --orange-dark: #9b3d00;
  --orange-hover: #e86700;
  --warm-deep: #ebe7dd;
  --dark-panel: #17231c;
  --dark-muted: #cbd3cd;
  --focus: #713000;
  --gutter: clamp(1rem, 4vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
  background: var(--warm);
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

main,
section,
form,
article,
figure,
div {
  min-width: 0;
}

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

img {
  height: auto;
}

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

a,
button,
input,
textarea,
select,
summary {
  min-height: 44px;
}

a {
  color: inherit;
}

button {
  margin: 0;
}

p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.05;
}

section[id],
form[id] {
  scroll-margin-top: 6rem;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header :focus-visible,
.hero__copy :focus-visible,
.section--dark :focus-visible,
.final-quote > div :focus-visible,
.mobile-conversion :focus-visible,
footer :focus-visible {
  outline-color: var(--orange);
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  padding: .65rem 1rem;
  border-radius: 0 0 5px 5px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-140%);
}

.skip-link:focus-visible {
  outline-color: var(--ink);
  outline-offset: 2px;
  transform: translateY(0);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: .78rem 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button--primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.button--whatsapp {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled,
.button[aria-disabled="true"] {
  opacity: .58;
  cursor: not-allowed;
  transform: none;
}

.eyebrow {
  margin-bottom: .8rem;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .55rem max(var(--gutter), calc((100% - var(--content)) / 2));
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: var(--ink);
  color: var(--white);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.45rem, 1.4vw, 1.2rem);
}

.site-header nav a:not(.button) {
  display: inline-flex;
  align-items: center;
  padding: .45rem .25rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: .26em;
}

.site-header nav a[data-track="whatsapp"]:not(.button) {
  color: #d7f4e4;
}

.brand {
  display: inline-flex;
  min-height: 57px;
  flex: 0 1 256px;
  align-items: center;
}

.brand img {
  width: min(256px, 100%);
  max-height: 57px;
  object-fit: contain;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) max(var(--gutter), calc((100% - var(--content)) / 2));
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(16,25,20,.45);
  content: "";
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  max-width: 690px;
}

.hero__copy .eyebrow,
.section--dark .eyebrow,
.final-quote .eyebrow {
  color: var(--orange);
}

.hero h1 {
  max-width: 13ch;
}

.hero__lede {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  color: #e2e7e3;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.hero__media {
  position: absolute;
  z-index: 0;
  inset: 0 28% 0 0;
  overflow: hidden;
  opacity: .38;
  mix-blend-mode: screen;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fact-list {
  display: grid;
  max-width: 590px;
  gap: .55rem;
  margin: 1.6rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
}

.fact-list li::before {
  width: 4px;
  height: 1.15rem;
  flex: 0 0 4px;
  margin-top: .22rem;
  background: var(--orange);
  content: "";
}

.hero .inquiry-form {
  position: relative;
  z-index: 3;
  align-self: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: max(var(--gutter), calc((100% - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip p {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem 1.25rem;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .055em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip p + p {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) max(var(--gutter), calc((100% - var(--content)) / 2));
  background: var(--white);
}

.section > h2 {
  max-width: 20ch;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section > p:not(.eyebrow):not(.disclaimer) {
  max-width: 72ch;
  color: var(--muted);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section--dark > p:not(.eyebrow) {
  color: var(--dark-muted);
}

.section--warm {
  background: var(--warm-deep);
}

.steps,
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps {
  gap: 1px;
  padding: 1px;
  background: rgba(255,115,0,.62);
}

.steps li {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--dark-panel);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
}

.steps b,
.process b {
  display: block;
  color: var(--orange);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
}

.model-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
}

.model-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.1rem, 2.3vw, 1.5rem);
}

.card-content h3 {
  margin-bottom: .85rem;
}

.card-content p {
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: .94rem;
}

.card-content .button {
  width: 100%;
  margin-top: auto;
}

.disclaimer {
  max-width: 76ch;
  margin: 1.35rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
  color: var(--muted);
  font-size: .88rem;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.application-grid article {
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
  border: 1px solid #d2d6d0;
  border-radius: 8px;
  background: var(--white);
}

.application-grid article > span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--orange-dark);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
}

.application-grid h3 {
  margin-bottom: .7rem;
}

.application-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.evidence-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.evidence-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.evidence-grid figcaption {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1rem;
}

.evidence-grid figcaption strong {
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.15;
}

.evidence-grid figcaption span {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.process {
  border: 1px solid rgba(255,115,0,.62);
}

.process li {
  position: relative;
  display: flex;
  min-height: 185px;
  flex-direction: column;
  gap: .65rem;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  background: var(--dark-panel);
}

.process li + li {
  border-left: 1px solid rgba(255,115,0,.62);
}

.process strong {
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.process span {
  color: var(--dark-muted);
  font-size: .9rem;
  line-height: 1.5;
}

#company {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(2rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#company .eyebrow {
  grid-row: 1;
  grid-column: 1;
}

#company h2 {
  grid-row: 2;
  grid-column: 1;
  margin-bottom: 0;
}

#company > p:last-child {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  margin: 0;
  padding: .5rem 0 .5rem clamp(1.25rem, 3vw, 2.25rem);
  border-left: 5px solid var(--orange);
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.faq-list {
  max-width: 920px;
}

.faq-list details {
  border-top: 1px solid #cdd2cc;
  background: transparent;
}

.faq-list details:last-child {
  border-bottom: 1px solid #cdd2cc;
}

.faq-list details[open] {
  background: var(--white);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 1rem 3rem 1rem 1rem;
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker {
  content: "";
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 18px;
  height: 2px;
  background: var(--orange-dark);
  content: "";
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary {
  color: var(--orange-dark);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list details p {
  max-width: 76ch;
  margin: 0;
  padding: 0 3rem 1.4rem 1rem;
  color: var(--muted);
}

.final-quote {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(440px, 1.28fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.final-quote > div > h2 {
  margin-bottom: 1.2rem;
}

.final-quote > div > p:last-child {
  margin-bottom: 0;
  color: var(--dark-muted);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem 1rem;
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.form-heading,
.form-errors,
.field--wide,
.form-message,
.button--submit,
.form-note {
  grid-column: 1 / -1;
}

.form-heading h2 {
  margin-bottom: .55rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.03;
}

.form-heading p:last-child {
  margin-bottom: .25rem;
  color: var(--muted);
  font-size: .92rem;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .35rem;
}

.field label {
  color: var(--ink);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
}

.optional {
  margin-left: .35rem;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .025em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--muted);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: .72rem .78rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

textarea {
  min-height: 138px;
  line-height: 1.5;
  resize: vertical;
}

input:hover:not(:disabled),
textarea:hover:not(:disabled) {
  border-color: var(--muted);
}

input:focus-visible,
textarea:focus-visible {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(113,48,0,.2);
}

[aria-invalid="true"] {
  border-color: var(--red);
  background: #fff8f7;
}

input:disabled,
textarea:disabled,
input[readonly],
textarea[readonly] {
  border-color: var(--line);
  background: #eef0ec;
  color: var(--muted);
  cursor: not-allowed;
}

.field-error {
  margin: 0;
  color: var(--red);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.4;
}

.field-error:empty {
  display: none;
}

.form-errors {
  padding: .8rem 1rem;
  border: 1px solid var(--red);
  border-left-width: 4px;
  border-radius: 4px;
  background: #fff0ee;
  color: var(--red);
  font-size: .88rem;
  font-weight: 600;
}

.form-errors a {
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

.form-message {
  min-height: 1.5rem;
  margin: 0;
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: .88rem;
}

.form-message--success,
.form-message.is-success {
  border-color: var(--green);
  background: #edf8f2;
  color: var(--green);
}

.form-message--error,
.form-message.is-error {
  border-color: var(--red);
  background: #fff0ee;
  color: var(--red);
}

.button--submit {
  width: 100%;
  margin-top: .2rem;
}

.button--submit[aria-busy="true"],
.is-submitting .button--submit {
  color: transparent;
  cursor: wait;
}

.button--submit[aria-busy="true"]:disabled {
  opacity: 1;
}

.button--submit[aria-busy="true"]::after,
.is-submitting .button--submit::after {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--ink);
  content: "Sending…";
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.inquiry-form[aria-busy="true"],
.inquiry-form.is-submitting {
  cursor: wait;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.45;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.mobile-conversion {
  display: none;
}

footer {
  display: grid;
  grid-template-columns: auto minmax(180px, .65fr) minmax(260px, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 2rem max(var(--gutter), calc((100% - var(--content)) / 2));
  border-top: 1px solid rgba(255,255,255,.12);
  background: var(--ink);
  color: var(--white);
}

footer img {
  width: 256px;
  max-width: 100%;
  max-height: 57px;
  object-fit: contain;
}

footer a {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: .25em;
}

footer p {
  margin: 0;
  color: var(--dark-muted);
  font-size: .82rem;
}

.outcome-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
}

.outcome-header {
  position: relative;
  flex: 0 0 auto;
}

.outcome-header .header-whatsapp {
  color: #d7f4e4;
}

.outcome-main {
  display: grid;
  flex: 1 0 auto;
  place-items: center;
  padding: clamp(2.5rem, 8vw, 6.5rem) max(var(--gutter), calc((100% - 840px) / 2));
  background: var(--ink);
}

.status-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  align-items: flex-start;
  padding: clamp(1.5rem, 5vw, 3.25rem);
  border: 1px solid var(--line);
  border-top: 6px solid var(--orange);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.status-card__marker {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
}

.status-card__marker::before {
  position: absolute;
  top: 13px;
  left: 21px;
  width: 12px;
  height: 23px;
  border: solid var(--ink);
  border-width: 0 4px 4px 0;
  content: "";
  transform: rotate(45deg);
}

.status-card--error .status-card__marker::before {
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  border: 0;
  color: var(--ink);
  content: "!";
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -53%);
}

.status-card .eyebrow {
  margin-bottom: .65rem;
}

.status-card h1 {
  max-width: 16ch;
  font-size: clamp(2.5rem, 8vw, 4.7rem);
}

.status-card__lede {
  max-width: 62ch;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
}

.status-card__next {
  width: 100%;
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--orange);
  background: var(--warm);
}

.status-card__next h2 {
  margin-bottom: .35rem;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  line-height: 1.08;
}

.status-card__next p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.status-card__actions {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.status-card__actions .button {
  flex: 1 1 240px;
}

.status-card__email {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.status-card__email a {
  display: inline-flex;
  align-items: center;
  color: var(--orange-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-underline-offset: .22em;
}

.outcome-footer {
  flex: 0 0 auto;
}

@media (hover: hover) {
  .button--primary:hover {
    border-color: var(--orange-hover);
    background: var(--orange-hover);
  }

  .button--whatsapp:hover {
    border-color: #185f3b;
    background: #185f3b;
  }

  .site-header nav a:not(.button):hover,
  footer a:hover {
    color: var(--white);
  }

  .faq-list summary:hover {
    background: rgba(255,255,255,.58);
  }
}

@media (max-width: 1024px) {
  .site-header {
    gap: .75rem;
  }

  .site-header nav {
    gap: .45rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .76fr);
    gap: 1.5rem;
  }

  .hero__media {
    right: 32%;
  }

  .hero__media img {
    object-fit: contain;
    object-position: left center;
  }

  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-grid,
  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-quote {
    grid-template-columns: minmax(0, .68fr) minmax(420px, 1.32fr);
    gap: 2rem;
  }

  footer {
    grid-template-columns: minmax(180px, .7fr) minmax(240px, 1fr);
  }

  footer img {
    grid-row: 1 / span 2;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  .outcome-page {
    padding-bottom: 0;
  }

  section[id],
  form[id] {
    scroll-margin-top: 5rem;
  }

  .site-header {
    min-height: 68px;
    gap: .65rem;
    padding: .4rem 1rem;
  }

  .brand {
    min-height: 50px;
    flex-basis: min(190px, 55vw);
  }

  .brand img {
    width: min(190px, 100%);
    max-height: 50px;
  }

  .site-header nav a:not([data-track="whatsapp"]) {
    display: none;
  }

  .site-header nav a[data-track="whatsapp"] {
    min-height: 44px;
    padding: .45rem .15rem;
    font-size: .82rem;
  }

  .outcome-header nav a.header-whatsapp {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: .45rem .15rem;
    font-size: .82rem;
  }

  .outcome-main {
    padding: 2.25rem 1rem;
  }

  .status-card {
    padding: 1.35rem;
  }

  .status-card__marker {
    width: 50px;
    height: 50px;
    margin-bottom: 1.2rem;
  }

  .status-card__marker::before {
    top: 11px;
    left: 19px;
    width: 11px;
    height: 21px;
  }

  .status-card__actions {
    flex-direction: column;
  }

  .status-card__actions .button {
    width: 100%;
    flex-basis: auto;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    padding: 2.75rem 1rem 2.5rem;
  }

  .hero::after {
    display: none;
  }

  .hero__copy {
    order: 1;
    max-width: none;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero__lede {
    margin-top: 1rem;
  }

  .fact-list {
    margin: 1.3rem 0 1.4rem;
  }

  .hero__media {
    position: relative;
    opacity: 1;
    mix-blend-mode: normal;
    aspect-ratio: 4 / 3;
    order: 2;
    inset: auto;
    width: auto;
    margin-inline: -1rem;
  }

  .hero__media img {
    object-position: center;
  }

  .hero .inquiry-form {
    order: 3;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip p {
    min-height: 54px;
    justify-content: flex-start;
    padding: .75rem 1rem;
    text-align: left;
  }

  .proof-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: clamp(3.5rem, 14vw, 5rem) 1rem;
  }

  .section > h2 {
    margin-bottom: 2rem;
  }

  .model-grid,
  .application-grid,
  .evidence-grid,
  .steps,
  .process {
    grid-template-columns: 1fr;
  }

  .model-grid,
  .application-grid,
  .evidence-grid {
    gap: 1rem;
  }

  .steps li,
  .process li {
    min-height: 0;
  }

  .steps li {
    flex-direction: row;
    align-items: flex-start;
  }

  .steps b {
    flex: 0 0 auto;
  }

  .process li + li {
    border-top: 1px solid rgba(255,115,0,.62);
    border-left: 0;
  }

  #company {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  #company .eyebrow,
  #company h2,
  #company > p:last-child {
    grid-row: auto;
    grid-column: 1;
  }

  #company h2 {
    margin-bottom: 1.5rem;
  }

  #company > p:last-child {
    padding: .25rem 0 .25rem 1.1rem;
  }

  .faq-list summary {
    padding-left: .75rem;
  }

  .faq-list details p {
    padding-right: 1rem;
    padding-left: .75rem;
  }

  .final-quote {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .form-heading,
  .form-errors,
  .field,
  .field--wide,
  .form-message,
  .button--submit,
  .form-note {
    grid-column: 1;
  }

  footer {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: 2rem 1rem 2.5rem;
  }

  footer img {
    grid-row: auto;
    width: min(220px, 72vw);
  }

  .mobile-conversion {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: .5rem;
    padding: .625rem max(.75rem, env(safe-area-inset-right)) calc(.625rem + env(safe-area-inset-bottom)) max(.75rem, env(safe-area-inset-left));
    background: var(--ink);
    box-shadow: 0 -8px 24px rgba(0,0,0,.2);
  }

  .mobile-conversion .button {
    min-width: 0;
    min-height: 48px;
    padding-inline: .55rem;
    font-size: .88rem;
  }
}

@media (min-width: 761px) {
  .hero .inquiry-form {
    grid-column: 2;
  }

  .mobile-conversion {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  html,
  body {
    background: #fff !important;
    color: #000 !important;
  }

  body {
    padding-bottom: 0 !important;
  }

  .mobile-conversion {
    display: none !important;
  }

  .site-header {
    position: static;
    border-bottom: 1px solid #000;
    background: #fff !important;
    color: #000 !important;
  }

  .site-header .button {
    display: none !important;
  }

  .site-header nav a[data-track="whatsapp"],
  .site-header nav a[data-track="whatsapp"] *,
  .site-header nav a[data-track="email"],
  .site-header nav a[data-track="email"] * {
    color: #000 !important;
  }

  .hero,
  .section,
  .final-quote,
  .outcome-main,
  .status-card,
  footer {
    background: #fff !important;
    color: #000 !important;
  }

  .hero {
    display: block;
    min-height: 0;
  }

  .hero__media {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .fact-list li {
    color: #000 !important;
  }

  .eyebrow,
  .application-grid article > span,
  .faq-list details[open] summary {
    color: #000 !important;
  }

  .inquiry-form,
  .model-card,
  .application-grid article,
  .evidence-grid figure {
    box-shadow: none !important;
    break-inside: avoid;
  }

  .steps,
  .process {
    display: block;
    border: 1px solid #000;
    background: #fff !important;
  }

  .steps li,
  .process li {
    min-height: 0;
    border: 0;
    border-bottom: 1px solid #000;
    background: #fff !important;
    color: #000 !important;
  }

  .steps b,
  .process b,
  .process span {
    color: #000 !important;
  }

  footer a,
  .hero__lede,
  .section--dark > p:not(.eyebrow),
  .final-quote > div > p:last-child,
  footer p {
    color: #000 !important;
  }
}
