:root {
  --navy: #0d1b2a;
  --blue: #0b66d6;
  --sky: #7cc7f2;
  --gray: #e6eaf0;
  --white: #ffffff;
  --text-main: #333333;
  --text-muted: #4d5b68;
  --line: #dce4ee;
  --bg: #f7f9fc;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 14px 30px rgba(13, 27, 42, 0.1);
  --shadow-lg: 0 24px 50px rgba(13, 27, 42, 0.16);
  --maxw: 1180px;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-300-latin.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-500-latin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-600-latin.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-700-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-800-latin.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; color: var(--text-muted); text-wrap: pretty; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(11, 102, 214, 0.28);
  outline-offset: 3px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section.alt { background: var(--bg); }
.section,
.cta-band,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.25;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  box-shadow: none;
}
.btn-primary:hover { background: transparent; color: var(--blue); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; }

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 0;
  background: var(--navy);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo-image {
  width: 68px;
  height: 50px;
  object-fit: contain;
}
.logo strong { color: var(--blue); }
.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-item { position: relative; }
.nav-link,
.nav-group-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  line-height: 1.2;
}
.nav-link.current,
.nav-group-toggle.current { color: var(--blue); }
.nav-group-toggle svg { width: 14px; height: 14px; }
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  display: none;
  padding: 18px 14px 14px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.nav-item.open .submenu,
