:root {
  --ink: #151515;
  --ink-soft: #2d312f;
  --graphite: #202421;
  --muted: #646c68;
  --paper: #f7f4ee;
  --pale: #ebe7df;
  --white: #ffffff;
  --green: #536f56;
  --bronze: #a56b3f;
  --line: rgba(21, 21, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(17, 20, 18, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, padding 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  padding-block: 13px;
  background: rgba(25, 28, 26, 0.94);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.brand-mark {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 28px;
  border: 3px solid currentColor;
  border-bottom: 0;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: currentColor;
  transform: skewX(-18deg);
}

.brand-mark::before {
  left: 10px;
}

.brand-mark::after {
  left: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.92rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-left: 8px;
  padding: 10px 18px;
  color: var(--ink) !important;
  font-weight: 820;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--ink) !important;
  background: #f3d6b2;
  border-color: #f3d6b2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 9, 0.84), rgba(8, 10, 9, 0.5) 42%, rgba(8, 10, 9, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--max));
  min-height: 84svh;
  margin: 0 auto;
  padding: 124px 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--bronze);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: min(850px, 100%);
  margin-bottom: 22px;
  font-size: 4.28rem;
  line-height: 1;
  font-weight: 780;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.55rem;
  line-height: 1.08;
  font-weight: 740;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.hero-content p:not(.eyebrow) {
  width: min(650px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
}

.page-hero {
  position: relative;
  min-height: 58svh;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 13, 12, 0.86), rgba(11, 13, 12, 0.44));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--max));
  min-height: 58svh;
  margin: 0 auto;
  padding: 126px 0 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.page-hero-content h1 {
  font-size: 3.6rem;
}

.page-hero-content p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 780;
  line-height: 1.1;
  cursor: pointer;
}

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

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.06);
}

.button.dark {
  color: var(--white);
  background: var(--graphite);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.section-inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.section-band {
  padding: 92px 0;
  background: var(--paper);
}

.section-band.pale {
  background: var(--pale);
}

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

.proof-strip {
  background: #f4f0e8;
  border-bottom: 1px solid var(--line);
}

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

.proof-grid div {
  position: relative;
  min-height: 154px;
  padding: 28px 26px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
}

.proof-grid div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid div::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 20px;
  width: 36px;
  height: 3px;
  background: var(--bronze);
}

.proof-grid strong {
  display: block;
  margin-top: 22px;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 2rem;
  line-height: 1.05;
}

.proof-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.intro-layout p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.audience {
  background: var(--paper);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-cards a {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  border-radius: 8px;
  background: #111;
}

.audience-cards img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 240ms ease;
}

.audience-cards a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 11, 0.08), rgba(10, 12, 11, 0.82));
}

.audience-cards a:hover img,
.audience-cards a:focus-visible img {
  transform: scale(1.04);
}

.audience-cards span,
.audience-cards strong {
  position: relative;
  z-index: 1;
}

.audience-cards span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.audience-cards strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.18;
}

.trust-band {
  background: #f0ece4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-layout,
.markets-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.trust-copy p:not(.eyebrow),
.markets-layout p,
.faq-layout .section-heading p {
  color: var(--muted);
}

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

.cred-grid article,
.partner-grid article,
.support-panel,
.faq-list details {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cred-grid article,
.partner-grid article {
  padding: 22px;
}

.cred-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 1.34rem;
  line-height: 1.16;
}

.cred-grid span,
.partner-grid p,
.support-panel li,
.faq-list p {
  color: var(--muted);
}

.section-heading {
  width: min(790px, 100%);
  margin-bottom: 40px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow),
.split-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.split-heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--graphite);
  border-radius: 4px;
  font-weight: 800;
}

.product-suite {
  display: grid;
  gap: 22px;
}

.product-feature {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-feature.reverse {
  grid-template-columns: 0.93fr 1.07fr;
}

.product-feature.reverse img {
  order: 2;
}

.product-feature img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-feature > div {
  padding: 40px;
  align-self: center;
}

.product-kicker {
  margin-bottom: 10px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.product-feature p:not(.product-kicker),
.product-cards p,
.solution-grid p,
.engineering-list p,
.process-grid p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--bronze);
}

.product-cards,
.solution-grid {
  display: grid;
  gap: 16px;
}

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

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

.product-cards article,
.solution-grid article,
.process-grid article {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-cards img,
.solution-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-cards h3,
.product-cards p,
.solution-grid h3,
.solution-grid p,
.solution-grid span {
  padding-inline: 18px;
}

.product-cards h3,
.solution-grid h3 {
  padding-top: 18px;
}

.product-cards p,
.solution-grid p {
  padding-bottom: 18px;
  margin-bottom: 0;
}

.solution-grid span {
  display: block;
  padding-bottom: 10px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
}

.solution-grid .card-link {
  display: inline-flex;
  margin: 0 18px 20px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 820;
  border-bottom: 2px solid var(--bronze);
}

.dealer-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dealer-feature img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.dealer-feature > div {
  align-self: center;
  padding: 42px;
}

.dealer-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.dealer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.text-inline {
  color: var(--graphite);
  font-weight: 820;
  border-bottom: 2px solid var(--bronze);
}

.support-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  margin-top: 18px;
  padding: 28px;
}

