:root {
  --navy-950: #021226;
  --navy-900: #041d3a;
  --navy-850: #072747;
  --navy-800: #0a3158;
  --navy-700: #16476f;
  --orange-600: #f56800;
  --orange-500: #ff7900;
  --orange-400: #ff9638;
  --orange-100: #fff0e2;
  --ink: #10263d;
  --text: #526b82;
  --muted: #7d91a3;
  --line: #dfe7ee;
  --surface: #ffffff;
  --surface-soft: #f4f7fa;
  --surface-blue: #eef4f8;
  --success: #25d366;
  --shadow-xs: 0 4px 14px rgba(3, 25, 49, .07);
  --shadow-sm: 0 12px 30px rgba(3, 25, 49, .10);
  --shadow-md: 0 24px 58px rgba(3, 25, 49, .14);
  --shadow-lg: 0 34px 90px rgba(1, 16, 34, .24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1220px;
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
p, h1, h2, h3, h4, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3 { color: var(--navy-900); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 5vw, 5.35rem); margin-bottom: 1.35rem; font-weight: 800; }
h2 { font-size: clamp(2.1rem, 3.5vw, 3.65rem); margin-bottom: 1.15rem; font-weight: 800; }
h3 { font-size: 1.24rem; margin-bottom: .75rem; font-weight: 800; }
p { color: var(--text); }

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

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.hidden, .svg-sprite { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 12px 16px; border-radius: 9px; background: #fff; color: var(--navy-900); box-shadow: var(--shadow-sm); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--orange-600); font: 700 .77rem/1 "Roboto Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 2px; background: currentColor; }
.eyebrow--light { color: #ffab65; }
.lead { max-width: 690px; font-size: clamp(1.03rem, 1.4vw, 1.18rem); }
.section-heading { margin-bottom: 44px; }
.section-heading h2 { max-width: 820px; }
.section-heading > p { max-width: 650px; font-size: 1.05rem; }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.section-heading--split > div { flex: 1; }
.section-heading--split > p { max-width: 430px; margin-bottom: 8px; }
.section-heading--center { max-width: 820px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { margin-inline: auto; }

.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 10px; padding: 12px 20px; font-weight: 800; font-size: .94rem; line-height: 1.2; transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease; }
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(255,121,0,.35); outline-offset: 3px; }
.btn--primary { color: white; background: linear-gradient(135deg, var(--orange-500), #f45b00); box-shadow: 0 12px 26px rgba(244, 91, 0, .22); }
.btn--primary:hover { box-shadow: 0 16px 34px rgba(244, 91, 0, .32); }
.btn--dark { color: white; background: var(--navy-900); box-shadow: 0 12px 28px rgba(4, 29, 58, .18); }
.btn--dark:hover { background: var(--navy-800); }
.btn--outline-light { color: white; border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.btn--outline-light:hover { background: white; color: var(--navy-900); border-color: white; }
.btn--large { min-height: 58px; padding: 15px 24px; border-radius: 12px; font-size: .98rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-900); font-weight: 800; }
.text-link svg { color: var(--orange-500); transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

/* Header */
.site-header { position: relative; z-index: 1000; }
.topbar { background: var(--navy-950); color: white; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; color: #c8d7e6; font-size: .78rem; }
.topbar__message { display: flex; align-items: center; gap: 9px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 5px rgba(255,121,0,.11); }
.topbar__links { display: flex; align-items: center; gap: 24px; }
.topbar__links a { display: inline-flex; align-items: center; gap: 7px; color: #e8f0f7; font-size: .77rem; font-weight: 700; }
.topbar__links svg { color: var(--orange-400); }
.navbar { height: var(--header-height); background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(12, 48, 83, .10); box-shadow: 0 5px 24px rgba(4,29,58,.05); }
.navbar.is-sticky { position: fixed; top: 0; left: 0; right: 0; animation: headerDrop .28s ease both; }
@keyframes headerDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.navbar__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { display: block; width: auto; height: 58px; max-width: 100%; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu > a:not(.btn) { position: relative; color: #29455f; font-size: .88rem; font-weight: 800; }
.nav-menu > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange-500); transition: right .2s ease; }
.nav-menu > a:not(.btn):hover { color: var(--navy-900); }
.nav-menu > a:not(.btn):hover::after { right: 0; }
.btn--nav { min-height: 44px; padding: 10px 17px; color: white; background: var(--navy-900); }
.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--navy-900); }
.nav-toggle svg { width: 25px; height: 25px; }
.nav-toggle .close-icon { display: none; }
.nav-toggle[aria-expanded="true"] .menu-icon { display: none; }
.nav-toggle[aria-expanded="true"] .close-icon { display: block; }

/* Hero */
.hero { position: relative; min-height: 760px; overflow: hidden; color: white; background:
  radial-gradient(circle at 85% 18%, rgba(255,121,0,.16), transparent 31%),
  linear-gradient(135deg, #021226 0%, #06294e 58%, #041d3a 100%); }
.hero__grid-overlay { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black 0%, transparent 90%); }
.hero__inner { position: relative; z-index: 1; min-height: 720px; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(470px, .97fr); align-items: center; gap: 66px; padding: 76px 0 100px; }
.hero__content h1 { color: white; max-width: 760px; }
.hero__content h1 em { display: block; color: var(--orange-400); font-style: normal; }
.hero__lead { max-width: 720px; margin-bottom: 30px; color: #c9d8e7; font-size: clamp(1.05rem, 1.5vw, 1.22rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__proof { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.hero-proof-item { display: flex; align-items: center; gap: 12px; min-width: 0; padding: 13px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.055); }
.proof-icon { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; color: var(--orange-400); background: rgba(255,121,0,.12); }
.hero-proof-item strong, .hero-proof-item small { display: block; }
.hero-proof-item strong { color: white; font-size: .78rem; line-height: 1.25; }
.hero-proof-item small { margin-top: 3px; color: #9fb4c7; font-size: .66rem; line-height: 1.25; }
.hero__visual { position: relative; filter: drop-shadow(0 25px 55px rgba(0,0,0,.24)); }
.hero__visual > img { width: 100%; border-radius: 30px; }
.visual-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.78); border-radius: 11px; color: var(--navy-900); background: rgba(255,255,255,.93); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); font-size: .78rem; font-weight: 800; }
.visual-badge--top { top: -18px; right: 28px; }
.visual-badge--bottom { right: 24px; left: auto; bottom: 24px; max-width: min(260px, calc(100% - 32px)); }
.visual-badge--bottom svg { width: 26px; height: 26px; padding: 5px; border-radius: 50%; color: white; background: var(--orange-500); }
.visual-badge strong, .visual-badge small { display: block; }
.visual-badge small { color: var(--text); font-size: .68rem; font-weight: 600; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #20c56e; box-shadow: 0 0 0 5px rgba(32,197,110,.12); }
.hero__curve { position: absolute; z-index: 2; left: -2%; right: -2%; bottom: -1px; height: 74px; background: white; clip-path: ellipse(58% 78% at 50% 100%); }

/* Near-top survey enquiry */
.top-enquiry-section { position: relative; z-index: 4; scroll-margin-top: calc(var(--header-height) + 18px); padding: 74px 0; overflow: hidden; background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%); border-bottom: 1px solid var(--line); }
.top-enquiry-section::before { content: ""; position: absolute; top: -180px; left: -160px; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(255,121,0,.11), rgba(255,121,0,0) 68%); pointer-events: none; }
.top-enquiry__grid { position: relative; display: grid; grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr); align-items: center; gap: 64px; }
.top-enquiry__content { max-width: 560px; }
.top-enquiry__content h2 { margin-bottom: 18px; }
.top-enquiry__content .lead { margin-bottom: 30px; }
.top-enquiry__trust { display: grid; gap: 12px; margin-bottom: 25px; }
.top-enquiry__trust article { display: flex; align-items: center; gap: 14px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.88); box-shadow: 0 10px 25px rgba(4,29,58,.05); }
.top-enquiry__trust article > span { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; color: white; background: linear-gradient(135deg,var(--orange-500),#f45b00); }
.top-enquiry__trust svg { width: 21px; height: 21px; }
.top-enquiry__trust strong, .top-enquiry__trust small { display: block; }
.top-enquiry__trust strong { color: var(--navy-900); font-size: .9rem; }
.top-enquiry__trust small { margin-top: 2px; color: var(--muted); font-size: .75rem; line-height: 1.4; }
.top-enquiry__callout { display: flex; align-items: center; gap: 12px; color: var(--navy-900); }
.top-enquiry__callout > svg { width: 38px; height: 38px; padding: 9px; flex: 0 0 auto; border-radius: 50%; color: var(--orange-600); background: rgba(255,121,0,.11); }
.top-enquiry__callout p, .top-enquiry__callout strong, .top-enquiry__callout small { display: block; margin: 0; }
.top-enquiry__callout strong { font-size: .84rem; }
.top-enquiry__callout small { margin-top: 2px; color: var(--muted); font-size: .72rem; }
.contact-form-panel--top { width: 100%; }
.contact-form-panel--top .contact-form-panel__header { padding: 24px 28px 21px; }
.contact-form-panel--top .messngr-form-wrapper, .contact-form-panel--top .messngr-form-wrapper iframe { min-height: 647px; height: 647px; }
.contact-return-card { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 42px; border: 1px solid var(--line); border-top: 5px solid var(--orange-500); border-radius: 22px; background: linear-gradient(145deg,#fff 0%,#f7f9fb 100%); box-shadow: var(--shadow-md); }
.contact-return-card__icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 18px; color: white; background: linear-gradient(135deg,var(--navy-900),var(--navy-700)); box-shadow: 0 15px 32px rgba(4,29,58,.18); }
.contact-return-card__icon svg { width: 31px; height: 31px; }
.contact-return-card h3 { margin-bottom: 13px; font-size: clamp(1.7rem,2.5vw,2.25rem); }
.contact-return-card p { margin-bottom: 24px; }
.contact-return-card .btn { align-self: flex-start; }
.contact-return-card > small { margin-top: 16px; color: var(--muted); font-size: .72rem; font-weight: 700; }

/* Trust strip */
.trust-strip { position: relative; z-index: 5; margin-top: -18px; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); }
.trust-strip article { display: flex; align-items: center; gap: 13px; min-height: 92px; padding: 20px; border-right: 1px solid var(--line); }
.trust-strip article:last-child { border-right: 0; }
.trust-strip article > span { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; color: var(--orange-600); background: var(--orange-100); }
.trust-strip strong, .trust-strip small { display: block; }
.trust-strip strong { color: var(--navy-900); font-size: .82rem; line-height: 1.3; }
.trust-strip small { color: var(--muted); font-size: .69rem; line-height: 1.35; }

/* Services */
.services { padding-top: 100px; background: white; }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.service-card { position: relative; min-height: 286px; padding: 28px 24px 23px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-xs); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange-500), transparent); opacity: 0; transition: opacity .2s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #c8d7e3; box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 14px; color: var(--orange-600); background: var(--orange-100); }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__number { position: absolute; top: 25px; right: 23px; color: #d5e0e8; font: 700 .73rem/1 "Roboto Mono", monospace; }
.service-card h3 { font-size: 1.12rem; }
.service-card p { margin-bottom: 22px; font-size: .88rem; }
.service-card a { position: absolute; left: 24px; right: 24px; bottom: 20px; display: flex; align-items: center; justify-content: space-between; color: var(--navy-900); font-size: .8rem; font-weight: 800; }
.service-card a svg { color: var(--orange-500); transition: transform .2s ease; }
.service-card a:hover svg { transform: translateX(5px); }
.service-card--featured { color: white; border-color: transparent; background: linear-gradient(145deg, var(--navy-900), #0b3d68); box-shadow: var(--shadow-md); }
.service-card--featured h3, .service-card--featured a { color: white; }
.service-card--featured p { color: #b9cde0; }
.service-card--featured .service-card__icon { color: white; background: linear-gradient(135deg, var(--orange-500), #f15b00); }
.service-card--featured .service-card__number { color: rgba(255,255,255,.32); }

/* Why us */
.why-us { overflow: hidden; color: white; background:
  radial-gradient(circle at 0 100%, rgba(255,121,0,.17), transparent 25%),
  linear-gradient(125deg, var(--navy-950), #0b3156); }
.why-us::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(125deg, transparent 0 48%, rgba(255,255,255,.08) 48% 49%, transparent 49% 100%); background-size: 72px 72px; }
.why-us__grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 88px; }
.why-us__content h2 { color: white; }
.why-us__content > p { color: #c4d4e3; }
.technical-panel { position: relative; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(1,15,31,.58); box-shadow: var(--shadow-lg); backdrop-filter: blur(9px); }
.technical-panel__header, .technical-panel__footer { display: flex; align-items: center; justify-content: space-between; color: #9db4c9; font: 600 .69rem/1.2 "Roboto Mono", monospace; letter-spacing: .07em; text-transform: uppercase; }
.technical-panel__header { padding: 2px 5px 15px; }
.technical-panel__header strong { color: var(--orange-400); }
.technical-panel__screen { position: relative; aspect-ratio: 16/10; overflow: hidden; border: 2px solid #627f99; border-radius: 15px; background:
  radial-gradient(circle at 50% 50%, #050709 0 16%, rgba(9,11,13,.86) 17% 28%, rgba(74,42,28,.95) 29% 43%, #1b1718 44% 56%, #090b10 57% 100%); }
.technical-panel__screen::after { content: ""; position: absolute; inset: 0; background: repeating-radial-gradient(circle at 50% 50%, transparent 0 23px, rgba(255,178,117,.07) 25px 27px); mix-blend-mode: screen; }
.scan-ring { position: absolute; z-index: 2; inset: 14% 20%; border: 1px solid rgba(255,136,55,.7); border-radius: 50%; }
.scan-ring span { position: absolute; inset: 15%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.scan-ring span:nth-child(2) { inset: 29%; }
.scan-ring span:nth-child(3) { inset: 43%; background: rgba(1,5,9,.62); }
.crosshair { position: absolute; z-index: 3; width: 26px; height: 26px; top: 35%; left: 38%; border: 2px solid var(--orange-500); border-radius: 50%; box-shadow: 0 0 0 8px rgba(255,121,0,.08); }
.crosshair::before, .crosshair::after { content: ""; position: absolute; background: var(--orange-500); }
.crosshair::before { left: 50%; top: -12px; width: 2px; height: 48px; }
.crosshair::after { top: 50%; left: -12px; height: 2px; width: 48px; }
.screen-readout { position: absolute; z-index: 5; padding: 8px 10px; border-radius: 8px; background: rgba(1,14,28,.84); }
.screen-readout small, .screen-readout strong { display: block; }
.screen-readout small { color: #94aec5; font: 600 .55rem/1.2 "Roboto Mono", monospace; text-transform: uppercase; }
.screen-readout strong { color: white; font: 700 .83rem/1.3 "Roboto Mono", monospace; }
.screen-readout--one { top: 15px; left: 15px; }
.screen-readout--two { right: 15px; bottom: 15px; }
.screen-readout--two strong { color: var(--orange-400); }
.technical-panel__footer { gap: 13px; padding: 16px 5px 2px; }
.technical-panel__footer span { display: inline-flex; align-items: center; gap: 7px; }
.technical-panel__footer i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-500); }
.experience-card { position: absolute; right: -26px; bottom: -30px; width: 230px; padding: 16px 18px; border-radius: 13px; color: var(--navy-900); background: white; box-shadow: var(--shadow-md); }
.experience-card strong, .experience-card span { display: block; }
.experience-card strong { font-size: .82rem; }
.experience-card span { color: var(--text); font-size: .7rem; line-height: 1.35; }
.check-list { display: grid; gap: 17px; margin: 28px 0 31px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.check-list li > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; }
.check-list strong, .check-list small { display: block; }
.check-list strong { font-size: .91rem; }
.check-list small { margin-top: 4px; font-size: .79rem; line-height: 1.45; }
.check-list--light li > span { color: white; background: rgba(255,121,0,.2); }
.check-list--light strong { color: white; }
.check-list--light small { color: #afc3d5; }
.why-us__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.why-us__cta > span { display: inline-flex; align-items: center; gap: 6px; color: #a9bfd2; font-size: .83rem; }
.why-us__cta > span svg { color: var(--orange-400); }
.why-us__cta a strong { color: white; }

/* Customers */
.customers { background: var(--surface-soft); }
.customer-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.customer-card { position: relative; min-height: 230px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-xs); }
.customer-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -44px; top: -44px; border-radius: 50%; background: var(--orange-100); transition: transform .25s ease; }
.customer-card:hover::after { transform: scale(1.35); }
.customer-card > span { position: relative; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 14px; color: white; background: var(--navy-900); box-shadow: 0 10px 22px rgba(4,29,58,.16); }
.customer-card h3 { position: relative; z-index: 1; }
.customer-card p { position: relative; z-index: 1; margin-bottom: 0; font-size: .88rem; }

/* Process */
.process { background: white; }
.process .container { position: relative; }
.process-line { position: absolute; left: calc(12.5% + 20px); right: calc(12.5% + 20px); top: 187px; height: 2px; background: linear-gradient(90deg, transparent, #c9d6e1 8%, #c9d6e1 92%, transparent); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-step { position: relative; padding: 20px 16px 0; text-align: center; }
.process-step__number { display: block; margin-bottom: 12px; color: var(--orange-500); font: 700 .7rem/1 "Roboto Mono", monospace; }
.process-step__icon { position: relative; z-index: 2; width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 24px; border: 8px solid white; border-radius: 50%; color: white; background: var(--navy-900); box-shadow: 0 0 0 1px var(--line), 0 14px 30px rgba(4,29,58,.16); }
.process-step__icon svg { width: 27px; height: 27px; }
.process-step h3 { font-size: 1.04rem; }
.process-step p { max-width: 260px; margin: 0 auto; font-size: .84rem; }

/* Reports */
.reports { overflow: hidden; background: linear-gradient(180deg, #eff4f8, #f8fafc); }
.reports::before { content: ""; position: absolute; width: 520px; height: 520px; right: -190px; top: -180px; border-radius: 50%; background: rgba(255,121,0,.08); }
.reports__grid { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 76px; }
.report-includes { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 18px; margin: 29px 0 30px; }
.report-includes > div { display: grid; grid-template-columns: 34px 1fr; gap: 11px; padding: 15px; border: 1px solid #dbe5ed; border-radius: 13px; background: rgba(255,255,255,.72); }
.report-includes > div > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; color: var(--orange-600); background: var(--orange-100); }
.report-includes p { margin: 0; }
.report-includes strong, .report-includes small { display: block; }
.report-includes strong { color: var(--navy-900); font-size: .78rem; }
.report-includes small { margin-top: 3px; color: var(--muted); font-size: .67rem; line-height: 1.35; }
.reports__visual img { filter: drop-shadow(0 25px 38px rgba(2,25,49,.15)); }

/* Homebuyer */
.sector-section { background: white; }
.sector-card { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 590px; overflow: hidden; border-radius: 30px; background: linear-gradient(135deg, var(--navy-950), #0b3b67); box-shadow: var(--shadow-lg); }
.sector-card__content { display: flex; flex-direction: column; justify-content: center; padding: 66px; }
.sector-card__content h2 { color: white; }
.sector-card__content p { color: #bfd0df; }
.sector-card__content ul { display: grid; gap: 12px; margin: 24px 0 31px; padding: 0; list-style: none; }
.sector-card__content li { display: flex; align-items: center; gap: 10px; color: white; font-size: .88rem; font-weight: 700; }
.sector-card__content li svg { flex: 0 0 auto; color: var(--orange-400); }
.sector-card__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.sector-card__actions > a:not(.btn) { color: white; font-size: .85rem; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.4); }
.sector-card__visual { position: relative; min-height: 590px; overflow: hidden; background: linear-gradient(155deg, #e8f0f6, #c8d8e5); }
.property-scene { position: absolute; inset: 0; overflow: hidden; }
.house { position: absolute; left: 16%; bottom: 35%; width: 66%; height: 41%; border-radius: 10px 10px 0 0; background: #f8f3e9; box-shadow: 0 18px 35px rgba(14,52,82,.18); }
.house::before { content: ""; position: absolute; inset: 20px; background: repeating-linear-gradient(90deg, transparent 0 38px, rgba(6,38,71,.04) 39px 40px); }
.roof { position: absolute; left: -8%; top: -45%; width: 116%; height: 54%; clip-path: polygon(50% 0, 100% 88%, 100% 100%, 0 100%, 0 88%); background: #203c58; }
.window { position: absolute; width: 18%; height: 24%; top: 30%; border: 6px solid #e4ded4; background: linear-gradient(135deg,#6ca1c1,#c9e0eb); }
.w1 { left: 16%; }.w2 { right: 16%; }
.door { position: absolute; left: 42%; bottom: 0; width: 16%; height: 38%; border: 6px solid #ddd7cd; background: #092d50; }
.ground { position: absolute; left: -10%; right: -10%; bottom: 0; height: 38%; background: linear-gradient(#8b9f85 0 8%, #665849 9% 13%, #243a42 14% 100%); transform: skewY(-4deg); transform-origin: left; }
.drain-route { position: absolute; left: 9%; right: 8%; bottom: 14%; height: 14%; }
.drain-route::before { content: ""; position: absolute; left: 4%; right: 3%; top: 47%; height: 13px; border-radius: 999px; background: linear-gradient(90deg, #ff7900, #ff9c4d); box-shadow: 0 0 0 6px rgba(255,121,0,.13); }
.drain-route i { position: absolute; z-index: 2; top: 30%; width: 34px; height: 34px; border: 8px solid white; border-radius: 50%; background: var(--orange-500); box-shadow: 0 8px 20px rgba(5,25,47,.25); }
.drain-route i:nth-child(1) { left: 3%; }.drain-route i:nth-child(2) { left: 48%; }.drain-route i:nth-child(3) { right: 2%; }
.survey-pin { position: absolute; z-index: 5; padding: 8px 12px 8px 26px; border-radius: 8px; color: var(--navy-900); background: white; box-shadow: var(--shadow-sm); font: 700 .68rem/1.2 "Roboto Mono", monospace; }
.survey-pin::before { content: ""; position: absolute; left: 10px; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: var(--orange-500); }
.pin-one { left: 11%; bottom: 30%; }.pin-two { right: 10%; bottom: 18%; }
.scene-card { position: absolute; top: 9%; right: 8%; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); }
.scene-card > svg { width: 30px; height: 30px; color: var(--orange-600); }
.scene-card strong, .scene-card small { display: block; }
.scene-card strong { color: var(--navy-900); font-size: .79rem; }
.scene-card small { color: var(--text); font-size: .68rem; }

/* Commercial */
.commercial { background: var(--surface-soft); }
.commercial__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.commercial-scene { position: relative; aspect-ratio: 1 / .82; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg,#d9e4ec,#91a9bb); box-shadow: var(--shadow-md); }
.commercial-scene::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 28%; background: linear-gradient(#617987,#31444f); }
.building { position: absolute; bottom: 25%; background: #e4e9ec; box-shadow: 0 13px 25px rgba(8,37,62,.15); }
.building--rear { left: 7%; width: 36%; height: 42%; background: #bdcbd4; }
.building--main { right: 7%; width: 61%; height: 61%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7%; padding: 11%; background: #e9edf0; }
.building--main::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 13%; background: var(--navy-900); }
.building--main span { background: linear-gradient(135deg,#4c7897,#9dc2d7); box-shadow: inset 0 0 0 4px #cbd7df; }
.inspection-console { position: absolute; z-index: 3; left: 8%; bottom: 11%; width: 34%; height: 38%; padding: 9px; border-radius: 13px; background: #081d34; box-shadow: var(--shadow-lg); transform: perspective(700px) rotateY(8deg); }
.console-screen { height: 66%; overflow: hidden; border: 2px solid #58728b; border-radius: 7px; background: radial-gradient(circle,#08090b 0 20%, #593621 21% 44%, #191619 45% 100%); }
.console-screen i { display: block; width: 40%; height: 40%; margin: 20% auto; border: 3px solid rgba(255,121,0,.8); border-radius: 50%; }
.console-controls { height: 34%; display: flex; align-items: center; gap: 7px; padding: 0 8px; }
.console-controls b { width: 11px; height: 11px; border-radius: 50%; background: #8fa3b6; }
.console-controls b:first-child { background: var(--orange-500); }
.commercial-badge { position: absolute; right: 6%; bottom: 6%; z-index: 4; padding: 13px 16px; border-radius: 10px; color: white; background: var(--navy-900); box-shadow: var(--shadow-sm); }
.commercial-badge strong, .commercial-badge span { display: block; }
.commercial-badge strong { font-size: .76rem; }
.commercial-badge span { margin-top: 3px; color: #a9bfd0; font-size: .63rem; }
.commercial-points { display: grid; gap: 13px; margin: 28px 0 30px; }
.commercial-points article { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.commercial-points article > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: var(--orange-600); background: var(--orange-100); font: 700 .7rem/1 "Roboto Mono", monospace; }
.commercial-points h3 { margin-bottom: 4px; font-size: .96rem; }
.commercial-points p { margin: 0; font-size: .8rem; }

/* Diagnostics */
.diagnostics { color: white; overflow: hidden; background:
  radial-gradient(circle at 80% 30%, rgba(255,121,0,.13), transparent 30%),
  linear-gradient(135deg, var(--navy-950), #082c51); }
.diagnostics__grid { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 78px; }
.diagnostics__content h2 { color: white; }
.diagnostics__content > p { color: #bed0df; }
.diagnostics-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 28px 0 30px; }
.diagnostics-list > div { display: grid; grid-template-columns: 36px 1fr; gap: 11px; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.05); }
.diagnostics-list > div > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: var(--orange-400); background: rgba(255,121,0,.13); }
.diagnostics-list p { margin: 0; }
.diagnostics-list strong, .diagnostics-list small { display: block; }
.diagnostics-list strong { color: white; font-size: .77rem; }
.diagnostics-list small { margin-top: 3px; color: #9fb6ca; font-size: .66rem; line-height: 1.4; }
.diagnostics__visual img { filter: drop-shadow(0 30px 45px rgba(0,0,0,.25)); }

/* FAQs */
.faqs { background: var(--surface-soft); }
.faqs__grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 72px; }
.faqs__intro { position: sticky; top: 130px; }
.faqs__intro p { margin-bottom: 26px; }
.accordion { display: grid; gap: 11px; }
.accordion-item { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: white; }
.accordion-item button { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; border: 0; color: var(--navy-900); background: transparent; text-align: left; font-weight: 800; }
.accordion-item button i { position: relative; width: 24px; height: 24px; flex: 0 0 auto; border-radius: 50%; background: var(--orange-100); }
.accordion-item button i::before, .accordion-item button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 2px; margin: -1px 0 0 -5px; background: var(--orange-600); transition: transform .2s ease; }
.accordion-item button i::after { transform: rotate(90deg); }
.accordion-item.is-open button i::after { transform: rotate(0); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-panel p { margin: 0; padding: 0 22px 22px; font-size: .88rem; }
.accordion-item.is-open { border-color: #c9d6e0; box-shadow: var(--shadow-xs); }
.accordion-item.is-open .accordion-panel { max-height: 260px; }

/* Conversion banner */
.conversion-banner { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg, #ef5f00, #ff8b16); }
.conversion-banner__pattern { position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(circle at 20px 20px, white 2px, transparent 2px); background-size: 40px 40px; }
.conversion-banner__inner { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: space-between; gap: 45px; padding-block: 55px; }
.conversion-banner h2 { max-width: 720px; margin-bottom: 10px; color: white; }
.conversion-banner p { max-width: 720px; margin-bottom: 0; color: #fff3e9; }
.conversion-banner__actions { display: flex; flex-direction: column; flex: 0 0 auto; gap: 11px; min-width: 265px; }
.conversion-banner .btn--primary { color: var(--navy-900); background: white; box-shadow: var(--shadow-sm); }
.conversion-banner .btn--outline-light { border-color: rgba(255,255,255,.7); }

/* Contact */
.contact { background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%); }
.contact__grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr); align-items: start; gap: 64px; }
.contact__content { min-width: 0; padding-top: 22px; }
.contact-methods { display: grid; gap: 11px; margin: 30px 0; }
.contact-methods > a, .contact-methods > div { display: grid; grid-template-columns: 46px 1fr 20px; align-items: center; gap: 13px; min-height: 74px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); }
.contact-methods > div { grid-template-columns: 46px 1fr; }
.contact-methods > a:hover { border-color: #c5d3df; background: white; box-shadow: var(--shadow-xs); }
.contact-methods > * > span:first-child { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 11px; color: var(--orange-600); background: var(--orange-100); }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: var(--muted); font-size: .68rem; }
.contact-methods strong { color: var(--navy-900); font-size: .83rem; }
.contact-methods .arrow { color: var(--muted); }
.contact-note { display: flex; gap: 12px; padding: 16px; border-left: 3px solid var(--orange-500); border-radius: 0 11px 11px 0; background: var(--orange-100); }
.contact-note > svg { flex: 0 0 auto; margin-top: 2px; color: var(--orange-600); }
.contact-note p { margin: 0; }
.contact-note strong, .contact-note small { display: block; }
.contact-note strong { color: var(--navy-900); font-size: .78rem; }
.contact-note small { margin-top: 3px; color: var(--text); font-size: .68rem; }
.contact-form-panel { min-width: 0; overflow: hidden; border: 1px solid #d7e1ea; border-top: 5px solid var(--orange-500); border-radius: 22px; background: white; box-shadow: 0 24px 60px rgba(4,29,58,.13); }
.contact-form-panel__header { padding: 28px 30px 24px; color: white; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.contact-form-panel__kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--orange-400); font: 700 .7rem/1.2 "Roboto Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.contact-form-panel__kicker::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.contact-form-panel__header h3 { margin-bottom: 8px; color: white; font-size: clamp(1.55rem, 2.5vw, 2rem); }
.contact-form-panel__header p { max-width: 560px; margin: 0; color: #c9d8e7; font-size: .88rem; }
.contact-form-panel__fields { display: flex; flex-wrap: wrap; gap: 7px; padding: 16px 22px; border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.contact-form-panel__fields span { padding: 6px 9px; border: 1px solid #d6e0e8; border-radius: 999px; color: #39546d; background: white; font-size: .64rem; font-weight: 800; }
.messngr-form-wrapper { min-height: 647px; height: 647px; overflow: hidden; background: white; }
.messngr-form-wrapper iframe { display: block; width: 100%; min-height: 647px; height: 647px; border: 0; background: white; }
.contact-form-panel__footer { display: flex; align-items: flex-start; gap: 10px; padding: 15px 22px 18px; border-top: 1px solid var(--line); color: var(--muted); background: #fbfcfd; }
.contact-form-panel__footer svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--orange-600); }
.contact-form-panel__footer p { margin: 0; font-size: .68rem; line-height: 1.5; }
.contact-form-panel__footer a { color: var(--navy-900); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

/* Footer */
.footer { color: white; background: var(--navy-950); }
.footer__main { display: grid; grid-template-columns: 1.35fr .75fr .65fr .9fr; gap: 58px; padding: 78px 0 63px; }
.footer__brand img { width: 285px; }
.footer__brand > p { max-width: 370px; margin: 22px 0; color: #9fb4c7; font-size: .85rem; }
.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__badges span { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: #c3d3e1; font-size: .67rem; }
.footer__badges svg { color: var(--orange-400); }
.footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__column h3 { margin-bottom: 10px; color: white; font-size: .95rem; }
.footer__column a, .footer__column p { margin: 0; color: #9eb3c5; font-size: .76rem; transition: color .2s ease; }
.footer__column a:hover { color: white; }
.footer__contact a, .footer__contact p { display: flex; align-items: center; gap: 9px; }
.footer__contact svg { flex: 0 0 auto; color: var(--orange-400); }
.footer__quote-link { margin-top: 8px !important; color: white !important; font-weight: 800; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.09); }
.footer__bottom .container { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer__bottom p { margin: 0; color: #7f98ad; font-size: .68rem; }

/* Floating actions */
.floating-whatsapp { position: fixed; z-index: 1100; right: 20px; bottom: 20px; min-height: 56px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 17px 10px 10px; border: 3px solid white; border-radius: 999px; color: white; background: var(--success); box-shadow: 0 15px 35px rgba(0,0,0,.22); font-size: .8rem; font-weight: 800; transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 32px; height: 32px; fill: currentColor; stroke: none; }
.mobile-cta { display: none; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal--delay { transition-delay: .12s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Utility pages */
.utility-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; background: var(--surface-soft); }
.utility-card { width: min(720px, 100%); padding: 40px; border-radius: 24px; background: white; box-shadow: var(--shadow-md); }
.utility-card img { width: 280px; margin-bottom: 30px; }
.utility-card h1 { font-size: clamp(2rem,5vw,3.4rem); }

/* Responsive */
@media (max-width: 1120px) {
  :root { --container: 1040px; }
  .brand img { height: 54px; }
  .nav-menu { gap: 20px; }
  .nav-menu > a:not(.btn) { font-size: .82rem; }
  .hero__inner { grid-template-columns: 1fr 440px; gap: 38px; }
  .hero__proof { grid-template-columns: 1fr; max-width: 360px; }
  .visual-badge--bottom { display: none; }
  .hero-proof-item { min-height: 58px; }
  .services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .why-us__grid, .reports__grid, .commercial__grid, .diagnostics__grid { gap: 52px; }
  .footer__main { grid-template-columns: 1.25fr .75fr .7fr; }
  .footer__contact { grid-column: 2 / 4; }
}

@media (max-width: 1040px) {
  .top-enquiry__grid { grid-template-columns: minmax(0,.75fr) minmax(480px,1.25fr); gap: 38px; }
}

@media (max-width: 920px) {
  :root { --header-height: 76px; }
  .topbar__inner { justify-content: center; }
  .navbar { height: var(--header-height); }
  .brand img { height: 50px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu { position: fixed; z-index: 1200; left: 16px; right: 16px; top: 86px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: var(--shadow-lg); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: .2s ease; }
  .navbar.is-sticky .nav-menu { top: 84px; }
  .nav-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .nav-menu > a:not(.btn) { padding: 14px 13px; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .nav-menu > a:not(.btn)::after { display: none; }
  .btn--nav { margin-top: 10px; }
  .hero { min-height: auto; }
  .hero__inner { min-height: auto; grid-template-columns: 1fr; gap: 48px; padding: 68px 0 115px; }
  .hero__content { max-width: 740px; }
  .hero__proof { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .hero__visual { width: min(670px, 100%); margin-inline: auto; }
  .trust-strip__grid { grid-template-columns: repeat(2,1fr); }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .why-us__grid, .reports__grid, .commercial__grid, .diagnostics__grid { grid-template-columns: 1fr; }
  .why-us__visual { width: min(670px, 100%); margin-inline: auto; }
  .customer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-line { display: none; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 32px 20px; }
  .report-includes { max-width: 760px; }
  .reports__visual, .diagnostics__visual { width: min(690px, 100%); margin-inline: auto; }
  .sector-card { grid-template-columns: 1fr; }
  .sector-card__visual { min-height: 500px; }
  .commercial__visual { width: min(690px,100%); margin-inline: auto; }
  .faqs__grid { grid-template-columns: 1fr; gap: 40px; }
  .faqs__intro { position: static; max-width: 650px; }
  .conversion-banner__inner { align-items: flex-start; flex-direction: column; }
  .conversion-banner__actions { width: 100%; flex-direction: row; }
  .conversion-banner__actions .btn { flex: 1; }
  .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .contact__content { width: min(720px, 100%); padding-top: 0; }
  .contact-form-panel { width: min(760px, 100%); margin-inline: auto; }
  .top-enquiry__grid { grid-template-columns: 1fr; gap: 42px; }
  .top-enquiry__content { max-width: 760px; }
  .top-enquiry__trust { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .top-enquiry__trust article { align-items: flex-start; }
  .contact-return-card { width: min(760px,100%); margin-inline: auto; }
  .footer__main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer__contact { grid-column: auto; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 9.5vw, 3rem); }
  .section-heading--split { align-items: flex-start; flex-direction: column; gap: 14px; }
  .topbar { display: none; }
  .navbar { height: 72px; }
  .navbar.is-sticky .nav-menu, .nav-menu { top: 80px; }
  .brand img { height: 46px; }
  .hero__inner { padding: 52px 0 105px; }
  .hero__content h1 em { display: inline; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__proof { grid-template-columns: 1fr; }
  .visual-badge--top { top: -13px; right: 12px; }
  .visual-badge--bottom { right: 12px; left: auto; bottom: 12px; max-width: min(230px, calc(100% - 24px)); }
  .trust-strip { margin-top: -10px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip article:last-child { border-bottom: 0; }
  .services { padding-top: 72px; }
  .services-grid, .customer-grid, .process-grid, .diagnostics-list { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .why-us__grid { gap: 58px; }
  .technical-panel__footer { flex-wrap: wrap; justify-content: flex-start; }
  .experience-card { right: 8px; bottom: -34px; }
  .why-us__cta { align-items: flex-start; flex-direction: column; }
  .process-step { display: grid; grid-template-columns: 62px 1fr; grid-template-areas: "icon number" "icon title" "icon copy"; gap: 0 14px; padding: 0; text-align: left; }
  .process-step__icon { grid-area: icon; width: 58px; height: 58px; margin: 0; border-width: 6px; }
  .process-step__number { grid-area: number; margin: 0 0 4px; }
  .process-step h3 { grid-area: title; margin-bottom: 4px; }
  .process-step p { grid-area: copy; max-width: none; margin: 0; }
  .report-includes { grid-template-columns: 1fr; }
  .sector-card__content { padding: 44px 25px; }
  .sector-card__visual { min-height: 410px; }
  .commercial-scene { aspect-ratio: 1/.95; }
  .conversion-banner__actions { flex-direction: column; }
  .contact__grid { gap: 34px; }
  .top-enquiry-section { padding: 58px 0; }
  .top-enquiry__trust { grid-template-columns: 1fr; }
  .contact-form-panel__header { padding: 24px 22px 21px; }
  .contact-return-card { padding: 30px 24px; }
  .contact-return-card .btn { width: 100%; }
  .contact-form-panel__fields { padding: 14px 16px; }
  .messngr-form-wrapper, .messngr-form-wrapper iframe { min-height: 647px; height: 647px; }
  .contact-form-panel__footer { padding-inline: 16px; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding: 58px 0 50px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__contact { grid-column: 1 / -1; }
  .footer__bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
  .floating-whatsapp { right: 14px; bottom: 74px; width: 54px; height: 54px; min-height: 54px; padding: 8px; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp svg { width: 30px; height: 30px; }
  .mobile-cta { position: fixed; z-index: 1050; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(2,1fr); min-height: 62px; padding-bottom: env(safe-area-inset-bottom); background: white; box-shadow: 0 -8px 25px rgba(2,20,40,.14); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; color: white; background: var(--navy-900); font-size: .8rem; font-weight: 800; }
  .mobile-cta a:last-child { background: linear-gradient(135deg,var(--orange-500),#f25c00); }
  .mobile-cta svg { width: 20px; height: 20px; }
  body { padding-bottom: 62px; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 22px, var(--container)); }
  .brand img { height: 42px; }
  .hero__lead { font-size: 1rem; }
  .visual-badge { font-size: .68rem; }
  .visual-badge--top { display: none; }
  .visual-badge--bottom { top: 8px; left: 8px; right: auto; bottom: auto; justify-content: flex-start; max-width: 220px; }
  .trust-strip article { min-height: 82px; }
  .service-card, .customer-card { padding: 24px 21px; }
  .technical-panel { padding: 11px; }
  .technical-panel__footer { display: none; }
  .experience-card { width: 205px; }
  .sector-card__visual { min-height: 350px; }
  .house { left: 9%; width: 82%; }
  .scene-card { top: 6%; right: 5%; }
  .commercial-scene { min-height: 360px; }
  .contact-methods > a, .contact-methods > div { grid-template-columns: 42px 1fr 14px; padding: 12px; }
  .top-enquiry-section { padding: 44px 0; }
  .top-enquiry__grid { gap: 30px; }
  .top-enquiry__content .lead { margin-bottom: 22px; }
  .top-enquiry__trust article { padding: 13px; }
  .contact-form-panel { border-radius: 16px; }
  .contact-form-panel__header { padding: 22px 18px 19px; }
  .contact-form-panel__fields { gap: 6px; padding: 12px; }
  .contact-form-panel__fields span { font-size: .6rem; }
  .messngr-form-wrapper, .messngr-form-wrapper iframe { min-height: 647px; height: 647px; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__brand, .footer__contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Standalone legal and thank-you pages */
.legal-page, .simple-page { min-height: 100vh; background: var(--surface-soft); }
.legal-page > header { padding: 22px 20px; border-bottom: 1px solid var(--line); background: white; }
.legal-page > header a { display: block; width: min(250px, 70vw); margin-inline: auto; }
.legal-page > main { width: min(820px, calc(100% - 30px)); margin: 48px auto; padding: 42px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow-sm); }
.legal-page h1 { font-size: clamp(2.3rem, 7vw, 4rem); }
.legal-page h2 { margin-top: 30px; font-size: 1.45rem; }
.legal-page a:not(.btn) { color: var(--orange-600); font-weight: 800; }
.simple-page { display: grid; place-items: center; padding: 25px; }
.simple-card { width: min(680px, 100%); padding: 48px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-md); text-align: center; }
.simple-card > img { width: min(320px, 90%); margin: 0 auto 30px; }
.simple-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 23px; border-radius: 50%; color: white; background: var(--orange-500); font-size: 2rem; font-weight: 800; }
.simple-card h1 { font-size: clamp(2.15rem, 7vw, 3.5rem); }
.simple-card p { max-width: 520px; margin: 0 auto 28px; }
@media (max-width: 520px) {
  .legal-page > main, .simple-card { padding: 29px 22px; }
}

/* Thank-you page branding */
.thank-you-card { max-width: 760px; }
.thank-you-eyebrow { justify-content: center; margin-bottom: 18px; }
.thank-you-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin: 0 0 16px; }
.thank-you-note { margin-bottom: 0; color: var(--muted); font-size: .96rem; }
.thank-you-note a { color: var(--navy-900); font-weight: 800; }
@media (max-width: 680px) {
  .thank-you-actions { flex-direction: column; }
  .thank-you-actions .btn { width: 100%; }
}


/* Hero-integrated primary enquiry form */
.hero > .container {
  width: min(1500px, calc(100% - 40px));
}
.hero {
  min-height: 910px;
}
.hero__inner {
  min-height: 870px;
  grid-template-columns: minmax(360px, .95fr) minmax(300px, .78fr) minmax(365px, 405px);
  align-items: center;
  gap: 30px;
  padding: 48px 0 72px;
}
.hero__content h1 {
  font-size: clamp(3.05rem, 4.35vw, 5rem);
}
.hero__lead {
  font-size: clamp(1rem, 1.15vw, 1.14rem);
}
.hero__proof {
  grid-template-columns: 1fr;
  max-width: 350px;
}
.hero__visual {
  align-self: center;
}
.hero__visual > img {
  transform: scale(.97);
  transform-origin: center;
}
.contact-form-panel--hero {
  align-self: center;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 78px rgba(0, 7, 20, .34);
}
.contact-form-panel--hero .contact-form-panel__header {
  padding: 22px 24px 19px;
}
.contact-form-panel--hero .contact-form-panel__header h3 {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}
.contact-form-panel--hero .contact-form-panel__header p {
  font-size: .8rem;
}
.contact-form-panel--hero .messngr-form-wrapper,
.contact-form-panel--hero .messngr-form-wrapper iframe {
  min-height: 647px;
  height: 647px;
}
.hero-form-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}
.hero-form-trust span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 5px;
  color: var(--navy-900);
  background: #f8fafc;
  font-size: .57rem;
  font-weight: 800;
  text-align: center;
}
.hero-form-trust svg {
  flex: 0 0 auto;
  color: var(--orange-600);
}
.contact-form-panel--hero .contact-form-panel__footer {
  padding: 11px 17px 13px;
}
.contact-form-panel--hero .contact-form-panel__footer p {
  font-size: .61rem;
}

@media (max-width: 1320px) {
  .hero > .container {
    width: min(1120px, calc(100% - 40px));
  }
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(365px, 420px);
    gap: 54px;
  }
  .hero__visual {
    display: none;
  }
  .hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }
  .hero > .container {
    width: min(760px, calc(100% - 32px));
  }
  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 0 92px;
  }
  .hero__content {
    max-width: none;
  }
  .contact-form-panel--hero {
    width: min(650px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .hero > .container {
    width: min(100% - 24px, 760px);
  }
  .hero__inner {
    gap: 34px;
    padding: 48px 0 76px;
  }
  .hero__proof {
    grid-template-columns: 1fr;
  }
  .contact-form-panel--hero .contact-form-panel__header {
    padding: 20px 18px 17px;
  }
  .hero-form-trust {
    grid-template-columns: 1fr;
  }
  .hero-form-trust span {
    justify-content: flex-start;
    padding: 8px 14px;
  }
  .contact-form-panel--hero .messngr-form-wrapper,
  .contact-form-panel--hero .messngr-form-wrapper iframe {
    min-height: 647px;
    height: 647px;
  }
}
