:root {
  --navy-950: #031c35;
  --navy-900: #062b4f;
  --navy-800: #0c3d68;
  --orange-500: #ff6b2c;
  --orange-600: #e95719;
  --orange-300: #ffad87;
  --orange-100: #fff0e9;
  --blue-100: #eef5fa;
  --blue-50: #f6f9fc;
  --ink: #10263b;
  --copy: #526577;
  --line: #dce6ee;
  --paper: #ffffff;
  --focus: #1b76d1;
  --success: #0f7654;
  --radius-button: 8px;
  --radius-field: 7px;
  --radius-card: 16px;
  --radius-content: 14px;
  --shadow-card: 0 18px 55px rgba(3, 28, 53, 0.14);
  --shadow-soft: 0 12px 34px rgba(3, 28, 53, 0.09);
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

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

h1,
h2,
h3 {
  margin-bottom: 16px;
  color: var(--navy-950);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.1;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(43px, 5.3vw, 68px);
}

h2 {
  font-size: clamp(32px, 3.8vw, 48px);
}

h3 {
  font-size: clamp(20px, 2vw, 24px);
}

p {
  margin-bottom: 20px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: 100px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--navy-950);
  border-radius: var(--radius-button);
  transform: translateY(-150%);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--paper);
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.button-primary:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
}

.button-ghost {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--paper);
}

.button-light {
  color: var(--navy-900);
  background: var(--paper);
  border-color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--orange-600);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(220, 230, 238, 0.8);
  transition: box-shadow 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 9px 28px rgba(3, 28, 53, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 190px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-left: auto;
}

.primary-nav a,
.phone-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.phone-link:hover {
  color: var(--orange-600);
}

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

.header-actions .button {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 14px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--navy-950);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding-block: 82px 88px;
  color: var(--paper);
  background:
    radial-gradient(circle at 8% 90%, rgba(255, 107, 44, 0.14), transparent 31%),
    linear-gradient(120deg, var(--navy-950), var(--navy-900));
}

.home-hero::before {
  position: absolute;
  width: 540px;
  height: 540px;
  top: -320px;
  right: 18%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 92px rgba(255, 255, 255, 0.02), 0 0 0 184px rgba(255, 255, 255, 0.015);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: 72px;
}

.hero-copy h1 {
  color: var(--paper);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-points li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.hero-points span {
  margin-right: 6px;
  color: #6dd6a5;
}

.hero-gallery {
  position: relative;
  min-height: 590px;
}

.hero-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main {
  inset: 32px 116px 14px 0;
}

.hero-image-main img {
  object-position: 48% center;
}

.hero-image-small {
  width: 188px;
  height: 238px;
  right: 0;
}

.hero-image-top {
  top: 0;
}

.hero-image-bottom {
  right: 12px;
  bottom: 0;
  height: 244px;
}

.hero-certificate {
  position: absolute;
  right: 78px;
  bottom: 42px;
  z-index: 3;
  min-width: 270px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-content);
  box-shadow: var(--shadow-card);
}

.hero-certificate .certificate-mark {
  width: 36px;
  height: 36px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 0 1px;
  color: var(--paper);
  background: var(--success);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.hero-certificate strong,
.hero-certificate span {
  display: block;
}

.hero-certificate strong {
  font-size: 14px;
}

.hero-certificate div span {
  color: var(--copy);
  font-size: 12px;
}

.assurance-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.assurance-grid > div {
  padding: 24px 30px;
  border-left: 1px solid var(--line);
}

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

.assurance-grid strong,
.assurance-grid span {
  display: block;
}

.assurance-grid strong {
  color: var(--navy-900);
  font-size: 15px;
}

.assurance-grid span {
  margin-top: 2px;
  color: var(--copy);
  font-size: 12px;
}

.client-trust {
  padding-block: 48px;
  background: var(--blue-50);
  border-bottom: 1px solid var(--line);
}

.trust-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: center;
  gap: 54px;
}

.trust-heading .eyebrow {
  margin-bottom: 8px;
}

.trust-heading h2 {
  margin: 0;
  font-size: 26px;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.client-logo {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px;
  color: #617180;
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-right: 0;
}

.client-logo:first-child {
  border-radius: var(--radius-content) 0 0 var(--radius-content);
}

.client-logo:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 var(--radius-content) var(--radius-content) 0;
}

