:root {
  --brand: #0459b8;
  --brand-dark: #07366f;
  --cyan: #13c8e8;
  --mint: #66d3b6;
  --sun: #ffcf55;
  --orange: #23b16a;
  --ink: #102033;
  --muted: #66758a;
  --line: #dbe7f1;
  --soft: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 32, 51, 0.14);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.86);
  --glass-dark: rgba(7, 54, 111, 0.52);
  --glass-border: rgba(255, 255, 255, 0.48);
  --glass-shadow: 0 22px 60px rgba(16, 32, 51, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(135deg, rgba(19, 200, 232, 0.08), transparent 28%),
    linear-gradient(225deg, rgba(102, 211, 182, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 48%, #ffffff 100%);
}

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

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

h1,
h2,
h3 {
  font-weight: 400;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--brand-dark);
  text-transform: uppercase;
}

.brand img {
  width: 150px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 999px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  height: 585px;
  background:
    linear-gradient(90deg, rgba(2, 52, 111, 0.9) 0%, rgba(11, 119, 206, 0.55) 42%, rgba(255, 255, 255, 0.02) 72%),
    url("assets/spray-bottle.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: -2;
  width: min(68vw, 820px);
  height: 585px;
  background: linear-gradient(128deg, rgba(4, 89, 184, 0.96), rgba(19, 200, 232, 0.84));
  clip-path: polygon(0 0, 78% 0, 100% 58%, 58% 100%, 0 72%);
  opacity: 0.98;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 118px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 48px;
  align-items: center;
}

.hero-inner::before {
  content: "";
  position: absolute;
  top: -132px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 100px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 28%, 38% 100%, 0 40%);
  transform: translateX(-50%);
}

.hero-inner::after {
  content: "";
  position: absolute;
  left: max(-18vw, -210px);
  bottom: 18px;
  z-index: -1;
  width: min(62vw, 720px);
  height: 210px;
  background: linear-gradient(125deg, var(--cyan), var(--brand));
  border-radius: 0 0 82px 0;
  clip-path: polygon(0 0, 100% 52%, 76% 100%, 0 72%);
  opacity: 0.98;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 3.65rem;
  line-height: 0.98;
  max-width: 650px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

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

.hero-dots {
  display: flex;
  gap: 6px;
  margin-top: 36px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.hero-dots span:first-child {
  background: var(--cyan);
  border-color: var(--cyan);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 2px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.button.primary {
  color: var(--brand-dark);
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.hero-card {
  align-self: end;
  margin-top: 220px;
  margin-left: auto;
  max-width: 390px;
  padding: 30px;
  background: var(--glass-strong);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  border-top: 4px solid rgba(19, 200, 232, 0.45);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(96deg, rgba(7, 54, 111, 0.96), rgba(4, 89, 184, 0.82) 52%, rgba(19, 200, 232, 0.62)),
    url("assets/spray-bottle.jpg") center right / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -86px;
  width: 58%;
  height: 190px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 70px 0 0 0;
  transform: skewY(-11deg);
}

.page-hero .container {
  z-index: 1;
}

.page-hero h1,
.contact-band h1 {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-card h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.7rem;
  line-height: 1.05;
}

.hero-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.hero-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 900;
}

.section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.section.alt {
  background:
    linear-gradient(172deg, #ffffff 0 11%, transparent 11%),
    linear-gradient(135deg, #f4fbff, #eef7fb);
}

.section.alt::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 90px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 28%, 0 100%);
}

.home-dark {
  color: var(--white);
  isolation: isolate;
  padding: 108px 0 98px;
}

.home-dark::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -74px;
  z-index: 0;
  width: 54%;
  height: 170px;
  background: rgba(19, 200, 232, 0.2);
  border-radius: 70px 0 0 0;
  transform: skewY(-11deg);
}

.quick-dark {
  background:
    linear-gradient(112deg, rgba(7, 54, 111, 0.98), rgba(4, 89, 184, 0.94) 56%, rgba(19, 200, 232, 0.62)),
    url("assets/spray-bottle.jpg") center right / cover no-repeat;
}

.stats-dark {
  background:
    linear-gradient(110deg, rgba(2, 38, 82, 0.98), rgba(7, 54, 111, 0.94) 52%, rgba(4, 89, 184, 0.76)),
    url("assets/cleaning-team.jpg") center / cover no-repeat;
}

.home-dark h2 {
  color: var(--white);
}

.home-dark .kicker,
.contact-band .kicker,
.cta-band .kicker {
  color: var(--orange);
}

.home-dark .kicker::before,
.contact-band .kicker::before,
.cta-band .kicker::before {
  background: var(--orange);
}

.container {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  z-index: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--cyan);
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1.05;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 62px;
  align-items: start;
}

.welcome-grid::before {
  content: "";
  position: absolute;
  right: -84px;
  top: -56px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(19, 200, 232, 0.18), rgba(102, 211, 182, 0.16));
  border-radius: 50%;
  z-index: -1;
}

.toc-panel {
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 54, 111, 0.76), rgba(4, 89, 184, 0.62) 58%, rgba(19, 200, 232, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.26);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.toc-panel h2 {
  color: var(--white);
}

.toc-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
  text-transform: uppercase;
}