.nav-item:hover .submenu { display: block; }
.submenu a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  min-height: 44px;
  border-radius: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.submenu a:hover { background: #f2f7fe; text-decoration: none; }
.nav-cta { white-space: nowrap; }
.nav-cta,
.hero-home .hero-ctas .btn-primary {
  min-width: 190px;
  height: 54px;
  font-size: 14px;
  box-shadow: none;
}
.hero-home .hero-ctas .btn-primary {
  min-width: 220px;
  height: 58px;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  line-height: 1;
}
.nav-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.nav-simple {
  padding: 28px 0;
}
.nav-links-simple {
  gap: 28px;
}
.nav-links-simple .nav-link {
  padding: 6px 10px;
}

.hero,
.page-header {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
}
.hero::before,
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/office-hero-1280.webp") center/cover no-repeat;
  opacity: 0.18;
}
.hero::after,
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.98) 0%, rgba(13, 27, 42, 0.9) 46%, rgba(13, 27, 42, 0.68) 100%);
}
.hero {
  min-height: calc(100svh - 102px);
  display: flex;
  align-items: center;
  padding: 130px 0 86px;
}
.page-header {
  min-height: calc(100svh - 102px);
  display: flex;
  align-items: center;
  padding: 150px 0 68px;
}
.page-header.with-form {
  padding-bottom: 86px;
}
body[data-page="residential-cleaning"] .page-header.with-form {
  align-items: flex-start;
  padding-top: 118px;
  padding-bottom: 42px;
}
body[data-page="residential-cleaning"] .page-header-grid {
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
}
.hero .container,
.page-header .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 40px;
  align-items: center;
}
.hero h1,
.hero p,
.page-header h1,
.page-header p,
.crumbs,
.crumbs a { color: var(--white); }
.hero p.lead,
.page-header p.lead {
  max-width: 700px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
}
.page-header-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 40px;
  align-items: start;
}
.page-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.page-header-actions .btn-primary {
  min-width: 220px;
  height: 56px;
  font-size: 16px;
  letter-spacing: 0.03em;
  box-shadow: none;
}
body[data-nav="locations"] .page-header .container {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body[data-nav="locations"] .page-header {
  padding: 92px 0 40px;
}
body[data-nav="locations"] .page-header .lead {
  max-width: 900px;
}
body[data-nav="locations"] .page-header-actions {
  justify-content: center;
  margin-top: 38px;
}
body[data-nav="locations"] .page-header-actions .btn-primary {
  min-width: 320px;
  height: 68px;
  padding: 0 34px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 18px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.hero-trust { display: none; }
.hero-home {
  min-height: 78vh;
}
.hero-home h1 {
  max-width: 540px;
  text-transform: uppercase;
}
.hero-home .quote-card {
  max-width: 430px;
  margin-left: auto;
  border-radius: 12px;
  padding: 26px;
}
.hero-home .quote-form-compact .form-status {
  min-height: 12px;
  margin: 0 0 8px;
}
.hero-home .quote-card .quote-card-title {
  margin-bottom: 18px;
  font-size: 18px;
}
.hero-home .quote-form .field {
  margin-bottom: 12px;
}
.hero-home .hero-grid {
  align-items: start;
}
.quote-form-compact .field {
  margin-bottom: 10px;
}
.quote-form-compact label {
  display: none;
}
.quote-form-compact input,
.quote-form-compact select,
.quote-form-compact textarea {
  height: 48px;
  padding: 11px 14px;
  font-size: 16px;
}
.quote-form-compact textarea {
  min-height: 78px;
  height: auto;
  resize: vertical;
}
.quote-form-compact .form-status {
  min-height: 0;
  margin: 0 0 6px;
}
.page-header.with-form .quote-card,
.page-header-grid .quote-card {
  max-width: 430px;
  margin-left: auto;
  margin-right: -48px;
}
body[data-page="residential-cleaning"] .page-header-grid .quote-card {
  width: 100%;
  margin-top: -10px;
  margin-left: 0;
  justify-self: end;
  padding: 24px;
}
body[data-page="residential-cleaning"] .page-header-grid .quote-card .quote-card-title {
  margin-bottom: 14px;
  font-size: 18px;
}
body[data-page="residential-cleaning"] .page-header-grid .quote-form-compact .field {
  margin-bottom: 9px;
}
body[data-page="residential-cleaning"] .page-header-grid .quote-form-compact input,
body[data-page="residential-cleaning"] .page-header-grid .quote-form-compact select {
  height: 48px;
  padding: 11px 14px;
}
body[data-page="residential-cleaning"] .page-header-grid .quote-form-compact textarea {
  min-height: 84px;
  padding: 12px 14px;
}
.page-header-grid .quote-form .field:last-of-type textarea {
  min-height: 120px;
}
.trust-strip {
  background: #111926;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 72px;
  overflow: hidden;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  min-height: 72px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 10px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
}
.trust-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.quote-card,
.surface-card,
.content-main,
.sidebar-card,
.card,
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.quote-card {
  padding: 26px;
  box-shadow: var(--shadow-lg);
  min-height: 0;
}
.quote-card-title,
.sidebar-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero .quote-card .quote-card-title,
.page-header .quote-card .quote-card-title {
  color: var(--navy);
}
.quote-card-title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.08;
}
.quote-card p.intro { font-size: 14px; }
.quote-form .field { margin-bottom: 12px; }
.quote-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccd5df;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.45;
  resize: vertical;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-note,
.form-status {
  font-size: 12px;
  line-height: 1.55;
}
.form-note { color: var(--text-muted); }
.form-status {
  min-height: 20px;
  color: var(--navy);
  font-weight: 700;
}
.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;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid #edf1f6;
  color: var(--navy);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card h3 { color: var(--navy); }
.card p { color: var(--text-muted); }
.card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card:hover h3,
.card:hover p { color: inherit; }
.card .icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(30, 144, 255, 0.1);
  display: grid;
  place-items: center;
}
.card .icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.card .tag {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stat {
  padding: 28px 22px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.stat strong {
  display: block;
  color: var(--blue);
  font-size: 2.4rem;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-band {
  background: linear-gradient(135deg, var(--navy) 0%, #15324b 100%);
}
.testimonial-band .section-head h2,
.testimonial-band .section-head p,
.testimonial-card h3,
.testimonial-card p,
.testimonial-card small { color: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}
.testimonial-card {
  padding: 26px 24px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial-card h3 {
  margin-bottom: 14px;
}
.testimonial-card p {
  margin-bottom: 26px;
  line-height: 1.65;
}
.testimonial-card small {
  display: inline-block;
  margin-top: auto;
}

.location-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.crumbs {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--gray);
}
.crumbs a { color: var(--gray); }

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(290px, 0.88fr);
  gap: 30px;
  align-items: start;
}
.content-main {
  padding: 34px;
  border: 1px solid #edf1f6;
}
.content-main > section + section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #edf1f6;
}
.content-main h2 { color: var(--navy); }
.content-main ul,
.content-main ol { padding-left: 20px; }
.content-main li { margin-bottom: 8px; }

body[data-nav="blog"] .content-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

body[data-nav="blog"] .content-main {
  padding: 42px 40px;
}

body[data-nav="blog"] .content-main > section + section {
  margin-top: 36px;
  padding-top: 36px;
}

body[data-nav="blog"] .sidebar-stack {
  max-width: 420px;
}

.content-layout.content-layout--stacked-links {
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.content-layout.content-layout--stacked-links .content-main {
  padding: 42px 40px;
}

.content-layout.content-layout--stacked-links .content-main > section + section {
  margin-top: 36px;
  padding-top: 36px;
}

.content-layout.content-layout--stacked-links .sidebar-stack--bottom {
  max-width: 420px;
}

.benefits,
.checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.benefits li,
.checklist li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid #edf1f6;
}
.benefits li::before,
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 13px;
  color: var(--blue);
  font-weight: 800;
}

.cost-card {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  border: 1px solid #d8e9fb;
}
.cost-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.proof-quote {
  margin: 18px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  color: var(--navy);
  font-weight: 600;
}

.proof-quote span {
  display: block;
  margin-top: 8px;
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 500;
}

.authority-links {
  margin: 18px 0 0;
  color: var(--gray-dark);
  font-size: 16px;
}

.authority-links a {
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius);
  border: 1px solid #edf1f6;
  overflow: hidden;
  background: var(--white);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-body { padding: 0 20px 20px; }

.sidebar-stack {
  display: grid;
  gap: 20px;
}
.sidebar-card {
  padding: 24px;
  border: 1px solid #edf1f6;
}
.sidebar-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}
.sidebar-card li { margin-bottom: 8px; }

