:root {
  --ink: #10131a;
  --ink-deep: #090b10;
  --ink-soft: #202530;
  --paper: #f5f6f2;
  --white: #ffffff;
  --mist: #e8ecea;
  --muted: #68717a;
  --blue: #008cb4;
  --blue-deep: #006988;
  --lime: #c9f20c;
  --lime-soft: #e4ff70;
  --line: rgba(16, 19, 26, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  --radius: 22px;
  --shell: 1180px;
  --gutter: clamp(20px, 4vw, 44px);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: var(--lime);
}

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

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

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(76px, 9vw, 132px);
}

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

.section-soft {
  background: #eaeeeb;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 11, 16, 0.94);
  border-color: var(--line-light);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
}

.brand-mark img {
  position: absolute;
  top: -2px;
  left: -9px;
  width: 70px;
  max-width: none;
  height: 70px;
}

.brand-name {
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 17px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
}

.header-nav a {
  opacity: 0.74;
  transition: opacity 180ms ease, color 180ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--lime);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
}

.header-phone {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  line-height: 1.15;
}

.header-phone span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--white);
  font-size: 12px;
}

.header-phone:hover strong,
.header-phone:focus-visible strong {
  color: var(--lime);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  gap: 16px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 5px;
  box-shadow: 6px 6px 0 rgba(0, 140, 180, 0.65);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--lime-soft);
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(0, 140, 180, 0.75);
}

.button-small {
  min-height: 45px;
  padding: 10px 17px;
  box-shadow: 4px 4px 0 rgba(0, 140, 180, 0.7);
  font-size: 12px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.32);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: var(--white);
  box-shadow: 9px 9px 0 rgba(16, 19, 26, 0.25);
}

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

.text-link-light {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 150px 0 82px;
  overflow: hidden;
  overflow: clip;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(9, 11, 16, 0.99) 0%, rgba(16, 19, 26, 0.96) 52%, rgba(8, 24, 31, 0.76) 100%),
    url("assets/commercial-spray-preparation.jpeg") center / cover no-repeat;
}

.hero-grid-lines,
.final-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--lime) 0 31%, var(--blue) 31% 73%, #283345 73%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow-lime {
  top: -190px;
  right: 15%;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(201, 242, 12, 0.18), transparent 67%);
}

.hero-glow-blue {
  right: -160px;
  bottom: -220px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 140, 180, 0.22), transparent 64%);
}

.cladding-lines {
  position: absolute;
  top: -50px;
  right: -4vw;
  width: min(48vw, 690px);
  height: 620px;
  opacity: 0.2;
  transform: skewX(-17deg) rotate(5deg);
  pointer-events: none;
}

.cladding-lines span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 11%;
  border-inline: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(90deg, transparent, rgba(0, 140, 180, 0.28), transparent);
}

.cladding-lines span:nth-child(2) { left: 18%; }
.cladding-lines span:nth-child(3) { left: 36%; }
.cladding-lines span:nth-child(4) { left: 54%; }
.cladding-lines span:nth-child(5) { left: 72%; }

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 7vw, 92px);
}

