:root {
  --navy: #0d2434;
  --navy-2: #15384b;
  --ink: #142b3a;
  --text: #526977;
  --teal: #079c98;
  --teal-dark: #057873;
  --mint: #70d6ad;
  --aqua: #e7f7f5;
  --sky: #eef7fa;
  --white: #fff;
  --surface: #f6fafb;
  --line: #d2e0e5;
  --line-dark: #b8cbd2;
  --warning: #e5a742;
  --shadow: 0 24px 62px rgba(12, 44, 60, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; text-wrap: balance; }
h1 { margin-bottom: 1.35rem; font-size: clamp(2.7rem, 8.2vw, 5rem); font-weight: 780; letter-spacing: -.065em; }
h2 { margin-bottom: 1.2rem; font-size: clamp(2.15rem, 5.8vw, 3.65rem); font-weight: 760; letter-spacing: -.055em; }
h3 { margin-bottom: .65rem; font-size: 1.05rem; letter-spacing: -.02em; }
p { color: var(--text); }
ul, ol { margin-top: 0; }
::selection { background: #a8e3d2; color: var(--navy); }
:focus-visible { outline: 3px solid #ec9e27; outline-offset: 4px; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(5rem, 9vw, 8rem); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: white;
  color: var(--navy);
  font-weight: 850;
  transform: translateY(-180%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: var(--teal-dark);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow > span { width: 1.4rem; height: .42rem; background: repeating-linear-gradient(90deg, var(--teal) 0 3px, transparent 3px 6px); }
.eyebrow-light { color: #89e3c4; }
.eyebrow-light > span { background: repeating-linear-gradient(90deg, #89e3c4 0 3px, transparent 3px 6px); }
.section-heading > p:not(.eyebrow) { max-width: 43rem; font-size: 1.02rem; }
.centered { max-width: 49rem; margin: 0 auto 3rem; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p:last-child { margin-inline: auto; }
.heading-row { display: grid; gap: 1rem; margin-bottom: 2.8rem; }

.button {
  min-height: 3.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  border: 1px solid var(--teal);
  border-radius: 3px;
  background: var(--teal);
  color: white;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 11px 25px rgba(7,156,152,.18);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.button:hover { border-color: var(--teal-dark); background: var(--teal-dark); transform: translateY(-2px); }
.button-outline { border-color: #abc1c9; background: transparent; color: var(--navy); box-shadow: none; }
.button-outline:hover { border-color: var(--navy); background: var(--navy); color: white; }
.button-light { border-color: white; background: white; color: var(--navy); box-shadow: none; }
.button-light:hover { border-color: #dff5ef; background: #dff5ef; color: var(--navy); }
.button-small { min-height: 2.75rem; padding: .65rem .95rem; font-size: .75rem; box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--teal-dark); font-weight: 820; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.header-inner { min-height: 4.8rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .68rem; color: var(--navy); text-decoration: none; }
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-size: .94rem; font-weight: 850; line-height: 1.15; letter-spacing: -.025em; }
.brand strong b { color: var(--teal); }
.brand small { margin-top: .18rem; color: #6f8590; font-size: .51rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.brand-mark { position: relative; width: 2.45rem; height: 2.45rem; display: block; border-radius: 3px; background: var(--navy); }
.brand-mark::before { position: absolute; inset: .55rem; border: 2px solid white; content: ""; }
.brand-mark i { position: absolute; background: var(--mint); }
.brand-mark i:nth-child(1) { top: .25rem; right: .25rem; width: .55rem; height: 2px; }.brand-mark i:nth-child(2) { top: .25rem; right: .25rem; width: 2px; height: .55rem; }.brand-mark i:nth-child(3) { right: .73rem; bottom: .72rem; width: .45rem; height: .45rem; border-radius: 50%; }
.nav-toggle { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 2px; background: white; }
.nav-toggle > span:last-child,
.nav-toggle > span:last-child::before,
.nav-toggle > span:last-child::after {
  width: 1.2rem;
  height: 2px;
  display: block;
  background: var(--navy);
  content: "";
  transition: transform .2s, opacity .2s;
}
.nav-toggle > span:last-child { position: relative; }
.nav-toggle > span:last-child::before { position: absolute; top: -.38rem; }
.nav-toggle > span:last-child::after { position: absolute; top: .38rem; }
.nav-toggle[aria-expanded="true"] > span:last-child { background: transparent; }
.nav-toggle[aria-expanded="true"] > span:last-child::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:last-child::after { top: 0; transform: rotate(-45deg); }
.site-nav {
  position: fixed;
  inset: 4.8rem 0 auto;
  max-height: calc(100vh - 4.8rem);
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: .1rem;
  overflow-y: auto;
  padding: 1.2rem 1rem 1.6rem;
  border-bottom: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: flex; }
.site-nav > a:not(.button) { padding: .8rem .6rem; color: #344e5d; font-size: .88rem; font-weight: 720; text-decoration: none; }
.site-nav > a:not(.button):hover { color: var(--teal-dark); }

.hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 7.2rem) 4rem; background: white; }
.hero::before { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background-image: linear-gradient(rgba(23,76,94,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(23,76,94,.055) 1px, transparent 1px); background-size: 32px 32px; content: ""; mask-image: linear-gradient(to left, #000, transparent); }
.hero::after { position: absolute; top: 13%; right: -5rem; width: 17rem; height: 17rem; border: 3rem solid rgba(7,156,152,.05); border-radius: 50%; content: ""; }
.hero-layout { position: relative; z-index: 2; display: grid; gap: 3.5rem; align-items: center; }
.hero h1 em { display: block; color: var(--teal-dark); font-style: normal; font-weight: 530; }
.hero-lead { max-width: 42rem; margin-bottom: 1.5rem; font-size: 1.04rem; }
.check-list { display: grid; gap: .65rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.75rem; color: #425d6c; font-size: .86rem; }
.check-list li::before { position: absolute; top: .35rem; left: 0; width: 1rem; height: 1rem; display: grid; place-items: center; background: var(--aqua); color: var(--teal-dark); content: "✓"; font-size: .62rem; font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.demo-note { max-width: 38rem; margin: 1rem 0 0; color: #7f929c; font-size: .65rem; }

.ops-dashboard { position: relative; padding: .85rem; border: 1px solid #b9cfd7; background: #f8fbfc; box-shadow: var(--shadow); }
.ops-dashboard::after { position: absolute; z-index: -1; right: -1rem; bottom: -1rem; width: 70%; height: 60%; background: #bcebdc; content: ""; }
.ops-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem .5rem .9rem; border-bottom: 1px solid var(--line); }
.ops-head > div { display: flex; align-items: center; gap: .45rem; color: var(--navy); font-size: .62rem; font-weight: 850; }
.ops-head > div i { width: .55rem; height: .55rem; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px #e0f6ed; }
.ops-head > b { padding: .3rem .45rem; background: var(--aqua); color: var(--teal-dark); font-size: .48rem; letter-spacing: .08em; }
.ops-grid { display: grid; gap: .7rem; padding-block: .7rem; }
.floor-plan, .schedule-card, .quality-score { border: 1px solid var(--line); background: white; }
.floor-plan { padding: .7rem; }
.floor-label { display: flex; justify-content: space-between; gap: .5rem; padding-bottom: .65rem; color: #5d7481; font-size: .54rem; }
.floor-label span { font-weight: 800; }.floor-label b { color: var(--teal-dark); }
.rooms { height: 19rem; display: grid; grid-template-columns: .75fr 1.25fr; grid-template-rows: .7fr 1.3fr 1fr; gap: .25rem; padding: .25rem; border: 2px solid var(--navy); background: #cddbe0; }
.room { position: relative; display: flex; align-items: flex-end; padding: .45rem; background: #f4f8f9; }
.room::before { position: absolute; top: .35rem; left: .35rem; width: .75rem; height: .75rem; border: 1px solid #9ab1bb; content: ""; }
.room span { color: #4e6674; font-size: .42rem; font-weight: 800; }
.room i { position: absolute; top: .35rem; right: .35rem; width: .9rem; height: .9rem; display: grid; place-items: center; background: #daf2e9; color: var(--teal-dark); font-size: .45rem; font-style: normal; font-weight: 900; }
.reception { background: #e1f2f0; }.meeting { grid-row: span 2; }.office-a { grid-row: span 2; }.kitchen { background: #e9f7f3; }.toilets { background: #e8f3f7; }
.side-ops { display: grid; gap: .7rem; }
.schedule-card { padding: .7rem; }
.schedule-card > div { display: flex; justify-content: space-between; margin-bottom: .55rem; color: #5b7280; font-size: .52rem; }
.schedule-card > div span { font-weight: 800; }.schedule-card > div b { color: var(--teal-dark); }
.schedule-card ul { display: grid; gap: .25rem; margin: 0; padding: 0; list-style: none; }
.schedule-card li { display: grid; grid-template-columns: 1.2rem 1fr 2.4rem; align-items: center; gap: .35rem; padding: .35rem; background: var(--surface); }
.schedule-card li span, .schedule-card li b { color: #617783; font-size: .42rem; }
.schedule-card li i { height: .28rem; background: #d8e4e8; }
.schedule-card li:nth-child(-n+2) i, .schedule-card li:nth-child(3) i { background: var(--teal); }
.schedule-card li:nth-child(3) { outline: 1px solid #6bcbb2; }
.schedule-card li b { font-weight: 750; text-align: right; }
.quality-score { padding: .7rem; }
.quality-score > span { color: #657b87; font-size: .5rem; font-weight: 750; }
.quality-score strong { display: block; margin: .45rem 0; color: var(--navy); font-size: 2rem; letter-spacing: -.06em; }
.quality-score strong small { color: var(--teal); font-size: .8rem; }
.quality-score > div { height: .35rem; margin-bottom: .55rem; background: #dfebee; }
.quality-score > div i { width: 96%; height: 100%; display: block; background: var(--teal); }
.quality-score > b { color: var(--teal-dark); font-size: .45rem; }
.ops-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: .3rem; padding-top: .7rem; border-top: 1px solid var(--line); }
.ops-checks > span { display: flex; align-items: center; gap: .3rem; padding: .35rem; background: white; color: #59717e; font-size: .43rem; font-weight: 750; }
.ops-checks i { width: .85rem; height: .85rem; display: grid; place-items: center; background: #d9f1e8; color: var(--teal-dark); font-size: .42rem; font-style: normal; }

.trust-strip { padding-block: 2.2rem; background: var(--navy); }
.trust-grid { display: grid; }
.trust-grid article { display: grid; grid-template-columns: 2rem 1fr; gap: .6rem; padding: 1.2rem 0; border-bottom: 1px solid #2d4657; }
.trust-grid article:last-child { border-bottom: 0; }
.trust-grid article > span { width: 1.7rem; height: 1.7rem; display: grid; place-items: center; border: 1px solid #3a5c6e; color: #7de0bd; font-size: .5rem; font-weight: 900; }
.trust-grid h3 { margin: .2rem 0 .4rem; color: white; font-size: .9rem; }
.trust-grid p { margin: 0; color: #9cb0bb; font-size: .7rem; }

.problem-section { background: var(--surface); }
.problem-layout { display: grid; gap: 3rem; align-items: center; }
.reassurance { display: flex; gap: .75rem; margin-top: 1.5rem; padding: 1rem; border-left: 3px solid var(--teal); background: var(--aqua); }
.reassurance > span, .price-note > span { flex: 0 0 1.4rem; width: 1.4rem; height: 1.4rem; display: grid; place-items: center; border: 1px solid #7bbdb5; color: var(--teal-dark); font-size: .62rem; font-weight: 900; }
.reassurance p { margin: 0; font-size: .76rem !important; }
.issues-board { border: 1px solid var(--line); background: white; box-shadow: 12px 12px 0 #e2eff2; }
.board-head { display: flex; justify-content: space-between; padding: .7rem .8rem; background: var(--navy); color: white; font-size: .56rem; }
.board-head span { font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }.board-head b { color: #7edcbd; }
.issue-grid { display: grid; }
.issue-grid article { display: grid; grid-template-columns: 1.6rem 1.5rem 1fr; align-items: center; gap: .5rem; min-height: 4.5rem; padding: .7rem; border-bottom: 1px solid var(--line); }
.issue-grid article:last-child { border-bottom: 0; }
.issue-grid article > span { color: #79909b; font-size: .48rem; font-weight: 900; }
.issue-grid article > i { position: relative; width: 1.4rem; height: 1.4rem; border: 1px solid #a9bdc5; }
.issue-grid article > i::before { position: absolute; top: .3rem; left: .35rem; width: .6rem; height: .6rem; border-right: 1px solid #79919c; border-bottom: 1px solid #79919c; content: ""; }
.issue-grid article p { margin: 0; color: #3e5867; font-size: .74rem; font-weight: 650; }

.services-section { background: white; }
.services-grid { display: grid; gap: .75rem; }
.service-card { position: relative; min-height: 20rem; display: flex; flex-direction: column; padding: 1.35rem; border: 1px solid var(--line); background: white; transition: border-color .2s, transform .2s, box-shadow .2s; }
.service-card:hover { border-color: #7abdb8; box-shadow: 0 14px 35px rgba(18,64,80,.08); transform: translateY(-3px); }
.service-card.featured { background: var(--navy); color: white; }
.service-card.featured p { color: #a8bac4; }
.service-no { position: absolute; top: 1.2rem; right: 1.2rem; color: #8ca0aa; font-size: .5rem; font-weight: 900; }
.featured .service-no { color: #72d7b7; }
.service-card h3 { margin-top: 2rem; font-size: 1.15rem; }
.service-card p { margin: 0; font-size: .78rem; }
.service-icon { position: relative; width: 4rem; height: 4rem; color: var(--teal); }
.desk-icon::before { position: absolute; right: 0; bottom: 1rem; left: 0; height: 1.7rem; border: 2px solid currentColor; content: ""; }
.desk-icon i:nth-child(1), .desk-icon i:nth-child(2) { position: absolute; bottom: 0; width: 2px; height: 1.1rem; background: currentColor; }.desk-icon i:nth-child(1) { left: .5rem; }.desk-icon i:nth-child(2) { right: .5rem; }.desk-icon i:nth-child(3) { position: absolute; top: .15rem; left: 1rem; width: 2rem; height: 1.8rem; border: 2px solid currentColor; }
.spaces-icon { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }.spaces-icon i { border: 2px solid currentColor; }
.hygiene-icon::before { position: absolute; bottom: .3rem; left: .8rem; width: 2.5rem; height: 3rem; border: 2px solid currentColor; border-radius: 7px 7px 2px 2px; content: ""; }.hygiene-icon::after { position: absolute; top: .25rem; left: 1.45rem; width: 1.25rem; height: .8rem; border-top: 2px solid currentColor; border-right: 2px solid currentColor; content: ""; }.hygiene-icon i { position: absolute; z-index: 2; right: .45rem; width: .7rem; height: .9rem; border: 1px solid currentColor; border-radius: 60% 40% 60% 40%; transform: rotate(45deg); }.hygiene-icon i:first-child { top: 1.1rem; }.hygiene-icon i:last-child { top: 2.2rem; right: 0; transform: rotate(45deg) scale(.65); }
.clock-icon { border: 2px solid currentColor; border-radius: 50%; }.clock-icon i:first-child { position: absolute; top: .75rem; left: 1.9rem; width: 2px; height: 1.25rem; background: currentColor; }.clock-icon i:last-child { position: absolute; top: 1.9rem; left: 1.9rem; width: 1.1rem; height: 2px; background: currentColor; transform-origin: left; transform: rotate(25deg); }
.deep-icon i { position: absolute; border: 2px solid currentColor; }.deep-icon i:nth-child(1) { inset: .4rem; }.deep-icon i:nth-child(2) { top: 0; left: 0; width: 1rem; height: 1rem; border-right: 0; border-bottom: 0; }.deep-icon i:nth-child(3) { right: 0; bottom: 0; width: 1rem; height: 1rem; border-top: 0; border-left: 0; }
.report-icon { border: 2px solid currentColor; }.report-icon i { position: absolute; left: .7rem; height: 2px; background: currentColor; }.report-icon i:nth-child(1) { top: 1rem; width: 2.5rem; }.report-icon i:nth-child(2) { top: 1.8rem; width: 1.8rem; }.report-icon i:nth-child(3) { top: 2.6rem; width: 2.2rem; }

.plan-section { background: var(--navy); color: white; }
.plan-intro { display: grid; gap: 1rem; margin-bottom: 2.5rem; }
.plan-intro h2 { color: white; }
.plan-intro > p { color: #9fb3bd; }
.weekly-plan { display: grid; border-top: 1px solid #315063; border-left: 1px solid #315063; }
.weekly-plan article { min-height: 18rem; padding: 1.2rem; border-right: 1px solid #315063; border-bottom: 1px solid #315063; }
.plan-head { display: grid; grid-template-columns: 2rem 1fr auto; align-items: center; gap: .5rem; padding-bottom: 1rem; border-bottom: 1px solid #315063; }
.plan-head span { color: #6fd7b7; font-size: .48rem; font-weight: 900; }.plan-head h3 { margin: 0; color: white; font-size: .9rem; }.plan-head b { padding: .25rem .35rem; background: #1b4652; color: #85dfc0; font-size: .46rem; }
.weekly-plan ul { display: grid; gap: .7rem; padding: 1.2rem 0 0; list-style: none; }
.weekly-plan li { position: relative; padding-left: 1.3rem; color: #a8bac3; font-size: .72rem; }
.weekly-plan li::before { position: absolute; top: .35rem; left: 0; width: .55rem; height: .55rem; border: 1px solid #58bda4; content: ""; }
.plan-status { display: grid; gap: .8rem; margin-top: 1rem; padding: 1rem; background: white; color: var(--navy); }
.plan-status > div:first-child { display: flex; justify-content: space-between; gap: 1rem; color: #5d7480; font-size: .5rem; }.plan-status > div:first-child span { font-weight: 850; }
.plan-progress { height: .45rem; background: #e1ebee; }.plan-progress i { width: 82%; height: 100%; display: block; background: var(--teal); }
.plan-status strong { color: var(--teal-dark); font-size: .58rem; }.plan-status strong span { display: inline-grid; place-items: center; width: 1.1rem; height: 1.1rem; margin-right: .35rem; background: #d9f1e8; }

.process-section { background: var(--surface); }
.process-layout { display: grid; gap: 3rem; }
.process-intro .text-link { margin-top: 1rem; }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.process-list li { display: grid; grid-template-columns: 2.6rem 1fr; gap: .75rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line-dark); }
.process-list li > span { width: 2rem; height: 2rem; display: grid; place-items: center; background: var(--navy); color: #7eddbd; font-size: .52rem; font-weight: 900; }
.process-list h3 { margin: .35rem 0; font-size: .95rem; }
.process-list p { margin: 0; font-size: .76rem; }

.quality-section { background: white; }
.quality-layout { display: grid; gap: 3.5rem; align-items: center; }
.quality-blocks { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.quality-blocks article { display: grid; grid-template-columns: 2rem 1fr; gap: .6rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.quality-blocks article > span { color: var(--teal-dark); font-size: .5rem; font-weight: 900; }
.quality-blocks h3 { margin-bottom: .3rem; font-size: .9rem; }
.quality-blocks p { margin: 0; font-size: .72rem; }
.qc-dashboard { border: 1px solid var(--line-dark); background: var(--surface); box-shadow: 14px 14px 0 #dff1ee; }
.qc-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; background: var(--navy); color: white; }
.qc-head > div span { display: block; font-size: .62rem; font-weight: 850; }.qc-head > div b { display: block; margin-top: .15rem; color: #8fa7b3; font-size: .45rem; }.qc-head > strong { color: #7de0bd; font-size: 1.8rem; }
.qc-row { display: flex; align-items: center; justify-content: space-between; gap: .7rem; padding: .85rem; border-bottom: 1px solid var(--line); background: white; }
.qc-row > div { display: flex; align-items: center; gap: .6rem; }
.qc-row > div > i { flex: 0 0 1.7rem; width: 1.7rem; height: 1.7rem; display: grid; place-items: center; border: 1px solid #a8c1c9; color: var(--teal-dark); font-size: .6rem; font-style: normal; font-weight: 900; }
.qc-row span b { display: block; font-size: .68rem; }.qc-row span small { display: block; color: #7e929b; font-size: .45rem; }
.qc-row em { padding: .25rem .35rem; font-size: .4rem; font-style: normal; font-weight: 900; letter-spacing: .05em; white-space: nowrap; }
.qc-row em.done { background: #d9f1e8; color: #16735e; }.qc-row em.refill { background: #fff0d5; color: #9b6816; }.qc-row em.review { background: #e8eff2; color: #58717d; }
.qc-footer { display: grid; gap: .6rem; padding: .9rem; color: #5e7480; font-size: .48rem; }
.qc-footer > div { height: .35rem; background: #dce8eb; }.qc-footer > div i { width: 92%; height: 100%; display: block; background: var(--teal); }.qc-footer b { color: var(--teal-dark); }

.office-section { background: var(--sky); }
.office-types { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); list-style: none; }
.office-types li { display: flex; align-items: center; gap: .7rem; min-height: 4rem; padding: .8rem; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: white; color: #3c5665; font-size: .75rem; font-weight: 720; }
.office-types span { color: var(--teal-dark); font-size: .48rem; font-weight: 900; }

.price-section { background: var(--teal-dark); color: white; }
.price-layout { display: grid; gap: 3rem; align-items: center; }
.price-copy h2 { color: white; }
.price-copy > p:not(.eyebrow) { color: #c2e1dc; }
.price-note { display: flex; gap: .75rem; margin: 1.5rem 0 2rem; padding: 1rem; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); }
.price-note > span { border-color: #9ee1cf; color: white; }
.price-note p { margin: 0; color: #d2e9e5; font-size: .75rem; }
.price-factors { background: white; color: var(--navy); box-shadow: 14px 14px 0 rgba(7,53,51,.25); }
.factor-head { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1rem; background: var(--navy); color: white; }
.factor-head span { font-size: .52rem; font-weight: 900; letter-spacing: .1em; }.factor-head b { color: #7bdcb9; font-size: .85rem; }
.price-factors ol { margin: 0; padding: 0; list-style: none; }
.price-factors li { display: grid; grid-template-columns: 2rem 1fr; gap: .5rem; padding: .72rem 1rem; border-bottom: 1px solid var(--line); color: #3e5765; font-size: .72rem; }
.price-factors li:last-child { border-bottom: 0; }.price-factors li span { color: var(--teal-dark); font-size: .46rem; font-weight: 900; }

.area-section { background: white; }
.area-layout { display: grid; gap: 2rem; align-items: center; }
.route-map { position: relative; min-height: 14rem; overflow: hidden; border: 1px solid var(--line); background-color: var(--surface); background-image: linear-gradient(rgba(36,86,104,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(36,86,104,.07) 1px, transparent 1px); background-size: 28px 28px; }
.route-map::before { position: absolute; inset: 18% 8%; background: #d9e7e8; content: ""; clip-path: polygon(0 45%, 12% 30%, 28% 37%, 40% 17%, 54% 28%, 69% 12%, 83% 27%, 100% 22%, 96% 58%, 83% 73%, 66% 66%, 54% 86%, 38% 71%, 21% 80%, 8% 64%); }
.route-map i { position: absolute; z-index: 3; width: .8rem; height: .8rem; border: 3px solid var(--teal); background: white; box-shadow: 0 0 0 5px rgba(7,156,152,.17); }
.route-map i:nth-of-type(1) { top: 53%; left: 17%; }.route-map i:nth-of-type(2) { top: 42%; left: 42%; }.route-map i:nth-of-type(3) { top: 57%; right: 24%; }
.route-map span { position: absolute; z-index: 3; top: 17%; right: 6%; padding: .35rem .45rem; background: var(--navy); color: white; font-size: .55rem; font-weight: 900; }
.route { position: absolute; z-index: 2; height: 2px; background: var(--teal); transform-origin: left; }.route-one { top: 55%; left: 18%; width: 30%; transform: rotate(-8deg); }.route-two { top: 45%; left: 43%; width: 35%; transform: rotate(12deg); }
.area-chips { display: flex; flex-wrap: wrap; gap: .45rem; grid-column: 1 / -1; padding: 0; list-style: none; }
.area-chips li { padding: .55rem .7rem; border: 1px solid var(--line-dark); background: var(--surface); color: #48616e; font-size: .68rem; font-weight: 730; }

.faq-section { background: var(--surface); }
.faq-layout { display: grid; gap: 3rem; }
.faq-intro .text-link { margin-top: 1rem; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { position: relative; padding: 1.3rem 3rem 1.3rem 0; font-weight: 780; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; top: 50%; right: .4rem; width: 1.6rem; height: 1.6rem; border: 1px solid var(--line-dark); transform: translateY(-50%); }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: .65rem; height: 1px; background: var(--teal-dark); content: ""; transform: translate(-50%, -50%); transition: transform .2s; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%); }
.faq-list details div { padding: 0 2.5rem 1.3rem 0; }
.faq-list details p { margin: 0; font-size: .8rem; }

.contact-section { padding-block: 1rem 0; background: var(--surface); }
.contact-shell { display: grid; background: var(--navy); box-shadow: var(--shadow); }
.contact-copy { position: relative; padding: clamp(1.5rem, 5vw, 4rem); overflow: hidden; }
.contact-copy::after { position: absolute; right: -6rem; bottom: -7rem; width: 16rem; height: 16rem; border: 2rem solid rgba(112,214,173,.05); border-radius: 50%; content: ""; }
.contact-copy h2 { position: relative; color: white; }
.contact-copy > p:not(.eyebrow) { position: relative; color: #a8bbc4; }
.contact-options { position: relative; z-index: 2; display: grid; gap: .5rem; margin: 1.8rem 0; }
.contact-options a { display: flex; align-items: center; gap: .7rem; padding: .65rem 0; border-bottom: 1px solid #2d4858; color: white; font-size: .74rem; font-weight: 750; text-decoration: none; overflow-wrap: anywhere; }
.contact-options a > span:first-child { flex: 0 0 2rem; width: 2rem; height: 2rem; display: grid; place-items: center; border: 1px solid #406071; color: #7ee0bd; }
.contact-options small { display: block; color: #8097a3; font-size: .5rem; letter-spacing: .08em; text-transform: uppercase; }
.back-link { position: relative; z-index: 2; color: #7eddbd; font-size: .72rem; font-weight: 760; text-decoration: none; }
.contact-form { margin: .65rem; padding: 1.2rem; background: white; color: var(--navy); }
.form-heading { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--teal-dark); font-size: .5rem; font-weight: 900; letter-spacing: .1em; }.form-heading h3 { margin: .3rem 0 0; font-size: 1.15rem; }.form-heading > b { width: 2rem; height: 2rem; display: grid; place-items: center; background: var(--navy); color: #79dab9; font-size: .55rem; }
.contact-form label { display: grid; gap: .4rem; margin-bottom: .8rem; color: #405968; font-size: .64rem; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #c7d7dd; border-radius: 0; background: var(--surface); color: var(--navy); }
.contact-form input { min-height: 3rem; padding: .7rem; }.contact-form textarea { padding: .7rem; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #8b9da6; }
.contact-form .button { width: 100%; border: 0; }
.form-note { margin: .65rem 0 0; color: #7b8e98; font-size: .58rem; text-align: center; }

.site-footer { padding-top: 5rem; background: #081a27; color: white; }
.brand-light { color: white; }.brand-light .brand-mark { background: #13374a; }
.footer-main { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { margin: 1rem 0 0; color: #718894; font-size: .75rem; }
.footer-main nav, .footer-contact { display: flex; flex-direction: column; gap: .55rem; }
.footer-main nav strong, .footer-contact strong { margin-bottom: .4rem; color: #70d6ad; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-main nav a, .footer-contact a { color: #9aadb6; font-size: .73rem; text-decoration: none; }
.footer-main nav a:hover, .footer-contact a:hover { color: white; }
.footer-bottom { display: flex; flex-direction: column; gap: .35rem; padding-block: 1.2rem; border-top: 1px solid #233b49; }
.footer-bottom p { margin: 0; color: #647985; font-size: .6rem; }

@media (min-width: 620px) {
  .ops-grid { grid-template-columns: 1.25fr .75fr; }
  .ops-checks { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(odd) { padding-right: 1.2rem; border-right: 1px solid #2d4657; }
  .trust-grid article:nth-child(even) { padding-left: 1.2rem; }
  .trust-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .issue-grid, .services-grid, .weekly-plan, .office-types { grid-template-columns: repeat(2, 1fr); }
  .issue-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
  .process-list li { grid-template-columns: 3.2rem 1fr; }
  .office-types li { min-height: 4.5rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 800px) {
  .heading-row { grid-template-columns: 1.35fr .65fr; align-items: end; }
  .heading-row > p { justify-self: end; }
  .plan-intro { grid-template-columns: 1.2fr .8fr; align-items: end; }
  .quality-layout, .price-layout, .faq-layout { grid-template-columns: .9fr 1.1fr; gap: 4.5rem; }
  .area-layout { grid-template-columns: .8fr 1.2fr; }
  .contact-shell { grid-template-columns: 1fr .9fr; }
  .contact-form { padding: 2rem; }
}

@media (min-width: 960px) {
  .header-inner { min-height: 5rem; }
  .nav-toggle { display: none; }
  .site-nav { position: static; max-height: none; display: flex; flex-direction: row; align-items: center; gap: .1rem; overflow: visible; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .site-nav > a:not(.button) { padding: .6rem .6rem; font-size: .68rem; }
  .site-nav .button { margin-left: .4rem; }
  .hero-layout { grid-template-columns: 1fr .96fr; gap: 4.7rem; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid article { padding: .2rem 1.15rem !important; border-right: 1px solid #2d4657 !important; border-bottom: 0; }
  .trust-grid article:first-child { padding-left: 0 !important; }.trust-grid article:last-child { padding-right: 0 !important; border-right: 0 !important; }
  .problem-layout { grid-template-columns: .85fr 1.15fr; gap: 5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { min-height: 21rem; padding: 1.55rem; }
  .weekly-plan { grid-template-columns: repeat(4, 1fr); }
  .weekly-plan article { min-height: 21rem; }
  .plan-status { grid-template-columns: 1fr 1.2fr auto; align-items: center; }
  .process-layout { grid-template-columns: .7fr 1.3fr; gap: 6rem; }
  .process-intro { position: sticky; top: 7.5rem; align-self: start; }
  .process-list li { padding: 1.45rem; transition: background .2s; }
  .process-list li:hover { background: white; }
  .quality-layout { gap: 6rem; }
  .office-types { grid-template-columns: repeat(5, 1fr); }
  .price-layout { gap: 6rem; }
}

@media (min-width: 1180px) {
  .container { width: min(calc(100% - 4rem), var(--container)); }
  .site-nav > a:not(.button) { padding-inline: .72rem; }
  .brand strong { font-size: 1rem; }
}

@media (max-width: 420px) {
  h1 { font-size: 2.35rem; }
  .brand strong { font-size: .81rem; }
  .brand small { max-width: 10.8rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero-actions .button { width: 100%; }
  .rooms { height: 16rem; }
  .ops-head > b { display: none; }
  .qc-row { align-items: flex-start; }
  .qc-row em { white-space: normal; text-align: center; }
}

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