:root {
  --ink: #1b211d;
  --ink-soft: #465048;
  --paper: #f3efe5;
  --paper-deep: #e7dfd0;
  --cream: #fffaf0;
  --kraft: #b98147;
  --kraft-dark: #80572f;
  --accent: #f0642d;
  --accent-dark: #d94e19;
  --line: rgba(27, 33, 29, 0.18);
  --line-light: rgba(255, 250, 240, 0.2);
  --white: #ffffff;
  --max-width: 1260px;
  --font-sans: "Segoe UI Variable", "Microsoft YaHei", "PingFang SC", Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 20px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.announcement p {
  margin: 0;
}

.announcement span {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 239, 229, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.7;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.29em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.footer-bottom nav a {
  position: relative;
}

.desktop-nav a::after,
.footer-bottom nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.footer-bottom nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: 180ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--cream);
}

.header-cta svg {
  width: 16px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 790px;
  margin: 0 auto;
  padding: 92px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  grid-template-rows: auto 118px;
  align-items: center;
  gap: 56px 72px;
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--kraft-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span:not(:last-child)::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--kraft-dark);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(52px, 6.3vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

h1 em {
  display: block;
  color: var(--accent);
  font-style: normal;
}

.hero-intro {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 0;
  border-radius: 2px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link svg {
  width: 16px;
}

.hero-checks {
  display: flex;
  gap: 24px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-checks svg {
  width: 14px;
  color: var(--accent);
  stroke-width: 3;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-image-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 var(--kraft);
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  object-position: 54% center;
}

.hero-note {
  position: absolute;
  left: -42px;
  bottom: -28px;
  width: min(310px, 66%);
  min-height: 100px;
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--ink);
}

.note-number {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding-right: 16px;
  border-right: 1px solid var(--line);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.hero-note p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.hero-note strong {
  font-size: 15px;
}

.hero-note small {
  color: var(--ink-soft);
  font-size: 11px;
}

.hero-stamp {
  position: absolute;
  top: -24px;
  right: -20px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-align: center;
  transform: rotate(4deg);
}

.hero-metrics {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.55fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.hero-metrics > div,
.metrics-note {
  min-height: 100px;
  margin: 0;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.hero-metrics strong {
  font-size: 30px;
  line-height: 1;
}

.hero-metrics span {
  margin-left: 2px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 800;
}

.hero-metrics div p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.metrics-note {
  display: flex;
  align-items: center;
  border-right: 0;
  color: var(--kraft-dark);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.industry-strip {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 20px 24px;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-strip p {
  margin: 0;
  color: var(--kraft-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.industry-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.industry-strip li::before {
  content: "×";
  margin-right: 12px;
  color: var(--kraft);
}

.section {
  padding: 122px max(24px, calc((100% - var(--max-width)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 66px;
}

.section-heading h2,
.custom h2,
.capabilities h2,
.quote h2,
.faq h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 450px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.product-item {
  min-height: 334px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background 200ms ease, color 200ms ease;
}

.product-item:hover {
  background: var(--ink);
  color: var(--cream);
}

.product-no {
  color: var(--kraft-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 30px 0 24px;
  background: var(--paper-deep);
  color: var(--ink);
}

.product-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.product-copy h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.product-copy p {
  min-height: 52px;
  margin: 10px 48px 18px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.product-item:hover .product-copy p,
.product-item:hover .product-no {
  color: rgba(255, 250, 240, 0.72);
}

.product-copy ul {
  display: flex;
  gap: 18px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: var(--kraft-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-item:hover .product-copy ul {
  color: #e7b482;
}

.product-copy li::before {
  content: "/";
  margin-right: 6px;
}

.product-item > a {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
}

.product-item > a svg {
  width: 17px;
}

.custom {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  background: var(--ink);
  color: var(--cream);
}

.kicker-light {
  color: #d6a472;
}

.custom-intro > p:not(.kicker) {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.64);
}

.button-light {
  margin-top: 34px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--accent);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process-list li {
  min-height: 120px;
  display: grid;
  grid-template-columns: 44px 1fr 50px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.process-list > li > span {
  color: #d6a472;
  font-size: 11px;
  font-weight: 800;
}

.process-list h3 {
  margin: 0;
  font-size: 20px;
}

.process-list p {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.56);
  font-size: 13px;
}

.process-list > li > svg {
  width: 26px;
  color: var(--accent);
  stroke-width: 1.5;
}

.capabilities {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 96px;
}

.capabilities-media {
  position: relative;
}

.capabilities-media::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 16px;
  bottom: 16px;
  left: -16px;
  z-index: -1;
  border: 1px solid var(--kraft);
}

.capabilities-media img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05);
}

.capabilities-media p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
}

.capabilities-media a {
  text-decoration: underline;
}

.capabilities-copy .lead {
  max-width: 550px;
  margin: 28px 0 42px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.capability-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.capability-list > div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list dt {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.capability-list dt svg {
  width: 18px;
  color: var(--accent);
}

.capability-list dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.about {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 120px;
  background: var(--kraft-dark);
  color: var(--cream);
}

.about blockquote {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.about-detail {
  align-self: end;
}

.about-detail > p {
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  line-height: 1.9;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
}

.about-values span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
}

.about-values svg {
  width: 15px;
  color: #efbd8a;
}

.quote {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 92px;
  align-items: start;
  background: var(--cream);
}

.quote-copy {
  position: sticky;
  top: 120px;
}

.quote-copy > p:not(.kicker) {
  max-width: 420px;
  margin: 28px 0 34px;
  color: var(--ink-soft);
}

.response-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 26px;
}

.response-note > svg {
  width: 28px;
  color: var(--accent);
}

.response-note div {
  display: flex;
  flex-direction: column;
}

.response-note strong {
  font-size: 13px;
}

.response-note span,
.email-link span {
  color: var(--ink-soft);
  font-size: 11px;
}

.email-link {
  width: max-content;
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
}

.email-link strong {
  font-size: 14px;
}

.quote-form {
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 10px 10px 0 var(--paper-deep);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 22px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.quote-form label > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(27, 33, 29, 0.32);
  border-radius: 0;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 100, 45, 0.14);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8e8d85;
}

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

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.form-footer p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.form-footer p svg {
  width: 14px;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.faq h2 {
  font-size: clamp(34px, 3.3vw, 48px);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

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

.faq-list summary svg {
  width: 20px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -8px 54px 26px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer {
  padding: 78px max(24px, calc((100% - var(--max-width)) / 2)) 24px;
  background: var(--ink);
  color: var(--cream);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 70px;
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--cream);
}

.brand-footer .brand-copy small {
  color: rgba(255, 250, 240, 0.58);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 14px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--cream);
  font-weight: 800;
}

.footer-cta svg {
  width: 18px;
  color: var(--accent);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 250, 240, 0.46);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 28px;
}

.back-top {
  justify-self: end;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  color: var(--cream);
}

.back-top svg {
  width: 16px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: var(--cream);
  background: var(--ink);
  border-left: 4px solid var(--accent);
  box-shadow: 0 16px 50px rgba(27, 33, 29, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast > svg {
  width: 24px;
  color: var(--accent);
}

.toast div {
  display: flex;
  flex-direction: column;
}

.toast strong {
  font-size: 12px;
}

.toast span {
  color: rgba(255, 250, 240, 0.62);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--ink);
  }

  .mobile-nav {
    position: fixed;
    top: 108px;
    right: 0;
    left: 0;
    height: calc(100vh - 108px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 36px 24px;
    color: var(--cream);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 19px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 20px;
    font-weight: 800;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 60px 36px;
    padding-top: 72px;
  }

  .hero-note {
    left: -20px;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom,
  .capabilities,
  .quote {
    gap: 60px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 780px) {
  .announcement {
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .nav-shell,
  .hero {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 52px;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-media {
    margin: 0 6px 0 20px;
  }

  .hero-image-frame img {
    aspect-ratio: 1.04;
    object-position: 58% center;
  }

  .hero-note {
    left: -20px;
    bottom: -30px;
    width: 76%;
  }

  .hero-stamp {
    right: -8px;
  }

  .hero-metrics {
    grid-column: auto;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 16px;
  }

  .hero-metrics > div,
  .metrics-note {
    min-height: 88px;
    padding: 17px 12px;
  }

  .hero-metrics strong {
    font-size: 23px;
  }

  .metrics-note {
    grid-column: 1 / -1;
    justify-content: center;
    border-top: 1px solid var(--line);
  }

  .industry-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .industry-strip ul {
    gap: 8px 18px;
  }

  .section {
    padding: 80px 20px;
  }

  .section-heading,
  .custom,
  .capabilities,
  .quote,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .custom,
  .capabilities,
  .quote,
  .faq {
    gap: 48px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .product-list {
    grid-template-columns: 1fr;
  }

  .product-item {
    min-height: 300px;
  }

  .capabilities-media {
    margin-left: 12px;
  }

  .capabilities-media img {
    aspect-ratio: 1.15;
  }

  .about {
    gap: 40px;
  }

  .quote-copy {
    position: static;
  }

  .quote-form {
    padding: 28px 20px;
    box-shadow: 6px 6px 0 var(--paper-deep);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-heading {
    max-width: 520px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 50px;
  }

  .footer-cta {
    width: max-content;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }

  .footer-bottom nav {
    grid-row: 1;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .back-top {
    grid-column: 2;
  }
}

@media (max-width: 480px) {
  .announcement p:last-child,
  .announcement span {
    display: none;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: max-content;
  }

  .hero-checks {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .hero-note {
    width: 88%;
  }

  .hero-stamp {
    top: -18px;
    width: 62px;
    height: 62px;
    font-size: 7px;
  }

  .hero-metrics div p {
    font-size: 9px;
  }

  .section-heading h2,
  .custom h2,
  .capabilities h2,
  .quote h2 {
    font-size: 38px;
  }

  .capability-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-list li {
    grid-template-columns: 34px 1fr;
  }

  .process-list > li > svg {
    display: none;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