.hero-content {
  padding-bottom: 28px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(48px, 5.3vw, 72px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.97;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.hero h1 em {
  font-size: 0.78em;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero h1 em,
.section-heading h2 em,
.process-heading h2 em,
.faq-intro h2 em {
  display: block;
  color: var(--lime);
  font-family: inherit;
  font-style: normal;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.hero-checks,
.tick-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 30px;
  padding: 0;
  gap: 10px 18px;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.hero-checks span,
.tick-list span {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-review {
  display: flex;
  align-items: center;
  margin-top: 35px;
  gap: 15px;
}

.hero-review p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.4;
}

.hero-review strong {
  color: var(--white);
}

.review-stars {
  color: var(--lime);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.enquiry-card {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  scroll-margin-top: 102px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.enquiry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  border-radius: var(--radius);
  transform: translate(10px, 10px);
}

.enquiry-card-top {
  display: flex;
  align-items: center;
  margin: calc(clamp(28px, 3vw, 40px) * -1) calc(clamp(28px, 3vw, 40px) * -1) 28px;
  padding: 11px clamp(28px, 3vw, 40px);
  gap: 8px;
  background: var(--mist);
  border-radius: var(--radius) var(--radius) 0 0;
}

.enquiry-card-top p {
  margin: 0;
  color: #4b555d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #48b562;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(72, 181, 98, 0.14);
}

.enquiry-card h2 {
  margin-bottom: 14px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-transform: uppercase;
}

.enquiry-card > p:not(.eyebrow):not(.form-note) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.ghl-form-shell {
  width: 100%;
  height: 610px;
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
}

.ghl-form-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 8px;
}

.form-note {
  margin: 14px 0 0;
  color: #777e84;
  font-size: 9px;
  text-align: center;
}

.proof-strip {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.proof-item {
  display: flex;
  align-items: center;
  min-height: 128px;
  padding: 26px clamp(18px, 2.4vw, 36px);
  gap: 14px;
  border-left: 1px solid var(--line);
}

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

.proof-item strong {
  color: var(--blue-deep);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 8vw, 112px);
}

.section-heading h2,
.process-heading h2,
.faq-intro h2,
.saving-copy h2,
.finish-copy h2,
.case-intro h2,
.guarantee-copy h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-transform: uppercase;
}

.opening .section-heading h2 em,
.services .section-heading h2 em,
.process-heading h2 em,
.faq-intro h2 em {
  color: var(--blue);
}

.lead-copy {
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.55;
}

.opening-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(54px, 7vw, 90px);
  gap: 14px;
}

.outcome-card {
  position: relative;
  min-height: 260px;
  padding: 32px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.outcome-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border: 34px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.outcome-card-blue {
  background: var(--blue-deep);
}

.outcome-card-lime {
  color: var(--ink);
  background: var(--lime);
}

.outcome-number {
  display: block;
  margin-bottom: 56px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.outcome-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.outcome-card p {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.outcome-card-lime p {
  color: rgba(16, 19, 26, 0.7);
}

.finish-demo {
  position: relative;
  overflow: hidden;
}

.finish-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.13) 79px 80px);
  pointer-events: none;
}

.finish-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(480px, 1.24fr);
  align-items: center;
  gap: clamp(52px, 7vw, 94px);
}

.finish-copy h2 {
  margin-bottom: 22px;
}

.finish-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.tick-list {
  display: grid;
  margin: 30px 0 0;
  gap: 14px;
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.facade-demo {
  overflow: hidden;
  background: #151a23;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.facade-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px 13px 20px;
  border-bottom: 1px solid var(--line-light);
}

.facade-toolbar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.facade-tabs {
  display: flex;
  gap: 4px;
}

.facade-tab {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 3px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.facade-tab.is-active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.facade-scene {
  position: relative;
  height: 410px;
  overflow: hidden;
  background: #b7bdbe;
  transition: background 600ms ease;
}

.facade-sky {
  position: absolute;
  inset: 0 0 33%;
  background: linear-gradient(#cfd3d2, #aeb6b6);
  transition: background 600ms ease;
}

.facade-ground {
  position: absolute;
  inset: 67% 0 0;
  background:
    linear-gradient(165deg, transparent 0 37%, rgba(0, 0, 0, 0.13) 37% 39%, transparent 39%),
    #6f7473;
}

.facade-building {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 26%;
  left: 8%;
  height: 52%;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(92, 75, 59, 0.26) 49% 51%, transparent 52%),
    repeating-linear-gradient(90deg, #717b7d 0 49px, #626b6d 49px 52px);
  border-top: 10px solid #525b5d;
  box-shadow: 18px 22px 34px rgba(0, 0, 0, 0.27);
  transition: background 700ms ease, border-color 700ms ease, box-shadow 700ms ease;
}

.facade-building::before,
.facade-building::after {
  content: "";
  position: absolute;
  z-index: 4;
  border-radius: 50%;
  background: rgba(111, 70, 39, 0.52);
  filter: blur(10px);
  transition: opacity 500ms ease;
}

.facade-building::before {
  top: 18%;
  left: 13%;
  width: 90px;
  height: 45px;
}

.facade-building::after {
  right: 18%;
  bottom: 10%;
  width: 130px;
  height: 62px;
}

.facade-sign {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 32px;
  padding: 9px 15px;
  color: #e3e5df;
  background: #3d4445;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: color 500ms ease, background 500ms ease;
}

.facade-door {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 0;
  width: 52px;
  height: 87px;
  background: #343a3c;
}

.facade-shutter {
  position: absolute;
  z-index: 3;
  right: 95px;
  bottom: 0;
  width: 132px;
  height: 115px;
  background: repeating-linear-gradient(#50595a 0 8px, #404849 8px 10px);
  border: 5px solid #3b4243;
  transition: background 600ms ease, border-color 600ms ease;
}

.facade-label {
  position: absolute;
  z-index: 6;
  bottom: 18px;
  left: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(9, 11, 16, 0.82);
  border-left: 3px solid #9a6339;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 400ms ease, transform 400ms ease;
}

.facade-label-after {
  border-left-color: var(--lime);
  opacity: 0;
  transform: translateY(10px);
}

.facade-demo.is-after .facade-scene {
  background: #d1d6d4;
}

.facade-demo.is-after .facade-sky {
  background: linear-gradient(#e2eeee, #bdccce);
}

.facade-demo.is-after .facade-building {
  background: repeating-linear-gradient(90deg, #008caf 0 49px, #087696 49px 52px);
  border-color: #055a75;
  box-shadow: 18px 22px 38px rgba(0, 72, 96, 0.25);
}

.facade-demo.is-after .facade-building::before,
.facade-demo.is-after .facade-building::after {
  opacity: 0;
}

.facade-demo.is-after .facade-sign {
  color: var(--ink);
  background: var(--lime);
}

.facade-demo.is-after .facade-shutter {
  background: repeating-linear-gradient(#e5e8e5 0 8px, #c9cecb 8px 10px);
  border-color: #a6aeaa;
}

.facade-demo.is-after .facade-label-before {
  opacity: 0;
  transform: translateY(10px);
}

.facade-demo.is-after .facade-label-after {
  opacity: 1;
  transform: translateY(0);
}

.demo-note {
  margin: 0;
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid var(--line-light);
  font-size: 8px;
  text-align: right;
}

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

.saving::after {
  content: "";
  position: absolute;
  top: -230px;
  left: -280px;
  width: 560px;
  height: 560px;
  border: 92px solid rgba(201, 242, 12, 0.18);
  border-radius: 50%;
}

.saving-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: clamp(58px, 9vw, 130px);
}

.saving-number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.saving-number span,
.saving-number em {
  position: relative;
  z-index: 1;
  padding: 4px 12px;
  color: var(--white);
  background: var(--blue-deep);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.saving-number strong {
  position: relative;
  z-index: 1;
  margin-block: -2px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(100px, 14vw, 190px);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.86;
}

.saving-number em {
  align-self: flex-end;
  color: var(--ink);
  background: var(--lime);
}

.saving-copy h2 {
  max-width: 760px;
  margin-bottom: 21px;
}

.saving-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted);
}

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

.saving-points > div {
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.saving-points strong,
.saving-points span {
  display: block;
}

.saving-points strong {
  margin-bottom: 6px;
  font-size: 13px;
}

.saving-points span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.58fr);
  align-items: end;
  margin-bottom: 52px;
  column-gap: 80px;
}

.section-heading-wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading-wide > p:last-child {
  margin-bottom: 5px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 272px;
  padding: 27px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 19, 26, 0.08);
  border-radius: 7px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  z-index: 2;
  box-shadow: 0 22px 45px rgba(16, 19, 26, 0.1);
  transform: translateY(-5px);
}

.service-card-featured {
  color: var(--white);
  background: var(--blue-deep);
}

.service-card-callout {
  color: var(--ink);
  background: var(--lime);
}

.service-card-callout .eyebrow {
  color: rgba(16, 19, 26, 0.62);
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue-deep);
  background: rgba(0, 140, 180, 0.1);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.service-card-featured .service-icon {
  color: var(--ink);
  background: var(--lime);
}

.service-card h3 {
  margin-bottom: 10px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.service-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.6fr);
  align-items: end;
  margin-bottom: 48px;
  gap: clamp(46px, 8vw, 110px);
}

.project-heading h2 {
  margin-bottom: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-transform: uppercase;
}

.project-heading h2 em {
  display: block;
  color: var(--lime);
  font-family: inherit;
  font-style: normal;
}

.project-heading > div:last-child > p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  grid-auto-rows: 320px;
  gap: 12px;
}

.project-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
}

.project-card-featured,
.project-card-wide {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.project-card-featured img {
  object-position: center 44%;
}

.project-card:last-child img {
  object-position: center 57%;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 11, 16, 0.92), transparent 56%);
  pointer-events: none;
}

