@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand: #F2441D;
  --brand-deep: #CF3212;
  --brand-soft: #FF6A47;
  --paper: #F2F2F2;
  --white: #FFFFFF;
  --ink: #262626;
  --muted: #747474;
  --line: rgba(38, 38, 38, .16);
  --line-light: rgba(255, 255, 255, .28);
  --green: #25D366;
  --shell: min(1480px, calc(100vw - 112px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--brand);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--brand);
  transform: translateY(-160%);
  transition: transform .25s ease;
}

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

/* Premium intro */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
}

.intro-panel {
  position: absolute;
  inset-block: 0;
  width: 51%;
  background: var(--paper);
  transition: transform 1.05s var(--ease) 1.65s;
}

.intro-panel-left {
  left: 0;
}

.intro-panel-right {
  right: 0;
}

.intro-brand {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 18px;
  opacity: 0;
  transform: scale(.9);
  animation: intro-logo 1.15s var(--ease) .15s forwards;
  transition: opacity .5s ease 1.35s, transform .7s var(--ease) 1.35s;
}

.intro-brand img {
  width: min(330px, 62vw);
}

.intro-brand span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.intro-brand i {
  width: 150px;
  height: 2px;
  overflow: hidden;
  background: rgba(38, 38, 38, .12);
}

.intro-brand i::after {
  content: "";
  display: block;
  width: 44%;
  height: 100%;
  background: var(--brand);
  animation: intro-line 1.2s var(--ease) .58s both;
}

body.intro-exit .intro-brand {
  opacity: 0;
  transform: scale(1.06);
}

body.intro-exit .intro-panel-left {
  transform: translateX(-102%);
}

body.intro-exit .intro-panel-right {
  transform: translateX(102%);
}

body.intro-complete .intro {
  display: none;
}

@keyframes intro-logo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-line {
  from { transform: translateX(-130%); }
  to { transform: translateX(230%); }
}

/* Floating navigation */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding-top: 14px;
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), padding .4s var(--ease);
}

body.site-ready .site-header {
  opacity: 1;
  transform: translateY(0);
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.nav-panel {
  width: min(1520px, calc(100vw - 64px));
  min-height: 78px;
  margin: 0 auto;
  padding: 8px 12px 8px 28px;
  border: 1px solid rgba(38, 38, 38, .09);
  border-radius: 999px;
  display: grid;
  grid-template-columns: 210px 1fr 180px;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  background: rgba(242, 242, 242, .94);
  box-shadow: 0 18px 52px rgba(30, 30, 30, .12);
  backdrop-filter: blur(20px);
  transition: min-height .4s var(--ease), width .4s var(--ease), box-shadow .4s var(--ease);
}

.site-header.is-scrolled .nav-panel {
  width: min(1320px, calc(100vw - 44px));
  min-height: 68px;
  box-shadow: 0 14px 44px rgba(30, 30, 30, .16);
}

.brand {
  width: 154px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 56px;
  object-fit: contain;
  object-position: left center;
  transition: height .4s var(--ease);
}

.site-header.is-scrolled .brand img {
  height: 48px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 44px);
}

.desktop-nav a {
  position: relative;
  padding: 13px 0;
  font-size: 11px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

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

.header-cta {
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(38, 38, 38, .12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--ink);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
  transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.header-cta:hover {
  color: var(--white);
  background: var(--brand);
  transform: translateY(-2px);
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #161616;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 9s ease-out;
}

body.site-ready .hero-media img {
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, .87) 0%, rgba(18, 18, 18, .55) 39%, rgba(18, 18, 18, .08) 72%),
    linear-gradient(0deg, rgba(18, 18, 18, .44), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  padding-top: clamp(190px, 25vh, 280px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease) 2.25s, transform .8s var(--ease) 2.25s;
}

body.site-ready .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--brand);
}

.hero h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(64px, 8.2vw, 146px);
  line-height: .83;
  letter-spacing: -.075em;
  font-weight: 700;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .82);
}

.hero-copy {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
}

.hero-button {
  width: fit-content;
  min-height: 56px;
  margin-top: 34px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 42px;
  color: var(--white);
  background: var(--brand);
  font-size: 11px;
  font-weight: 700;
  transition: background .3s ease, transform .3s var(--ease);
}

.hero-button:hover {
  background: var(--brand-deep);
  transform: translateY(-3px);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(38px, calc((100vw - 1480px) / 2));
  bottom: 38px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  display: grid;
  place-content: center;
  gap: 4px;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.scroll-cue:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(4px);
}

/* Shared sections */
.section {
  padding: clamp(108px, 10vw, 170px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-label {
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.label-light {
  color: var(--white);
  border-color: var(--line-light);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

/* About */
.about {
  background: var(--paper);
}

.editorial-split {
  position: relative;
  min-height: min(48vw, 730px);
  display: grid;
  grid-template-columns: 47% 53%;
  overflow: hidden;
  background: var(--white);
}

.editorial-copy {
  padding: clamp(50px, 6.4vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editorial-copy h2,
.service-copy h2,
.application-copy h2,
.reference-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(50px, 5.7vw, 96px);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 700;
}

.editorial-copy > p,
.service-copy > p,
.application-copy > p,
.reference-copy > p,
.contact-copy > p {
  max-width: 480px;
  margin: 34px 0 0;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.85;
}

.editorial-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.editorial-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.editorial-split:hover .editorial-visual img {
  transform: scale(1.025);
}

.split-title {
  position: absolute;
  z-index: 2;
  left: 42%;
  bottom: 48px;
  color: var(--brand);
  font-size: clamp(34px, 4.1vw, 70px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 700;
  pointer-events: none;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 200px;
  padding: 38px 34px;
  border-left: 1px solid var(--line);
}

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

.principle span {
  display: block;
  margin-bottom: 54px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
}

.principle p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* Services */
.services {
  color: var(--white);
  background: var(--brand);
}

.service-composition {
  position: relative;
  min-height: min(55vw, 840px);
  display: grid;
  grid-template-columns: 47% 53%;
  overflow: hidden;
}

.service-copy {
  z-index: 1;
  padding: clamp(48px, 6vw, 92px) clamp(44px, 5.5vw, 84px) 46px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-copy > p {
  color: rgba(255, 255, 255, .8);
}

.service-list {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
}

.service-list span {
  min-height: 74px;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.service-list span:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line-light);
}

.service-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 68, 29, .22), transparent 30%);
}

.service-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.service-composition:hover .service-visual img {
  transform: scale(1.025);
}

.service-float-title {
  position: absolute;
  z-index: 2;
  left: 40%;
  top: 50%;
  color: var(--white);
  font-size: clamp(46px, 6.3vw, 106px);
  line-height: .84;
  letter-spacing: -.075em;
  font-weight: 700;
  transform: translateY(-50%);
  pointer-events: none;
  mix-blend-mode: normal;
}

/* Applications */
.applications {
  background: var(--paper);
}

.application-composition {
  position: relative;
  min-height: min(49vw, 750px);
  display: grid;
  grid-template-columns: 57% 43%;
  overflow: hidden;
  background: var(--white);
}

.application-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.application-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.application-composition:hover .application-visual img {
  transform: scale(1.025);
}

.application-copy {
  padding: clamp(48px, 5.5vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.application-copy h2 {
  position: relative;
  z-index: 2;
  margin-left: clamp(-150px, -8vw, -80px);
  color: var(--brand);
  font-size: clamp(58px, 6.7vw, 112px);
}

.application-copy > p {
  color: var(--muted);
}

.application-note {
  margin-top: 52px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.application-note strong,
.application-note span {
  display: block;
}

.application-note strong {
  margin-bottom: 10px;
  font-size: 15px;
}

.application-note span {
  color: var(--muted);
  font-size: 10px;
}

/* Process map */
.process-head {
  max-width: 780px;
  margin: clamp(100px, 10vw, 160px) auto 70px;
  text-align: center;
}

.process-head > span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.process-head h3 {
  margin: 18px 0 20px;
  font-size: clamp(38px, 4.5vw, 72px);
  line-height: .94;
  letter-spacing: -.055em;
}

.process-head p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.process-map {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 68, 29, .1), transparent 23%),
    var(--white);
}

.process-map::before,
.process-map::after {
  content: "";
  position: absolute;
  background: var(--line);
}

.process-map::before {
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
}

.process-map::after {
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
}

.process-orbit {
  position: absolute;
  z-index: 1;
  inset: 16% 19%;
  border: 1px solid rgba(242, 68, 29, .4);
  border-radius: 50%;
}

.process-orbit::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(38, 38, 38, .16);
  border-radius: 50%;
}

.process-dot {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(242, 68, 29, .16);
  offset-path: ellipse(49% 49% at 50% 50%);
  offset-rotate: 0deg;
  animation: process-orbit 10s linear infinite paused;
}

.process-map.is-visible .process-dot {
  animation-play-state: running;
}

.process-map:hover .process-dot {
  animation-duration: 4s;
}

.process-trail {
  position: absolute;
  inset: -1px;
  border: 3px solid transparent;
  border-top-color: rgba(242, 68, 29, .62);
  border-radius: 50%;
  animation: process-ring 10s linear infinite paused;
}

.process-map.is-visible .process-trail {
  animation-play-state: running;
}

.process-map:hover .process-trail {
  animation-duration: 4s;
}

@keyframes process-orbit {
  to { offset-distance: 100%; }
}

@keyframes process-ring {
  to { transform: rotate(360deg); }
}

.process-node {
  position: absolute;
  z-index: 4;
  width: min(240px, 23%);
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(242, 242, 242, .95);
  text-align: left;
  cursor: pointer;
  transition: color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}

.process-node span,
.process-node small {
  display: block;
}

.process-node span {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.process-node small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.process-node:hover,
.process-node.is-current {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 20px 50px rgba(242, 68, 29, .22);
  transform: translateY(-5px);
}

.process-node:hover small,
.process-node.is-current small {
  color: rgba(255, 255, 255, .72);
}

.node-top {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.node-top:hover,
.node-top.is-current {
  transform: translateX(-50%) translateY(-5px);
}

.node-right {
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.node-right:hover,
.node-right.is-current {
  transform: translateY(-50%) translateX(-5px);
}

.node-bottom {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.node-bottom:hover,
.node-bottom.is-current {
  transform: translateX(-50%) translateY(-5px);
}

.node-left {
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.node-left:hover,
.node-left.is-current {
  transform: translateY(-50%) translateX(5px);
}

.process-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(242, 68, 29, .3);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--paper);
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 60px rgba(38, 38, 38, .08);
}

.process-center span,
.process-center strong,
.process-center small {
  display: block;
}

.process-center span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
}

.process-center strong {
  margin: 6px 0;
  font-size: 42px;
  letter-spacing: -.06em;
}

.process-center small {
  color: var(--muted);
  font-size: 8px;
}

.sector-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.sector-line span {
  min-height: 104px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

.sector-line span:last-child {
  border-right: 1px solid var(--line);
}

/* References */
.references {
  color: var(--white);
  background: var(--brand);
}

.reference-composition {
  position: relative;
  min-height: min(52vw, 800px);
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
}

.reference-copy {
  z-index: 1;
  padding: clamp(48px, 5.8vw, 90px) clamp(46px, 6vw, 92px) 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reference-copy > p {
  color: rgba(255, 255, 255, .78);
}

.text-link {
  width: fit-content;
  margin-top: 34px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  display: inline-flex;
  gap: 30px;
  font-size: 11px;
  font-weight: 700;
}

.reference-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.reference-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.reference-composition:hover .reference-visual img {
  transform: scale(1.025);
}

.reference-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .42), transparent 38%);
}

.reference-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  font-size: 10px;
  font-weight: 700;
}

.reference-word {
  position: absolute;
  z-index: 2;
  left: 40%;
  top: 50%;
  color: var(--white);
  font-size: clamp(68px, 9vw, 150px);
  line-height: .8;
  letter-spacing: -.08em;
  font-weight: 700;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Contact */
.contact {
  padding: clamp(110px, 10vw, 170px) 0;
  background: var(--paper);
}

.contact-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 43% 57%;
}

.contact-copy {
  padding: 0 clamp(44px, 6vw, 88px) 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy .section-label {
  margin-bottom: 48px;
}

.contact-copy > p {
  color: var(--muted);
}

.whatsapp-inline {
  width: fit-content;
  margin-top: 36px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--brand);
  display: inline-flex;
  gap: 28px;
  font-size: 11px;
  font-weight: 700;
}

.contact-image {
  position: relative;
  min-height: min(34vw, 520px);
  overflow: hidden;
}

.contact-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: clamp(34px, 5vw, 70px);
  color: var(--white);
  background: var(--brand);
}

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

.contact-form label {
  display: block;
}

.contact-form label > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 9px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .46);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  transition: border-color .25s ease;
}

