:root {
  --navy: #071a2b;
  --navy-2: #0d263b;
  --navy-3: #13344f;
  --lime: #b7f23a;
  --lime-strong: #a8e51e;
  --white: #ffffff;
  --paper: #f7f9f9;
  --mist: #eaf0f1;
  --ink: #0c1d2e;
  --muted: #5c6973;
  --line: #d9e1e3;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 26, 43, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
summary {
  cursor: pointer;
}

svg {
  display: block;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(7, 26, 43, .08);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: flex-end;
  min-width: max-content;
  color: var(--navy);
}

.brand-mark {
  width: 47px;
  height: 42px;
  margin-right: 11px;
}

.mark-lime {
  fill: var(--lime-strong);
}

.mark-navy {
  fill: var(--navy);
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .08em;
}

.brand-company {
  margin: 0 0 4px 7px;
  font-size: .68rem;
  font-weight: 800;
}

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

.brand-light .mark-navy {
  fill: var(--white);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  margin-left: auto;
  font-size: .84rem;
  font-weight: 750;
}

.desktop-nav a {
  position: relative;
  padding: 11px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime-strong);
  transition: right .24s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: 36px;
  padding: 13px 17px;
  color: var(--navy);
  border-radius: 8px;
  background: var(--lime);
  font-size: .76rem;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease;
}

.header-cta:hover {
  background: var(--lime-strong);
  transform: translateY(-2px);
}

.header-cta svg,
.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.header-cta:hover svg,
.button:hover svg,
.text-link:hover svg {
  transform: translateX(5px);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(183, 242, 58, .08), transparent 28%),
    var(--white);
}

.hero::before {
  position: absolute;
  top: 6%;
  left: -12vw;
  width: 48vw;
  height: 100%;
  content: "";
  background: linear-gradient(125deg, rgba(7, 26, 43, .025), transparent 58%);
  transform: skewX(-12deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 49% 51%;
  min-height: min(790px, calc(100vh - 84px));
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 66px 46px 50px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 21px;
  color: #405363;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--lime-strong);
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 6.2vw, 6.5rem);
  line-height: .89;
}

.hero h1 strong {
  color: var(--navy);
  font-weight: inherit;
}

.hero h1::after {
  display: block;
  width: 74px;
  height: 7px;
  margin-top: 26px;
  content: "";
  background: var(--lime-strong);
}

.hero-lead {
  max-width: 600px;
  margin: 25px 0 0;
  color: #334859;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 29px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 14px 21px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(183, 242, 58, .18);
}

.button-primary:hover {
  background: var(--lime-strong);
  box-shadow: 0 16px 34px rgba(183, 242, 58, .28);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(255, 255, 255, .82);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.hero-facts > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 9px;
  align-items: center;
}

.fact-icon {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--navy);
  border: 1px solid var(--lime-strong);
  border-radius: 50%;
}

.fact-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-facts strong {
  font-size: .78rem;
}

.hero-facts small {
  color: var(--muted);
  font-size: .61rem;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 7.5%;
  width: 1px;
  content: "";
  background: var(--lime-strong);
  transform: skewX(-8deg);
  transform-origin: top;
  opacity: .7;
}

.hero-visual::after {
  left: 9.3%;
  opacity: .35;
}

.hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.lime-corner {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  background: var(--lime);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 25px;
  display: grid;
  gap: 3px;
  padding: 15px 18px;
  color: var(--white);
  background: rgba(7, 26, 43, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(9px);
}

.hero-badge span {
  color: var(--lime);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero-badge strong {
  font-size: .82rem;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 80px;
  align-items: end;
}

.section h2 {
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: .95;
}

.section-heading > p,
.cleaning-copy > p,
.feature-copy > p,
.about-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 58px;
}

.dual-card {
  position: relative;
  min-height: 360px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.dual-card:hover {
  border-color: var(--lime-strong);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.dual-card::after {
  position: absolute;
  right: -50px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(7, 26, 43, .08);
  transform: rotate(24deg);
}

.cleaning-card {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.cleaning-card::after {
  border-color: rgba(183, 242, 58, .25);
}

.dual-number {
  position: absolute;
  top: 34px;
  right: 38px;
  color: rgba(7, 26, 43, .13);
  font-family: Impact, sans-serif;
  font-size: 4.5rem;
}

.cleaning-card .dual-number {
  color: rgba(255, 255, 255, .09);
}

.dual-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--navy);
  background: var(--lime);
}

.dual-icon svg,
.service-mini > span svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.dual-card h3 {
  margin: 32px 0 12px;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 2.1rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.dual-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}

.cleaning-card p {
  color: #bfd0dc;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 35px;
  font-size: .79rem;
  font-weight: 850;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(50px, 8vw, 108px);
  align-items: center;
}

.feature-image,
.cleaning-image {
  position: relative;
}

.feature-image::before {
  position: absolute;
  z-index: 1;
  top: -14px;
  right: -14px;
  width: 70%;
  height: 70%;
  content: "";
  border-top: 2px solid var(--lime);
  border-right: 2px solid var(--lime);
}

.feature-image img {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-label {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  color: var(--navy);
  background: var(--lime);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #9fb2c0;
}

.section-dark h2,
.process h2,
.contact h2 {
  color: var(--white);
}

.feature-copy > p {
  margin-top: 26px;
  color: #b7c6d0;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e9f0f4;
  font-size: .84rem;
  font-weight: 700;
}

.check-list li span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--navy);
  border-radius: 50%;
  background: var(--lime);
}

.check-list svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cleaning-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

.cleaning-copy > p {
  max-width: 650px;
  margin-top: 26px;
}

.service-mini-grid {
  display: grid;
  gap: 7px;
  margin-top: 32px;
}

.service-mini {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color .2s ease, transform .2s ease;
}

.service-mini:hover {
  border-color: var(--lime-strong);
  transform: translateX(5px);
}

.service-mini > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--navy);
  background: var(--lime);
}