.project-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.project-card figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-card figcaption span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.project-card figcaption strong {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-study {
  position: relative;
  overflow: hidden;
  background: var(--lime);
}

.case-study::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: repeating-linear-gradient(90deg, transparent 0 89px, var(--ink) 89px 90px);
}

.case-orbit {
  position: absolute;
  top: -250px;
  right: -150px;
  width: 660px;
  height: 660px;
  border: 105px solid rgba(0, 105, 136, 0.19);
  border-radius: 50%;
}

.case-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.case-intro h2 {
  margin-bottom: 24px;
}

.case-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 31px;
  color: rgba(16, 19, 26, 0.72);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(16, 19, 26, 0.25);
  backdrop-filter: blur(8px);
}

.case-stat {
  min-height: 154px;
  padding: 28px;
  border-right: 1px solid rgba(16, 19, 26, 0.2);
  border-bottom: 1px solid rgba(16, 19, 26, 0.2);
}

.case-stat:nth-child(even) {
  border-right: 0;
}

.case-stat:nth-child(n + 3) {
  border-bottom: 0;
}

.case-stat strong,
.case-stat span {
  display: block;
}

.case-stat strong {
  margin-bottom: 11px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1;
}

.case-stat span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-proof {
  padding-block: 34px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.brand-proof-inner {
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand-proof-inner > p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}

.brand-list span {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 13px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.45fr);
  align-items: end;
  margin-bottom: 58px;
  gap: 70px;
}