.toc-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.toc-list a::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--sun);
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.quote {
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 4px solid var(--mint);
  color: var(--brand-dark);
  background:
    linear-gradient(90deg, rgba(238, 250, 247, 0.82), rgba(248, 252, 255, 0.76));
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.director-inline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 4px;
  padding: 18px 22px;
  color: var(--brand-dark);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(238, 248, 255, 0.72));
  border-left: 4px solid var(--cyan);
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.director-inline i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  border-radius: 50%;
  font-size: 1.35rem;
}

.director-inline span,
.director-inline strong {
  display: block;
}

.director-inline span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.director-inline strong {
  font-size: 1.25rem;
  line-height: 1.1;
}

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

.number-card {
  min-height: 188px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 251, 255, 0.68));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.number-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 92px;
  height: 92px;
  background: linear-gradient(135deg, rgba(19, 200, 232, 0.24), rgba(4, 89, 184, 0.18));
  border-radius: 50%;
}

.number-card strong {
  display: block;
  color: var(--brand);
  font-size: 2.4rem;
  line-height: 1;
}

.number-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.stats-dark .number-card {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 249, 253, 0.76));
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.stats-dark .number-card::after {
  background: linear-gradient(135deg, rgba(19, 200, 232, 0.24), rgba(4, 89, 184, 0.16));
}

.stats-dark .number-card strong {
  color: var(--brand);
  font-size: 3rem;
}

.stats-dark .number-card span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.statement {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 251, 253, 0.7));
  border: 1px solid var(--glass-border);
  border-top: 5px solid var(--cyan);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.statement > i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  border-radius: 50%;
  font-size: 1.8rem;
}

.statement::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 128px;
  height: 128px;
  background: linear-gradient(135deg, rgba(4, 89, 184, 0.12), rgba(19, 200, 232, 0.16));
  transform: rotate(12deg);
}

.statement h3 {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 1.8rem;
}

.statement p {
  margin: 0 0 14px;
  color: var(--muted);
}

.team-strip {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: center;
}

.vertical-name {
  min-height: 520px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
}

.stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--brand-dark);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.team-photo {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(7, 54, 111, 0.9), rgba(7, 54, 111, 0.1)),
    url("assets/cleaning-desk.jpg") center / cover no-repeat;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.director {
  padding: 42px;
  background: linear-gradient(135deg, rgba(7, 54, 111, 0.72), rgba(4, 89, 184, 0.52));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.director h2 {
  color: var(--white);
}

.director p {
  color: rgba(255, 255, 255, 0.78);
  margin: 12px 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.service-card {
  min-height: 430px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: var(--brand-dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(16, 32, 51, 0.14);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 28px 68px rgba(16, 32, 51, 0.22);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 32, 51, 0.06), rgba(16, 32, 51, 0.76)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  z-index: 1;
  transition: background 220ms ease, backdrop-filter 220ms ease;
}

.service-card:hover::before,
.service-card:focus-visible::before {
  background:
    linear-gradient(180deg, rgba(16, 32, 51, 0.2), rgba(16, 32, 51, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 1;
  width: 118px;
  height: 72px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  transition: transform 220ms ease, background 220ms ease;
}

.service-card:hover::after,
.service-card:focus-visible::after {
  transform: translate(-8px, 8px);
  background: rgba(19, 200, 232, 0.22);
}

.service-card:nth-child(1) {
  background: url("assets/cleaning-team.jpg") center 42% / cover no-repeat;
}

.service-card:nth-child(2) {
  background: url("assets/spray-bottle.jpg") 72% center / cover no-repeat;
}

.service-card:nth-child(3) {
  background: url("assets/cleaning-desk.jpg") center 38% / cover no-repeat;
}

.service-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(4, 89, 184, 0.2), rgba(102, 211, 182, 0.18)),
    url("assets/cleaning-team.jpg") 62% center / cover no-repeat;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 320px;
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: left;
  text-shadow: 0 12px 28px rgba(7, 54, 111, 0.38);
}

.service-card > i {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.95);
  padding: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-size: 4rem;
  box-shadow: 0 18px 44px rgba(7, 54, 111, 0.22);
  text-shadow: 0 10px 24px rgba(7, 54, 111, 0.34);
}

.service-card p {
  position: relative;
  z-index: 2;
  max-height: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 460px;
  font-size: 1.04rem;
  text-align: left;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 220ms ease, opacity 220ms ease, margin-top 220ms ease, transform 220ms ease;
}

.service-card:hover p,
.service-card:focus-within p,
.service-card:focus-visible p {
  max-height: 220px;
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}

.service-card h3::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 16px;
  background: var(--cyan);
}