.service-mini h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: .95rem;
}

.service-mini p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}

.cleaning-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cleaning-image::after {
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 62%;
  height: 62%;
  content: "";
  background: var(--lime);
}

.quality-card {
  position: absolute;
  right: auto;
  bottom: 22px;
  left: -42px;
  display: grid;
  max-width: 300px;
  gap: 6px;
  padding: 23px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.quality-card strong {
  font-size: .91rem;
}

.quality-card span {
  color: #b9c8d2;
  font-size: .72rem;
  line-height: 1.55;
}

.process {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(183, 242, 58, .09) 50%, transparent 50.1%),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    var(--navy-2);
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, .11);
}

.process-list li {
  min-height: 260px;
  padding: 35px;
  background: var(--navy-2);
}

.process-list li > span {
  color: var(--lime);
  font-family: Impact, sans-serif;
  font-size: 2.8rem;
}

.process-list h3 {
  margin: 35px 0 10px;
  font-size: 1.12rem;
}

.process-list p {
  margin: 0;
  color: #aebfca;
  font-size: .83rem;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 130px);
}

.about-copy {
  padding-top: 35px;
}

.about-copy .about-lead {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1.55;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 31px;
}

.values span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: .72rem;
  font-weight: 800;
}

.contact {
  color: var(--white);
  background: var(--navy);
}

.contact-shell {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(48px, 8vw, 105px);
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 0;
  color: #b6c5cf;
  line-height: 1.75;
}

.contact-meta {
  display: grid;
  gap: 19px;
  margin-top: 44px;
}

.contact-meta a,
.contact-meta > span {
  display: grid;
  gap: 3px;
}

.contact-meta small {
  color: var(--lime);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-meta strong {
  font-size: .95rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  color: var(--ink);
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: #415362;
  font-size: .69rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime-strong);
  box-shadow: 0 0 0 3px rgba(183, 242, 58, .16);
}

.contact-form textarea {
  resize: vertical;
}

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

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .65rem;
  text-align: center;
}

.form-status {
  display: none;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.55;
}

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

.form-status.is-success {
  color: #164c22;
  border-color: #a9d7af;
  background: #edf8ef;
}

.form-status.is-error {
  color: #772626;
  border-color: #e5b7b7;
  background: #fff1f1;
}

.privacy-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--lime-strong);
}

.privacy-check > span {
  font-weight: 650 !important;
  line-height: 1.55;
}

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

.footer {
  padding: 70px 0 24px;
  color: #b9c7d0;
  background: #04111d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 60px;
}

.footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-main > div:first-child {
  gap: 20px;
}

.footer-main p {
  max-width: 320px;
  margin: 0;
  font-size: .78rem;
  line-height: 1.7;
}

.footer-main strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: .76rem;
}

.footer-main a,
.footer-main span {
  font-size: .72rem;
}

.footer-main a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 22px;
  color: #7f929f;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .68rem;
}

