:root {
  --color-navy: #002f63;
  --color-blue: #0077c8;
  --color-light-blue: #eaf6ff;
  --color-white: #ffffff;
  --color-gray: #64748b;
  --color-gray-dark: #334155;
  --color-gray-light: #f5f8fb;
  --color-red: #d71920;
  --color-border: #dbe7f3;
  --color-dark: #0b1f33;
  --shadow-soft: 0 12px 30px rgba(0, 47, 99, 0.08);
  --shadow-medium: 0 20px 45px rgba(0, 47, 99, 0.12);
  --radius: 8px;
  --container: 1200px;
  --section: 88px;
}

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

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

body {
  margin: 0;
  color: var(--color-dark);
  background: var(--color-white);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

p {
  color: var(--color-gray);
}

ul {
  margin-top: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(0, 119, 200, 0.35);
  outline-offset: 3px;
}

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

.section {
  padding: var(--section) 0;
}

.section-tight {
  padding: 56px 0;
}

.section-muted {
  background: var(--color-gray-light);
  border-block: 1px solid var(--color-border);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.split-grid h2,
.image-split h2,
.contact-grid h2,
.map-grid h2 {
  color: var(--color-navy);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-heading p {
  font-size: 1rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #bfe4ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn-small {
  min-height: 42px;
  padding: 11px 18px;
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-blue);
  border-color: var(--color-blue);
  box-shadow: 0 10px 24px rgba(0, 119, 200, 0.18);
}

.btn-primary:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-secondary {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: rgba(0, 47, 99, 0.35);
}

.btn-secondary:hover {
  color: var(--color-white);
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-light {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-white);
}

.btn-light:hover {
  color: var(--color-white);
  background: transparent;
}

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

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--color-blue);
  font-size: 0.94rem;
  font-weight: 800;
}

.text-link:hover {
  color: var(--color-navy);
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 18px rgba(0, 47, 99, 0.05);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 47, 99, 0.12);
}

.topbar {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.84rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.topbar p {
  margin: 0;
  color: var(--color-white);
}

.topbar span,
.topbar a {
  color: #b9e6ff;
  font-weight: 600;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

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

.brand img {
  width: 178px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a:not(.btn) {
  position: relative;
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu a:not(.btn)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.nav-menu a:hover,
.nav-menu a.is-active,
.nav-menu a[aria-current="page"] {
  color: var(--color-blue);
}

.nav-menu a.is-active::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero sections */
.hero-video {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: clamp(520px, calc(100vh - 112px), 740px);
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.72), rgba(0, 119, 200, 0.42)),
    url("../images/drone-assisted-exterior-cleaning.jpg") center / cover no-repeat,
    var(--color-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 40, 0.55) 0%, rgba(8, 20, 40, 0.35) 42%, rgba(8, 20, 40, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 20, 40, 0.08) 0%, rgba(8, 20, 40, 0.34) 100%);
}

.hero-video__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  padding: clamp(42px, 7vh, 68px) 0 56px;
}

.hero-video__panel {
  width: min(100%, 560px);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 31, 63, 0.22);
  backdrop-filter: blur(8px);
}