.service-summary {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  margin-top: 46px;
}

.service-summary img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 10%, 88% 100%, 0 92%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-media img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 7%, 93% 100%, 0 94%);
}

.director-media img {
  object-position: center top;
}

.welcome-grid {
  align-items: center;
}

.quick-services,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

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

.quick-service,
.why-card {
  min-height: 210px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 251, 254, 0.68));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.quick-service::after,
.why-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(19, 200, 232, 0.16), rgba(4, 89, 184, 0.12));
  border-radius: 50%;
}

.quick-service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quick-service i,
.why-card i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(19, 200, 232, 0.12), rgba(4, 89, 184, 0.12));
  border-radius: 50%;
  font-size: 2.2rem;
}

.why-card i {
  width: 66px;
  height: 66px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  font-size: 1.8rem;
}

.quick-service strong,
.why-card h3 {
  position: relative;
  z-index: 1;
  color: var(--brand-dark);
  font-size: 1.25rem;
  line-height: 1.1;
}

.quick-service p,
.why-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
}

.home-dark .quick-service {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 249, 253, 0.76));
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.home-dark .quick-service:hover,
.home-dark .quick-service:focus-visible {
  transform: translateY(-8px);
  background: var(--white);
  border-color: rgba(19, 200, 232, 0.56);
}

.home-dark .quick-service::after {
  background: linear-gradient(135deg, rgba(19, 200, 232, 0.22), rgba(4, 89, 184, 0.14));
}

.home-dark .quick-service i {
  width: 86px;
  height: 86px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  font-size: 2.55rem;
}

.home-dark .quick-service strong {
  color: var(--brand-dark);
}

.home-dark .quick-service p {
  color: var(--muted);
}

.why-section {
  background:
    linear-gradient(118deg, rgba(7, 54, 111, 0.04), rgba(19, 200, 232, 0.08) 48%, transparent 48%);
}

.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

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

.why-visual {
  position: relative;
  min-height: 520px;
}

.why-visual::before {
  content: "";
  position: absolute;
  inset: 42px -18px -18px 38px;
  background: linear-gradient(135deg, var(--cyan), var(--brand));
  border-radius: var(--radius);
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 92%);
}

.why-visual img {
  position: relative;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  clip-path: polygon(0 0, 100% 8%, 90% 100%, 0 92%);
  box-shadow: var(--shadow);
}

.why-badge {
  position: absolute;
  left: -26px;
  bottom: 36px;
  max-width: 230px;
  padding: 20px 22px;
  color: var(--brand-dark);
  background: var(--glass-strong);
  border-left: 4px solid var(--cyan);
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

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

.why-badge strong {
  font-size: 1.45rem;
  line-height: 1;
}

.why-badge span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.service-summary h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 2.2rem;
  line-height: 1.05;
}