.reveal {
  animation: rise .75s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .reveal {
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
  }
}

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

  .header-cta {
    margin-left: 22px;
  }

  .hero-grid {
    grid-template-columns: 52% 48%;
  }

  .hero-copy {
    padding-right: 28px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.3rem);
  }

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

  .hero-facts > div:last-child {
    display: none;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    gap: 5px;
    padding: 12px 4px 12px 12px;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 27px;
    height: 2px;
    background: var(--navy);
  }

  .mobile-menu nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 22px 26px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(7, 26, 43, .12);
  }

  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 68px 0 48px;
  }

  .hero-visual {
    min-height: 520px;
    margin-inline: -22px;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }

  .section {
    padding: 86px 0;
  }

  .section-heading,
  .feature-grid,
  .cleaning-layout,
  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .feature-grid,
  .cleaning-layout,
  .about-grid,
  .contact-shell {
    gap: 54px;
  }

  .feature-image {
    max-width: 650px;
  }

  .cleaning-copy {
    order: 2;
  }

  .cleaning-image {
    max-width: 590px;
    margin-left: 45px;
  }

  .cleaning-image img {
    aspect-ratio: 4 / 3;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    min-height: 0;
  }

  .process-list h3 {
    margin-top: 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 40px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

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

  .brand-mark {
    width: 40px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.28rem;
  }

  .mobile-menu nav {
    top: 72px;
  }

  .hero-copy {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16.2vw, 4.7rem);
  }

  .hero-lead {
    font-size: .97rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-facts > div:last-child {
    display: grid;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-badge {
    right: 14px;
    bottom: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .section h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .dual-cards,
  .check-list {
    grid-template-columns: 1fr;
  }

  .dual-card {
    min-height: 330px;
    padding: 30px;
  }

  .dual-number {
    top: 24px;
    right: 25px;
  }

  .feature-grid,
  .cleaning-layout,
  .about-grid,
  .contact-shell {
    gap: 42px;
  }

  .feature-image::before {
    right: -7px;
  }

  .cleaning-image {
    margin-left: 20px;
  }

  .quality-card {
    bottom: 13px;
    left: -20px;
    max-width: calc(100% - 5px);
  }

  .service-mini {
    grid-template-columns: 44px 1fr;
    padding: 14px;
  }

  .service-mini > span {
    width: 44px;
    height: 44px;
  }

  .process-list li {
    grid-template-columns: 60px 1fr;
    padding: 26px 20px;
  }

  .process-list li > span {
    font-size: 2.15rem;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

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

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

/* Multi-page Velox presentation */
.brand {
  align-items: center;
}

.brand-logo {
  width: 220px;
  height: auto;
}

.footer .brand-logo {
  width: 230px;
}

.hero-courier .hero-visual > img {
  object-position: 58% center;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.service-card {
  min-height: 284px;
  padding: 31px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.service-card:hover {
  border-color: var(--lime-strong);
  box-shadow: 0 18px 45px rgba(7, 26, 43, .09);
  transform: translateY(-5px);
}

.service-card h3 {
  margin: 27px 0 10px;
  color: var(--navy);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.55rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.72;
}

.section-link-row {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.check-list-wide {
  grid-template-columns: 1fr;
}

.audiences {
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 55px;
  border: 1px solid var(--line);
  background: var(--line);
}

.audience-card {
  min-height: 215px;
  padding: 30px 25px;
  background: var(--paper);
}

.audience-card::before {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 35px;
  content: "";
  background: var(--lime-strong);
}

.audience-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.audience-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65;
}

.process-list-four {
  grid-template-columns: repeat(4, 1fr);
}

.process-list-four li {
  min-height: 285px;
  padding: 30px;
}

.cleaning-teaser {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(183, 242, 58, .1), transparent 45%),
    var(--white);
}

.cleaning-teaser-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(52px, 8vw, 105px);
  align-items: center;
}

.cleaning-teaser-image {
  position: relative;
}

.cleaning-teaser-image::before {
  position: absolute;
  z-index: 0;
  top: -18px;
  left: -18px;
  width: 58%;
  height: 58%;
  content: "";
  background: var(--lime);
}

.cleaning-teaser-image img {
  position: relative;
  z-index: 1;
  min-height: 520px;
  object-fit: cover;
}

.cleaning-teaser-copy > p:not(.eyebrow) {
  margin: 27px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.plain-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
  margin: 29px 0 34px;
  padding: 0;
  list-style: none;
}

.plain-check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #344958;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.45;
}

.plain-check-grid svg {
  width: 18px;
  min-width: 18px;
  fill: none;
  stroke: var(--lime-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.plain-check-grid-one {
  grid-template-columns: 1fr;
}

.subhero {
  overflow: hidden;
  background: var(--white);
}

.subhero-dark {
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(183, 242, 58, .06), transparent 40%),
    var(--navy);
}

.subhero-clean {
  background:
    linear-gradient(125deg, rgba(183, 242, 58, .12), transparent 42%),
    var(--white);
}

.subhero-grid {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 680px;
}

.subhero-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 54px 68px 0;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  margin: 0 0 32px;
  color: #6d7e8a;
  font-size: .68rem;
  font-weight: 750;
}

.subhero-dark .breadcrumb {
  color: #9db0bc;
}

.breadcrumb a:hover {
  color: var(--lime-strong);
}

.subhero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(3.6rem, 5.8vw, 6rem);
  font-weight: 900;
  line-height: .91;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.subhero-dark h1 {
  color: var(--white);
}

.subhero-copy > p:not(.eyebrow, .breadcrumb) {
  max-width: 610px;
  margin: 27px 0 0;
  color: #50616d;
  font-size: 1.02rem;
  line-height: 1.75;
}

.subhero-dark .subhero-copy > p:not(.eyebrow, .breadcrumb) {
  color: #bbcad3;
}

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

.button-ghost:hover {
  color: var(--navy);
  border-color: var(--white);
  background: var(--white);
}

.subhero-media {
  position: relative;
  min-height: 680px;
  margin-right: calc((100vw - min(1180px, calc(100vw - 44px))) / -2);
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

.subhero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subhero-dark .subhero-media img {
  object-position: 60% center;
}

.subhero-stat {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  min-width: 205px;
  padding: 20px 23px;
  color: var(--navy);
  background: var(--lime);
  box-shadow: var(--shadow);
}

.subhero-stat strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.subhero-stat span {
  margin-top: 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.subhero-stat-clean {
  color: var(--white);
  background: var(--navy);
}

.page-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}

.prose-columns {
  columns: 2;
  column-gap: 36px;
}

.prose-columns p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.8;
}

.section-soft {
  background: var(--mist);
}

.detail-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 58px;
}

.detail-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  min-height: 235px;
  padding: 30px;
  scroll-margin-top: 110px;
  border: 1px solid transparent;
  background: var(--white);
  transition: border-color .22s ease, transform .22s ease;
}

.detail-card:hover {
  border-color: var(--lime-strong);
  transform: translateY(-4px);
}

.detail-card > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--navy);
  background: var(--lime);
}

.detail-card svg,
.standard-list svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.detail-card h3 {
  margin: 5px 0 11px;
  color: var(--navy);
  font-size: 1.04rem;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.72;
}

.cargo-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(55px, 9vw, 135px);
  align-items: center;
}

.cargo-copy > p:not(.eyebrow),
.object-copy > p:not(.eyebrow) {
  margin: 27px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.cargo-panel {
  position: relative;
  min-height: 390px;
  padding: 52px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.cargo-panel::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  content: "";
  border: 22px solid var(--lime);
  transform: rotate(18deg);
}

.cargo-number {
  display: block;
  color: var(--lime);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 7.6rem;
  line-height: .9;
}

.cargo-panel > strong {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 2.2rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.cargo-panel > p {
  max-width: 280px;
  margin: 27px 0 12px;
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.55;
}

.cargo-panel > small {
  display: block;
  max-width: 300px;
  color: #aebfca;
  font-size: .68rem;
  line-height: 1.6;
}

.quality-band .section-heading > p {
  color: #b7c6d0;
}

.photo-stories {
  overflow: hidden;
  background: var(--white);
}

.photo-story-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
  margin-top: 56px;
}

.photo-story {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.photo-story img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform .6s ease;
}

.photo-story:hover img {
  transform: scale(1.025);
}

.photo-story figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  color: var(--white);
  background: rgba(7, 26, 43, .91);
  backdrop-filter: blur(8px);
}