.hero-video h1 {
  max-width: 540px;
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: clamp(2.05rem, 3.4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-video__lead {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.58;
}

.hero-video .btn-primary {
  background: var(--color-blue);
  border-color: var(--color-blue);
  box-shadow: 0 16px 38px rgba(0, 119, 200, 0.34);
  transform: translateY(0);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.hero-video .btn-primary:hover {
  color: var(--color-white);
  background: #0a8fe8;
  border-color: #0a8fe8;
  box-shadow: 0 20px 44px rgba(0, 119, 200, 0.42);
  transform: translateY(-2px);
}

.hero-video .btn-secondary {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.74);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-video .btn-secondary:hover {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.hero-video .trust-strip span {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-video .trust-strip {
  margin-top: 20px;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.9)),
    var(--color-light-blue);
  border-bottom: 1px solid var(--color-border);
}

.hero__grid,
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.hero h1,
.page-hero h1 {
  margin-bottom: 22px;
  color: var(--color-navy);
  font-size: clamp(2.35rem, 4.4vw, 3.95rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.15rem, 3.9vw, 3.55rem);
}

.hero__lead,
.page-hero p {
  max-width: 680px;
  font-size: 1.08rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 9px 12px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero__media,
.page-hero__image,
.image-split__media,
.service-detail__image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
}

.hero__media img,
.page-hero__image img,
.image-split__media img,
.service-detail__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero__note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(320px, calc(100% - 36px));
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero__note strong,
.hero__note span {
  display: block;
}

.hero__note strong {
  color: var(--color-navy);
  font-size: 0.95rem;
}

.hero__note span {
  margin-top: 4px;
  color: var(--color-gray);
  font-size: 0.84rem;
  line-height: 1.45;
}

.page-hero {
  padding: 74px 0;
  background: linear-gradient(135deg, var(--color-white), var(--color-light-blue));
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
}

/* Cards and repeated content */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.statement-box,
.info-card,
.process-step,
.contact-summary,
.quote-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #aacfea;
  box-shadow: var(--shadow-medium);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--color-blue);
  background: var(--color-light-blue);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-weight: 800;
}

.service-card h3,
.feature-item h3,
.process-step h3,
.info-card h3,
.statement-box h3,
.service-detail h2,
.service-detail h3 {
  color: var(--color-navy);
  line-height: 1.25;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card p,
.feature-item p,
.process-step p,
.info-card p,
.statement-box p {
  margin-bottom: 0;
}

.split-grid,
.image-split,
.contact-grid,
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 54px;
}

.image-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.feature-item__mark {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  background: var(--color-blue);
  border: 4px solid var(--color-light-blue);
  border-radius: 50%;
}

.feature-item h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.industry-pill {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--color-navy);
  background: var(--color-light-blue);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 800;
  text-align: center;
}

.statement-box {
  padding: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-item {
  padding: 28px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-item strong {
  display: block;
  color: var(--color-blue);
  font-size: 2.1rem;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 10px;
  color: var(--color-gray-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.process-step {
  padding: 28px;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-blue);
  font-weight: 800;
}

/* Services page */
.service-list .container {
  display: grid;
  gap: 34px;
}

.legal-content {
  max-width: 920px;
  margin-inline: auto;
}

.legal-content__section {
  padding: 30px;
  margin-bottom: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-content__section h2 {
  margin-bottom: 12px;
  color: var(--color-navy);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.25;
}

.legal-content__section p:last-child,
.legal-content__section ul:last-child {
  margin-bottom: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 30px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 130px;
}

.service-detail__image {
  box-shadow: none;
}

.service-detail__image img {
  height: 100%;
  min-height: 360px;
}

.service-detail__content {
  align-self: center;
  padding: 10px 0;
}

.service-detail h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}

.service-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  margin: 22px 0 24px;
}

.service-columns h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-gray);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 14px;
  height: 14px;
  background: var(--color-blue);
  border-radius: 50%;
  content: "";
}