.contact-form input {
  height: 48px;
}

.contact-form textarea {
  min-height: 96px;
  padding: 12px 0;
  resize: vertical;
}

.contact-form > label {
  margin-top: 28px;
}

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

.form-foot {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.form-foot p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  line-height: 1.6;
}

.form-foot p.is-success {
  color: var(--white);
}

.form-foot button {
  min-width: 190px;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.form-foot button:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

/* Footer and WhatsApp */
.site-footer {
  padding: 84px max(56px, calc((100vw - 1480px) / 2));
  color: var(--white);
  background: var(--brand);
}

.footer-main {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: .6fr 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.footer-brand {
  width: 150px;
}

.footer-main > p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  line-height: 1.8;
}

.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 36px;
}

.footer-main nav a {
  font-size: 10px;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  padding: 7px 18px 7px 7px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #063915;
  background: var(--green);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .24);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .32);
}

.whatsapp-float span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #0D7B32;
  font-size: 9px;
  font-weight: 700;
}

.whatsapp-float strong {
  font-size: 9px;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 54px, 1100px);
  }

  .nav-panel {
    grid-template-columns: 170px 1fr 150px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a,
  .header-cta {
    font-size: 9px;
  }

  .service-list {
    margin-top: 36px;
  }

  .process-orbit {
    inset-inline: 17%;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-panel,
  .site-header.is-scrolled .nav-panel {
    width: calc(100vw - 28px);
    min-height: 66px;
    padding: 7px 8px 7px 20px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 132px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    height: 48px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 6px;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform .3s var(--ease);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 120px 28px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .35s var(--ease), visibility .35s var(--ease), transform .35s var(--ease);
  }

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

  .mobile-nav a {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(27px, 7vw, 46px);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 700;
  }

  .hero-content {
    padding-top: 180px;
  }

  .editorial-split,
  .service-composition,
  .application-composition,
  .reference-composition {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .editorial-copy,
  .service-copy,
  .application-copy,
  .reference-copy {
    min-height: 520px;
    padding: 58px 44px;
  }

  .editorial-visual,
  .service-visual,
  .application-visual,
  .reference-visual {
    min-height: 520px;
    grid-row: auto;
  }

  .split-title,
  .service-float-title,
  .reference-word {
    left: 36px;
    top: auto;
    bottom: 48%;
    transform: translateY(50%);
  }

  .application-visual {
    grid-row: 2;
  }

  .application-copy {
    grid-row: 1;
  }

  .application-copy h2 {
    margin-left: 0;
  }

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

  .principle,
  .principle:last-child {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .principle span {
    margin-bottom: 24px;
  }

  .process-map {
    min-height: 760px;
  }

  .process-orbit {
    inset: 24% 11%;
  }

  .node-top {
    top: 20px;
  }

  .node-bottom {
    bottom: 20px;
  }

  .node-right,
  .node-left {
    width: 190px;
  }

  .sector-line {
    grid-template-columns: 1fr 1fr;
  }

  .sector-line span:last-child {
    grid-column: 1 / -1;
  }

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

  .contact-copy {
    min-height: 500px;
    padding-right: 0;
  }

  .contact-image {
    min-height: 500px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .intro-brand img {
    width: 240px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    padding-top: 165px;
  }

  .eyebrow {
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(54px, 18.5vw, 86px);
    line-height: .87;
  }

  .hero-copy {
    max-width: 92%;
    font-size: 13px;
  }

  .hero-button {
    width: 100%;
    justify-content: space-between;
  }

  .scroll-cue {
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
  }

  .section {
    padding: 86px 0;
  }

  .section-label {
    margin-bottom: 18px;
  }

  .editorial-copy,
  .service-copy,
  .application-copy,
  .reference-copy {
    min-height: 500px;
    padding: 40px 26px;
  }

  .editorial-copy h2,
  .service-copy h2,
  .application-copy h2,
  .reference-copy h2,
  .contact-copy h2 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .editorial-visual,
  .service-visual,
  .application-visual,
  .reference-visual {
    min-height: 410px;
  }

  .editorial-visual img,
  .service-visual img,
  .reference-visual img {
    object-position: 60% center;
  }

  .split-title,
  .service-float-title,
  .reference-word {
    left: 24px;
    bottom: 43%;
    font-size: clamp(44px, 15vw, 66px);
  }

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

  .service-list span:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .application-copy h2 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .process-head {
    margin-top: 90px;
  }

  .process-map {
    min-height: 860px;
    padding: 24px;
  }

  .process-map::before,
  .process-map::after,
  .process-orbit {
    display: none;
  }

  .process-node {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 112px;
    margin-bottom: 14px;
    transform: none !important;
  }

  .process-node:hover,
  .process-node.is-current {
    transform: translateY(-3px) !important;
  }

  .process-center {
    position: relative;
    top: auto;
    left: auto;
    width: 170px;
    height: 170px;
    margin: 26px auto 0;
    transform: none;
  }

  .sector-line {
    grid-template-columns: 1fr;
  }

  .sector-line span:last-child {
    grid-column: auto;
  }

  .sector-line span,
  .sector-line span:last-child {
    min-height: 74px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .contact-copy {
    min-height: 440px;
  }

  .contact-image {
    min-height: 380px;
  }

  .contact-image img {
    object-position: 64% center;
  }

  .contact-form {
    padding: 32px 24px;
  }

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

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

  .form-foot button {
    width: 100%;
  }

  .site-footer {
    padding: 70px 20px 86px;
  }

  .footer-main nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding-right: 7px;
  }

  .whatsapp-float strong {
    display: none;
  }
}

/* V6 — navigation integrated into the hero */
.site-header,
.site-header.is-scrolled {
  padding-top: 0;
  background: transparent;
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease),
    background .35s ease,
    box-shadow .35s ease;
}

.site-header.is-scrolled {
  background: rgba(18, 18, 18, .88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.nav-panel,
.site-header.is-scrolled .nav-panel {
  width: var(--shell);
  min-height: 92px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  grid-template-columns: 190px minmax(0, 1fr) 156px;
  gap: 26px;
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand,
.site-header.is-scrolled .brand {
  width: 158px;
  min-height: 0;
  justify-content: flex-start;
}

.brand img,
.site-header.is-scrolled .brand img {
  width: 158px;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.desktop-nav {
  justify-content: flex-end;
  gap: clamp(20px, 2.2vw, 38px);
}

.desktop-nav a {
  color: #fff;
  font-size: 11px;
}

.header-cta,
.site-header.is-scrolled .header-cta {
  width: 156px;
  height: 50px;
  min-height: 50px;
  padding: 0 21px;
  color: var(--ink);
  border-color: rgba(255, 255, 255, .55);
  background: #fff;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

body.menu-open .site-header {
  background: var(--paper);
}

body.menu-open .brand img {
  filter: none;
}

/* V12 — requested focused revisions; keep as final cascade layer */
.nav-dropdown {
  padding: 12px;
  border-color: rgba(38, 38, 38, .08);
  background: rgba(232, 232, 232, .98);
}

.desktop-nav .nav-dropdown a {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
}

.nav-dropdown span {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.desktop-nav .nav-dropdown a:hover span,
.desktop-nav .nav-dropdown a:focus-visible span {
  color: var(--paper);
}

.about-split {
  min-height: 0;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(64px, 7vw, 124px);
  align-items: center;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  color: var(--ink) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.about-split .editorial-copy {
  min-height: 0;
  padding: 0 !important;
  background: transparent !important;
}

.about-split .editorial-copy h2 {
  max-width: 650px;
  margin: 0 0 34px;
  color: var(--ink) !important;
  font-size: clamp(46px, 4.4vw, 72px);
  line-height: .97;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.about-split .editorial-copy p {
  max-width: 610px;
  margin: 0;
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.82;
}

.about-split .editorial-copy p + p {
  margin-top: 24px;
}

.about-split .editorial-visual {
  margin: 0 !important;
  border-radius: 28px;
  box-shadow: none !important;
}

.about-metrics {
  gap: 16px;
  margin-top: 42px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  transform: none;
}

.about-metrics > span {
  min-height: 154px;
  padding: 30px 34px;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: #F4D8D0;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.about-metrics strong {
  color: inherit;
}

.about-metrics small {
  color: rgba(38, 38, 38, .65);
}

.about-metrics > span:hover {
  color: var(--paper);
  background: var(--brand);
  transform: translateY(-5px);
}

.about-metrics > span:hover small {
  color: rgba(242, 242, 242, .76);
}

.standards-heading {
  max-width: 1240px;
}

.standards-heading h3 {
  max-width: 1180px;
  font-size: clamp(48px, 5vw, 82px);
  line-height: .96;
  letter-spacing: -.06em;
  text-wrap: initial;
}

.system-story-copy {
  align-self: center;
}

.system-story-copy h3 {
  max-width: 650px;
  margin: clamp(30px, 3vw, 46px) 0 0;
  display: flex;
  flex-direction: column;
  gap: clamp(13px, 1.2vw, 22px);
  font-size: clamp(54px, 5vw, 84px);
  line-height: .86;
  letter-spacing: -.06em;
}

.system-story-copy h3 span {
  display: block;
}

@media (max-width: 1100px) {
  .nav-dropdown-wide {
    width: 560px;
  }

  .about-split {
    gap: 52px;
  }
}

@media (max-width: 920px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split .editorial-copy {
    padding: 0 !important;
  }

  .about-metrics {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .system-story-copy h3 {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .about-split .editorial-copy h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .about-split .editorial-copy p {
    font-size: 13px;
  }

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

  .about-metrics > span {
    min-height: 118px;
  }

  .standards-heading {
    text-align: center;
  }

  .standards-heading h3,
  .standards-heading p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .standards-heading h3 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .system-story-copy h3 {
    gap: 14px;
    font-size: clamp(50px, 14vw, 66px);
    line-height: .88;
  }
}

/* V11 cascade guard — must remain the final visual layer */
html, body { overflow-x: clip; }
.section-shell,.editorial-copy,.reference-copy,.contact-form-area { min-width:0; }
.section-label,.label-light { margin:0 0 clamp(38px,4vw,62px);padding:0;border:0;color:var(--brand);font-size:12px;font-weight:700;line-height:1;letter-spacing:.18em;text-transform:uppercase; }

.about-split,.references .reference-composition { border:0!important;border-radius:0;overflow:visible;box-shadow:none; }
.about-split { min-height:0;grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);gap:clamp(54px,7vw,118px);align-items:center; }
.about-split .editorial-copy { min-height:0;padding:0;justify-content:center; }
.about-split .editorial-copy h2,.reference-copy h2,.products-heading h2,.process-head h2,.standards-heading h3 { max-width:820px;overflow-wrap:normal;text-wrap:balance; }
.about-split .editorial-copy h2 { margin:0 0 34px;color:var(--ink);font-size:clamp(50px,5vw,82px);line-height:.93;letter-spacing:-.065em; }
.about-split .editorial-copy p { max-width:590px;margin:0;color:var(--muted);font-size:15px;line-height:1.78; }
.about-split .editorial-copy p+p { margin-top:22px; }
.about-split .editorial-visual { min-height:clamp(520px,48vw,740px);margin:0;border-radius:30px;box-shadow:0 28px 70px rgba(38,38,38,.1); }
.about-split .editorial-visual img { width:100%;height:100%;object-fit:cover; }

.standards-heading { display:block;max-width:1040px;margin:0 auto clamp(64px,7vw,108px);text-align:center; }
.standards-heading .section-kicker { display:block;margin-bottom:22px;color:var(--brand);font-size:12px;font-weight:700;letter-spacing:.18em;text-transform:uppercase; }
.standards-heading h3 { margin:0 auto;font-size:clamp(52px,5.6vw,90px);line-height:.92;letter-spacing:-.065em; }
.standards-heading p { max-width:790px;margin:34px auto 0;color:var(--muted);font-size:clamp(16px,1.45vw,21px);line-height:1.65; }
.logo-group-heading { grid-template-columns:1fr;gap:0; }
.logo-group-heading h4 { font-size:clamp(26px,2.4vw,38px); }

.products-heading { grid-template-columns:minmax(0,1fr) minmax(320px,.72fr);align-items:center; }
.products-heading h2 { font-size:clamp(54px,5.8vw,92px); }
.products-heading p { max-width:610px;font-size:15px;line-height:1.75; }

.applications .process-head { max-width:1080px;margin-right:auto;margin-left:auto;text-align:center; }
.process-head>span { font-size:12px;letter-spacing:.18em; }
.process-head h2 { max-width:980px;margin-right:auto;margin-left:auto;font-size:clamp(54px,5.8vw,92px); }
.process-head>p { max-width:900px;margin-right:auto;margin-left:auto;font-size:clamp(16px,1.45vw,21px);line-height:1.65; }
.process-head>small { display:block;max-width:720px;margin-right:auto;margin-left:auto; }

.sector-showcase { display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:18px;margin-top:clamp(70px,7vw,110px); }
.sector-showcase article { min-height:190px;padding:28px 24px;border-radius:24px;display:flex;flex-direction:column;justify-content:space-between;background:rgba(255,255,255,.64);box-shadow:0 16px 44px rgba(38,38,38,.055);transition:color .3s ease,background .3s ease,transform .3s ease; }
.sector-showcase article:hover { color:var(--paper);background:var(--brand);transform:translateY(-7px); }
.sector-icon { width:72px;height:72px;border:2px solid currentColor;border-radius:22px;display:grid;place-items:center;color:var(--brand);font-size:34px;font-weight:500;line-height:1; }
.sector-showcase article:hover .sector-icon { color:var(--paper); }
.sector-showcase strong { max-width:180px;font-size:17px;line-height:1.25; }

.references .reference-composition { grid-template-columns:48% 52%;gap:clamp(54px,7vw,118px);align-items:center;background:transparent; }
.references .reference-copy { padding:0;color:var(--ink); }
.references .reference-copy h2 { color:var(--ink);font-size:clamp(54px,5.8vw,92px); }
.references .reference-copy>p { color:var(--muted);font-size:15px;line-height:1.75; }
.references .reference-visual { margin:0;border-radius:30px!important;box-shadow:0 28px 70px rgba(38,38,38,.13); }

@media(max-width:1100px){.sector-showcase{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:920px){
  .about-split,.references .reference-composition{grid-template-columns:1fr}
  .about-split .editorial-visual{min-height:520px}
  .products-heading{grid-template-columns:1fr;gap:30px}
}
@media(max-width:620px){
  .section-label,.label-light{margin-bottom:30px;font-size:10px}
  .about-split{gap:42px}
  .about-split .editorial-copy h2,.products-heading h2,.process-head h2,.standards-heading h3,.references .reference-copy h2{font-size:clamp(43px,13vw,60px)}
  .about-split .editorial-copy p,.products-heading p,.references .reference-copy>p{font-size:14px}
  .about-split .editorial-visual{min-height:390px;border-radius:22px}
  .standards-heading,.applications .process-head{text-align:left}
  .standards-heading h3,.standards-heading p,.process-head h2,.process-head>p,.process-head>small{margin-left:0;text-align:left}
  .sector-showcase{grid-template-columns:1fr 1fr;gap:12px;margin-top:62px}
  .sector-showcase article{min-height:158px;padding:20px;border-radius:20px}
  .sector-icon{width:58px;height:58px;border-radius:18px;font-size:28px}
  .sector-showcase strong{font-size:14px}
  .references .reference-composition{gap:42px}
}

/* V7 — corporate implementation positioning, products and six-stage process */
.nav-panel,
.site-header.is-scrolled .nav-panel {
  grid-template-columns: 210px minmax(0, 1fr) 156px;
}

.brand,
.site-header.is-scrolled .brand {
  width: 174px;
}

.brand img,
.site-header.is-scrolled .brand img {
  width: 174px;
}

.desktop-nav a {
  font-size: 12px;
  letter-spacing: .01em;
}

.about-split {
  border-radius: 34px;
  box-shadow: 0 24px 72px rgba(38, 38, 38, .065);
}

.about-split .editorial-copy {
  gap: 0;
}

.about-split .editorial-copy h2 {
  font-size: clamp(46px, 4.6vw, 78px);
}

.about-split .editorial-copy p + p {
  margin-top: 18px;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.about-metrics > span {
  min-height: 146px;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  transition: color .35s var(--ease), background .35s var(--ease);
}

.about-metrics > span:last-child {
  border-right: 0;
}

.about-metrics > span:hover {
  color: var(--paper);
  background: var(--brand);
}

.about-metrics strong {
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1;
  letter-spacing: -.06em;
}

.about-metrics small {
  font-size: 10px;
  font-weight: 700;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 70px;
}

.purpose-card {
  position: relative;
  min-height: 420px;
  padding: clamp(34px, 4vw, 64px);
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--paper);
  box-shadow: 0 22px 62px rgba(38, 38, 38, .055);
  transition: color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}

.purpose-card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 68, 29, .2), transparent 66%);
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}

.purpose-card:hover {
  border-color: rgba(242, 68, 29, .48);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(242, 68, 29, .12);
}

.purpose-card:hover::before {
  transform: scale(1.18);
}

.purpose-index {
  position: absolute;
  top: 38px;
  left: clamp(34px, 4vw, 64px);
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.purpose-card h3 {
  position: relative;
  max-width: 520px;
  margin: 0 0 26px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.purpose-card p {
  position: relative;
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.standards-block {
  margin-top: clamp(100px, 10vw, 160px);
}

.standards-heading {
  display: grid;
  grid-template-columns: .55fr 1.25fr 1fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 52px;
}

.section-kicker {
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.standards-heading h3 {
  margin: 0;
  font-size: clamp(38px, 4vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
}

.standards-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

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

.standard-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transition: color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

.standard-card:hover {
  color: var(--paper);
  background: var(--brand);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(242, 68, 29, .18);
}

.standard-mark {
  width: 94px;
  height: 64px;
  margin-bottom: auto;
  border: 1px solid currentColor;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.05em;
}

.standard-card h4 {
  margin: 44px 0 12px;
  font-size: 15px;
}

.standard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
  transition: color .4s var(--ease);
}

.standard-card:hover p {
  color: rgba(242, 242, 242, .78);
}

.standards-note,
.products-note {
  max-width: 940px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.products-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
}

.products-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.8vw, 92px);
  line-height: .92;
  letter-spacing: -.065em;
}

.products-heading p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  position: relative;
  aspect-ratio: 1 / 1.08;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  box-shadow: 0 20px 56px rgba(38, 38, 38, .09);
  background: #d8d8d8;
}

.product-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease), filter .75s var(--ease);
}

.product-card-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 18, 18, .05) 15%, rgba(18, 18, 18, .87) 92%);
  transition: background .55s var(--ease);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, rgba(242, 68, 29, .03), rgba(242, 68, 29, .9));
  opacity: 0;
  transition: opacity .55s var(--ease);
}

.product-index {
  position: absolute;
  top: 26px;
  left: 28px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 700;
}

.product-card-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  transform: translateY(54px);
  transition: transform .55s var(--ease);
}

.product-card h3 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.product-card p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  line-height: 1.65;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.product-card a {
  display: inline-flex;
  margin-top: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  font-size: 9px;
  font-weight: 700;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.06);
  filter: saturate(.82) contrast(1.04);
}

.product-card:hover::after,
.product-card:focus-within::after {
  opacity: .72;
}

.product-card:hover .product-card-content,
.product-card:focus-within .product-card-content {
  transform: translateY(0);
}

.product-card:hover p,
.product-card:hover a,
.product-card:focus-within p,
.product-card:focus-within a {
  opacity: 1;
}

.application-composition {
  border-radius: 34px;
  box-shadow: 0 24px 72px rgba(38, 38, 38, .065);
}

.application-copy h2 {
  font-size: clamp(42px, 4.6vw, 76px);
  line-height: .96;
}

.process-map {
  min-height: 720px;
  border-radius: 36px;
  box-shadow: 0 26px 78px rgba(38, 38, 38, .07);
  background: radial-gradient(circle at 50% 50%, rgba(242, 68, 29, .13), transparent 25%), var(--paper);
}

.process-orbit {
  inset: 15% 15%;
}

.process-dot {
  animation-duration: 12s;
}

.process-map:hover .process-dot {
  animation-duration: 12s;
}

@keyframes process-dot-path {
  0%, 100% { top: 0; left: 28%; }
  16.66% { top: 0; left: 72%; }
  33.33% { top: 50%; left: 100%; }
  50% { top: 100%; left: 72%; }
  66.66% { top: 100%; left: 28%; }
  83.33% { top: 50%; left: 0; }
}

.process-node {
  width: min(250px, 22%);
  min-height: 112px;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(38, 38, 38, .055);
}

.process-node.is-current {
  animation: process-touch 1.95s ease both;
}

.node-1 { top: 26px; left: 15%; }
.node-2 { top: 26px; right: 15%; }
.node-3 { top: 50%; right: 24px; transform: translateY(-50%); }
.node-4 { right: 15%; bottom: 26px; }
.node-5 { bottom: 26px; left: 15%; }
.node-6 { top: 50%; left: 24px; transform: translateY(-50%); }
.node-3:hover, .node-3.is-current, .node-6:hover, .node-6.is-current { transform: translateY(calc(-50% - 5px)); }

.process-center {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(242, 68, 29, .28);
  box-shadow: 0 28px 64px rgba(242, 68, 29, .18);
}

.aftercare-card {
  margin-top: 24px;
  padding: 36px 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: .45fr .9fr 1.3fr auto;
  gap: 34px;
  align-items: center;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.aftercare-card:hover {
  border-color: rgba(242, 68, 29, .5);
  box-shadow: 0 20px 56px rgba(242, 68, 29, .09);
}

.aftercare-card > span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.aftercare-card h4 {
  margin: 0;
  font-size: 20px;
}

.aftercare-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.aftercare-card a {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--brand);
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .nav-panel,
  .site-header.is-scrolled .nav-panel { grid-template-columns: 190px minmax(0, 1fr) 144px; }
  .brand, .site-header.is-scrolled .brand,
  .brand img, .site-header.is-scrolled .brand img { width: 164px; }
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 10.5px; }
  .standards-heading { grid-template-columns: .4fr 1.2fr 1fr; gap: 30px; }
  .product-card { min-height: 380px; }
  .node-1 { left: 10%; } .node-2 { right: 10%; } .node-4 { right: 10%; } .node-5 { left: 10%; }
}

@media (max-width: 920px) {
  .nav-panel,
  .site-header.is-scrolled .nav-panel { grid-template-columns: 1fr 46px; }
  .brand, .site-header.is-scrolled .brand,
  .brand img, .site-header.is-scrolled .brand img { width: 142px; }
  .about-metrics { grid-template-columns: 1fr; }
  .about-metrics > span { min-height: 116px; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-metrics > span:last-child { border-bottom: 0; }
  .vision-mission { grid-template-columns: 1fr; }
  .purpose-card { min-height: 360px; }
  .standards-heading { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr 1fr; }
  .products-heading { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card { min-height: 400px; }
  .process-map { min-height: 820px; }
  .process-node { width: 220px; }
  .node-1 { left: 5%; } .node-2 { right: 5%; } .node-4 { right: 5%; } .node-5 { left: 5%; }
  .aftercare-card { grid-template-columns: 1fr 1.5fr; }
}

@media (max-width: 620px) {
  .about-split, .application-composition { border-radius: 22px; }
  .about-split .editorial-copy h2 { font-size: clamp(40px, 12vw, 56px); }
  .about-metrics { border-radius: 20px; }
  .vision-mission { margin-top: 46px; }
  .purpose-card { min-height: 390px; padding: 34px 26px; border-radius: 22px; }
  .purpose-index { top: 28px; left: 26px; }
  .standards-block { margin-top: 90px; }
  .standards-grid { grid-template-columns: 1fr; }
  .standard-card { min-height: 270px; border-radius: 22px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { aspect-ratio: .92 / 1; min-height: 0; border-radius: 24px; }
  .product-card-content { right: 24px; bottom: 24px; left: 24px; transform: none; }
  .product-card p, .product-card a { opacity: 1; }
  .application-copy h2 { font-size: clamp(38px, 11.5vw, 52px); }
  .process-map { min-height: 0; padding: 22px; border-radius: 24px; }
  .process-node { width: 100%; min-height: 105px; }
  .node-1, .node-2, .node-3, .node-4, .node-5, .node-6 {
    inset: auto;
    transform: none;
  }
  .node-1:hover, .node-1.is-current,
  .node-2:hover, .node-2.is-current,
  .node-3:hover, .node-3.is-current,
  .node-4:hover, .node-4.is-current,
  .node-5:hover, .node-5.is-current,
  .node-6:hover, .node-6.is-current { transform: translateY(-3px); }
  .process-center { width: 170px; height: 170px; }
  .aftercare-card { padding: 30px 24px; grid-template-columns: 1fr; gap: 18px; border-radius: 20px; }
}

/* V8 — animated navigation, original marks and application-first layout */
[id] {
  scroll-margin-top: 120px;
}

.desktop-nav {
  gap: clamp(16px, 2vw, 34px);
  align-self: stretch;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.desktop-nav .nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
}

.desktop-nav .nav-item > a i {
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .35s var(--ease);
}

.nav-item:hover > a i,
.nav-item:focus-within > a i {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  z-index: 20;
  top: calc(100% - 2px);
  left: -28px;
  width: 320px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(242, 242, 242, .98);
  box-shadow: 0 26px 72px rgba(10, 10, 10, .2);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(.98);
  transform-origin: top left;
  transition: opacity .28s var(--ease), visibility .28s var(--ease), transform .38s var(--ease);
}

.nav-dropdown-wide {
  width: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nav-dropdown-right {
  right: -24px;
  left: auto;
  transform-origin: top right;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.desktop-nav .nav-dropdown a {
  min-width: 0;
  padding: 16px;
  border-radius: 14px;
  display: block;
  transition: color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}

.desktop-nav .nav-dropdown a::after {
  display: none;
}

.desktop-nav .nav-dropdown a:hover,
.desktop-nav .nav-dropdown a:focus-visible {
  color: var(--paper);
  background: var(--brand);
  transform: translateX(3px);
}

.nav-dropdown span,
.nav-dropdown small {
  display: block;
}

.nav-dropdown span {
  font-size: 11px;
  font-weight: 700;
}

.nav-dropdown small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
  line-height: 1.45;
  transition: color .3s var(--ease);
}

.nav-dropdown a:hover small,
.nav-dropdown a:focus-visible small {
  color: rgba(242, 242, 242, .76);
}

.purpose-card h3 {
  font-size: clamp(36px, 3.7vw, 61px);
}

.purpose-index {
  font-size: 11px;
  letter-spacing: .14em;
}

.standards-heading {
  grid-template-columns: .38fr 1.15fr 1fr;
}

.standards-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-standard-group {
  min-width: 0;
  padding: clamp(42px, 5vw, 72px) clamp(28px, 4vw, 62px);
}

.logo-standard-group:first-child {
  padding-left: 0;
  border-right: 1px solid var(--line);
}

.logo-standard-group:last-child {
  padding-right: 0;
}

.logo-group-heading {
  min-height: 145px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
}

.logo-group-heading > span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
}

.logo-group-heading h4 {
  margin: 0;
  font-size: clamp(27px, 2.7vw, 44px);
  line-height: 1;
  letter-spacing: -.055em;
}

.logo-group-heading p {
  max-width: 490px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.official-logo-list {
  display: grid;
  gap: 0;
}

.official-logo-list figure {
  min-height: 132px;
  margin: 0;
  padding: 24px 10px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: center;
  transition: padding .35s var(--ease), background .35s var(--ease);
}

.official-logo-list figure:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: rgba(242, 68, 29, .075);
}

.official-logo-list img,
.logo-wordmark {
  width: 112px;
  max-height: 68px;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.15);
  mix-blend-mode: multiply;
}

.logo-wordmark {
  height: 68px;
  display: grid;
  place-items: center;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -.08em;
}

.official-logo-list figcaption strong,
.official-logo-list figcaption small {
  display: block;
}

.official-logo-list figcaption strong {
  font-size: 13px;
}

.official-logo-list figcaption small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.applications .section-label {
  margin-bottom: 38px;
}

.applications .process-head {
  max-width: 1050px;
  margin: 0 auto 68px;
}

.process-head h2 {
  margin: 20px 0 28px;
  font-size: clamp(48px, 6vw, 96px);
  line-height: .92;
  letter-spacing: -.065em;
}

.process-head > p {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(14px, 1.35vw, 20px);
  line-height: 1.65;
}

.process-head > small {
  display: block;
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.process-center img {
  width: 128px;
  max-height: 52px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.process-center strong {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .desktop-nav .nav-item > a { font-size: 11.5px; }
  .desktop-nav { gap: 15px; }
  .nav-dropdown-wide { width: 540px; }
}

@media (max-width: 920px) {
  .mobile-nav {
    padding: 104px 26px 34px;
    justify-content: flex-start;
    overflow-y: auto;
  }

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

  .mobile-nav summary,
  .mobile-contact-link {
    position: relative;
    padding: 18px 0;
    list-style: none;
    display: block;
    font-size: clamp(24px, 6vw, 38px);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav summary::-webkit-details-marker { display: none; }

  .mobile-nav summary::after {
    content: "+";
    position: absolute;
    right: 2px;
    font-size: 24px;
    font-weight: 400;
    transition: transform .35s var(--ease);
  }

  .mobile-nav details[open] summary::after { transform: rotate(45deg); }

  .mobile-nav details > div {
    display: grid;
    grid-template-rows: 0fr;
  }

  .mobile-nav details[open] > div { grid-template-rows: 1fr; }

  .mobile-nav details > div > a {
    padding: 10px 0 10px 18px;
    border: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .mobile-contact-link {
    border-bottom: 1px solid var(--line) !important;
  }

  .standards-heading,
  .standards-columns { grid-template-columns: 1fr; }
  .logo-standard-group:first-child { padding-left: 0; padding-right: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .logo-standard-group:last-child { padding-left: 0; padding-right: 0; }
}

@media (max-width: 620px) {
  .mobile-nav { padding-inline: 20px; }
  .purpose-card h3 { font-size: clamp(39px, 12vw, 53px); }
  .standards-heading h3 { font-size: clamp(38px, 12vw, 52px); }
  .logo-group-heading { min-height: 0; margin-bottom: 34px; grid-template-columns: 30px 1fr; gap: 14px; }
  .official-logo-list figure { grid-template-columns: 108px 1fr; gap: 16px; }
  .official-logo-list img, .logo-wordmark { width: 82px; max-height: 55px; }
  .logo-wordmark { height: 55px; font-size: 42px; }
  .applications .process-head { margin-bottom: 48px; text-align: left; }
  .process-head h2 { font-size: clamp(46px, 14vw, 64px); }
  .process-head > p, .process-head > small { margin-left: 0; }
  .process-center img { width: 106px; }
}

/* V9 — Sunrock-inspired editorial rhythm, rebuilt for Maxef */
:root {
  --charcoal: #171717;
  --orange-soft: #FF704E;
  --orange-pale: #F8C2B6;
  --warm-white: #F5F1EC;
}

.section {
  padding: clamp(120px, 11vw, 190px) 0;
}

.section-label {
  width: fit-content;
  margin-bottom: 54px;
  padding: 10px 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: .12em;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -12vw;
  bottom: -21vw;
  width: 68vw;
  height: 43vw;
  border: 2px solid rgba(242, 68, 29, .58);
  border-radius: 50%;
  transform: rotate(-13deg);
  pointer-events: none;
}

.hero-content {
  padding-top: clamp(190px, 23vh, 250px);
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(72px, 9.1vw, 158px);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: max(42px, calc((100vw - 1480px) / 2));
  bottom: 42px;
  display: flex;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(20, 20, 20, .34);
  backdrop-filter: blur(16px);
}

.hero-proof span {
  min-width: 145px;
  min-height: 106px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-proof span:last-child { border-right: 0; }
.hero-proof strong { font-size: 27px; line-height: 1; letter-spacing: -.06em; }
.hero-proof small { max-width: 100px; color: rgba(255,255,255,.64); font-size: 8px; line-height: 1.45; }

.about {
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}

.about-manifesto {
  max-width: 1150px;
  margin: 0 auto clamp(90px, 10vw, 160px);
  text-align: center;
}

.about-manifesto > span,
.system-story-copy > span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.about-manifesto h2 {
  margin: 22px 0 26px;
  font-size: clamp(48px, 6vw, 94px);
  line-height: .96;
  letter-spacing: -.065em;
}

.about-manifesto p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.about-split {
  min-height: min(50vw, 780px);
  grid-template-columns: 44% 56%;
  border: 0;
  border-radius: 42px;
  color: var(--paper);
  background: var(--charcoal);
  box-shadow: 0 34px 90px rgba(23,23,23,.16);
}

.about-split .editorial-copy {
  padding: clamp(48px, 6vw, 92px);
  justify-content: center;
}

.about-split .editorial-copy h2 {
  color: var(--paper);
  font-size: clamp(46px, 4.3vw, 74px);
}

.about-split .editorial-copy p {
  color: rgba(242,242,242,.72);
  font-size: 13px;
}

.about-split .editorial-visual {
  margin: 24px;
  border-radius: 30px;
}

.about-metrics {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  color: var(--paper);
  background: var(--brand);
  transform: translateY(-1px);
}

.about-metrics > span {
  border-color: rgba(242,242,242,.28);
}

.about-metrics > span:hover {
  color: var(--ink);
  background: var(--orange-pale);
}

.vision-mission {
  gap: 0;
  margin-top: clamp(110px, 11vw, 180px);
  border-radius: 42px;
  overflow: hidden;
}

.purpose-card {
  min-height: 540px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.purpose-card:first-child {
  color: var(--paper);
  background: var(--brand);
}

.purpose-card:last-child {
  color: var(--paper);
  background: var(--charcoal);
}

.purpose-card::before {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,.15), transparent 67%);
}

.purpose-card p,
.purpose-card:first-child p,
.purpose-card:last-child p { color: rgba(242,242,242,.72); }
.purpose-index { color: var(--paper); }

.system-story {
  margin-top: clamp(110px, 11vw, 180px);
  min-height: 680px;
  padding: clamp(48px, 6vw, 94px);
  border-radius: 42px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  color: var(--paper);
  background: var(--charcoal);
}

.system-story-copy h3 {
  margin: 24px 0 30px;
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: .91;
  letter-spacing: -.065em;
}

.system-story-copy p {
  max-width: 530px;
  color: rgba(242,242,242,.68);
  font-size: 12px;
  line-height: 1.8;
}

.system-story-copy ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.system-story-copy li {
  padding: 14px 0;
  border-top: 1px solid rgba(242,242,242,.17);
  font-size: 10px;
  font-weight: 700;
}

.fire-system-scene {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(242,242,242,.15);
  border-radius: 34px;
  overflow: hidden;
  background: radial-gradient(circle at 55% 38%, rgba(242,68,29,.18), transparent 25%), #222;
}

.fire-system-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.scene-building {
  position: absolute;
  top: 110px;
  left: 18%;
  width: 51%;
  height: 250px;
  border: 2px solid rgba(242,242,242,.8);
  border-radius: 12px 12px 3px 3px;
}

.scene-building::before { content:""; position:absolute; left:0; right:0; top:48%; height:2px; background:rgba(242,242,242,.28); }
.scene-window { position:absolute; width:23%; height:27%; border:1px solid rgba(242,242,242,.26); background:rgba(242,242,242,.035); }
.scene-window.w1{left:8%;top:12%}.scene-window.w2{right:8%;top:12%}.scene-window.w3{left:8%;bottom:10%}.scene-window.w4{right:8%;bottom:10%}
.scene-detector { position:absolute; top:18px; left:47%; width:30px; height:10px; border-radius:8px; background:var(--paper); box-shadow:0 0 0 7px rgba(242,68,29,.12); animation:detector-alert 2s infinite; }
.scene-detector::before,.scene-detector::after { content:""; position:absolute; top:-15px; left:50%; width:44px; height:44px; border:1px solid var(--brand); border-radius:50%; transform:translateX(-50%); animation:signal-pulse 2s infinite; }
.scene-detector::after { animation-delay:1s; }
.scene-flame { position:absolute; right:17%; bottom:21%; width:28px; height:42px; border-radius:75% 25% 65% 35%; background:var(--brand); transform:rotate(45deg); animation:flame 1.1s ease-in-out infinite alternate; }
.scene-sprinkler { position:absolute; top:51%; right:13%; width:74px; height:40px; border-top:2px solid var(--paper); }
.scene-sprinkler b { position:absolute; top:8px; width:2px; height:28px; background:linear-gradient(var(--brand),transparent); animation:water-drop 1.4s infinite; }
.scene-sprinkler b:nth-child(1){left:12px}.scene-sprinkler b:nth-child(2){left:36px;animation-delay:.3s}.scene-sprinkler b:nth-child(3){left:60px;animation-delay:.6s}
.scene-pipe { position:absolute; left:9%; right:17%; bottom:72px; height:10px; border:2px solid var(--brand); border-radius:10px; }
.scene-pipe i { display:block; width:16%; height:100%; border-radius:8px; background:var(--orange-soft); animation:pipe-flow 4s linear infinite; }
.scene-pump { position:absolute; left:8%; bottom:44px; width:74px; height:74px; border:2px solid var(--paper); border-radius:50%; display:grid; place-items:center; background:#222; }
.scene-pump span { font-size:20px; font-weight:700; }
.scene-pump i { position:absolute; inset:8px; border:2px dashed var(--brand); border-radius:50%; animation:spin 5s linear infinite; }
.scene-panel { position:absolute; right:6%; bottom:42px; width:120px; height:116px; padding:20px 16px; border:1px solid rgba(242,242,242,.5); border-radius:15px; background:#292929; }
.scene-panel span { display:block; margin-bottom:18px; color:var(--brand); font-size:9px; font-weight:700; letter-spacing:.12em; }
.scene-panel i { display:inline-block; width:9px; height:9px; margin-right:7px; border-radius:50%; background:#8d8d8d; }
.scene-panel i:first-of-type { background:var(--brand); box-shadow:0 0 0 6px rgba(242,68,29,.12); animation:detector-alert 1.4s infinite; }
.fire-system-scene > p { position:absolute; top:24px; left:28px; margin:0; color:rgba(242,242,242,.56); font-size:9px; text-transform:uppercase; letter-spacing:.15em; }
@keyframes detector-alert{50%{opacity:.4}} @keyframes signal-pulse{from{opacity:.8;transform:translateX(-50%) scale(.4)}to{opacity:0;transform:translateX(-50%) scale(1.5)}} @keyframes flame{to{transform:rotate(45deg) scale(.78)}} @keyframes water-drop{0%{opacity:0;transform:translateY(-8px)}50%{opacity:1}100%{opacity:0;transform:translateY(34px)}} @keyframes pipe-flow{to{transform:translateX(525%)}} @keyframes spin{to{transform:rotate(360deg)}}

.standards-block {
  padding-top: clamp(100px, 10vw, 165px);
  border-top: 1px solid rgba(38,38,38,.12);
}

.products {
  position: relative;
  background: var(--paper);
}

.products::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 76px;
  background: var(--warm-white);
  clip-path: polygon(0 0,100% 0,100% 12%,0 100%);
}

.product-grid { gap: 28px; }
.product-card { border-radius: 38px; }
.product-card:nth-child(2),.product-card:nth-child(5){transform:translateY(38px)}

.applications {
  color: var(--paper);
  background: var(--charcoal);
}

.applications .section-label { color:var(--paper); border-color:rgba(242,242,242,.55); }
.applications .process-head > span { color:var(--orange-soft); }
.applications .process-head > p { color:rgba(242,242,242,.85); }
.applications .process-head > small { color:rgba(242,242,242,.54); }

.process-map {
  min-height: 780px;
  border: 0;
  border-radius: 44px;
  color: var(--ink);
  background: var(--warm-white);
  box-shadow: none;
}

.process-map::before,.process-map::after,.process-orbit,.process-center { display:none; }

.process-ribbon {
  position:absolute;
  inset:90px 4% 100px;
  display:flex;
  align-items:center;
  filter:drop-shadow(0 26px 30px rgba(38,38,38,.12));
}

.process-ribbon i {
  flex:1;
  height:190px;
  margin-left:-1px;
  background:var(--brand);
  clip-path:polygon(0 22%,80% 22%,100% 50%,80% 78%,0 78%,18% 50%);
}
.process-ribbon i:nth-child(2){background:#D83B19}.process-ribbon i:nth-child(3){background:#BF3214}.process-ribbon i:nth-child(4){background:#9F2912}.process-ribbon i:nth-child(5){background:#7E2110}.process-ribbon i:nth-child(6){background:#53170E}

.process-node {
  width: min(220px, 17%);
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(38,38,38,.14);
  border-radius: 24px;
  background: rgba(245,241,236,.98);
  box-shadow: 0 18px 48px rgba(38,38,38,.1);
  text-align:left;
  transform:none;
}

.process-node .process-icon {
  position:relative;width:52px;height:52px;margin-bottom:18px;border:1px solid var(--brand);border-radius:50%;display:grid;place-items:center;color:var(--brand);
}

.process-icon i { font-size:20px;font-style:normal;font-weight:400;line-height:1; }
.process-icon sup { position:absolute;top:-5px;right:-7px;width:22px;height:22px;border-radius:50%;display:grid;place-items:center;color:var(--paper);background:var(--brand);font-size:7px; }

.process-node em {
  display:block;
  max-height:0;
  margin-top:0;
  overflow:hidden;
  color:rgba(242,242,242,.76);
  font-size:9px;
  font-style:normal;
  line-height:1.6;
  opacity:0;
  transition:max-height .5s var(--ease),margin .5s var(--ease),opacity .35s ease;
}

.process-node:hover em,.process-node:focus em,.process-node.is-current em { max-height:100px;margin-top:16px;opacity:1; }
.process-node:hover,.process-node.is-current { min-height:245px; color:var(--paper); background:var(--brand); transform:translateY(-18px); animation:none; }
.process-node:hover .process-icon,.process-node.is-current .process-icon { color:var(--paper); border-color:rgba(242,242,242,.65); }
.process-node:hover .process-icon sup,.process-node.is-current .process-icon sup { color:var(--brand);background:var(--paper); }
.node-1{left:3%;top:130px}.node-2{left:19%;top:355px}.node-3{left:35%;top:130px}.node-4{right:35%;bottom:115px}.node-5{right:19%;bottom:auto;top:130px}.node-6{right:3%;top:355px}
.node-3:hover,.node-3.is-current,.node-6:hover,.node-6.is-current { transform:translateY(-18px); }
.aftercare-card { color:var(--paper); border-color:rgba(242,242,242,.18); }
.aftercare-card p { color:rgba(242,242,242,.58); }
.sector-line { border-color:rgba(242,242,242,.16); }
.sector-line span { border-color:rgba(242,242,242,.16); }

.references {
  background: var(--brand);
}
.reference-composition { border:0; border-radius:44px; background:var(--charcoal); }
.reference-copy { padding-left:clamp(46px,6vw,92px); }
.reference-visual { margin:24px; border-radius:30px; }

.client-marquee {
  padding: clamp(100px,9vw,150px) 0;
  background: var(--warm-white);
}
.client-marquee-head { align-items:end; }
.client-marquee-head .section-label { max-width:650px; margin:0; font-size:clamp(24px,3vw,46px); line-height:1; letter-spacing:-.04em; text-transform:none; border:0; border-radius:0; padding:0; }
.logo-marquee { margin-top:60px; }
.demo-logo { min-width:290px; min-height:130px; border-radius:25px; background:rgba(255,255,255,.52); }
.demo-logo small { display:block; margin-top:7px; color:var(--muted); font-size:7px; font-weight:400; letter-spacing:.12em; text-transform:uppercase; }

.contact-card { border-radius:44px; }

@media(max-width:1100px){
  .hero-proof{display:none}.system-story{grid-template-columns:1fr}.fire-system-scene{min-height:520px}.process-map{min-height:1050px}.process-ribbon{display:none}.process-node{width:42%}.node-1{left:4%;top:55px}.node-2{right:4%;left:auto;top:55px}.node-3{left:4%;top:355px}.node-4{right:4%;left:auto;top:355px;bottom:auto}.node-5{left:4%;right:auto;top:655px}.node-6{right:4%;top:655px}.product-card:nth-child(2),.product-card:nth-child(5){transform:none}
}

@media(max-width:620px){
  .section{padding:92px 0}.section-label{margin-bottom:36px}.about-manifesto{text-align:left;margin-bottom:70px}.about-manifesto h2{font-size:clamp(43px,13vw,58px)}.about-manifesto p{margin-left:0}.about-split{border-radius:28px}.about-split .editorial-visual{margin:14px;border-radius:20px}.vision-mission{border-radius:28px}.purpose-card{min-height:470px}.system-story{min-height:0;padding:38px 24px;border-radius:28px}.fire-system-scene{min-height:420px}.scene-building{left:8%;width:67%;top:90px;height:210px}.scene-panel{right:4%;width:94px}.products::before{height:34px}.product-card{border-radius:27px}.process-map{min-height:0;padding:24px}.process-node{position:relative;inset:auto;width:100%;min-height:150px;margin-bottom:15px}.process-node:hover,.process-node.is-current{min-height:235px;transform:translateY(-3px)}.reference-composition{border-radius:28px}.reference-visual{margin:14px;border-radius:20px}.client-marquee-head .section-label{font-size:32px}.demo-logo{min-width:240px;min-height:112px}.contact-card{border-radius:28px}
}

/* V10 — proportional editorial system and restored circular workflow */
:root {
  --maxef-dark: #202020;
  --maxef-warm: #F4F0EB;
}

.section {
  padding: clamp(105px, 9vw, 160px) 0;
}

.section-label,
.label-light {
  margin-bottom: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--brand);
  font-size: 10px;
  letter-spacing: .16em;
}

.about-manifesto {
  max-width: 1040px;
  margin: 0 0 clamp(72px, 8vw, 120px);
  text-align: left;
}

.about-manifesto h2 {
  max-width: 1020px;
  margin: 18px 0 24px;
  font-size: clamp(48px, 5.4vw, 86px);
}

.about-manifesto p {
  max-width: 660px;
  margin: 0;
}

.about-split,
.reference-composition,
.contact-card {
  border: 0;
  border-radius: 28px;
  box-shadow: none;
}

.about-split {
  min-height: min(45vw, 680px);
  grid-template-columns: 48% 52%;
  color: var(--ink);
  background: transparent;
}

.about-split .editorial-copy {
  padding: 30px clamp(50px, 6vw, 94px) 30px 0;
}

.about-split .editorial-copy h2 {
  color: var(--ink);
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: .97;
}

.about-split .editorial-copy p {
  color: var(--muted);
  font-size: 13px;
}

.about-split .editorial-visual,
.reference-composition .reference-visual {
  margin: 0;
  border-radius: 26px;
}

.about-metrics {
  margin-top: 44px;
  border-radius: 22px;
  overflow: hidden;
}

.vision-mission {
  gap: 28px;
  margin-top: clamp(100px, 9vw, 150px);
  border-radius: 0;
  overflow: visible;
}

.purpose-card {
  min-height: 440px;
  border-radius: 28px;
}

.standards-block {
  border: 0;
  padding-top: 0;
  margin-top: clamp(105px, 9vw, 155px);
}

.standards-columns,
.logo-standard-group:first-child,
.official-logo-list figure {
  border: 0;
}

.standards-columns {
  gap: clamp(46px, 7vw, 110px);
}

.logo-standard-group {
  padding: 48px 0 0;
}

.official-logo-list {
  gap: 16px;
}

.official-logo-list figure {
  min-height: 112px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.42);
}

.why-maxef {
  margin-top: clamp(110px, 10vw, 170px);
  padding: clamp(60px, 7vw, 104px);
  border-radius: 30px;
  color: var(--paper);
  background: var(--maxef-dark);
}

.why-maxef > h2 {
  max-width: 900px;
  margin: 0 0 clamp(64px, 7vw, 104px);
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: .94;
  letter-spacing: -.06em;
}

.why-maxef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px clamp(60px, 8vw, 130px);
}

.why-maxef-grid article {
  max-width: 500px;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  border: 2px solid var(--brand);
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
}

.why-maxef-grid h3 {
  margin: 0 0 20px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.15;
}

.why-maxef-grid p {
  margin: 0;
  color: rgba(242,242,242,.68);
  font-size: 12px;
  line-height: 1.8;
}

.products::before { display: none; }
.products-heading {
  grid-template-columns: .92fr .7fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
  margin-bottom: clamp(78px, 8vw, 125px);
}
.products-heading h2 { font-size: clamp(48px, 5.2vw, 82px); }

.system-story {
  margin: 0 0 clamp(95px, 9vw, 145px);
  min-height: 610px;
  padding: clamp(48px, 6vw, 88px);
  border: 0;
  border-radius: 0;
  color: var(--paper);
  background: var(--maxef-dark);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.fire-system-scene {
  border: 0;
  border-radius: 0;
  background: radial-gradient(circle at 55% 38%, rgba(242,68,29,.18), transparent 28%), #282828;
}

.scene-pressure {
  position: absolute;
  top: 54px;
  right: 28px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--paper);
}
.scene-pressure strong { font-size: 30px; letter-spacing: -.06em; }
.scene-pressure small { color: var(--brand); font-size: 9px; }
.scene-status { position:absolute;left:28px;bottom:22px;display:flex;align-items:center;gap:9px;color:rgba(242,242,242,.64);font-size:8px;text-transform:uppercase;letter-spacing:.12em; }
.scene-status i { width:8px;height:8px;border-radius:50%;background:#45D483;box-shadow:0 0 0 6px rgba(69,212,131,.12);animation:detector-alert 1.5s infinite; }

.product-list-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.product-list-heading h3 { margin:0;font-size:clamp(34px,4vw,62px);line-height:1;letter-spacing:-.055em; }
.product-list-heading p { max-width:500px;margin:0;color:var(--muted);font-size:12px;line-height:1.75; }

.product-grid { gap: 24px; }
.product-card,
.product-card:nth-child(2),
.product-card:nth-child(5) {
  border: 0;
  border-radius: 25px;
  box-shadow: none;
  transform: none;
}

.applications {
  color: var(--ink);
  background: var(--maxef-warm);
}
.applications .section-label { color:var(--brand); }
.applications .process-head > p { color:var(--ink); }
.applications .process-head > small { color:var(--muted); }
.applications .process-head { max-width:900px; }
.process-head h2 { font-size:clamp(48px,5.4vw,86px); }

.process-map {
  min-height: 760px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.process-ribbon { display: none; }
.process-map::before,
.process-map::after { display:none; }
.process-orbit {
  display:block;
  inset: 15% 18%;
  border: 2px solid rgba(242,68,29,.32);
  background:radial-gradient(circle at 50% 50%,rgba(242,68,29,.08),transparent 60%);
}
.process-orbit::before { border:0; }
.process-dot { animation-duration:12s; }
.process-center {
  display:grid;
  width:220px;
  height:220px;
  border:0;
  background:var(--paper);
  box-shadow:0 24px 70px rgba(38,38,38,.12);
}

.process-node {
  width:min(255px,23%);
  min-height:150px;
  padding:24px;
  border:0;
  border-radius:22px;
  color:var(--ink);
  background:var(--paper);
  box-shadow:0 18px 52px rgba(38,38,38,.10);
  transform:none;
}
.process-node:hover,.process-node.is-current { min-height:235px;color:var(--paper);background:var(--brand);transform:translateY(-7px);box-shadow:0 24px 60px rgba(242,68,29,.22);animation:none; }
.node-1{top:18px;left:12%}.node-2{top:18px;right:12%;left:auto}.node-3{top:50%;right:8px;left:auto;transform:translateY(-50%)}.node-4{right:12%;bottom:18px;top:auto}.node-5{bottom:18px;left:12%;right:auto;top:auto}.node-6{top:50%;left:8px;right:auto;transform:translateY(-50%)}
.node-3:hover,.node-3.is-current,.node-6:hover,.node-6.is-current { transform:translateY(calc(-50% - 7px)); }
.aftercare-card { color:var(--ink);border:0;background:rgba(255,255,255,.52); }
.aftercare-card p { color:var(--muted); }
.sector-line { border:0; gap:12px; margin-top:28px; }
.sector-line span { min-height:72px;border:0;border-radius:999px;background:rgba(255,255,255,.55); }

.references { background:var(--brand); }
.reference-composition { grid-template-columns:48% 52%;background:transparent; }
.reference-copy { padding-left:0; }
.reference-visual { border-radius:26px!important; }
.client-marquee { background:var(--paper); }
.client-marquee-head .section-label { color:var(--ink); }
.demo-logo { border:0; }

.contact-card { overflow:hidden; }
.contact-form input,.contact-form textarea { border-color:rgba(38,38,38,.14); }

@media(max-width:920px){
  .about-split{grid-template-columns:1fr}.about-split .editorial-copy{padding:48px 0}.about-split .editorial-visual{min-height:500px}.vision-mission{grid-template-columns:1fr}.standards-columns{grid-template-columns:1fr}.why-maxef-grid{gap:56px 40px}.system-story{grid-template-columns:1fr;clip-path:none;border-radius:26px}.process-map{min-height:1060px}.process-orbit,.process-center{display:none}.process-node{width:46%}.node-1{top:30px;left:2%}.node-2{top:30px;right:2%}.node-3{top:350px;right:2%;transform:none}.node-4{top:350px;left:2%;right:auto;bottom:auto}.node-5{top:670px;left:2%;bottom:auto}.node-6{top:670px;right:2%;left:auto;transform:none}.node-3:hover,.node-3.is-current,.node-6:hover,.node-6.is-current{transform:translateY(-7px)}
}

@media(max-width:620px){
  .section{padding:88px 0}.about-manifesto h2,.products-heading h2,.process-head h2{font-size:clamp(42px,12.5vw,58px)}.about-split .editorial-copy{min-height:0;padding:30px 0 46px}.about-split .editorial-visual{min-height:390px}.about-metrics{grid-template-columns:1fr}.vision-mission{gap:18px}.purpose-card{min-height:430px}.standards-heading{gap:24px}.official-logo-list figure{grid-template-columns:96px 1fr;padding:18px 12px}.why-maxef{padding:48px 25px;border-radius:24px}.why-maxef-grid{grid-template-columns:1fr;gap:54px}.products-heading,.product-list-heading{grid-template-columns:1fr;gap:25px}.system-story{padding:42px 24px;margin-bottom:80px}.fire-system-scene{min-height:430px}.process-map{min-height:0;padding:0}.process-node{position:relative;inset:auto;width:100%;min-height:150px;margin-bottom:15px;transform:none!important}.process-node:hover,.process-node.is-current{min-height:235px;transform:translateY(-3px)!important}.aftercare-card{grid-template-columns:1fr}.sector-line{grid-template-columns:1fr}.reference-composition{grid-template-columns:1fr}.reference-copy{padding:30px 0 50px}.reference-visual{min-height:390px}
}

body.menu-open .menu-button {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

/* V11 — demo polish, unified section rhythm and structural cleanup */
html,
body {
  overflow-x: clip;
}

.section-shell,
.editorial-copy,
.reference-copy,
.contact-form-area {
  min-width: 0;
}

.section-label,
.label-light {
  margin: 0 0 clamp(38px, 4vw, 62px);
  padding: 0;
  border: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-split,
.references .reference-composition {
  border: 0 !important;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.about-split {
  min-height: 0;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(54px, 7vw, 118px);
  align-items: center;
}

.about-split .editorial-copy {
  min-height: 0;
  padding: 0;
  justify-content: center;
}

.about-split .editorial-copy h2,
.reference-copy h2,
.products-heading h2,
.process-head h2,
.standards-heading h3 {
  max-width: 820px;
  overflow-wrap: normal;
  text-wrap: balance;
}

.about-split .editorial-copy h2 {
  margin: 0 0 34px;
  font-size: clamp(50px, 5vw, 82px);
  line-height: .93;
  letter-spacing: -.065em;
}

.about-split .editorial-copy p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.about-split .editorial-copy p + p {
  margin-top: 22px;
}

.about-split .editorial-visual {
  min-height: clamp(520px, 48vw, 740px);
  margin: 0;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(38, 38, 38, .10);
}

.about-split .editorial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.standards-heading {
  display: block;
  max-width: 1040px;
  margin: 0 auto clamp(64px, 7vw, 108px);
  text-align: center;
}

.standards-heading .section-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.standards-heading h3 {
  margin: 0 auto;
  font-size: clamp(52px, 5.6vw, 90px);
  line-height: .92;
  letter-spacing: -.065em;
}

.standards-heading p {
  max-width: 790px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.65;
}

.logo-group-heading {
  grid-template-columns: 1fr;
  gap: 0;
}

.logo-group-heading h4 {
  font-size: clamp(26px, 2.4vw, 38px);
}

.products-heading {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: center;
}

.products-heading h2 {
  font-size: clamp(54px, 5.8vw, 92px);
}

.products-heading p {
  max-width: 610px;
  font-size: 15px;
  line-height: 1.75;
}

.applications .process-head {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-head > span {
  font-size: 12px;
  letter-spacing: .18em;
}

.process-head h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(54px, 5.8vw, 92px);
}

.process-head > p {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.65;
}

.process-head > small {
  display: block;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.sector-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(70px, 7vw, 110px);
}

.sector-showcase article {
  min-height: 190px;
  padding: 28px 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 16px 44px rgba(38, 38, 38, .055);
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.sector-showcase article:hover {
  color: var(--paper);
  background: var(--brand);
  transform: translateY(-7px);
}

.sector-icon {
  width: 72px;
  height: 72px;
  border: 2px solid currentColor;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.sector-showcase article:hover .sector-icon {
  color: var(--paper);
}

.sector-showcase strong {
  max-width: 180px;
  font-size: 17px;
  line-height: 1.25;
}

.references .reference-composition {
  gap: clamp(54px, 7vw, 118px);
  align-items: center;
}

.references .reference-copy {
  padding: 0;
}

.references .reference-copy h2 {
  font-size: clamp(54px, 5.8vw, 92px);
}

.references .reference-copy > p {
  font-size: 15px;
  line-height: 1.75;
}

.references .reference-visual {
  border-radius: 30px !important;
  box-shadow: 0 28px 70px rgba(38, 38, 38, .13);
}

@media (max-width: 1100px) {
  .sector-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .about-split,
  .references .reference-composition {
    grid-template-columns: 1fr;
  }

  .about-split .editorial-visual {
    min-height: 520px;
  }

  .products-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .section-label,
  .label-light {
    margin-bottom: 30px;
    font-size: 10px;
  }

  .about-split {
    gap: 42px;
  }

  .about-split .editorial-copy h2,
  .products-heading h2,
  .process-head h2,
  .standards-heading h3,
  .references .reference-copy h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .about-split .editorial-copy p,
  .products-heading p,
  .references .reference-copy > p {
    font-size: 14px;
  }

  .about-split .editorial-visual {
    min-height: 390px;
    border-radius: 22px;
  }

  .standards-heading {
    text-align: left;
  }

  .standards-heading h3,
  .standards-heading p {
    margin-left: 0;
    text-align: left;
  }

  .applications .process-head {
    text-align: left;
  }

  .process-head h2,
  .process-head > p,
  .process-head > small {
    margin-left: 0;
    text-align: left;
  }

  .sector-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 62px;
  }

  .sector-showcase article {
    min-height: 158px;
    padding: 20px;
    border-radius: 20px;
  }

  .sector-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 28px;
  }

  .sector-showcase strong {
    font-size: 14px;
  }

  .references .reference-composition {
    gap: 42px;
  }
}

/* V6 — moving monochrome demo references */
.client-marquee {
  padding: clamp(92px, 8vw, 132px) 0;
  overflow: hidden;
  background: var(--paper);
}

.client-marquee-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
}

.client-marquee-head .section-label {
  margin-bottom: 36px;
}

.client-marquee-head > p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.logo-marquee {
  position: relative;
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-marquee-track {
  width: max-content;
  display: flex;
  animation: client-logo-flow 34s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-group {
  padding-right: 64px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.demo-logo {
  min-width: 210px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #252525;
  white-space: nowrap;
  opacity: .74;
  filter: grayscale(1);
  transition: opacity .25s ease, transform .25s ease;
}

.demo-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.demo-logo i {
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.demo-logo strong {
  font-size: 19px;
  letter-spacing: .08em;
  font-weight: 700;
}

.logo-novarq i,
.logo-orbis i {
  border-radius: 50%;
}

.logo-atlas i {
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
}

.logo-atlas i::first-letter {
  transform: rotate(-45deg);
}

.logo-vertex i {
  border-radius: 50% 50% 4px 4px;
}

.logo-lumera i {
  border-radius: 4px 18px 4px 18px;
}

.logo-koru i {
  border-radius: 22px 4px 22px 4px;
}

.logo-nexa i {
  border-right-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.logo-arkon i {
  border-radius: 50% 4px 50% 4px;
}

@keyframes client-logo-flow {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 920px) {
  .nav-panel,
  .site-header.is-scrolled .nav-panel {
    width: calc(100vw - 28px);
    min-height: 76px;
    padding: 0;
    grid-template-columns: 1fr 46px;
    gap: 14px;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: 132px;
    justify-content: flex-start;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 132px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    color: #fff;
    border-color: rgba(255, 255, 255, .36);
    background: rgba(18, 18, 18, .28);
    backdrop-filter: blur(12px);
  }

  .client-marquee-head {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .client-marquee-head > p:last-child {
    margin: -20px 0 30px;
  }
}

@media (max-width: 620px) {
  .client-marquee {
    padding: 78px 0;
  }

  .logo-marquee {
    padding: 32px 0;
  }

  .logo-marquee-group {
    padding-right: 38px;
    gap: 38px;
  }

  .demo-logo {
    min-width: 176px;
    gap: 11px;
  }

  .demo-logo i {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .demo-logo strong {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-marquee-track {
    width: auto;
    animation: none;
  }

  .logo-marquee-group {
    width: var(--shell);
    margin: 0 auto;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-marquee-group[aria-hidden="true"] {
    display: none;
  }
}

/* V5 — unified premium cards, typography and legal dialogs */
.section-label {
  margin-bottom: 32px;
  padding-bottom: 20px;
  font-size: 15px;
  letter-spacing: .18em;
}

.nav-panel,
.site-header.is-scrolled .nav-panel {
  padding-right: 7px;
  padding-left: 7px;
  grid-template-columns: 180px 1fr 150px;
}

.brand,
.site-header.is-scrolled .brand {
  width: 100%;
  height: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img,
.site-header.is-scrolled .brand img {
  display: block;
  width: 148px;
  height: auto;
  max-height: none;
  margin: 0;
}

.editorial-split,
.service-composition,
.application-composition,
.reference-composition,
.process-map,
.contact-card {
  border: 1px solid rgba(38, 38, 38, .12);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(38, 38, 38, .075);
}

.editorial-copy,
.service-copy,
.application-copy,
.reference-copy {
  box-sizing: border-box;
  padding: clamp(46px, 5.6vw, 82px);
}

.editorial-copy h2,
.service-copy h2,
.application-copy h2,
.reference-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(46px, 4.8vw, 78px);
  line-height: .94;
  letter-spacing: -.06em;
}

.editorial-copy > p,
.service-copy > p,
.application-copy > p,
.reference-copy > p {
  width: 100%;
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.service-copy,
.reference-copy {
  justify-content: center;
}

.service-list {
  width: 100%;
  margin-top: 42px;
}

.editorial-visual,
.service-visual,
.application-visual,
.reference-visual {
  border-radius: 0;
}

.principles,
.sector-line {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(38, 38, 38, .055);
}

.principle,
.principle:last-child,
.sector-line span,
.sector-line span:last-child {
  border-color: var(--line);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.footer-legal button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color .25s ease;
}

.footer-legal button:hover,
.footer-legal button:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--brand);
}

body.modal-open {
  overflow: hidden;
}

.legal-dialog {
  width: min(760px, calc(100vw - 36px));
  max-height: min(82vh, 820px);
  padding: 0;
  border: 0;
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(20, 20, 20, .28);
}

.legal-dialog::backdrop {
  background: rgba(20, 20, 20, .58);
  backdrop-filter: blur(9px);
}

.legal-dialog-panel {
  max-height: min(82vh, 820px);
  overflow: auto;
}

.legal-dialog-head {
  position: sticky;
  z-index: 2;
  top: 0;
  min-height: 84px;
  padding: 18px 22px 18px 30px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242, 242, 242, .94);
  backdrop-filter: blur(18px);
}

.legal-dialog-head img {
  display: block;
  width: 142px;
  height: auto;
}

.legal-dialog-head button {
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.legal-dialog-head button:hover,
.legal-dialog-head button:focus-visible {
  color: var(--paper);
  border-color: var(--brand);
  background: var(--brand);
}

.legal-dialog-body {
  padding: clamp(38px, 6vw, 70px);
}

.legal-eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legal-dialog-body h2 {
  max-width: 610px;
  margin: 0 0 34px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
}

.legal-dialog-body > p:not(.legal-eyebrow) {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

@media (max-width: 1100px) {
  .editorial-split,
  .service-composition,
  .application-composition,
  .reference-composition {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .editorial-copy,
  .service-copy,
  .application-copy,
  .reference-copy {
    min-height: 0;
    padding: 54px 44px;
  }

  .editorial-visual,
  .service-visual,
  .application-visual,
  .reference-visual {
    min-height: 500px;
    grid-row: auto;
  }

  .application-copy {
    grid-row: 1;
  }

  .application-visual {
    grid-row: 2;
  }
}

@media (max-width: 920px) {
  .nav-panel,
  .site-header.is-scrolled .nav-panel {
    grid-template-columns: 1fr 46px;
    padding: 5px 6px;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: 138px;
    justify-content: center;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 120px;
  }
}

@media (max-width: 620px) {
  .section-label {
    font-size: 12px;
  }

  .editorial-split,
  .service-composition,
  .application-composition,
  .reference-composition,
  .process-map,
  .contact-card {
    border-radius: 22px;
  }

  .editorial-copy,
  .service-copy,
  .application-copy,
  .reference-copy {
    padding: 38px 24px;
  }

  .editorial-copy h2,
  .service-copy h2,
  .application-copy h2,
  .reference-copy h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .editorial-copy > p,
  .service-copy > p,
  .application-copy > p,
  .reference-copy > p {
    font-size: 14px;
  }

  .editorial-visual,
  .service-visual,
  .application-visual,
  .reference-visual {
    min-height: 360px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .legal-dialog {
    width: calc(100vw - 20px);
    border-radius: 22px;
  }

  .legal-dialog-head {
    min-height: 72px;
    padding: 14px 16px 14px 22px;
  }

  .legal-dialog-head img {
    width: 118px;
  }

  .legal-dialog-body {
    padding: 34px 24px 42px;
  }
}

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

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

  .intro {
    display: none;
  }

  body.is-loading {
    overflow: auto;
  }

  .site-header,
  .hero-content,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final minimal revision */
:root {
  --white: #F2F2F2;
}

body,
.about,
.services,
.applications,
.references,
.contact,
.site-footer,
.editorial-split,
.application-composition,
.process-map,
.contact-card,
.contact-form-area {
  background-color: var(--paper);
}

.services,
.references,
.site-footer {
  color: var(--ink);
}

.section-label,
.label-light {
  color: var(--brand);
  border-color: var(--line);
}

.nav-panel {
  width: min(1460px, calc(100vw - 72px));
  min-height: 64px;
  padding: 5px 7px 5px 22px;
  grid-template-columns: 168px 1fr 150px;
  gap: 18px;
}

.site-header.is-scrolled .nav-panel {
  width: min(1260px, calc(100vw - 48px));
  min-height: 60px;
}

.brand {
  width: 148px;
}

.brand img,
.site-header.is-scrolled .brand img {
  width: 148px;
  height: auto;
  max-height: 40px;
}

.header-cta {
  min-height: 48px;
  padding: 0 20px;
  background: var(--paper);
}

.split-title,
.service-float-title,
.reference-word {
  display: none;
}

.editorial-split,
.application-composition,
.service-composition,
.reference-composition {
  border: 1px solid var(--line);
}

.services .service-composition,
.references .reference-composition {
  background: var(--paper);
}

.service-copy > p,
.reference-copy > p {
  color: var(--muted);
}

.service-list {
  border-color: var(--line);
}

.service-list span,
.service-list span:nth-child(even) {
  border-color: var(--line);
}

.service-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--brand);
}

.service-visual::after {
  background: linear-gradient(90deg, rgba(242, 242, 242, .22), transparent 28%);
}

.application-copy h2 {
  margin-left: 0;
  color: var(--ink);
}

.application-note strong {
  color: var(--brand);
}

.text-link,
.whatsapp-inline {
  color: var(--ink);
  border-color: var(--brand);
}

.reference-visual::after {
  background: linear-gradient(0deg, rgba(38, 38, 38, .36), transparent 36%);
}

.process-trail {
  display: none;
}

.process-dot {
  top: 0;
  left: 50%;
  offset-path: none;
  transform: translate(-50%, -50%);
  animation-name: process-dot-path;
  animation-duration: 10s;
}

.process-map:hover .process-dot {
  animation-duration: 10s;
}

@keyframes process-dot-path {
  0%, 100% { top: 0; left: 50%; }
  12.5% { top: 14.6%; left: 85.4%; }
  25% { top: 50%; left: 100%; }
  37.5% { top: 85.4%; left: 85.4%; }
  50% { top: 100%; left: 50%; }
  62.5% { top: 85.4%; left: 14.6%; }
  75% { top: 50%; left: 0; }
  87.5% { top: 14.6%; left: 14.6%; }
}

.process-node.is-current {
  animation: process-touch 2.45s ease both;
}

@keyframes process-touch {
  0% {
    color: var(--ink);
    background: var(--paper);
    box-shadow: none;
  }
  12%, 42% {
    color: var(--paper);
    background: var(--brand);
    box-shadow: 0 18px 44px rgba(242, 68, 29, .22);
  }
  56% {
    color: var(--ink);
    background: var(--paper);
    box-shadow: none;
  }
  70%, 100% {
    color: var(--paper);
    background: var(--brand);
    box-shadow: 0 18px 44px rgba(242, 68, 29, .22);
  }
}

.process-node.is-current small {
  color: rgba(242, 242, 242, .76);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-main {
  border-color: var(--line);
}

.footer-main > p,
.footer-bottom {
  color: var(--muted);
}

/* Minimal contact card */
.contact-card {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(38, 38, 38, .08);
}

.contact-info {
  padding: clamp(42px, 5vw, 76px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.contact-info h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(40px, 4.5vw, 74px);
  line-height: .95;
  letter-spacing: -.06em;
}

.contact-info > p {
  max-width: 470px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-thumb {
  position: relative;
  height: 210px;
  margin-top: 42px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-thumb img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.contact-info .whatsapp-inline {
  margin-top: 32px;
}

.contact-form-area {
  padding: clamp(42px, 5vw, 76px);
}

.form-heading {
  margin-bottom: 38px;
}

.form-heading h3 {
  margin: 0 0 12px;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1;
  letter-spacing: -.05em;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.contact-form {
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.contact-form .form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label > span {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 9px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: transparent;
}

.contact-form input {
  height: 58px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 140px;
  padding: 18px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(38, 38, 38, .38);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
}

.message-field {
  margin-top: 24px !important;
}

.consent-field {
  margin-top: 22px !important;
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
  border-radius: 5px;
  accent-color: var(--brand);
  flex: 0 0 auto;
}

.consent-field span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  line-height: 1.6;
}

.contact-form .form-foot {
  margin-top: 28px;
}

.contact-form .form-foot p {
  color: var(--muted);
}

.contact-form .form-foot p.is-success {
  color: var(--brand);
}

.contact-form .form-foot button {
  min-width: 180px;
  min-height: 52px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--brand);
}

.contact-form .form-foot button:hover {
  color: var(--paper);
  background: var(--brand-deep);
}

@media (max-width: 920px) {
  .nav-panel,
  .site-header.is-scrolled .nav-panel {
    width: calc(100vw - 26px);
    min-height: 58px;
    padding: 5px 6px 5px 18px;
  }

  .brand {
    width: 120px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 120px;
    max-height: 32px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    background: var(--paper);
  }

  .service-copy,
  .reference-copy {
    color: var(--ink);
  }

  .contact-card {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .contact-info {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-form-area {
    padding: 48px 38px;
  }
}

@media (max-width: 620px) {
  .nav-panel,
  .site-header.is-scrolled .nav-panel {
    width: calc(100vw - 20px);
  }

  .contact-card {
    border-radius: 20px;
  }

  .contact-info,
  .contact-form-area {
    padding: 34px 24px;
  }

  .contact-info h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .contact-thumb {
    height: 180px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .contact-form .form-foot button {
    width: 100%;
  }
}

/* V4 — final alignment and contact composition */
.nav-panel,
.site-header.is-scrolled .nav-panel {
  box-sizing: border-box;
}

.header-cta,
.site-header.is-scrolled .header-cta {
  align-self: center;
  box-sizing: border-box;
  height: 48px;
  min-height: 48px;
  margin: 0;
  padding-block: 0;
  transform: none;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: none;
}

.contact-card {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 720px;
  background: var(--paper);
}

.contact-visual {
  position: relative;
  min-width: 0;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, transparent, rgba(20, 20, 20, .72));
  pointer-events: none;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 38px;
  left: 42px;
  max-width: 470px;
  color: #fff;
  font-size: 13px;
  line-height: 1.65;
}

.contact-form-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(44px, 5vw, 72px);
  background: var(--paper);
  border-left: 1px solid var(--line);
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading .form-eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.form-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(38px, 4.1vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
}

.form-heading > p:not(.form-eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.form-heading .whatsapp-inline {
  display: inline-flex;
  margin-top: 18px;
}

/* Hero title stays within the image area without oversized outline overflow */
.hero h1 {
  max-width: 780px;
  font-size: clamp(56px, 6.4vw, 110px);
  line-height: .9;
  letter-spacing: -.06em;
}

.hero h1 span {
  color: #fff;
  -webkit-text-stroke: 0;
}

@media (max-width: 980px) {
  .contact-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-visual {
    min-height: 430px;
  }

  .contact-form-area {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .contact-visual {
    min-height: 330px;
  }

  .contact-visual figcaption {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .contact-form-area {
    padding: 34px 24px;
  }

  .form-heading h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(46px, 14.5vw, 62px);
    line-height: .92;
    letter-spacing: -.055em;
  }
}

/* V6 cascade guard — keep the header embedded in the hero */
.site-header,
.site-header.is-scrolled {
  padding-top: 0;
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(18, 18, 18, .88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.nav-panel,
.site-header.is-scrolled .nav-panel {
  width: var(--shell);
  min-height: 92px;
  padding: 0;
  border: 0;
  border-radius: 0;
  grid-template-columns: 190px minmax(0, 1fr) 156px;
  gap: 26px;
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand,
.site-header.is-scrolled .brand {
  width: 158px;
  min-height: 0;
  justify-content: flex-start;
}

.brand img,
.site-header.is-scrolled .brand img {
  width: 158px;
  height: auto;
  max-height: none;
  filter: grayscale(1) brightness(0) invert(1);
}

.header-cta,
.site-header.is-scrolled .header-cta {
  width: 156px;
  height: 50px;
  min-height: 50px;
  padding: 0 21px;
  color: var(--ink);
  border-color: rgba(255, 255, 255, .55);
  background: #fff;
}

@media (max-width: 920px) {
  .nav-panel,
  .site-header.is-scrolled .nav-panel {
    width: calc(100vw - 28px);
    min-height: 76px;
    padding: 0;
    grid-template-columns: 1fr 46px;
    gap: 14px;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: 132px;
    justify-content: flex-start;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 132px;
  }
}

body.menu-open .site-header {
  background: var(--paper);
}

body.menu-open .brand img {
  filter: none;
}