.service-summary p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.tagline {
  margin-top: 18px;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-band {
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(7, 54, 111, 0.96), rgba(4, 89, 184, 0.86) 55%, rgba(19, 200, 232, 0.72)),
    url("assets/cleaning-team.jpg") center / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.contact-band h2,
.contact-band h1 {
  color: var(--white);
}

.contact-band p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 18px 20px;
  color: var(--brand-dark);
  background: var(--glass-strong);
  font-weight: 800;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-page {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-form-grid.form-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-form,
.map-panel {
  padding: 34px;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  border-top: 4px solid var(--cyan);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.contact-form label {
  display: block;
  margin: 18px 0 7px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(248, 251, 253, 0.72);
  border: 1px solid rgba(219, 231, 241, 0.78);
  border-radius: var(--radius);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-button {
  margin-top: 20px;
  color: var(--white);
  background: var(--brand);
}

.map-panel iframe {
  width: 100%;
  min-height: 420px;
  margin-top: 20px;
  border: 0;
  border-radius: var(--radius);
}

.map-section {
  padding-top: 96px;
}

.map-wide {
  margin-top: 28px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 251, 255, 0.68));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.map-wide iframe {
  min-height: 560px;
  clip-path: polygon(0 0, 100% 4%, 96% 100%, 0 96%);
}

.contact-note {
  align-self: stretch;
}

.map-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 54, 111, 0.98), rgba(4, 89, 184, 0.9) 58%, rgba(19, 200, 232, 0.72)),
    url("assets/cleaning-desk.jpg") center / cover no-repeat;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -90px;
  width: 320px;
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(-11deg);
  border-radius: var(--radius);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.cta-inner h2 {
  max-width: 680px;
  color: var(--white);
}

.footer {
  padding: 56px 0 0;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, var(--brand-dark), #062b57 58%, #03488f);
  border-top: 0;
  font-size: 0.86rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -58px;
  right: -10%;
  width: 56%;
  height: 140px;
  background: rgba(255, 255, 255, 0.1);
  transform: skewY(-9deg);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand img {
  width: 150px;
  height: 118px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: brightness(0) invert(1);
  transform: translateY(-18px);
}

.footer-brand strong,
.footer-column h3 {
  color: var(--white);
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 300px;
  margin: 8px 0 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  width: min(1160px, calc(100% - 32px));
  margin: 38px auto 0;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom a {
  color: var(--white);
  font-weight: 900;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

@media (max-width: 920px) {
  .nav {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .brand {
    flex: 1;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 12px 0 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: transparent;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 4px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    height: 560px;
    background-position: center right;
    background:
      linear-gradient(90deg, rgba(2, 52, 111, 0.82) 0%, rgba(11, 119, 206, 0.36) 50%, rgba(255, 255, 255, 0) 88%),
      url("assets/spray-bottle.jpg") center right / cover no-repeat;
  }

  .hero::after {
    width: 72%;
    height: 560px;
    background: linear-gradient(128deg, rgba(4, 89, 184, 0.78), rgba(19, 200, 232, 0.5));
    clip-path: polygon(0 0, 82% 0, 100% 46%, 46% 100%, 0 76%);
    opacity: 0.84;
  }

  .hero-inner,
  .content-grid,
  .split,
  .team-strip,
  .service-summary,
  .why-layout,
  .cta-inner,
  .contact-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-inner {
    padding: 82px 0 88px;
  }

  .hero-inner::before {
    top: -84px;
    height: 68px;
    clip-path: polygon(0 0, 100% 0, 100% 42%, 34% 100%, 0 58%);
  }

  .hero-inner::after {
    left: -30px;
    bottom: 0;
    width: 48vw;
    height: 100px;
    opacity: 0.58;
  }

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

  .page-hero h1,
  .contact-band h1 {
    font-size: 2.8rem;
  }

  .hero-card {
    margin-top: 48px;
    margin-left: 0;
  }

  .numbers,
  .quick-services,
  .why-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-card {
    min-height: 360px;
  }

  .toc-panel {
    clip-path: none;
  }

  .vertical-name,
  .team-photo {
    min-height: 360px;
  }

  .page-media img {
    min-height: 320px;
  }

  .why-visual,
  .why-visual img {
    min-height: 380px;
    height: 380px;
  }

  .why-badge {
    left: 18px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 132px;
    height: 48px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    font-size: 0.72rem;
  }

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

  .hero {
    min-height: 790px;
  }

  .hero::before,
  .hero::after {
    height: 610px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 52, 111, 0.76) 0%, rgba(11, 119, 206, 0.28) 54%, rgba(255, 255, 255, 0) 92%),
      url("assets/spray-bottle.jpg") 68% center / cover no-repeat;
  }

  .hero::after {
    width: 58%;
    background: linear-gradient(128deg, rgba(4, 89, 184, 0.68), rgba(19, 200, 232, 0.42));
    clip-path: polygon(0 0, 74% 0, 100% 42%, 42% 100%, 0 76%);
    opacity: 0.74;
  }

  .hero-inner::after {
    width: 36vw;
    height: 72px;
    opacity: 0.44;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

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

  .hero-card {
    padding: 24px;
  }

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

  .section {
    padding: 66px 0;
  }

  .section h2 {
    font-size: 2.1rem;
  }

  .numbers,
  .services-grid,
  .quick-services,
  .why-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
    padding: 28px;
  }

  .service-card h3 {
    font-size: 1.55rem;
  }

  .service-card > i {
    font-size: 3rem;
  }

  .why-visual,
  .why-visual img {
    min-height: 320px;
    height: 320px;
  }

  .why-visual::before {
    inset: 28px -10px -12px 26px;
  }

  .why-badge {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
      opacity 720ms ease,
      transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  [data-reveal="left"] {
    transform: translate3d(-42px, 0, 0);
  }

  [data-reveal="right"] {
    transform: translate3d(42px, 0, 0);
  }

  [data-reveal="zoom"] {
    transform: scale(0.96);
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