.client-logo img {
  width: auto;
  max-width: 108px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1) contrast(2);
  mix-blend-mode: multiply;
  opacity: 0.84;
}

.client-logo-tall img {
  max-width: 58px;
  max-height: 54px;
}

.client-logo-wide img {
  width: 100%;
}

.client-wordmark strong,
.client-wordmark span {
  line-height: 1.1;
  text-align: center;
}

.client-wordmark strong {
  font-size: 13px;
}

.client-wordmark span {
  margin-top: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.heading-row h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.heading-row > p {
  margin-bottom: 6px;
  color: var(--copy);
}

.featured-services {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 20px;
  margin-bottom: 20px;
}

.service-feature {
  min-height: 500px;
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.service-feature-image {
  overflow: hidden;
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.service-feature:hover .service-feature-image img,
.guide-card:hover .guide-image img {
  transform: scale(1.025);
}

.service-feature-curtains .service-feature-image img {
  object-position: center 45%;
}

.service-feature-cleaning .service-feature-image img {
  object-position: center 54%;
}

.service-feature-copy {
  padding: 30px 32px 32px;
}

.service-index,
.service-standard {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-index {
  float: right;
  color: #8a99a6;
}

.service-standard {
  margin-bottom: 10px;
  color: var(--orange-600);
}

.service-feature-copy h3 {
  margin-bottom: 12px;
  font-size: 29px;
}

.service-feature-copy > p:not(.service-standard) {
  max-width: 560px;
  color: var(--copy);
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.directory-item {
  min-height: 168px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 18px;
  padding: 28px 30px;
  background: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease;
}

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

.directory-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.directory-item:hover {
  background: var(--blue-50);
}

.directory-number {
  padding-top: 4px;
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 700;
}

.directory-item p {
  margin-bottom: 6px;
  color: var(--orange-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-item h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.directory-item div > span {
  color: var(--copy);
  font-size: 14px;
}

.directory-arrow {
  align-self: center;
  color: var(--navy-900);
  font-size: 20px;
  transition: transform 180ms ease;
}

.directory-item:hover .directory-arrow {
  transform: translate(2px, -2px);
}

.more-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 4px 0;
  color: var(--copy);
  font-size: 14px;
}

.more-services p {
  margin: 0;
}

.more-services a {
  flex: 0 0 auto;
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: none;
}

.sectors-section {
  color: var(--paper);
  background: var(--navy-950);
}

.sectors-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 76px;
}

.sector-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 580px;
}

.sector-content {
  min-width: 0;
}

.sector-visual > img,
.sector-visual > video {
  width: calc(100% - 42px);
  height: 550px;
  display: block;
  object-fit: cover;
  object-position: 56% center;
  border-radius: var(--radius-card);
}

.sector-visual > video {
  max-width: 100%;
  background: var(--navy-950);
  pointer-events: none;
}

.sector-visual-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 250px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-content);
  box-shadow: var(--shadow-card);
}

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

.sector-visual-note strong {
  color: var(--orange-600);
  font-size: 22px;
}

.sector-visual-note span {
  margin-top: 4px;
  color: var(--copy);
  font-size: 13px;
}

.sector-content h2 {
  color: var(--paper);
}

.sector-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 34px;
}

.sector-chips span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  font-size: 13px;
}

.process-section {
  background: var(--blue-50);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-track li {
  position: relative;
  padding: 34px 26px 8px 0;
}

.process-track li::before {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -6px;
  left: 0;
  content: "";
  background: var(--orange-500);
  border: 3px solid var(--blue-50);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--orange-500);
}

.process-number {
  display: block;
  margin-bottom: 34px;
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 700;
}

.process-track h3 {
  max-width: 230px;
  font-size: 20px;
}

.process-track p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 86px;
}

.proof-copy > p:not(.eyebrow) {
  color: var(--copy);
  font-size: 18px;
}