.process-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

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

.process-step {
  position: relative;
  min-height: 315px;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.process-step::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(0, 140, 180, 0.08);
  border-radius: 50%;
}

.process-number {
  display: block;
  margin-bottom: 97px;
  color: var(--blue-deep);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 20px;
}

.process-step h3 {
  margin-bottom: 11px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

.process-step p {
  max-width: 285px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.guarantee {
  position: relative;
  overflow: hidden;
}

.guarantee::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to left, black, transparent 72%);
}

.guarantee-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(54px, 9vw, 128px);
}

.guarantee-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
}

.guarantee-visual > img {
  position: relative;
  z-index: 2;
  width: 270px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.35));
}

.guarantee-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.guarantee-ring-one {
  width: 380px;
  height: 380px;
}

.guarantee-ring-two {
  width: 275px;
  height: 275px;
  border-color: rgba(201, 242, 12, 0.32);
}

.guarantee-badge {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 13%;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  color: var(--ink);
  background: var(--lime);
  border: 8px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--lime);
  text-align: center;
}

.guarantee-badge strong,
.guarantee-badge span {
  display: block;
}

.guarantee-badge strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 41px;
  line-height: 0.8;
}

.guarantee-badge span {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guarantee-copy h2 {
  margin-bottom: 24px;
}

.guarantee-copy > p:not(.eyebrow):not(.small-print) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.67);
}

.guarantee-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 650px;
  margin-top: 32px;
  border: 1px solid var(--line-light);
}

.guarantee-options > div {
  padding: 25px;
}

.guarantee-options > div + div {
  border-left: 1px solid var(--line-light);
}

.guarantee-options strong,
.guarantee-options span {
  display: block;
}

.guarantee-options strong {
  color: var(--lime);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
}

.guarantee-options span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.small-print {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(430px, 1.3fr);
  align-items: start;
  gap: clamp(55px, 9vw, 126px);
}

.faq-intro {
  position: sticky;
  top: 124px;
}

.faq-intro h2 {
  margin-bottom: 23px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 20px 0;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
}

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

.faq-list summary i {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transition: transform 220ms ease;
}

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