.photo-story figcaption strong {
  color: var(--lime);
  font-size: .86rem;
}

.photo-story figcaption span {
  color: #c2d0d8;
  font-size: .72rem;
  line-height: 1.5;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: rgba(255, 255, 255, .12);
}

.quality-item {
  min-height: 260px;
  padding: 31px;
  background: var(--navy);
}

.quality-item > span {
  color: var(--lime);
  font-family: Impact, sans-serif;
  font-size: 2.2rem;
}

.quality-item h3 {
  margin: 31px 0 10px;
  color: var(--white);
  font-size: .97rem;
}

.quality-item p {
  margin: 0;
  color: #aebfca;
  font-size: .78rem;
  line-height: 1.65;
}

.object-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.object-image {
  position: relative;
}

.object-image::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 64%;
  height: 64%;
  content: "";
  background: var(--lime);
}

.object-image img {
  min-height: 580px;
  object-fit: cover;
  object-position: 55% center;
}

.standard-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(55px, 9vw, 135px);
}

.standard-lead {
  color: #b7c6d0;
  line-height: 1.75;
}

.standard-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, .12);
}

.standard-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 104px;
  padding: 20px;
  color: #e8f0f4;
  background: var(--navy);
  font-size: .8rem;
  font-weight: 750;
  line-height: 1.5;
}

.standard-list li span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--navy);
  border-radius: 50%;
  background: var(--lime);
}

.standard-list svg {
  width: 17px;
  stroke-width: 2;
}

@media (max-width: 1080px) {
  .brand-logo {
    width: 200px;
  }

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

  .audience-grid,
  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-list-four {
    grid-template-columns: 1fr 1fr;
  }

  .subhero-grid {
    grid-template-columns: 51% 49%;
  }

  .subhero-copy {
    padding-right: 34px;
  }
}

@media (max-width: 860px) {
  .brand-logo {
    width: 210px;
  }

  .cleaning-teaser-grid,
  .subhero-grid,
  .page-intro-grid,
  .cargo-grid,
  .object-grid,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  .cleaning-teaser-grid,
  .page-intro-grid,
  .cargo-grid,
  .object-grid,
  .standard-grid {
    gap: 52px;
  }

  .cleaning-teaser-image {
    max-width: 650px;
    margin-left: 18px;
  }

  .cleaning-teaser-image img {
    min-height: 450px;
  }

  .subhero-grid {
    min-height: auto;
  }

  .subhero-copy {
    padding: 65px 0 50px;
  }

  .subhero-media {
    min-height: 520px;
    margin: 0 -22px;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }

  .prose-columns {
    columns: auto;
  }

  .process-list-four {
    grid-template-columns: 1fr;
  }

  .process-list-four li {
    min-height: 0;
  }

  .object-image {
    max-width: 650px;
  }

  .object-image img {
    min-height: 450px;
  }

  .photo-story-grid {
    grid-template-columns: 1fr;
  }

  .photo-story,
  .photo-story img {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 190px;
  }

  .footer .brand-logo {
    width: 210px;
  }

  .service-card-grid,
  .detail-card-grid,
  .audience-grid,
  .quality-grid,
  .standard-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 26px;
  }

  .audience-card {
    min-height: 185px;
  }

  .plain-check-grid {
    grid-template-columns: 1fr;
  }

  .cleaning-teaser-image {
    margin-left: 10px;
  }

  .cleaning-teaser-image img {
    min-height: 360px;
  }

  .subhero h1 {
    font-size: clamp(3.05rem, 14.5vw, 4.35rem);
  }

  .subhero-copy > p:not(.eyebrow, .breadcrumb) {
    font-size: .94rem;
  }

  .subhero-media {
    min-height: 390px;
  }

  .subhero-stat {
    right: 14px;
    bottom: 14px;
    min-width: 180px;
    padding: 16px 18px;
  }

  .detail-card {
    grid-template-columns: 50px 1fr;
    min-height: 0;
    gap: 16px;
    padding: 22px 18px;
  }

  .detail-card > span {
    width: 50px;
    height: 50px;
  }

  .detail-card svg {
    width: 23px;
  }

  .cargo-panel {
    min-height: 340px;
    padding: 37px 29px;
  }

  .cargo-number {
    font-size: 6.3rem;
  }

  .object-image img {
    min-height: 360px;
  }

  .photo-story,
  .photo-story img {
    min-height: 340px;
  }

  .photo-story figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 17px;
  }
}

.mobile-menu-shell {
  display: none;
  margin-left: auto;
}

.mobile-menu-shell:not([open]) > .mobile-nav {
  display: none;
}

.mobile-menu-toggle {
  position: relative;
  z-index: 5;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
  place-content: center;
  gap: 6px;
  list-style: none;
}

.mobile-menu-toggle::-webkit-details-marker {
  display: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  background: var(--navy);
  transition: transform .22s ease, opacity .18s ease;
}

.mobile-menu-shell[open] .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-shell[open] .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-shell[open] .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  z-index: 3;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  padding: 18px 22px 25px;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 50px rgba(7, 26, 43, .18);
  animation: menu-open .2s ease both;
}