.support-panel h3 {
  margin-bottom: 0;
}

.check-list.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.project-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 14px;
}

.project-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.project-mosaic .large {
  grid-column: span 2;
  grid-row: span 2;
}

.project-mosaic .wide {
  grid-column: span 2;
}

.project-mosaic .portrait {
  grid-row: span 2;
}

.project-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-mosaic figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  color: var(--white);
  background: rgba(17, 19, 18, 0.74);
  border-radius: 4px;
  font-size: 0.88rem;
}

.dark-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.markets {
  background: #f4f0e8;
  border-bottom: 1px solid var(--line);
}

.market-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.market-story-grid article {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.market-story-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.market-story-grid article > div {
  padding: 22px;
}

.market-story-grid p:not(.eyebrow) {
  color: var(--muted);
}

.market-story-grid .market-list {
  margin-top: 18px;
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 760;
}

.engineering-layout {
  display: block;
}

.sticky-copy {
  position: static;
  width: min(890px, 100%);
  margin-bottom: 34px;
}

.sticky-copy p:not(.eyebrow) {
  color: var(--muted);
}

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

.engineering-list article {
  display: block;
  min-height: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(17, 20, 18, 0.1);
}

.engineering-list img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.engineering-list div {
  padding: 24px;
}

.option-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.option-tabs button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.option-tabs button.active {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.option-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.option-panel.active {
  display: grid;
}

.option-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-panel div {
  padding: 36px;
  align-self: center;
}

.option-panel p {
  color: var(--muted);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.process {
  padding-top: 80px;
}

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

.process-grid article {
  min-height: 220px;
  padding: 24px;
}

.process-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--bronze);
  font-weight: 860;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 820;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
}

.detail-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-grid article,
.article-grid article,
.cta-panel {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-grid p,
.article-grid p,
.simple-list li,
.cta-panel p {
  color: var(--muted);
}

.case-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.case-split img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.simple-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 18, 0.74);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.contact-layout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 760;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--white);
  background: rgba(12, 14, 13, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--white);
}

.quote-form option {
  color: var(--ink);
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #1f8f55;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.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;
}

.site-footer {
  padding: 30px 0;
  color: var(--white);
  background: #101211;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr auto;
  gap: 24px;
  align-items: center;
  padding-right: 84px;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.footer-contact {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .product-cards,
  .solution-grid,
  .process-grid,
  .detail-grid,
  .article-grid,
  .audience-cards,
  .market-story-grid,
  .mini-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-feature,
  .product-feature.reverse,
  .option-panel,
  .engineering-layout,
  .contact-layout,
  .intro-layout,
  .trust-layout,
  .markets-layout,
  .faq-layout,
  .case-split,
  .dealer-feature,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .product-feature.reverse img {
    order: 0;
  }

  .sticky-copy {
    position: static;
  }

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

@media (max-width: 980px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(25, 28, 26, 0.96);
    border-bottom: 1px solid var(--line-light);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 4px;
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
    padding: 14px 16px;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(25, 28, 26, 0.96);
    border-bottom: 1px solid var(--line-light);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 4px;
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
    padding: 14px 16px;
  }

  .hero,
  .hero-content {
    min-height: 82svh;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 108px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.84rem;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .page-hero,
  .page-hero-content {
    min-height: 62svh;
  }

  .page-hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 108px;
    padding-bottom: 42px;
  }

  .page-hero-content h1 {
    font-size: 2.42rem;
  }

  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .section-band {
    padding: 64px 0;
  }

  .proof-grid,
  .product-cards,
  .solution-grid,
  .engineering-list,
  .process-grid,
  .detail-grid,
  .article-grid,
  .mini-gallery,
  .cred-grid,
  .partner-grid,
  .check-list.columns,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .split-heading {
    display: block;
  }

  .text-link {
    margin-top: 8px;
  }

  .product-feature img,
  .option-panel {
    min-height: 0;
  }

  .product-feature img,
  .dealer-feature img,
  .option-panel img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .product-feature > div,
  .dealer-feature > div,
  .option-panel div,
  .support-panel {
    padding: 24px;
  }

  .audience-cards,
  .market-story-grid {
    grid-template-columns: 1fr;
  }

  .audience-cards a {
    min-height: 280px;
  }

  .project-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .project-mosaic .large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-mosaic .wide {
    grid-column: span 1;
  }

  .project-mosaic .portrait {
    grid-row: span 1;
  }

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

  .engineering-list img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .case-split img {
    min-height: 0;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .cta-panel {
    display: block;
  }

  .cta-panel .button {
    margin-top: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.16rem;
  }

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

  .button {
    padding-inline: 12px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}