.faq-list details[open] summary i {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-list details > div {
  overflow: hidden;
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 54px 25px 0;
  color: var(--muted);
  font-size: 13px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
}

.final-cta::before {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -260px;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(0, 140, 180, 0.22);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.final-cta h2 {
  max-width: 800px;
}

.final-action {
  padding-left: 30px;
  border-left: 2px solid var(--lime);
}

.final-action p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.final-phone {
  display: block;
  width: fit-content;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.final-phone strong {
  color: var(--white);
}

.final-phone:hover strong,
.final-phone:focus-visible strong {
  color: var(--lime);
}

.site-footer {
  padding-block: 40px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 11px;
}

.footer-grid > div:first-child > p {
  margin: 0;
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 23px;
  font-size: 10px;
  font-weight: 700;
}

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

.footer-legal {
  grid-column: 1 / -1;
  margin: 7px 0 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
}

.mobile-actions {
  display: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1040px) {
  .header-nav {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(45px, 5.8vw, 64px);
  }

  .proof-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
  }

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

  .finish-copy {
    max-width: 700px;
  }

  .facade-demo {
    max-width: 780px;
  }

  .saving-grid,
  .case-grid,
  .guarantee-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark img {
    top: -2px;
    left: -8px;
    width: 60px;
    height: 60px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-layout,
  .opening-grid,
  .saving-grid,
  .case-grid,
  .guarantee-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 720px;
  }

  .enquiry-card {
    max-width: 600px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .outcome-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:last-child {
    grid-column: 1 / -1;
  }

  .section-heading-wide,
  .process-heading,
  .project-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading-wide > p:last-child,
  .process-heading > p {
    max-width: 600px;
  }

  .project-heading > div:last-child {
    max-width: 610px;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .project-card-featured,
  .project-card-wide {
    grid-column: auto;
  }

  .saving-number {
    max-width: 420px;
  }

  .saving-number strong {
    font-size: 150px;
  }

  .case-stats {
    max-width: 700px;
  }

  .brand-proof-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-list {
    justify-content: flex-start;
  }

  .guarantee-visual {
    max-width: 520px;
  }

  .faq-intro {
    position: static;
  }

  .final-action {
    max-width: 500px;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 19px;
  }

  body {
    padding-bottom: 76px;
  }

  .header-actions {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }

  .hero {
    min-height: 0;
    padding: 112px 0 67px;
  }

  .hero h1 {
    font-size: clamp(37px, 10.6vw, 46px);
  }

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

  .hero-checks {
    display: grid;
  }

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-review {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .enquiry-card {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .enquiry-card::after {
    transform: translate(6px, 6px);
  }

  .enquiry-card-top {
    margin: -25px -20px 24px;
    padding-inline: 20px;
    border-radius: 15px 15px 0 0;
  }

  .ghl-form-shell {
    height: 640px;
  }

  .proof-grid {
    width: 100%;
  }

  .proof-item {
    min-height: 110px;
    padding: 20px;
  }

  .proof-item strong {
    font-size: 29px;
  }

  .section-pad {
    padding-block: 72px;
  }

  .section-heading h2,
  .process-heading h2,
  .project-heading h2,
  .faq-intro h2,
  .saving-copy h2,
  .finish-copy h2,
  .case-intro h2,
  .guarantee-copy h2,
  .final-cta h2 {
    font-size: clamp(35px, 10vw, 49px);
  }

  .outcome-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step:last-child {
    grid-column: auto;
  }

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

  .outcome-card {
    min-height: 225px;
  }

  .facade-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .facade-scene {
    height: 310px;
  }

  .facade-building {
    right: 4%;
    left: 4%;
  }

  .facade-sign {
    top: 15px;
    left: 15px;
    padding: 7px 10px;
    font-size: 8px;
  }

  .facade-door {
    right: 13px;
  }

  .facade-shutter {
    right: 76px;
    width: 106px;
  }

  .saving-number {
    max-width: 330px;
  }

  .saving-number strong {
    font-size: 116px;
  }

  .saving-points,
  .case-stats,
  .guarantee-options {
    grid-template-columns: 1fr;
  }

  .case-stat,
  .case-stat:nth-child(even),
  .case-stat:nth-child(n + 3) {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 19, 26, 0.2);
  }

  .case-stat:last-child {
    border-bottom: 0;
  }

  .case-stat strong {
    font-size: 48px;
  }

  .brand-list {
    gap: 13px 22px;
  }

  .process-step {
    min-height: 265px;
  }

  .process-number {
    margin-bottom: 60px;
  }

  .guarantee-visual {
    min-height: 350px;
  }

  .guarantee-visual > img {
    width: 225px;
  }

  .guarantee-ring-one {
    width: 310px;
    height: 310px;
  }

  .guarantee-ring-two {
    width: 230px;
    height: 230px;
  }

  .guarantee-badge {
    right: 0;
    width: 102px;
    height: 102px;
  }

  .guarantee-options > div + div {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .faq-list summary {
    min-height: 75px;
    font-size: 13px;
  }

  .final-action {
    padding: 23px 0 0;
    border-top: 2px solid var(--lime);
    border-left: 0;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-actions {
    position: fixed;
    z-index: 99;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 7px;
  }

  .mobile-call,
  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 9px 13px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
  }

  .mobile-call {
    flex-direction: column;
    color: var(--white);
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.28);
  }

  .mobile-call strong {
    font-size: 10px;
  }

  .mobile-cta {
    justify-content: space-between;
    color: var(--ink);
    background: var(--lime);
    border: 1px solid rgba(16, 19, 26, 0.35);
    box-shadow: 5px 5px 0 rgba(0, 140, 180, 0.8);
    font-size: 11px;
  }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