.proof-list {
  padding: 0;
  margin: 32px 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.proof-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.proof-list li > span {
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 700;
}

.proof-list strong {
  display: block;
  color: var(--navy-950);
}

.proof-list p {
  margin: 4px 0 0;
  color: var(--copy);
  font-size: 14px;
}

.proof-media {
  position: relative;
  padding: 0 0 70px 48px;
}

.proof-media > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.proof-media blockquote {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(430px, 82%);
  padding: 28px 30px;
  margin: 0;
  color: var(--paper);
  background: var(--navy-900);
  border-radius: var(--radius-content);
  box-shadow: var(--shadow-card);
}

.proof-media blockquote p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.55;
}

.proof-media blockquote strong,
.proof-media blockquote span {
  display: block;
}

.proof-media blockquote strong {
  color: var(--orange-300);
  font-size: 13px;
}

.proof-media blockquote span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
}

.comparison-section {
  color: var(--paper);
  background: var(--navy-900);
}

.comparison-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 68px;
}

.comparison-copy h2 {
  color: var(--paper);
}

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

.comparison-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
}

.comparison-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.comparison-card {
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius-content);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.comparison-card > div:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px;
}

.comparison-card span {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-card strong {
  color: var(--ink);
  font-size: 13px;
}

.comparison-before span {
  color: #a64319;
  background: #fff0e9;
}

.comparison-after span {
  color: #0f7654;
  background: #e8f6ef;
}

.guides-section {
  background: var(--blue-50);
}

.guides-heading {
  grid-template-columns: 1fr auto;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.85fr);
  gap: 18px;
}

.guide-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.guide-image {
  height: 220px;
  display: block;
  overflow: hidden;
}

.guide-card-featured .guide-image {
  height: 300px;
}

.guide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.guide-card-featured .guide-image img {
  object-position: center 39%;
}

.guide-copy {
  padding: 24px;
}

.guide-copy > p {
  margin-bottom: 9px;
  color: var(--orange-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-copy h3 {
  font-size: 20px;
}

.guide-card-featured .guide-copy h3 {
  font-size: 25px;
}

.guide-copy h3 a,
.guide-read {
  text-decoration: none;
}

.guide-read {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 82px;
  color: var(--paper);
  background: var(--navy-950);
}

.final-cta::after {
  position: absolute;
  width: 460px;
  height: 460px;
  top: -280px;
  right: 8%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.015);
}

.final-cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.final-cta h2 {
  color: var(--paper);
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
  text-align: center;
}

.final-phone {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 56px 0 24px;
  color: var(--paper);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.7fr);
  gap: 44px;
}