.mobile-nav > a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 800;
  touch-action: manipulation;
}

.mobile-nav-label {
  margin-top: 10px;
  padding: 13px 0 5px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-nav .mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  padding: 15px 17px;
  border: 0;
  background: var(--lime);
}

.mobile-nav-cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@keyframes menu-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .mobile-menu-shell {
    display: block;
  }
}

.legal-page {
  min-height: 62vh;
  padding: clamp(68px, 8vw, 112px) 0;
  background: var(--white);
}

.legal-page .legal-content {
  width: min(820px, 100%);
}

.legal-page h1 {
  margin: 0 0 30px;
  color: var(--navy);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: .93;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.legal-page h2 {
  margin: 38px 0 12px;
  color: var(--navy);
  font-size: 1.2rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-note {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--lime-strong);
  background: var(--paper);
}

/* Professional responsive refinement */
:root {
  --content-width: 1280px;
  --section-space: clamp(80px, 7vw, 120px);
  --card-radius: 18px;
  --image-radius: 22px;
  --soft-shadow: 0 18px 55px rgba(7, 26, 43, .1);
}

html {
  overflow-x: clip;
}

body {
  overflow-wrap: break-word;
}

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

.container {
  width: min(var(--content-width), calc(100% - clamp(36px, 6vw, 88px)));
}

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

.hero-grid,
.section-heading,
.feature-grid,
.about-grid,
.cleaning-teaser-grid,
.subhero-grid,
.page-intro-grid,
.cargo-grid,
.photo-story-grid,
.object-grid,
.standard-grid,
.contact-shell {
  min-width: 0;
}

.hero-grid > *,
.section-heading > *,
.feature-grid > *,
.about-grid > *,
.cleaning-teaser-grid > *,
.subhero-grid > *,
.page-intro-grid > *,
.cargo-grid > *,
.photo-story-grid > *,
.object-grid > *,
.standard-grid > *,
.contact-shell > * {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: clamp(680px, 76vh, 820px);
}

.hero-copy {
  padding-right: clamp(34px, 4vw, 62px);
}

.hero-visual {
  min-height: 100%;
}

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

.hero h1,
.section h2,
.subhero h1 {
  text-wrap: balance;
}

.hero-lead,
.section-heading > p,
.feature-copy > p,
.cleaning-teaser-copy > p:not(.eyebrow),
.about-copy > p,
.subhero-copy > p:not(.eyebrow, .breadcrumb),
.cargo-copy > p:not(.eyebrow),
.object-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  text-wrap: pretty;
}

.section-heading {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(38px, 6vw, 82px);
}

.feature-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: clamp(44px, 6vw, 86px);
}

.feature-image,
.cleaning-teaser-image,
.object-image {
  width: 100%;
}

.feature-image img,
.cleaning-teaser-image img,
.object-image img {
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 11;
  border-radius: var(--image-radius);
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.feature-image::before {
  border-radius: 0 var(--image-radius) 0 0;
}

.image-label {
  right: 14px;
  bottom: 14px;
  border-radius: 8px;
}

.cleaning-teaser-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(44px, 6vw, 88px);
}

.cleaning-teaser-image img {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.cleaning-teaser-image::before {
  border-radius: var(--image-radius);
}

.about-grid {
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: clamp(46px, 7vw, 100px);
}

.service-card-grid {
  grid-auto-rows: 1fr;
}

.service-card,
.detail-card {
  border-radius: var(--card-radius);
  box-shadow: 0 10px 32px rgba(7, 26, 43, .055);
}

.service-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.service-card .dual-icon,
.detail-card > span {
  border-radius: 15px;
}

.service-card h3 {
  font-size: clamp(1.28rem, 1.8vw, 1.58rem);
}

.detail-card-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.detail-card {
  min-height: 0;
}

.audience-grid {
  gap: 16px;
  border: 0;
  background: transparent;
}

.audience-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: clamp(24px, 2.5vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 26, 43, .05);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.audience-card:hover {
  border-color: var(--lime-strong);
  box-shadow: var(--soft-shadow);
  transform: translateY(-5px);
}

.audience-card::before {
  display: none;
}

.audience-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: var(--navy);
  border-radius: 15px;
  background: var(--lime);
  place-items: center;
}

.audience-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.values span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
}

.values svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--lime-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.photo-story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.photo-story,
.photo-story img {
  min-height: 0;
}

.photo-story {
  aspect-ratio: 16 / 11;
  border-radius: var(--image-radius);
  box-shadow: var(--soft-shadow);
}

.photo-story img {
  width: 100%;
  height: 100%;
}

.photo-story figcaption {
  border-radius: 12px;
}

.page-intro-grid {
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 100px);
}

.prose-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  columns: auto;
}

.prose-columns p {
  margin: 0;
}

.cargo-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(44px, 7vw, 100px);
}

.cargo-panel,
.contact-form {
  border-radius: var(--card-radius);
  box-shadow: var(--soft-shadow);
}

.object-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(44px, 7vw, 96px);
}

.object-image img {
  aspect-ratio: 4 / 3;
}

.standard-grid {
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 7vw, 100px);
}

.contact-shell {
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1.14fr);
  gap: clamp(46px, 7vw, 96px);
}