.blog-card { overflow: hidden; border: 1px solid #edf1f6; }
.blog-card-body { padding: 24px; }
.blog-card .meta {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-hero {
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.14), rgba(13, 27, 42, 0.4)),
    url("assets/office-cleaning.avif") center/cover no-repeat;
}
.blog-hero.carpet { background-image: linear-gradient(180deg, rgba(13, 27, 42, 0.14), rgba(13, 27, 42, 0.4)), url("assets/carpet-cleaning.avif"); }
.blog-hero.move { background-image: linear-gradient(180deg, rgba(13, 27, 42, 0.14), rgba(13, 27, 42, 0.4)), url("assets/move-in-out-cleaning.png"); }
.blog-hero.office { background-image: linear-gradient(180deg, rgba(13, 27, 42, 0.14), rgba(13, 27, 42, 0.4)), url("assets/office-hero-1280.webp"); }

.cta-band {
  margin: 28px 24px 72px;
  padding: 58px 56px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, #183750 100%);
  text-align: center;
}
.cta-band h2,
.cta-band p { color: var(--white); }
.cta-band h2 {
  margin-bottom: 18px;
}
.cta-band p {
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.cta-band .btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-band .btn-primary {
  min-width: 280px;
  height: 58px;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.footer {
  background: #091823;
  color: #d4dee6;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 38px;
}
.footer .logo { color: var(--white); font-size: 20px; }
.footer h4 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer p,
.footer li,
.footer a {
  color: #d4dee6;
  font-size: 14px;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer li { margin-bottom: 8px; }
.footer a:hover { color: var(--white); }
.footer a:focus-visible {
  outline-color: rgba(124, 199, 242, 0.45);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #c0ccd6;
  font-size: 13px;
}

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

@media (max-width: 980px) {
  .hero::before,
  .page-header::before {
    background-image: url("assets/office-hero-768.webp");
  }

  .blog-hero.office {
    background-image: linear-gradient(180deg, rgba(13, 27, 42, 0.14), rgba(13, 27, 42, 0.4)), url("assets/office-hero-768.webp");
  }

  .cards.four,
  .stats,
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards,
  .content-layout,
  .blog-grid,
  .location-grid,
  .footer-grid,
  .hero-grid { grid-template-columns: 1fr; }
  .hero,
  .page-header { padding-top: 128px; }
  .hero-home {
    min-height: auto;
    padding-bottom: 44px;
  }
  .hero-home .hero-grid {
    gap: 24px;
  }
  .nav-simple .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links-simple {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .hero-home .quote-card {
    max-width: none;
    margin-left: 0;
  }
  .trust-strip .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-header-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-shell {
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }
  .nav-shell.open { display: flex; }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-link,
  .nav-group-toggle {
    width: 100%;
    justify-content: space-between;
    color: var(--navy);
    padding: 12px 14px;
  }
  .nav-link.current,
  .nav-group-toggle.current { background: #f1f7ff; }
  .submenu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    border: 1px solid #edf1f6;
  }
  .nav-item:hover .submenu,
  .nav-item:focus-within .submenu { display: none; }
  .nav-item.open .submenu { display: block; }
  .nav-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero-home {
    padding: 94px 0 24px;
  }
  .hero-home h1 {
    max-width: 100%;
    font-size: 3.05rem;
    line-height: 0.95;
  }
  .hero-home p.lead {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .hero-home .hero-ctas {
    margin: 16px 0 0;
  }
  .hero-home .quote-card {
    max-width: 100%;
    padding: 18px;
    margin-top: 2px;
  }
  .hero-home .quote-card .quote-card-title {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .quote-form-compact .field {
    margin-bottom: 7px;
  }
  .quote-form-compact input,
  .quote-form-compact select {
    height: 42px;
    padding: 9px 12px;
    font-size: 14px;
  }
  .quote-form-compact textarea {
    min-height: 66px;
    padding: 10px 12px;
    font-size: 14px;
  }
  .quote-form-compact .btn {
    height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }
  .nav {
    padding: 16px 0;
  }
  .nav .container {
    gap: 12px;
  }
  .logo {
    gap: 10px;
    font-size: 16px;
    max-width: calc(100% - 64px);
  }
  .logo-image {
    width: 50px;
    height: 38px;
    flex-shrink: 0;
  }
  .nav-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav-shell {
    left: 14px;
    right: 14px;
  }
  .quote-card,
  .content-main,
  .sidebar-card,
  .card { padding: 24px; }
  body[data-nav="blog"] .content-main {
    padding: 28px 24px;
  }
  body[data-nav="blog"] .content-main > section + section {
    margin-top: 28px;
    padding-top: 28px;
  }
  .content-layout.content-layout--stacked-links .content-main {
    padding: 28px 24px;
  }
  .content-layout.content-layout--stacked-links .content-main > section + section {
    margin-top: 28px;
    padding-top: 28px;
  }
  .quote-card {
    padding: 20px;
  }
  .cta-band {
    margin: 0 16px 56px;
    padding: 40px 24px;
  }
  .stats,
  .testimonial-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    gap: 8px;
    padding: 10px 14px;
    background: var(--white);
    border-top: 1px solid #edf1f6;
    box-shadow: 0 -10px 24px rgba(13, 27, 42, 0.08);
  }
  .mobile-call-bar .btn { flex: 1; }
  body { padding-bottom: 78px; }
  .trust-strip .container {
    grid-template-columns: 1fr;
  }
  .trust-item {
    justify-content: flex-start;
  }
}

@media print {
  .nav,
  .footer,
  .mobile-call-bar,
  .cta-band { display: none; }
}
