:root {
  --ink: #172832;
  --ink-soft: #2b3d46;
  --orange: #f27022;
  --orange-deep: #df5812;
  --aqua: #16abc4;
  --paper: #f7f5f0;
  --stone: #d9d4c9;
  --white: #fff;
  --line: rgba(23, 40, 50, 0.16);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

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

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  display: block;
  width: auto;
  height: auto;
  padding: 14px 18px;
  clip: auto !important;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4.5vw;
  border-bottom: 1px solid rgba(23, 40, 50, 0.1);
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 32px;
}

.mini-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
}

.mini-mark {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 42px;
  place-items: center;
  clip-path: polygon(50% 0, 100% 24%, 100% 100%, 0 100%, 0 24%);
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 245px;
  height: 62px;
  object-fit: contain;
}

.theme-brand-logo {
  display: block;
  width: clamp(190px, 17vw, 245px);
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.mini-name {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.mini-name span {
  color: var(--orange);
}

.desktop-nav .menu,
.mobile-nav .menu {
  display: flex;
  gap: 34px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  display: block;
  font-size: 13px;
  font-weight: 700;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span[aria-hidden="true"] {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 49;
  top: 82px;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: calc(100dvh - 82px);
  padding: 42px 22px max(42px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--white);
  background: var(--ink);
}

.admin-bar .mobile-nav {
  top: 114px;
  height: calc(100dvh - 114px);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav .menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mobile-nav li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  font-size: clamp(24px, 7vw, 38px);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.mobile-nav a::after {
  content: "↘";
  color: var(--orange);
}

.mobile-nav .mobile-menu-cta {
  display: inline-flex;
  width: auto;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 22px;
  border: 0;
  font-size: 14px;
  letter-spacing: 0;
}

.mobile-nav .mobile-menu-cta::after {
  content: none;
}

.section-pad {
  padding-right: clamp(22px, 7vw, 112px);
  padding-left: clamp(22px, 7vw, 112px);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

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

.button-orange:hover,
.button-orange:focus-visible {
  background: var(--orange-deep);
}

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

.button-white:hover,
.button-white:focus-visible {
  color: var(--white);
  background: var(--ink);
}

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

.hero-grid {
  display: grid;
  min-height: calc(100svh - 82px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
}

.hero-copy {
  z-index: 2;
  display: flex;
  max-width: 690px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) 7vw clamp(54px, 7vw, 100px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 3px;
  background: var(--aqua);
}

.hero h1,
.section-heading h2,
.transformation h2,
.process h2,
.partnership h2,
.region h2,
.faq h2,
.quote h2,
.content-header h1,
.error-page h1 {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(58px, 7vw, 114px);
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-intro {
  max-width: 590px;
  margin-top: 38px;
  color: #4c5a61;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
}

.hero-intro p {
  margin: 0;
}

.hero-intro strong {
  color: var(--ink);
}

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

.hero-cta-note {
  margin: 14px 0 0;
  color: #68767d;
  font-size: 12px;
  font-weight: 650;
}

.hero-cta-note span {
  margin-right: 6px;
  color: var(--aqua);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  color: var(--orange);
  font-size: 20px;
}

.trust-row {
  display: grid;
  margin-top: clamp(52px, 7vw, 92px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.trust-row > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 12px 0 0;
}

.trust-row strong {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.trust-row span {
  font-size: 12px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
  padding: 8% 4% 4%;
  background: var(--white);
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: -7vw;
  width: 36%;
  height: 21%;
  content: "";
  background: var(--orange);
}

.clean-seam {
  position: absolute;
  z-index: 1;
  top: -4%;
  left: 18%;
  width: 3px;
  height: 108%;
  background: var(--aqua);
  transform: rotate(8deg);
  transform-origin: top;
}

.clean-seam::before,
.clean-seam::after {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--aqua);
  border-radius: 999px;
  content: "";
  background: var(--white);
  transform: translateX(-50%);
}

.clean-seam::before { top: 14%; }
.clean-seam::after { bottom: 18%; }

.logo-stage {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  place-items: center;
}

.logo-stage img {
  display: block;
  width: 100%;
  max-height: 590px;
  height: auto;
  object-fit: contain;
}

.surface-legend {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: 720px;
  margin: 18px auto 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.surface-legend span {
  display: flex;
  gap: 8px;
  padding: 15px 8px;
  border-right: 1px solid var(--line);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.surface-legend span:last-child { border-right: 0; }
.surface-legend b { color: var(--orange); }

.statement-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 23px 4vw;
  color: var(--white);
  background: var(--ink);
  font-size: clamp(14px, 1.3vw, 18px);
  text-align: center;
}

.statement-band p,
.statement-band strong { margin: 0; }
.statement-band p { color: rgba(255, 255, 255, 0.64); }
.statement-band strong { color: var(--orange); }

.services {
  padding-top: clamp(90px, 11vw, 170px);
  padding-bottom: clamp(90px, 11vw, 170px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2,
.partnership h2,
.region h2,
.faq h2 {
  font-size: clamp(48px, 6vw, 92px);
}

.section-heading > p,
.partnership-copy > p:not(.eyebrow),
.faq-list p {
  margin: 0;
  color: #59666c;
  font-size: 16px;
  line-height: 1.75;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
  transition: color 260ms ease, background 260ms ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--ink);
}

.service-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 360ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(15, 27, 34, 0.9), rgba(15, 27, 34, 0.46));
  opacity: 0;
  transition: opacity 300ms ease;
}

.service-card.has-service-image:hover,
.service-card.has-service-image:focus-within {
  color: var(--white);
  background: var(--ink);
}

.service-card.has-service-image:hover .service-background,
.service-card.has-service-image:focus-within .service-background {
  opacity: 1;
  transform: scale(1);
}

.service-card.has-service-image:hover::after,
.service-card.has-service-image:focus-within::after {
  opacity: 1;
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-topline > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-topline p {
  margin: 0;
  color: #6a767b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.service-card:hover .service-topline p,
.service-card:hover .service-description,
.service-card:focus-within .service-topline p,
.service-card:focus-within .service-description {
  color: rgba(255, 255, 255, 0.66);
}

.service-card h3 {
  margin: 92px 0 16px;
  overflow-wrap: anywhere;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.service-short {
  max-width: 430px;
  margin: 0;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}

.service-description {
  max-width: 530px;
  margin: 35px 0 0;
  color: #637078;
  font-size: 14px;
  line-height: 1.7;
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  margin-top: 30px;
  padding: clamp(32px, 5vw, 66px);
  color: var(--white);
  background: var(--ink);
}

.conversion-panel > div {
  max-width: 850px;
}

.conversion-panel p {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.conversion-panel h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.conversion-panel > div > span {
  display: block;
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.conversion-panel .button {
  white-space: nowrap;
}

.transformation {
  padding-bottom: clamp(90px, 12vw, 180px);
}

.transform-card {
  position: relative;
  display: grid;
  min-height: 570px;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  background: var(--stone);
}

.before-side,
.after-side {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 76px);
  background-position: center;
  background-size: cover;
}

.before-side {
  color: var(--white);
  background-color: #637068;
}

.after-side {
  color: var(--white);
  background-color: var(--orange);
}

.before-side.has-photo::before,
.after-side.has-photo::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(15, 27, 34, 0.08), rgba(15, 27, 34, 0.74));
}

.before-side > *,
.after-side > * {
  position: relative;
  z-index: 2;
}

.transform-label {
  margin: 0 0 auto;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.transformation h2 {
  z-index: 2;
  max-width: 540px;
  font-size: clamp(45px, 5.5vw, 88px);
}

.transform-sweep {
  position: absolute;
  z-index: 4;
  top: -15%;
  left: 50%;
  width: clamp(28px, 3vw, 52px);
  height: 132%;
  border: 8px solid var(--white);
  border-top: 0;
  border-bottom: 0;
  background: var(--aqua);
  transform: translateX(-50%) rotate(7deg);
}

.dirt-marks i {
  position: absolute;
  display: block;
  border-radius: 58% 42% 63% 37%;
  background: #414b45;
  opacity: 0.7;
}

.dirt-marks i:nth-child(1) { top: 24%; left: 18%; width: 80px; height: 58px; }
.dirt-marks i:nth-child(2) { top: 48%; right: 19%; width: 42px; height: 31px; }
.dirt-marks i:nth-child(3) { bottom: 18%; left: 48%; width: 55px; height: 42px; }

.spark {
  position: absolute;
  color: var(--white);
  line-height: 1;
}

.spark-one { top: 21%; right: 22%; font-size: 58px; }
.spark-two { right: 10%; bottom: 18%; font-size: 30px; }

.result-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 0;
}

.result-cta strong {
  font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: -0.035em;
}

.process {
  padding-top: clamp(90px, 11vw, 160px);
  padding-bottom: clamp(90px, 11vw, 160px);
  color: var(--white);
  background: var(--ink);
}

.section-heading-light > p { color: rgba(255, 255, 255, 0.58); }
.eyebrow-light > span { background: var(--orange); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid article {
  min-height: 320px;
  padding: clamp(26px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--aqua);
  border-radius: 50%;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 850;
}

.process-grid h3 {
  margin: 80px 0 18px;
  font-size: clamp(24px, 2.5vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.process-grid p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.partnership {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.76fr);
  gap: 10vw;
  align-items: center;
  padding-top: clamp(90px, 12vw, 180px);
  padding-bottom: clamp(90px, 12vw, 180px);
}

.partnership-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 36px;
}

.dark-link { margin-top: 34px; }

.partner-stack {
  display: grid;
  gap: 16px;
}

.partner-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 52px);
  background: var(--orange);
  transition: transform 200ms ease;
}

.partner-card:hover { transform: translateX(-8px); }
.partner-card-dark { margin-left: 10%; color: var(--white); background: var(--ink); }
.partner-card > span { font-size: 10px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.partner-card strong { overflow-wrap: anywhere; font-size: clamp(32px, 4vw, 58px); line-height: 0.94; letter-spacing: -0.055em; }
.partner-card p { margin: 0; font-size: 12px; font-weight: 750; }
.partner-logo { width: auto; max-width: min(100%, 330px); max-height: 110px; object-fit: contain; object-position: left center; }

.region {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10vw;
  align-items: center;
  padding-top: clamp(82px, 10vw, 140px);
  padding-bottom: clamp(82px, 10vw, 140px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

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

.region-list span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 9vw;
  padding-top: clamp(90px, 11vw, 160px);
  padding-bottom: clamp(90px, 11vw, 160px);
}

.faq-heading { align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: grid;
  cursor: pointer;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 28px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 11px; }
.faq-list summary b { color: var(--aqua); font-size: 22px; transition: transform 180ms ease; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list p { padding: 0 42px 28px 54px; }

.quote {
  color: var(--white);
  background: var(--orange);
}

.quote-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: start;
  padding-top: 90px;
  padding-bottom: 90px;
}

.quote h2 {
  font-size: clamp(60px, 8vw, 128px);
}

.quote h2 em {
  color: var(--ink);
  font-style: normal;
}

.quote-action > p {
  max-width: 540px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.quote-form {
  position: relative;
  scroll-margin-top: 110px;
  padding: clamp(28px, 4vw, 54px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 27, 34, 0.15);
}

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

.form-heading > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 9px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

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

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.form-field > span {
  font-size: 12px;
  font-weight: 800;
}

.form-field > span small {
  color: #758188;
  font-weight: 600;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 40, 50, 0.2);
  border-radius: 0;
  color: var(--ink);
  background: #fbfaf7;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--aqua);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22, 171, 196, 0.14);
}

.form-upload {
  padding: 18px;
  border: 1px dashed rgba(23, 40, 50, 0.28);
  background: var(--paper);
}

.form-upload input {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.form-upload > small {
  color: #69767c;
  font-size: 11px;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 22px;
  color: #5f6b71;
  font-size: 11px;
  line-height: 1.55;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.form-consent a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.form-submit p {
  max-width: 270px;
  margin: 0;
  color: #5f6b71;
  font-size: 11px;
  line-height: 1.5;
}

.form-submit p span {
  color: var(--aqua);
  font-weight: 900;
}

.form-notice {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-left: 4px solid currentColor;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.form-notice-success {
  color: #176b4c;
  background: #e8f5ef;
}

.form-notice-error {
  color: #9b321b;
  background: #fff0eb;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.direct-contact {
  display: grid;
  margin-top: 54px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.direct-contact a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 16px 0 0;
}

.direct-contact small { color: rgba(255, 255, 255, 0.7); }
.direct-contact strong { font-size: 16px; }
.direct-contact .vat-number {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 5vw;
  align-items: center;
  padding: 42px clamp(22px, 7vw, 112px);
  color: var(--white);
  background: #0f1b22;
}

.footer-brand .mini-mark { background: var(--orange); }
.footer-brand .custom-logo { max-width: 155px; height: 54px; }
.footer-brand .theme-brand-logo { width: 235px; height: 62px; }
.footer-brand-wrap > p { margin: 7px 0 0 62px; color: rgba(255, 255, 255, 0.58); font-size: 10px; }
.site-footer > p { margin: 0; color: rgba(255, 255, 255, 0.54); font-size: 10px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; font-size: 11px; font-weight: 700; }
.footer-links span { color: rgba(255, 255, 255, 0.5); }

.content-shell {
  width: 100%;
  min-height: 65vh;
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(90px, 10vw, 150px);
}

.content-header,
.content-list,
.entry-content,
.entry-hero {
  width: min(100%, 880px);
  margin-right: auto;
  margin-left: auto;
}

.content-header {
  margin-bottom: 54px;
}

.content-header h1,
.error-page h1 {
  font-size: clamp(48px, 7vw, 92px);
}

.content-card {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.045em;
}

.content-card p,
.entry-content,
.error-page > p:not(.eyebrow) {
  color: #4c5a61;
  font-size: 17px;
  line-height: 1.8;
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.entry-content h2,
.entry-content h3 { margin-top: 2em; color: var(--ink); line-height: 1.1; letter-spacing: -0.035em; }
.entry-content img { height: auto; }
.entry-hero { margin-bottom: 46px; }
.entry-hero img { display: block; width: 100%; }
.error-page > p:not(.eyebrow) { max-width: 680px; margin: 32px 0; }

.alignwide { width: min(1120px, 100%); max-width: none; margin-right: auto; margin-left: auto; }
.alignfull { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }

.nav-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.nav-links .page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  font-weight: 800;
}

.nav-links .current {
  color: var(--white);
  background: var(--ink);
}

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; padding-right: 0; }
  .hero-visual { min-height: 620px; margin: 0 clamp(-112px, -7vw, -22px); }
  .section-heading,
  .partnership,
  .region,
  .faq,
  .quote-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 34px; }
  .conversion-panel { grid-template-columns: 1fr; }
  .conversion-panel .button { width: max-content; }
  .partnership { gap: 60px; }
  .partner-stack { grid-template-columns: 1fr 1fr; }
  .partner-card-dark { margin: 0; }
  .faq { gap: 60px; }
  .quote-grid { gap: 60px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p { grid-row: 2; grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .mobile-nav { top: 128px; height: calc(100dvh - 128px); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 72px; }
  .site-header { min-height: 72px; padding: 0 18px; }
  .mobile-nav { top: 72px; height: calc(100dvh - 72px); }
  .admin-bar .mobile-nav { top: 118px; height: calc(100dvh - 118px); }
  .mini-name { display: none; }
  .mini-mark { width: 45px; height: 38px; }
  .custom-logo { max-width: 165px; height: 48px; }
  .theme-brand-logo { width: 165px; height: 48px; }
  .button-small { min-height: 42px; padding: 0 15px; }
  .header-quote { display: none; }
  .section-pad { padding-right: 20px; padding-left: 20px; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding: 72px 0 58px; }
  .hero h1 { font-size: clamp(52px, 16vw, 78px); }
  .hero-intro { margin-top: 28px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .trust-row { margin-top: 54px; }
  .trust-row span { font-size: 10px; }
  .hero-visual { min-height: 480px; margin: 0 -20px; padding: 45px 16px 26px; }
  .hero-visual::before { right: 0; width: 30%; height: 16%; }
  .surface-legend { grid-template-columns: 1fr 1fr; }
  .surface-legend span:nth-child(2) { border-right: 0; }
  .surface-legend span:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .statement-band { align-items: flex-start; flex-direction: column; }
  .service-list,
  .process-grid,
  .partner-stack { grid-template-columns: 1fr; }
  .service-card { min-height: 380px; }
  .service-card h3 { margin-top: 72px; }
  .conversion-panel { margin-top: 20px; padding: 30px 24px; }
  .conversion-panel .button { width: 100%; white-space: normal; text-align: center; }
  .transform-card { min-height: 610px; grid-template-columns: 1fr; }
  .before-side,
  .after-side { min-height: 305px; }
  .transform-sweep { top: 50%; left: -10%; width: 120%; height: 24px; border-width: 6px 0; transform: translateY(-50%) rotate(-4deg); }
  .transformation h2 { max-width: 310px; }
  .result-cta { align-items: flex-start; flex-direction: column; gap: 10px; }
  .process-grid article { min-height: 280px; }
  .partner-card { min-height: 230px; }
  .region-list { margin-top: 8px; }
  .faq-list summary { grid-template-columns: 32px 1fr auto; font-size: 15px; }
  .faq-list p { padding-left: 44px; }
  .quote-grid { min-height: auto; padding-top: 90px; padding-bottom: 90px; }
  .quote h2 { font-size: clamp(58px, 18vw, 86px); }
  .quote-form { scroll-margin-top: 90px; margin: 0 -2px; padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .form-submit { align-items: stretch; flex-direction: column; gap: 14px; }
  .form-submit .button { width: 100%; }
  .form-submit p { max-width: none; }
  .direct-contact { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; padding: 42px 20px; }
  .site-footer > p { grid-row: auto; grid-column: auto; }
  .footer-links { align-items: flex-start; }
  .footer-brand-wrap > p { margin-left: 57px; }
}

@media (hover: none) {
  .service-card.has-service-image {
    color: var(--white);
    background: var(--ink);
  }

  .service-card.has-service-image .service-background,
  .service-card.has-service-image::after {
    opacity: 1;
    transform: scale(1);
  }

  .service-card.has-service-image .service-topline p,
  .service-card.has-service-image .service-description {
    color: rgba(255, 255, 255, 0.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