.contact-form {
  width: 100%;
  padding: clamp(26px, 3.2vw, 42px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 9px;
}

@media (min-width: 1500px) {
  :root {
    --content-width: 1360px;
  }

  .hero-grid {
    min-height: min(850px, calc(100vh - 84px));
  }

  .hero h1 {
    font-size: clamp(5.2rem, 5.7vw, 7rem);
  }

  .subhero-grid,
  .subhero-media {
    min-height: 740px;
  }

  .section-heading > p,
  .feature-copy > p,
  .cleaning-teaser-copy > p:not(.eyebrow),
  .about-copy > p,
  .contact-copy > p:not(.eyebrow) {
    font-size: 1.05rem;
  }
}

@media (max-width: 1200px) {
  .container {
    width: min(1160px, calc(100% - 48px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  }

  .hero-copy {
    padding-right: 34px;
  }

  .section-heading,
  .feature-grid,
  .cleaning-teaser-grid,
  .about-grid,
  .page-intro-grid,
  .cargo-grid,
  .object-grid,
  .standard-grid,
  .contact-shell {
    gap: 48px;
  }

  .subhero-grid {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  }
}

@media (max-width: 980px) {
  :root {
    --section-space: clamp(72px, 9vw, 94px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-shell {
    display: block;
  }

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

  .hero-grid,
  .feature-grid,
  .cleaning-teaser-grid,
  .about-grid,
  .subhero-grid,
  .page-intro-grid,
  .cargo-grid,
  .object-grid,
  .standard-grid,
  .contact-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid,
  .subhero-grid {
    min-height: 0;
  }

  .hero-copy {
    max-width: 780px;
    padding: 72px 0 54px;
  }

  .hero-visual,
  .subhero-media {
    width: 100vw;
    min-height: clamp(440px, 64vw, 650px);
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .hero-visual {
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }

  .subhero-copy {
    max-width: 800px;
    padding: 70px 0 54px;
  }

  .subhero-media {
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  }

  .section-heading,
  .feature-grid,
  .cleaning-teaser-grid,
  .about-grid,
  .page-intro-grid,
  .cargo-grid,
  .object-grid,
  .standard-grid,
  .contact-shell {
    gap: 44px;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p,
  .feature-copy > p,
  .cleaning-teaser-copy > p:not(.eyebrow),
  .about-copy > p,
  .cargo-copy > p:not(.eyebrow),
  .object-copy > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    max-width: 760px;
  }

  .feature-image,
  .cleaning-teaser-image,
  .object-image {
    max-width: none;
    margin: 0;
  }

  .feature-image img,
  .cleaning-teaser-image img,
  .object-image img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .feature-image::before {
    right: -10px;
  }

  .cleaning-teaser-image::before {
    top: -12px;
    left: -12px;
  }

  .object-image::after {
    right: -12px;
    bottom: -12px;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .hero-facts > div:last-child {
    display: grid;
  }

  .service-card-grid,
  .detail-card-grid,
  .audience-grid,
  .quality-grid,
  .process-list-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list-four li,
  .quality-item {
    min-height: 0;
  }

  .photo-story-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .photo-story {
    aspect-ratio: 16 / 9;
  }

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

  .contact-copy {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  :root {
    --section-space: 72px;
    --card-radius: 15px;
    --image-radius: 17px;
  }

  .container {
    width: calc(100% - 32px);
  }

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

  .brand-logo {
    width: min(190px, 55vw);
  }

  .hero-copy,
  .subhero-copy {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14.2vw, 4.75rem);
  }

  .subhero h1 {
    font-size: clamp(2.9rem, 12.8vw, 4.2rem);
  }

  .hero-lead,
  .subhero-copy > p:not(.eyebrow, .breadcrumb) {
    font-size: .96rem;
    line-height: 1.7;
  }

  .hero-visual,
  .subhero-media {
    min-height: clamp(350px, 94vw, 500px);
  }

  .hero-facts,
  .service-card-grid,
  .detail-card-grid,
  .audience-grid,
  .quality-grid,
  .process-list-four,
  .standard-list,
  .prose-columns,
  .plain-check-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-facts > div {
    min-height: 50px;
  }

  .section h2 {
    font-size: clamp(2.55rem, 11.5vw, 3.75rem);
  }

  .section-heading,
  .feature-grid,
  .cleaning-teaser-grid,
  .about-grid,
  .page-intro-grid,
  .cargo-grid,
  .object-grid,
  .standard-grid,
  .contact-shell {
    gap: 34px;
  }

  .feature-image img,
  .cleaning-teaser-image img,
  .object-image img {
    aspect-ratio: 4 / 3;
  }

  .service-card {
    padding: 25px;
  }

  .service-card h3 {
    margin-top: 22px;
  }

  .detail-card {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 22px;
  }

  .detail-card > span {
    width: 54px;
    height: 54px;
  }

  .audience-card {
    padding: 25px;
  }

  .audience-icon {
    margin-bottom: 22px;
  }

  .photo-story {
    aspect-ratio: 4 / 3;
  }

  .photo-story figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cargo-panel {
    min-height: 0;
    padding: 36px 28px 70px;
  }

  .contact-form {
    padding: 24px 19px;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  :root {
    --section-space: 62px;
  }

  .container {
    width: calc(100% - 26px);
  }

  .brand-logo {
    width: min(170px, 54vw);
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14.7vw, 4rem);
  }

  .subhero h1 {
    font-size: clamp(2.55rem, 13.2vw, 3.65rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .section-link-row .button {
    width: 100%;
  }

  .hero-visual,
  .subhero-media {
    min-height: 330px;
  }

  .hero-badge {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .detail-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 19px 17px;
  }

  .detail-card > span {
    width: 46px;
    height: 46px;
  }

  .detail-card svg {
    width: 22px;
  }

  .values {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .values span {
    justify-content: flex-start;
  }

  .subhero-stat {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    max-width: calc(100% - 24px);
  }

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

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* Final responsive, sector and accessibility optimization */
:root {
  --focus-ring: 0 0 0 4px rgba(183, 242, 58, .34);
  --header-height: 84px;
}

html {
  scrollbar-gutter: stable;
}

body {
  min-width: 280px;
  -webkit-font-smoothing: antialiased;
}

p,
li {
  hyphens: auto;
}

h1,
h2,
h3,
.button,
.eyebrow {
  hyphens: none;
}

section[id],
article[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--navy);
  border-radius: 8px;
  outline: 3px solid var(--navy);
  background: var(--lime);
  font-size: .82rem;
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--lime-strong);
  outline-offset: 3px;
}

.site-header {
  transition: box-shadow .22s ease, background-color .22s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 32px rgba(7, 26, 43, .09);
}

.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.mobile-nav a[aria-current="page"] {
  color: var(--navy);
  border-color: var(--lime-strong);
  box-shadow: inset 4px 0 0 var(--lime-strong);
  padding-left: 14px;
}

.mobile-nav {
  max-height: calc(100vh - var(--header-height));
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.button,
.header-cta,
.mobile-menu-toggle {
  -webkit-tap-highlight-color: transparent;
}

.button {
  min-height: 52px;
}

.hero-home .hero-visual > img {
  object-position: 56% center;
}

.hero-home .hero-copy {
  padding-block: clamp(58px, 7vh, 78px);
}

.hero-home .hero-badge {
  max-width: min(330px, calc(100% - 48px));
}

.sector-switch {
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(183, 242, 58, .08), transparent 34%),
    var(--mist);
}

.sector-heading {
  align-items: end;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: clamp(40px, 5vw, 62px);
}

.sector-card {
  position: relative;
  display: flex;
  min-height: clamp(340px, 30vw, 430px);
  isolation: isolate;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--image-radius);
  background: var(--navy);
  box-shadow: var(--soft-shadow);
}

.sector-card > img,
.sector-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sector-card > img {
  z-index: -2;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .65, .25, 1);
}

.sector-card-logistics > img {
  object-position: 59% center;
}

.sector-card-cleaning > img {
  object-position: 55% center;
}

.sector-card-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 26, 43, .05) 12%, rgba(7, 26, 43, .92) 100%),
    linear-gradient(90deg, rgba(7, 26, 43, .4), transparent 64%);
}

.sector-card-content {
  display: grid;
  width: 100%;
  grid-template-columns: 58px minmax(0, 1fr) 38px;
  gap: 18px;
  align-items: end;
  padding: clamp(24px, 3.2vw, 38px);
}

.sector-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--navy);
  border-radius: 15px;
  background: var(--lime);
  place-items: center;
}

.sector-card-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.sector-card-copy {
  display: grid;
  gap: 7px;
}

.sector-card-copy small {
  color: var(--lime);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sector-card-copy strong {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.sector-card-copy > span {
  max-width: 460px;
  color: #d4e0e7;
  font-size: .78rem;
  line-height: 1.55;
}

.sector-card-arrow {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform .25s ease;
}

.contact-meta a,
.contact-meta > span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.contact-meta a > span:last-child,
.contact-meta > span > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.contact-meta-icon {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--navy);
  border-radius: 12px;
  background: var(--lime);
  place-items: center;
}

.contact-meta-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-meta strong {
  overflow-wrap: anywhere;
}

.contact-meta a {
  border-radius: 12px;
  transition: color .2s ease, transform .2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 142px;
}

.contact-form :is(input, select, textarea):user-invalid {
  border-color: #c84949;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.page-logistics .subhero-media img {
  object-position: 61% center;
}

.page-cleaning .subhero-media img {
  object-position: 53% center;
}

img[src$="warehouse-logistics.webp"] {
  object-position: 56% center;
}

img[src$="glass-cleaning.webp"] {
  object-position: 58% center;
}

img[src$="office-cleaning.webp"] {
  object-position: 60% center;
}

img[src$="delivery-handover.webp"] {
  object-position: 50% center;
}

@media (hover: hover) and (pointer: fine) {
  .sector-card:hover > img {
    transform: scale(1.045);
  }

  .sector-card:hover .sector-card-arrow {
    transform: translateX(6px);
  }

  .contact-meta a:hover {
    color: var(--lime);
    transform: translateX(3px);
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero-grid {
    min-height: max(620px, calc(100svh - var(--header-height)));
  }

  .hero-home .hero-copy {
    padding-block: 46px;
  }

  .hero-home h1 {
    font-size: clamp(4.1rem, 5.8vw, 5.8rem);
  }

  .hero-home .hero-facts {
    margin-top: 30px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .sector-card {
    min-height: clamp(320px, 41vw, 390px);
  }

  .hero-home .hero-copy {
    padding-block: 66px 52px;
  }

  .hero-home .hero-visual > img {
    object-position: 54% center;
  }

  .page-cleaning .subhero-media img {
    object-position: 50% center;
  }
}

@media (max-width: 760px) {
  .sector-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sector-card {
    min-height: clamp(330px, 72vw, 430px);
  }

  .sector-card-content {
    grid-template-columns: 54px minmax(0, 1fr) 32px;
    gap: 15px;
  }

  .sector-card-icon {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem;
  }

  .hero-home .hero-copy {
    padding-block: 54px 46px;
  }

  .hero-home .hero-visual > img {
    object-position: 53% center;
  }

  .page-logistics .subhero-media img {
    object-position: 64% center;
  }

  .photo-story img[src$="glass-cleaning.webp"],
  .photo-story img[src$="office-cleaning.webp"] {
    object-position: 58% center;
  }
}

@media (max-width: 480px) {
  .sector-card {
    min-height: 365px;
  }

  .sector-card-content {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 22px;
  }

  .sector-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .sector-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .sector-card-arrow {
    display: none;
  }

  .sector-card-copy strong {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .contact-meta a,
  .contact-meta > span {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;
  }

  .contact-meta-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 22px);
  }

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

  .subhero h1 {
    font-size: 2.46rem;
  }

  .button {
    gap: 10px;
    padding-inline: 16px;
    font-size: .8rem;
  }

  .sector-card {
    min-height: 350px;
  }

  .sector-card-content {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 19px;
  }

  .sector-card-icon {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: #9ba9b1;
  }

  .button-secondary,
  .service-card,
  .detail-card,
  .audience-card {
    border-width: 2px;
  }
}

/* Clear service icons, wide header and full-bleed home hero */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.privacy-check a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--lime-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.footer-contact {
  display: grid;
  gap: 7px;
}

.footer-main .footer-contact a {
  color: #e9f0f4;
  font-size: .75rem;
  font-weight: 750;
}

.footer-main a[aria-current="page"] {
  color: var(--lime);
}

.dual-icon,
.detail-card > span,
.audience-icon,
.fact-icon,
.sector-card-icon,
.contact-meta-icon,
.check-list li span,
.standard-list li span {
  color: var(--navy);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dual-icon {
  width: 48px;
  height: 48px;
}

.dual-icon svg,
.detail-card > span svg,
.audience-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.45;
}

.service-card h3 {
  margin-top: 20px;
}

.detail-card {
  grid-template-columns: 52px minmax(0, 1fr);
}

.detail-card > span {
  width: 52px;
  height: 52px;
  align-items: start;
}

.audience-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  justify-content: start;
}

.fact-icon {
  width: 38px;
  height: 38px;
}

.fact-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}

.sector-card-content {
  grid-template-columns: 48px minmax(0, 1fr) 38px;
  align-items: center;
}

.sector-card-icon {
  width: 48px;
  height: 48px;
  color: var(--lime);
}

.sector-card-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.5;
}

.contact-meta a,
.contact-meta > span {
  grid-template-columns: 34px minmax(0, 1fr);
}

.contact-meta-icon {
  width: 34px;
  height: 34px;
  color: var(--lime);
}

.contact-meta-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.6;
}