/* Contact page */
.contact-summary {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-summary div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.contact-summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-summary a,
.contact-summary p {
  margin: 0;
  color: var(--color-navy);
  font-weight: 700;
}

.contact-grid {
  align-items: start;
}

.info-stack {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.info-card {
  padding: 22px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.info-card a {
  color: var(--color-blue);
  font-weight: 800;
}

.quote-form {
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--color-dark);
  background: #fbfdff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--color-white);
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 200, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.form-status {
  display: none;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-visible,
.form-status:target {
  display: block;
}

.form-status--success {
  color: #14532d;
  background: #ecfdf3;
  border-color: #bbf7d0;
}

.form-status--error {
  color: #7f1d1d;
  background: #fff5f5;
  border-color: #fecaca;
}

.form-note {
  margin: 14px 0 0;
  color: var(--color-gray);
  font-size: 0.82rem;
  text-align: center;
}

.map-grid {
  align-items: stretch;
}

.map-placeholder {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--color-navy);
  background:
    linear-gradient(135deg, rgba(0, 47, 99, 0.08), rgba(0, 119, 200, 0.12)),
    var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.map-placeholder span {
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-placeholder strong {
  margin: 12px 0 8px;
  font-size: 1.4rem;
}

.map-placeholder p {
  max-width: 420px;
  margin-bottom: 0;
}

/* CTA and footer */
.cta-section {
  padding: 64px 0;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
}

.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-section h2 {
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.cta-section p {
  max-width: 720px;
  margin-bottom: 0;
  color: #dbeafe;
}

.site-footer {
  padding: 54px 0 24px;
  color: #cbd5e1;
  background: #061b2f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(145px, 0.55fr));
  gap: 34px;
}

.footer-brand {
  display: inline-flex;
  width: 180px;
  padding: 10px;
  margin-bottom: 16px;
  background: var(--color-white);
  border-radius: var(--radius);
}

.footer-brand img {
  width: 160px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--color-white);
  font-size: 0.96rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(calc(100% - 40px), 1080px);
  padding: 18px;
  margin-inline: auto;
  color: var(--color-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-blue);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 47, 99, 0.18);
}

.cookie-banner p {
  margin-bottom: 8px;
  color: var(--color-gray-dark);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-banner__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner__links a {
  color: var(--color-blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.cookie-banner__links a:hover {
  color: var(--color-navy);
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-banner__actions .btn {
  min-height: 42px;
  padding: 10px 18px;
}

@media (max-width: 1024px) {
  :root {
    --section: 72px;
  }

  .hero-video {
    min-height: clamp(520px, calc(100vh - 96px), 660px);
  }

  .hero-video__content {
    padding: 48px 0 48px;
  }

  .hero-video__panel {
    width: min(100%, 540px);
  }

  .hero__grid,
  .page-hero__grid,
  .split-grid,
  .image-split,
  .contact-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .page-hero__image,
  .image-split__media {
    max-width: 760px;
  }

  .card-grid--three,
  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .topbar {
    display: none;
  }

  .navbar__inner {
    min-height: 76px;
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 0 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 10px 16px 22px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-medium);
    overflow-y: auto;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

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

  .nav-menu a:not(.btn),
  .nav-menu .btn {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 4px;
    border-radius: 0;
  }

  .nav-menu .btn {
    justify-content: center;
    margin-top: 10px;
    padding: 13px 18px;
    border-radius: 6px;
  }

  .nav-menu a:not(.btn)::after {
    bottom: 4px;
  }

  .hero,
  .page-hero {
    padding: 54px 0;
  }

  .hero-video {
    align-items: end;
    min-height: 600px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 20, 40, 0.16) 0%, rgba(8, 20, 40, 0.46) 44%, rgba(8, 20, 40, 0.72) 100%),
      linear-gradient(90deg, rgba(8, 20, 40, 0.42), rgba(0, 119, 200, 0.16));
  }

  .hero-video__content {
    justify-content: center;
    padding: 72px 0 42px;
  }

  .hero-video__panel {
    text-align: center;
  }

  .hero-video .button-row,
  .hero-video .trust-strip {
    justify-content: center;
  }

  .hero-video h1 {
    max-width: 520px;
    font-size: clamp(2rem, 7.2vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-video__lead {
    max-width: 500px;
  }

  .hero__note {
    position: static;
    width: auto;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

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

  .card-grid--three,
  .stats-grid,
  .process-grid,
  .industry-grid,
  .service-columns,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-section__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    width: auto;
  }

  .cookie-banner__actions {
    justify-content: flex-end;
  }
}

@media (max-width: 560px) {
  :root {
    --section: 58px;
  }

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

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .hero-video {
    min-height: 560px;
  }

  .hero-video__content {
    padding: 54px 0 34px;
  }

  .hero-video__panel {
    padding: 20px;
  }

  .hero-video h1 {
    font-size: 1.82rem;
  }

  .hero-video__lead {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .button-row,
  .trust-strip {
    flex-direction: column;
  }

  .button-row .btn,
  .trust-strip span {
    width: 100%;
  }

  .service-card,
  .statement-box,
  .process-step,
  .quote-form,
  .contact-summary,
  .service-detail {
    padding: 22px;
  }

  .service-detail__image img {
    min-height: 240px;
  }

  .industry-pill {
    min-height: 62px;
  }

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

  .legal-content__section {
    padding: 22px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    padding-inline: 12px;
  }
}