.footer-brand img {
  width: 185px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 380px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-grid > div > strong {
  display: block;
  margin-bottom: 14px;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-block: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--paper);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 18px;
  }

  .phone-link {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 45px;
  }

  .hero-gallery {
    min-height: 530px;
  }

  .hero-image-small {
    width: 150px;
    height: 210px;
  }

  .hero-image-main {
    right: 92px;
  }

  .hero-certificate {
    right: 32px;
  }

  .trust-layout {
    grid-template-columns: 230px 1fr;
    gap: 30px;
  }

  .sectors-layout,
  .proof-layout {
    gap: 48px;
  }

  .comparison-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .section {
    padding-block: 76px;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    inset: 80px 0 auto;
    max-height: calc(100vh - 80px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 30px;
    overflow-y: auto;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(3, 28, 53, 0.12);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-gallery {
    min-height: 540px;
  }

  .hero-image-main {
    right: 130px;
  }

  .hero-image-small {
    width: 205px;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-logo,
  .client-logo:first-child,
  .client-logo:last-child {
    border: 1px solid var(--line);
    border-radius: 0;
  }

  .client-logo:first-child {
    border-radius: var(--radius-content) 0 0 0;
  }

  .client-logo:nth-child(3) {
    border-radius: 0 var(--radius-content) 0 0;
  }

  .client-logo:nth-child(4) {
    border-radius: 0 0 0 var(--radius-content);
  }

  .client-logo:last-child {
    border-radius: 0 0 var(--radius-content) 0;
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-services {
    grid-template-columns: 1fr;
  }

  .service-feature {
    grid-template-columns: 0.95fr 1.05fr;
    grid-template-rows: 1fr;
    min-height: 390px;
  }

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

  .directory-item,
  .directory-item:nth-child(odd),
  .directory-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .directory-item:last-child {
    border-bottom: 0;
  }

  .sectors-layout,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .sector-visual {
    order: 2;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .process-track li:nth-child(3),
  .process-track li:nth-child(4) {
    margin-top: 20px;
  }

  .proof-copy {
    max-width: 720px;
  }

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

  .guide-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .guide-card-featured .guide-image {
    height: 100%;
    min-height: 320px;
  }

  .final-cta-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta-actions {
    align-items: flex-start;
  }

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

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

  body {
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(38px, 11.4vw, 50px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 39px);
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding-block: 66px;
  }

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

  .brand {
    width: 154px;
  }

  .primary-nav {
    inset: 68px 0 auto;
    max-height: calc(100vh - 68px);
  }

  .home-hero {
    padding-block: 58px 62px;
  }

  .hero-layout {
    gap: 44px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .hero-gallery {
    min-height: 370px;
  }

  .hero-image-main {
    inset: 12px 78px 0 0;
  }

  .hero-image-small {
    width: 116px;
    height: 148px;
  }

  .hero-image-bottom {
    right: 0;
    bottom: 0;
    height: 150px;
  }

  .hero-certificate {
    right: 28px;
    bottom: 18px;
    min-width: 0;
    width: 228px;
    padding: 12px 14px;
  }

  .hero-certificate .certificate-mark {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

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

  .assurance-grid > div,
  .assurance-grid > div:last-child {
    padding: 17px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance-grid > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .client-trust {
    padding-block: 42px;
  }

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

  .client-logo,
  .client-logo:first-child,
  .client-logo:nth-child(3),
  .client-logo:nth-child(4),
  .client-logo:last-child {
    border-radius: 0;
  }

  .client-logo:first-child {
    border-radius: var(--radius-content) 0 0 0;
  }

  .client-logo:nth-child(2) {
    border-radius: 0 var(--radius-content) 0 0;
  }

  .client-logo:nth-child(5) {
    border-radius: 0 0 0 var(--radius-content);
  }

  .client-logo:last-child {
    border-radius: 0 0 var(--radius-content) 0;
  }

  .featured-services {
    gap: 14px;
  }

  .service-feature {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
  }

  .service-feature-copy {
    padding: 24px 22px 26px;
  }

  .service-index {
    float: none;
    display: block;
    margin-bottom: 8px;
  }

  .service-feature-copy h3 {
    font-size: 25px;
  }

  .directory-item {
    min-height: 0;
    grid-template-columns: 24px 1fr 22px;
    gap: 11px;
    padding: 22px 18px;
  }

  .more-services {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .sectors-layout {
    gap: 46px;
  }

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

  .sector-visual > img,
  .sector-visual > video {
    width: calc(100% - 25px);
    height: 410px;
  }

  .sector-visual-note {
    width: 210px;
    padding: 18px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .process-track li,
  .process-track li:nth-child(3),
  .process-track li:nth-child(4) {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 0 0 30px 22px;
    margin: 0;
  }

  .process-track li::before {
    top: 5px;
    left: -6px;
  }

  .process-number {
    margin: 0;
  }

  .proof-layout {
    gap: 42px;
  }

  .proof-media {
    padding: 0 0 125px 0;
  }

  .proof-media > img {
    height: 450px;
  }

  .proof-media blockquote {
    width: calc(100% - 22px);
  }

  .comparison-layout {
    gap: 38px;
  }

  .comparison-videos {
    grid-template-columns: 1fr;
  }

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

  .guide-card-featured {
    grid-column: auto;
    display: block;
  }

  .guide-card-featured .guide-image,
  .guide-image {
    height: 220px;
    min-height: 0;
  }

  .guide-card-featured .guide-copy h3 {
    font-size: 22px;
  }

  .final-cta {
    padding-block: 66px;
  }

  .final-cta-actions,
  .final-cta-actions .button {
    width: 100%;
  }

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

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

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(3, 28, 53, 0.1);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar a {
    min-height: 50px;
    display: grid;
    place-items: center;
    color: var(--navy-950);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-action-bar a:last-child {
    color: var(--paper);
    background: var(--orange-500);
    border-radius: var(--radius-button);
  }
}

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

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