.check-list li span,
.standard-list li span {
  width: 24px;
  height: 24px;
  color: var(--lime);
}

.check-list li span svg,
.standard-list li span svg {
  width: 20px;
  height: 20px;
}

.plain-check-grid svg {
  width: 23px;
  min-width: 23px;
  height: 23px;
  stroke-width: 1.7;
}

.legal-page {
  background:
    linear-gradient(135deg, rgba(183, 242, 58, .08), transparent 34%),
    var(--paper);
}

.legal-page .legal-content {
  width: min(900px, 100%);
  margin-inline: auto;
}

.legal-page .legal-content-wide {
  width: min(980px, 100%);
}

.legal-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.legal-card h2 {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-page address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.legal-page a:not(.breadcrumb a) {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--lime-strong);
  text-underline-offset: 3px;
}

.legal-page .breadcrumb a {
  color: inherit;
}

.legal-note-warning {
  color: #483706;
  border-left-color: #d5a817;
  background: #fff8dd;
}

.legal-note-warning p {
  margin: 8px 0 0;
  color: #594814;
}

.legal-version {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .75rem;
  text-align: right;
}

@media (min-width: 981px) {
  .site-header .header-inner {
    width: min(1480px, calc(100% - 56px));
    min-height: 88px;
  }

  .site-header .brand-logo {
    width: 230px;
  }

  .site-header .desktop-nav {
    gap: clamp(18px, 1.8vw, 32px);
  }

  .site-header .header-cta {
    margin-left: clamp(22px, 2.2vw, 34px);
  }

  .hero-home .hero-grid {
    width: calc(100vw - max(28px, calc((100vw - 1360px) / 2)));
    max-width: none;
    grid-template-columns: minmax(420px, .84fr) minmax(0, 1.16fr);
    margin-right: 0;
    margin-left: max(28px, calc((100vw - 1360px) / 2));
  }

  .hero-home .hero-copy {
    max-width: 680px;
    padding-right: clamp(40px, 4vw, 72px);
  }

  .hero-home .hero-visual {
    min-height: clamp(700px, 78vh, 850px);
  }

  .hero-home .hero-visual > img {
    object-position: 52% center;
  }
}

@media (max-width: 700px) {
  .legal-page {
    padding-block: 58px;
  }

  .legal-card {
    padding: 25px 20px;
  }

  .legal-card h2 {
    margin-top: 30px;
    padding-top: 27px;
  }

  .detail-card {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .detail-card > span {
    width: 45px;
    height: 45px;
  }

  .detail-card > span svg,
  .dual-icon svg,
  .audience-icon svg {
    width: 36px;
    height: 36px;
  }

  .sector-card-content {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .sector-card-icon {
    width: 42px;
    height: 42px;
  }

  .sector-card-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* Calmer headlines and consistent footer logo */
.hero h1,
.subhero h1,
.section h2 {
  overflow-wrap: normal;
  word-break: normal;
}

.section h2 {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.footer .brand {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
}

@media (max-width: 980px) {
  .section-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(20px, 4vw, 28px);
  }

  .section-heading > p {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(2.7rem, 11vw, 3.65rem);
    line-height: .96;
  }

  .subhero h1 {
    font-size: clamp(2.5rem, 10vw, 3.35rem);
    line-height: .98;
  }

  .section h2 {
    font-size: clamp(1.85rem, 7.6vw, 2.45rem);
    line-height: 1.06;
  }
}
