/* @import url("https://use.typekit.net/bnj1gsa.css"); */

:root {
  --mgc-green: #264937;
  --mgc-green-dark: #173326;
  --mgc-white: #ffffff;
  --mgc-cream: #f7f3e8;
  --mgc-text: #23372c;

  --font-display: "cronos-pro", Georgia, serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--mgc-text);
  background: #fff;
}

/* =========================
   TOP NAVIGATION
========================= */

.nav-section {
  position: relative;
  z-index: 50;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(38, 73, 55, 0.12);
}

.nav-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 16px clamp(18px, 4vw, 64px);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 40px;
}

/* logo image control */
.brand img {
  height: 110px;          /* desktop size */
  width: auto;
  display: block;
  height: clamp(80px, 8vw, 120px);
}

.nav {
  /*position: absolute; */
  position: static;
  left: 52%;
  /* transform: translateX(-50%); */
  transform: none;

  display: flex;
  gap: 32px;
  
                /* gap: clamp(16px, 2vw, 30px); */
}

.nav a {
  color: #000000; /* force black */
  text-decoration: none;
  font-family: var(--font-body);
  /* font-size: 0.96rem; */
  font-size: 1.00rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--mgc-green);
/*  text-decoration: underline; */
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;

  background: var(--mgc-green);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(38, 73, 55, 0.20);
}

@media (max-width: 640px) {
  .nav-inner {
    min-height: 72px;
    padding: 14px 18px;
  }

  .brand img {
    height: 48px;
  }
}

/* =============================
    HAMBURGER MENU FOR MOBILE
============================= */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(38, 73, 55, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--mgc-green-dark);
  display: block;
}

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid rgba(38,73,55,0.10);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.mobile-menu a {
  display: block;
  padding: 16px 24px;
  color: var(--mgc-green-dark);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 650;
  border-bottom: 1px solid rgba(38,73,55,0.08);
}

.mobile-menu a:hover {
  background: #f7f9f8;
}

.mobile-menu-cta {
  margin: 14px 24px 18px;
  padding: 14px 22px !important;
  border-radius: 999px;
  background: var(--mgc-green);
  color: #ffffff !important;
  text-align: center;
  border-bottom: 0 !important;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
      display: none !important;
  }

  .mobile-menu.is-open {
    display: block !important;
  }
}

@media (max-width: 980px) {

  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .nav-inner {
    justify-content: space-between;
  }
}

@media (min-width: 1181px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO */

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  padding: 130px 24px 95px;
  overflow: hidden;
  background: var(--hero-bg) center / cover no-repeat;
  isolation: isolate;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.12) 28%,
      rgba(255,255,255,0.20) 52%,
      rgba(255,255,255,0.10) 100%
    );
}

/* Stronger image overlay for pages with longer wrapped hero titles */
.hero.hero-wrap-title .hero-image-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.26) 0%,
      rgba(255,255,255,0.16) 28%,
      rgba(255,255,255,0.24) 55%,
      rgba(255,255,255,0.14) 100%
    );
}

/*
  Hero cloud:
  This is deliberately attached to .hero, not .hero-content.
  It sits above the background image and below the text.
*/
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;

  left: 46%;
  top: 36%;
  transform: translate(-50%, -50%);

  width: min(1450px, 105vw);
  height: 560px;
  border-radius: 50%;

background: radial-gradient(
  ellipse at 42% 40%,
  rgba(255,255,255,0.55) 0%,
  rgba(255,255,255,0.38) 28%,
  rgba(255,255,255,0.18) 50%,
  rgba(255,255,255,0.06) 68%,
  rgba(255,255,255,0.00) 85%
);

/*  background: red !important;
  opacity: 0.8 !important;
*/

  filter: blur(10px);
  pointer-events: none;
}

.hero::after {
  content: none;
}

.hero.hero-wrap-title::before {
  top: 44%;
  height: 580px;
  width: min(1450px, 105vw);
}

.hero-cloud {
  position: absolute;
  z-index: 2;
  
  opacity 0.72;

  left: 46%;
  top: 36%;
  transform: translate(-50%, -50%);

  width: min(1350px, 92vw);
  height: 560px;

  border-radius: 50%;
 
    background:
      radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.88) 0%,
        rgba(255,255,255,0.72) 38%,
        rgba(255,255,255,0.38) 68%,
        rgba(255,255,255,0) 100%
      );

  filter: blur(10px);
  pointer-events: none;
}

.hero.hero-wrap-title .hero-cloud {
  width: min(1180px, 86vw);
  height: 430px;
  top: 44%;
}

.hero.hero-nowrap .hero-cloud {
  width: min(1300px, 90vw);
  height: 180px;
/*  top: 42%; */
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1600px, 100%);
  margin-inline: auto;
  text-align: center;
  color: var(--mgc-green-dark);
}

.hero-content > * {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 auto;
  max-width: min(1150px, 92vw);

  font-family: "cronos-pro", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 400;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -0.04em;

  color: var(--mgc-green-dark) !important;
  white-space: normal;
  overflow-wrap: normal;
  text-wrap: balance;
  text-shadow: none;
  text-align: center;
}

.hero.hero-nowrap h1 {
  white-space: nowrap;
  text-wrap: nowrap;
  max-width: none;
  width: max-content;
}

.hero-seo {
  position: absolute;
  left: -9999px;
}

.hero-display-line {
  margin: 0 auto;
  max-width: none;
  width: max-content;

  font-family: "cronos-pro", Georgia, serif;
  font-size: clamp(3.2rem, 5.8vw, 6.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;

  color: var(--mgc-green-dark);
  text-align: center;
  white-space: nowrap;
}

.seo-intro {
  padding: 36px 24px 10px;
  background: #ffffff;
}

.seo-intro-container {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.seo-intro p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a4a42;
}

@media (max-width: 1100px) {
  .hero.hero-nowrap h1 {
    width: auto;
    max-width: 94vw;
    white-space: normal;
    text-wrap: balance;
  }
  .hero-display-line {
    width: auto;
    max-width: 94vw;
    white-space: normal;
    text-wrap: balance;
  }
}

.hero.hero-wrap-title h1 {
  max-width: min(1250px, 92vw);
  font-size: clamp(3rem, 5.1vw, 5.7rem);
  line-height: 1;
  white-space: normal;
  text-wrap: balance;
}

/*
.hero-subtitle {
  max-width: 820px;
  margin: 28px auto 0;

  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.75vw, 1.45rem);
  line-height: 1.45;
  font-weight: 400;

  color: var(--mgc-green-dark) !important;
  text-wrap: balance;
  text-shadow: none;
  text-align: center;
}
*/
.hero-subtitle {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin:
    0 auto
    18px;
  color: rgba(16,42,31,0.96);
  font-weight: 435;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-shadow:
    0 1px 1px rgba(255,255,255,0.55);
}

.hero::after {
  content: '';

  position: absolute;
  inset: 0;

  background:
    rgba(18,28,22,0.08);

  pointer-events: none;
}

.hero-microline {
  margin: 14px auto 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--mgc-green-dark);
}

.hero h1,
.hero-subtitle,
.hero-microline {
  text-shadow:
    0 1px 1px rgba(255,255,255,0.55),
    0 0 14px rgba(255,255,255,0.42),
    0 0 26px rgba(255,255,255,0.28);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-primary {
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--mgc-green);
  color: var(--mgc-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 750;
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
}

.hero.hero-wrap-title .hero-cloud {
  width: min(1050px, 82vw);
  height: 390px;
  top: 43%;
}

@media (max-width: 640px) {
  .hero {
    min-height: 650px;
    padding: 80px 18px 78px;
    background: var(--hero-bg) center / cover no-repeat;
  }

  .hero::before,
  .hero.hero-wrap-title::before {
    top: 48%;
    width: 130vw;
    height: 360px;
    filter: blur(22px);

    background: radial-gradient(
      ellipse at center,
      rgba(255,255,255,0.88) 0%,
      rgba(255,255,255,0.68) 48%,
      rgba(255,255,255,0.32) 75%,
      rgba(255,255,255,0.00) 100%
    );
  }

  .hero h1,
  .hero.hero-wrap-title h1 {
    max-width: 94vw;
    font-size: clamp(2.35rem, 11vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    white-space: normal;
    text-wrap: balance;
  }
}

/* TRUST STRIP */

.trust-strip {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 32px));
  /*margin: -54px auto 70px; */
  margin: 0 auto 70px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;

  border-radius: 22px;
  overflow: hidden;
  background: rgba(38,73,55,.18);
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
}

.trust-item {
  background: var(--mgc-white);
  padding: 26px 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  text-align: center;
  color: var(--mgc-green-dark);

  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.25;
}

/* ICONS */
.trust-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.85;
}

.trust-wrapper {
  text-align: center;
  margin-top: 40px;
}

.trust-heading {
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}
/*
.trust-strip {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 32px));
  margin: -54px auto 70px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;

  border-radius: 22px;
  overflow: hidden;
  background: rgba(38,73,55,.22);
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
}

.trust-item {
  background: var(--mgc-white);
  padding: 24px 22px;
  text-align: center;
  color: var(--mgc-green-dark);

  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
}
*/

/* TABLET */

@media (max-width: 980px) {
  .hero {
    min-height: 700px;
    background-position: center;
  }

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

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .brand {
    max-width: 180px;
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .quote-btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: .9rem;
  }


  .trust-strip {
    grid-template-columns: 1fr;
  }

/*  .trust-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
    padding: 18px 16px;
  }

  .trust-item img {
    width: 28px;
    height: 28px;
  } */
}

@media (max-width: 768px) {

  .trust-item {
    display: grid;

    grid-template-columns: 44px 1fr;

    align-items: center;

    gap: 18px;

    text-align: left;
  }

  .trust-item img,
  .trust-svg-icon {
    width: 34px;
    height: 34px;

    margin: 0;
  }

}

/* =========================
   DIFFERENTIATION SECTION
========================= */

.diff-section {
  padding: 90px 24px;
  background: #ffffff;
}

.diff-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* HEADER */

.diff-header {
  text-align: center;
  margin-bottom: 48px;
}

.diff-heading {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.diff-subheading {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3a4a42;
}

/* GRID */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */

.diff-card {
  padding: 28px 22px;
  background: #ffffff;
  border-radius: 16px;
  align-items: center;
  text-align: center;

  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.diff-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  opacity: 0.85;
  margin-bottom: 4px;
}

.diff-card h3 {
  margin: 6px 0 4px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.diff-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.45;
  color: #4a5a52;
}

/* TABLET */

@media (max-width: 980px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .diff-section {
    padding: 70px 18px;
  }

  .diff-header {
    margin-bottom: 36px;
  }

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

  .diff-card {
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .diff-card img {
    width: 28px;
    height: 28px;
    margin-top: 4px;
  }

  .diff-card h3 {
    font-size: 1.05rem;
  }

  .diff-card p {
    font-size: 0.92rem;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.services-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}


.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-heading {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.services-subheading {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3a4a42;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}

.service-card {
  min-width: 0;
  min-height: 305px;
  padding: 30px 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}

.service-icon {
  width: 72px;
  height: 72px;

  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;

  display: block;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--mgc-green-dark);
  min-height: 2.3em;
}

.service-card p {
  margin: 0;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5a52;
}

.service-link {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mgc-green);
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 70px 18px;
  }

  .services-header {
    margin-bottom: 36px;
  }

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

  .service-card {
    padding: 26px 20px;
  }

  .service-card img {
    width: 52px;
    height: 52px;
  }
}

/*============================
    COMMERCIAL INTENT
============================*/

.commercial-push {
  padding: 90px 24px;
  background: #f7f9f8;
}

.commercial-container {
  width: min(1000px, 100%);
  margin: 0 auto;
  text-align: center;
}

.commercial-container h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--mgc-green-dark);
}

.commercial-container p {
  max-width: 720px;
  margin: 12px auto 30px;
  color: #4a5a52;
}

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.commercial-grid div {
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(38,73,55,0.08);
}

.commercial-link {
  color: var(--mgc-green);
  font-weight: 700;
  text-decoration: none;
}

/* =========================
   PROCESS / HOW IT WORKS
========================= */

.process-section {
  padding: 90px 24px;
  background: #ffffff;
}

.process-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 52px;
}

.process-heading {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.process-subheading {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3a4a42;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 32px 24px 30px;
  background: #f7f9f8;
  border: 1px solid rgba(38, 73, 55, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.process-number {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--mgc-green);
  color: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.process-step p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5a52;
}

.process-cta {
  margin-top: 42px;
  text-align: center;
}

.process-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 999px;

  background: var(--mgc-green);
  color: #ffffff;
  text-decoration: none;

  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;

  box-shadow: 0 14px 32px rgba(38, 73, 55, 0.22);
}

.process-button:hover {
  background: var(--mgc-green-dark);
}

/* TABLET */

@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .process-section {
    padding: 70px 18px;
  }

  .process-header {
    margin-bottom: 36px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-step {
    padding: 26px 20px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }
}

/* =========================
   TESTIMONIALS / PROOF SECTION
========================= */

.proof-section {
  padding: 90px 24px;
  background: #ffffff;
}

.proof-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.proof-header {
  text-align: center;
  margin-bottom: 52px;
}

.proof-heading {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.proof-subheading {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3a4a42;
}

/* LAYOUT */

.proof-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 28px;
  align-items: stretch;
}

/* FEATURE CARD */

.proof-feature {
  padding: 36px 32px;
  border-radius: 20px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.09);
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.proof-feature h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--mgc-green-dark);
}

.proof-feature p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: #4a5a52;
}

.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.proof-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;

  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.proof-links a:first-child {
  background: var(--mgc-green);
  color: #ffffff;
}

.proof-links a:last-child {
  background: #ffffff;
  color: var(--mgc-green-dark);
  border: 1px solid rgba(38,73,55,0.16);
}

/* QUOTE CARDS */

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

.proof-card {
  padding: 28px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}

.proof-stars {
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--mgc-green);
}

.proof-card blockquote {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--mgc-green-dark);
}

.proof-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.5;
  color: #4a5a52;
}

/* TABLET */

@media (max-width: 980px) {
  .proof-layout {
    grid-template-columns: 1fr;
  }

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

/* MOBILE */

@media (max-width: 640px) {
  .proof-section {
    padding: 70px 18px;
  }

  .proof-header {
    margin-bottom: 36px;
  }

  .proof-feature {
    padding: 28px 22px;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .proof-links {
    flex-direction: column;
  }

  .proof-links a {
    width: 100%;
  }
}

/* =========================
   HOME FAQ SECTION
========================= */

.home-faq-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.home-faq-container {
  width: min(980px, 100%);
  margin: 0 auto;
}

.home-faq-header {
  text-align: center;
  margin-bottom: 42px;
}

.home-faq-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.home-faq-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.home-faq-header p {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: #3a4a42;
}

.home-faq-list {
  display: grid;
  gap: 14px;
}

.home-faq-item {
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.10);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  overflow: hidden;
}

.home-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;

  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--mgc-green-dark);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(38,73,55,0.10);
  color: var(--mgc-green-dark);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
}

.home-faq-item[open] summary::after {
  content: "–";
}

.home-faq-item p {
  margin: 0;
  padding: 0 24px 22px;

  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4a5a52;
}

@media (max-width: 640px) {
  .home-faq-section {
    padding: 70px 18px;
  }

  .home-faq-header {
    margin-bottom: 34px;
  }

  .home-faq-item summary {
    padding: 18px;
    font-size: 1.05rem;
  }

  .home-faq-item p {
    padding: 0 18px 20px;
  }
}

/* =========================
   COMMERCIAL TRUST
========================= */

/* =========================
   COMMERCIAL TRUST
========================= */

.commercial-trust-section {
  padding: 100px 32px 120px;
  background: #f7f9f8;
}

.commercial-trust-container {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.commercial-trust-header {
  text-align: center;
  margin-bottom: 54px;
}

.commercial-trust-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.commercial-trust-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.commercial-trust-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5a52;
}

/* STATS */

.commercial-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.commercial-stats-grid,
.commercial-trust-grid {
  gap: 18px;
}

.commercial-stat-card {
  padding: 26px 20px;
  text-align: center;

  background: white;
  border-radius: 18px;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

.commercial-stat-number {
  display: block;

  margin-bottom: 8px;

  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--mgc-green-dark);
}

.commercial-stat-label {
  display: block;

  font-size: 0.92rem;
  line-height: 1.45;
  color: #4a5a52;
}

/* TRUST GRID */

.commercial-trust-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(280px, 420px));

  justify-content: center;

  gap: 22px;

  max-width: 920px;

  margin: 0 auto 40px;
}

.commercial-trust-card {
  padding: 28px 24px;

  background: white;
  border-radius: 18px;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

.commercial-trust-card h3 {
  margin: 0 0 12px;

  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--mgc-green-dark);
}

.commercial-trust-card p {
  margin: 0;

  font-size: 0.96rem;
  line-height: 1.55;
  color: #4a5a52;
}

/* CLIENT TYPES */

.commercial-client-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;

  margin-bottom: 40px;
}

.commercial-client-types span {
  padding: 12px 18px;

  background: rgba(38,73,55,0.08);
  border-radius: 999px;

  font-size: 0.92rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
}

/* REVIEW BAND */

.commercial-review-band {
  max-width: 820px;

  margin: 0 auto 52px;
  padding: 32px;

  text-align: center;

  background: white;
  border-radius: 22px;
  border: 1px solid rgba(38,73,55,0.08);

  box-shadow: 0 12px 34px rgba(0,0,0,0.04);
}

.commercial-review-stars {
  margin-bottom: 12px;

  letter-spacing: 0.12em;
  color: var(--mgc-green);
}

.commercial-review-band p {
  margin: 0;

  font-size: 1rem;
  line-height: 1.65;
  color: #3f4e46;
}

/* CTA */

.commercial-trust-cta {
  text-align: center;
}

.commercial-trust-cta a {
  display: inline-block;

  padding-bottom: 10px;

  font-weight: 700;
  color: var(--mgc-green);

  text-decoration: none;
}

.commercial-trust-cta a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 980px) {

  .commercial-stats-grid,
  .commercial-trust-grid {
/*    grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: 1fr;
    max-width: 560px;
  }

}

@media (max-width: 640px) {

  .commercial-trust-section {
    padding: 80px 18px 100px;
  }

  .commercial-stats-grid,
  .commercial-trust-grid {
    grid-template-columns: 1fr;
  }

}

/*

.commercial-trust-section {
  padding: 100px 24px;
  background: #f7f9f8;
}

.commercial-trust-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.commercial-trust-header {
  text-align: center;
  margin-bottom: 54px;
}

.commercial-trust-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.commercial-trust-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.commercial-trust-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5a52;
}

.commercial-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 42px;
}

.commercial-trust-card {
  padding: 30px 24px;
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

.commercial-trust-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--mgc-green-dark);
}

.commercial-trust-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: #4a5a52;
}

.commercial-client-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.commercial-client-types span {
  padding: 12px 18px;
  background: rgba(38,73,55,0.08);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
}

.commercial-trust-cta {
  text-align: center;
}

.commercial-trust-cta a {
  font-weight: 700;
  color: var(--mgc-green);
  text-decoration: none;
}

.commercial-trust-cta a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .commercial-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .commercial-trust-grid {
    grid-template-columns: 1fr;
  }

  .commercial-trust-section {
    padding: 80px 18px;
  }
}
*/


/* =========================
   CONTACT / CTA SECTION
========================= */

.contact-section {
  padding: 100px 24px;
  background:
    linear-gradient(
      135deg,
      rgba(38, 73, 55, 0.96),
      rgba(23, 51, 38, 0.98)
    );
}

.contact-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.contact-copy {
  color: #ffffff;
}

.contact-kicker {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.contact-heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.02;
  color: #ffffff;
}

.contact-subheading {
  margin: 0;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
}

.contact-points {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;

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

.contact-points li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
}

.contact-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-weight: 800;
}

/* FORM */

.contact-form {
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);

  display: grid;
  gap: 16px;
}

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

.form-row label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mgc-green-dark);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(38,73,55,0.18);
  border-radius: 12px;
  padding: 12px 14px;

  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--mgc-text);
  background: #ffffff;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--mgc-green);
  box-shadow: 0 0 0 3px rgba(38,73,55,0.12);
}

.contact-submit {
  margin-top: 6px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--mgc-green);
  color: #ffffff;
  cursor: pointer;

  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;

  box-shadow: 0 14px 32px rgba(38,73,55,0.22);
}

.contact-submit:hover {
  background: var(--mgc-green-dark);
}

.contact-note {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.4;
  color: #5a675f;
  text-align: center;
}

/* TABLET */

@media (max-width: 980px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-subheading {
    margin-inline: auto;
  }

  .contact-points {
    width: min(620px, 100%);
    margin-inline: auto;
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .contact-section {
    padding: 76px 18px;
  }

  .contact-points {
    grid-template-columns: 1fr;
  }

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--mgc-green-dark);
  color: #ffffff;
  padding: 70px 24px 28px;
}

.footer-container {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 42px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
}

.footer-brand p {
  margin: 0;
  max-width: 340px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}

.footer-links,
.footer-services,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: #ffffff;
}

.site-footer a,
.site-footer p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.16);

  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.62);
}

/* TABLET */

@media (max-width: 980px) {
  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .site-footer {
    padding: 56px 18px 26px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    margin-top: 36px;
  }
}

section {
  scroll-margin-top: 100px;
}

/* =========================
   RESIDENTIAL CLEANING LEVELS
========================= */

.res-levels-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.res-levels-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.res-levels-header {
  text-align: center;
  margin-bottom: 46px;
}

.res-levels-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.res-levels-header p {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3a4a42;
}

/* TOP CARDS */

.res-levels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

.res-level-card {
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.res-level-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: 0.9;
}

.res-level-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.res-level-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.48;
  color: #4a5a52;
}

/* ACCORDION */

.res-included-accordion {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.res-included-item {
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.10);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  overflow: hidden;
}

.res-included-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;

  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--mgc-green-dark);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.res-included-item summary::-webkit-details-marker {
  display: none;
}

.res-included-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(38,73,55,0.10);
  color: var(--mgc-green-dark);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
}

.res-included-item[open] summary::after {
  content: "–";
}

.res-included-content {
  padding: 0 24px 22px;
}

.res-included-content ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

.res-included-content li {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.45;
  color: #4a5a52;
}

.res-included-intro {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(38, 73, 55, 0.08);
  color: var(--mgc-green-dark);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
}

/* CTA */

.res-levels-cta {
  margin-top: 34px;
  text-align: center;
}

.res-levels-cta p {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #3a4a42;
}

.res-levels-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;

  background: var(--mgc-green);
  color: #ffffff;
  text-decoration: none;

  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;

  box-shadow: 0 12px 28px rgba(38,73,55,0.20);
}

.res-levels-cta a:hover {
  background: var(--mgc-green-dark);
}

/* TABLET */

@media (max-width: 980px) {
  .res-levels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .res-levels-section {
    padding: 70px 18px;
  }

  .res-levels-header {
    margin-bottom: 36px;
  }

  .res-levels-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .res-level-card {
    padding: 24px 20px;
  }

  .res-included-item summary {
    padding: 18px 18px;
    font-size: 1.08rem;
  }

  .res-included-content {
    padding: 0 18px 20px;
  }
}

/* ===========================
    RES PAGE STYLES
=========================== */
/* .res-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 80px 24px;
}

.res-level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-level-card {
  padding: 26px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(38,73,55,.08);
}

.res-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
*/

/* =========================
   RESIDENTIAL HOME-FIT SECTION
========================= */

.res-homefit-section {
  padding: 90px 24px;
  background: #ffffff;
}

.res-homefit-container {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 52px;
  align-items: center;
}

.res-homefit-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.res-homefit-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--mgc-green-dark);
}

.res-homefit-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a4a42;
}

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

.res-homefit-card {
  padding: 28px 22px;
  border-radius: 18px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  text-align: center;
}

.res-homefit-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}

.res-homefit-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.res-homefit-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.45;
  color: #4a5a52;
}

@media (max-width: 980px) {
  .res-homefit-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

@media (max-width: 640px) {
  .res-homefit-section {
    padding: 70px 18px;
  }

  .res-homefit-grid {
    grid-template-columns: 1fr;
  }

  .res-homefit-card {
    padding: 24px 20px;
  }
}

/* =========================
   RESIDENTIAL: WHAT TO EXPECT
========================= */

.res-expect-section {
  padding: 90px 24px;
  background: #ffffff;
}

.res-expect-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.res-expect-header {
  text-align: center;
  margin-bottom: 48px;
}

.res-expect-header h2,
.res-fit-copy h2,
.res-trust-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.res-expect-header p,
.res-trust-header p {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3a4a42;
}

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

.res-expect-step {
  padding: 30px 24px;
  border-radius: 18px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}

.res-expect-step span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--mgc-green);
  color: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-body);
  font-weight: 800;
}

.res-expect-step h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.res-expect-step p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5a52;
}

/* =========================
   RESIDENTIAL: WHO THIS IS FOR
========================= */

.res-fit-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.res-fit-container {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.res-fit-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.res-fit-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a4a42;
}

.res-fit-list {
  display: grid;
  gap: 14px;
}

.res-fit-item {
  position: relative;
  padding: 18px 20px 18px 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);

  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
}

.res-fit-item::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--mgc-green);
  font-weight: 900;
}

/* =========================
   RESIDENTIAL: TRUST / REASSURANCE
========================= */

.res-trust-section {
  padding: 90px 24px;
  background: #ffffff;
}

.res-trust-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.res-trust-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.res-trust-card {
  padding: 28px 22px;
  border-radius: 18px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  text-align: center;
}

.res-trust-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.res-trust-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5a52;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .res-expect-grid,
  .res-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .res-fit-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .res-expect-section,
  .res-fit-section,
  .res-trust-section {
    padding: 70px 18px;
  }

  .res-expect-grid,
  .res-trust-grid {
    grid-template-columns: 1fr;
  }

  .res-expect-header,
  .res-trust-header {
    margin-bottom: 36px;
  }
}

.res-after-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.res-after-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.res-after-header {
  text-align: center;
  margin-bottom: 44px;
}

.res-after-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.res-after-header p {
  margin: 0 auto;
  max-width: 680px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3a4a42;
}

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

.res-after-card {
  padding: 28px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  text-align: center;
}

.res-after-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.res-after-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5a52;
}

@media (max-width: 980px) {
  .res-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .res-after-section {
    padding: 70px 18px;
  }

  .res-after-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   COMMERCIAL PAGE SHARED
========================= */

.com-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.com-section-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.com-section-header p {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3a4a42;
}

.com-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

/* =========================
   COMMERCIAL: BUILT FOR WORKPLACES
========================= */

.com-built-section {
  padding: 90px 24px;
  background: #ffffff;
}

.com-built-container {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 52px;
  align-items: center;
}

.com-built-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--mgc-green-dark);
}

.com-built-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a4a42;
}

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

.com-built-card {
  padding: 28px 22px;
  border-radius: 18px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  text-align: center;
}

.com-built-card h3,
.com-space-card h3,
.com-program-card h3,
.com-included-card h3,
.com-process-step h3,
.com-trust-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.com-built-card p,
.com-space-card p,
.com-program-card p,
.com-process-step p,
.com-trust-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5a52;
}

/* =========================
   COMMERCIAL: SPACES SERVED
========================= */

.com-trust-section {
  padding: 90px 24px;
  background: #ffffff;
}

.com-spaces-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.com-spaces-container,
.com-programs-container,
.com-included-container,
.com-process-container,
.com-trust-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.com-spaces-grid,
.com-programs-grid,
.com-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.com-space-card,
.com-program-card,
.com-trust-card {
  padding: 28px 22px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
  text-align: center;
}

.com-space-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* =========================
   COMMERCIAL: PROGRAMS
========================= */

.com-programs-section {
  padding: 90px 24px;
  background: #ffffff;
}

.com-programs-note {
  width: fit-content;
  max-width: 860px;
  margin: -20px auto 34px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(38,73,55,0.08);
  color: var(--mgc-green-dark);

  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  text-align: center;
}

/* =========================
   COMMERCIAL: INCLUDED
========================= */

.com-included-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

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

.com-included-card {
  padding: 28px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}

.com-included-card ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 8px;
}

.com-included-card li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.45;
  color: #4a5a52;
}

/* =========================
   COMMERCIAL: PROCESS
========================= */

.com-process-section {
  padding: 90px 24px;
  background: #ffffff;
}

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

.com-process-step {
  padding: 30px 24px;
  border-radius: 18px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}

.com-process-step span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--mgc-green);
  color: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-body);
  font-weight: 800;
}

/* =========================
   COMMERCIAL: NON-TOXIC WORKPLACE
========================= */

.com-nontoxic-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.com-nontoxic-container {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.com-nontoxic-panel {
  padding: 36px 32px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}

.com-nontoxic-panel h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--mgc-green-dark);
}

.com-nontoxic-panel p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.03rem;
  line-height: 1.6;
  color: #3a4a42;
}

.com-nontoxic-list {
  display: grid;
  gap: 14px;
}

.com-nontoxic-list div {
  position: relative;
  padding: 18px 20px 18px 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);

  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
}

.com-nontoxic-list div::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--mgc-green);
  font-weight: 900;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .com-built-container,
  .com-nontoxic-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .com-built-grid,
  .com-spaces-grid,
  .com-programs-grid,
  .com-included-grid,
  .com-process-grid,
  .com-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .com-built-section,
  .com-spaces-section,
  .com-programs-section,
  .com-included-section,
  .com-process-section,
  .com-nontoxic-section,
  .com-trust-section {
    padding: 70px 18px;
  }

  .com-built-grid,
  .com-spaces-grid,
  .com-programs-grid,
  .com-included-grid,
  .com-process-grid,
  .com-trust-grid {
    grid-template-columns: 1fr;
  }

  .com-programs-note {
    border-radius: 16px;
  }

  .com-nontoxic-panel {
    padding: 28px 22px;
  }
}

/* =========================
   WHY NON-TOXIC PAGE SHARED
========================= */

.nt-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.nt-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.nt-section-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.nt-section-header p {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3a4a42;
}

/* =========================
   NON-TOXIC: PROBLEM
========================= */

.nt-problem-section {
  padding: 90px 24px;
  background: #ffffff;
}

.nt-problem-container {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.nt-problem-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--mgc-green-dark);
}

.nt-problem-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a4a42;
}

.nt-problem-card {
  padding: 34px 30px;
  border-radius: 22px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}

.nt-problem-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.nt-problem-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: #4a5a52;
}

/* =========================
   NON-TOXIC: MEANING
========================= */

.nt-meaning-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.nt-meaning-container,
.nt-benefits-container,
.nt-feel-container,
.nt-skeptic-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.nt-meaning-card {
  padding: 30px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
  text-align: center;
}

.nt-meaning-card h3,
.nt-benefit-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.nt-meaning-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.5;
  color: #4a5a52;
}

/* =========================
   NON-TOXIC: BENEFITS
========================= */

.nt-benefits-section {
  padding: 90px 24px;
  background: #ffffff;
}

.nt-benefits-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.nt-benefit-panel {
  padding: 34px 30px;
  border-radius: 22px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}

.nt-benefit-panel ul {
  margin: 18px 0 24px;
  padding-left: 1.15rem;
  display: grid;
  gap: 9px;
}

.nt-benefit-panel li {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.45;
  color: #4a5a52;
}

.nt-benefit-panel a {
  display: inline-flex;
  color: var(--mgc-green);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.nt-benefit-panel a:hover {
  text-decoration: underline;
}

/* =========================
   NON-TOXIC: FEEL
========================= */

.nt-feel-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.nt-feel-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.nt-feel-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--mgc-green-dark);
}

.nt-feel-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a4a42;
}

.nt-feel-list {
  display: grid;
  gap: 14px;
}

.nt-feel-list div {
  position: relative;
  padding: 18px 20px 18px 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);

  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
}

.nt-feel-list div::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--mgc-green);
  font-weight: 900;
}

/* =========================
   NON-TOXIC: SKEPTICISM
========================= */

.nt-skeptic-section {
  padding: 90px 24px;
  background: #ffffff;
}

.nt-skeptic-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 42px 36px;
  border-radius: 24px;
  background: var(--mgc-green-dark);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
}

.nt-skeptic-card h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: #ffffff;
}

.nt-skeptic-card p {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
}

/* =========================
   NON-TOXIC RESPONSIVE
========================= */

@media (max-width: 980px) {
  .nt-problem-container,
  .nt-feel-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

@media (max-width: 640px) {
  .nt-problem-section,
  .nt-meaning-section,
  .nt-benefits-section,
  .nt-feel-section,
  .nt-skeptic-section {
    padding: 70px 18px;
  }

  .nt-meaning-grid {
    grid-template-columns: 1fr;
  }

  .nt-problem-card,
  .nt-benefit-panel,
  .nt-skeptic-card {
    padding: 28px 22px;
  }

  .nt-section-header {
    margin-bottom: 36px;
  }
}

/* HOMEPAGE HERO: FORCE ONE LINE ON WIDE SCREENS */
@media (min-width: 1200px) {
  .hero.hero-nowrap .hero-content {
    width: min(1800px, 98vw);
    max-width: none;
  }

  .hero.hero-nowrap h1 {
    max-width: none !important;
    width: max-content;
    margin-left: auto;
    margin-right: auto;

    white-space: nowrap !important;
    text-wrap: nowrap !important;

    font-size: clamp(3.2rem, 5.8vw, 6.4rem);
  }
}

@media (max-width: 1199px) {
  .hero.hero-nowrap h1 {
    width: auto;
    max-width: 94vw !important;
    white-space: normal !important;
    text-wrap: balance !important;
  }
}


/* =========================
   TESTIMONIALS PAGE
========================= */

.reviews-proof-section,
.reviews-quotes-section {
  padding: 90px 24px;
  background: #ffffff;
}

.reviews-feature-section,
.reviews-fit-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.reviews-proof-container,
.reviews-feature-container,
.reviews-quotes-container,
.reviews-fit-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.reviews-header h2,
.reviews-feature-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.reviews-header p,
.reviews-feature-copy p {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: #3a4a42;
}

.reviews-source-grid,
.reviews-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.reviews-source-card,
.reviews-fit-card,
.reviews-quote-card {
  padding: 30px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}

.reviews-source-card h3,
.reviews-fit-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.reviews-source-card p,
.reviews-fit-card p {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.5;
  color: #4a5a52;
}

.reviews-rating {
  font-weight: 800;
  color: var(--mgc-green-dark) !important;
}

.reviews-source-card a,
.reviews-fit-card a {
  color: var(--mgc-green);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.reviews-source-card a:hover,
.reviews-fit-card a:hover {
  text-decoration: underline;
}

/* Feature */

.reviews-feature-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.reviews-feature-copy p {
  margin: 0;
}

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

.reviews-feature-list div {
  position: relative;
  padding: 18px 20px 18px 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);

  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
}

.reviews-feature-list div::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--mgc-green);
  font-weight: 900;
}

/* Quotes */

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

.reviews-stars {
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--mgc-green);
}

.reviews-quote-card blockquote {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.reviews-quote-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.45;
  color: #5a675f;
}

/* Responsive */

@media (max-width: 980px) {
  .reviews-source-grid,
  .reviews-fit-grid,
  .reviews-feature-container {
    grid-template-columns: 1fr;
  }

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

  .reviews-feature-container {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .reviews-proof-section,
  .reviews-feature-section,
  .reviews-quotes-section,
  .reviews-fit-section {
    padding: 70px 18px;
  }

  .reviews-header {
    margin-bottom: 36px;
  }

  .reviews-quotes-grid {
    grid-template-columns: 1fr;
  }

  .reviews-source-card,
  .reviews-fit-card,
  .reviews-quote-card {
    padding: 26px 20px;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-intro-section {
  padding: 90px 24px;
  background: #ffffff;
}

.contact-details-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.contact-intro-container,
.contact-details-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-page-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.contact-page-header h2,
.contact-details-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.contact-page-header p,
.contact-details-copy p {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: #3a4a42;
}

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

.contact-intro-card {
  padding: 30px 24px;
  border-radius: 18px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  text-align: center;
}

.contact-intro-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.contact-intro-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.5;
  color: #4a5a52;
}

/* Details */

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

.contact-details-copy p {
  margin: 0;
}

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

.contact-details-list div {
  position: relative;
  padding: 18px 20px 18px 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);

  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
}

.contact-details-list div::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--mgc-green);
  font-weight: 900;
}

/* Responsive */

@media (max-width: 980px) {
  .contact-intro-grid,
  .contact-details-container {
    grid-template-columns: 1fr;
  }

  .contact-details-container {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .contact-intro-section,
  .contact-details-section {
    padding: 70px 18px;
  }

  .contact-page-header {
    margin-bottom: 36px;
  }

  .contact-intro-card {
    padding: 26px 20px;
  }
}

/* =========================
   ABOUT PAGE
========================= */

.about-intro-band {
  padding: 44px 24px 24px;
  background: #ffffff;
}

.about-intro-container {
  width: min(860px, 100%);
  margin: 0 auto;
}

.about-intro-container p {
  margin: 0;

  text-align: center;

  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.75;
  color: #3d4b44;
}

.about-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.about-founder-section,
.about-standards-section,
.about-team-section,
.about-proof-section,
.about-founder-values-section {
  padding: 90px 24px;
}

/* =========================
   CLIENT REPORTED CALLOUT
========================= */

.about-client-reported {
  max-width: 760px;

  margin: 0 auto 44px;
  padding: 28px 30px;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(247,249,248,0.96) 100%
    );

  border-radius: 22px;

  border: 1px solid rgba(38,73,55,0.08);

  box-shadow: 0 12px 34px rgba(0,0,0,0.04);
}

.about-client-reported p {
  margin: 0;

  font-family: var(--font-body);

  font-size: 1.02rem;

  line-height: 1.7;

  color: #3d4b44;

  font-style: italic;
}

.about-founder-section,
.about-team-section,
.about-founder-values-section,
.about-standards-section{
  background: #ffffff;
}

.about-proof-section {
  background: #f7f9f8;
}

.about-founder-container,
.about-standards-container,
.about-team-container,
.about-proof-container,
.about-founder-values-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* Founder */

.about-founder-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-founder-photo img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}

.about-founder-copy h2,
.about-team-copy h2,
.about-values-card h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--mgc-green-dark);
}

.about-founder-copy p,
.about-team-copy p,
.about-values-card p {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #3a4a42;
}

/* Shared headers */

.about-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-section-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.about-section-header p {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a4a42;
}

/* Standards */

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

.about-standard-card {
  padding: 30px 24px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  text-align: center;
}

.about-standard-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.about-standard-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.55;
  color: #4a5a52;
}

/* Team */

.about-team-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-team-list {
  display: grid;
  gap: 14px;
}

.about-team-list div {
  position: relative;
  padding: 18px 20px 18px 48px;
  border-radius: 16px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);

  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
}

.about-team-list div::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--mgc-green);
  font-weight: 900;
}

/* Proof */

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

.about-proof-card {
  padding: 28px 22px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  text-align: center;
}

.about-proof-card span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--mgc-green-dark);
}

.about-proof-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.93rem;
  line-height: 1.45;
  color: #4a5a52;
}

/* Values */

.about-values-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 36px;
  border-radius: 24px;
  background: var(--mgc-green-dark);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
}

.about-values-card h2 {
  color: #ffffff;
}

.about-values-card p {
  margin: 0;
  color: rgba(255,255,255,0.86);
}

/* Responsive */

@media (max-width: 980px) {
  .about-founder-container,
  .about-team-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-standards-grid {
    grid-template-columns: 1fr;
  }

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

  .about-founder-photo {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .about-founder-section,
  .about-standards-section,
  .about-team-section,
  .about-proof-section,
  .about-founder-values-section {
    padding: 70px 18px;
  }

  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .about-values-card {
    padding: 32px 22px;
  }
}

/* =========================
   ABOUT QUOTE
========================= */

.about-quote-section {
  padding: 40px 24px 90px;
  background: #f7f9f8;
}

.about-quote-container {
  width: min(860px, 100%);
  margin: 0 auto;

  padding: 44px 40px;

  text-align: center;

  background: #f7f9f8;

  border-radius: 28px;

  border: 1px solid rgba(38,73,55,0.08);

  box-shadow: 0 14px 38px rgba(0,0,0,0.05);
}

.about-quote-container blockquote {
  margin: 0 0 22px;

  font-family: var(--font-display);

  font-size: clamp(1.7rem, 3vw, 2.35rem);

  line-height: 1.32;

  color: var(--mgc-green-dark);
}

.about-quote-container span {
  display: inline-block;

  font-family: var(--font-body);

  font-size: 0.96rem;

  font-weight: 700;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  color: var(--mgc-green);
}

/* =========================
   YEARS / TIMELINE BAND
========================= */

.about-years-band {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;

  max-width: 980px;

  margin: 54px auto 0;
}

.about-years-band div {
  padding: 28px 24px;

  text-align: center;

  background: #ffffff;

  border-radius: 20px;

  border: 1px solid rgba(38,73,55,0.08);

  box-shadow: 0 12px 34px rgba(0,0,0,0.04);
}

.about-years-band span {
  display: block;

  margin-bottom: 10px;

  font-family: var(--font-display);

  font-size: clamp(1.5rem, 2.3vw, 2rem);

  color: var(--mgc-green-dark);
}

.about-years-band p {
  margin: 0;

  font-family: var(--font-body);

  font-size: 0.96rem;

  line-height: 1.55;

  color: #4a5a52;
}

/* =========================
   COMMERCIAL TRUST SECTION
========================= */

.about-commercial-section {
  padding: 90px 24px;

  background: #f7f9f8;
}

.about-commercial-container {
  width: min(860px, 100%);

  margin: 0 auto;

  text-align: center;
}

.about-commercial-container h2 {
  margin: 0 0 18px;

  font-family: var(--font-display);

  font-size: clamp(2rem, 3vw, 2.7rem);

  font-weight: 500;

  line-height: 1.1;

  color: var(--mgc-green-dark);
}

.about-commercial-container p {
  margin: 0 auto;

  max-width: 760px;

  font-family: var(--font-body);

  font-size: 1.05rem;

  line-height: 1.72;

  color: #3d4b44;
}

/* =========================
   RETENTION SECTION
========================= */

.about-retention-section {
  padding: 90px 24px;

  background: #f7f9f8;
}

.about-retention-container {
  width: min(1080px, 100%);

  margin: 0 auto;
}

.about-retention-container h2 {
  margin: 0 0 48px;

  text-align: center;

  font-family: var(--font-display);

  font-size: clamp(2rem, 3vw, 2.7rem);

  font-weight: 500;

  line-height: 1.1;

  color: var(--mgc-green-dark);
}

.about-retention-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.about-retention-grid article {
  padding: 32px 28px;

  background: #f7f9f8;

  border-radius: 22px;

  border: 1px solid rgba(38,73,55,0.08);

  box-shadow: 0 12px 34px rgba(0,0,0,0.04);
}

.about-retention-grid h3 {
  margin: 0 0 14px;

  font-family: var(--font-display);

  font-size: 1.32rem;

  font-weight: 500;

  color: var(--mgc-green-dark);
}

.about-retention-grid p {
  margin: 0;

  font-family: var(--font-body);

  font-size: 0.98rem;

  line-height: 1.62;

  color: #4a5a52;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {

  .about-years-band,
  .about-retention-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {

  .about-quote-section,
  .about-commercial-section,
  .about-retention-section {
    padding: 72px 18px;
  }

  .about-quote-container {
    padding: 34px 24px;
  }

}

/* =========================
   ABOUT PAGE LINKS
========================= */

.about-founder-copy a,
.about-section-header a,
.about-standard-card a,
.about-team-copy a,
.about-values-card a,
.about-retention-grid a,
.about-commercial-container a,
.about-client-reported a {
  color: var(--mgc-green);

  text-decoration: none;

  font-weight: 650;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.about-founder-copy a:hover,
.about-section-header a:hover,
.about-standard-card a:hover,
.about-team-copy a:hover,
.about-values-card a:hover,
.about-retention-grid a:hover,
.about-commercial-container a:hover,
.about-client-reported a:hover {
  color: var(--mgc-green-dark);

  text-decoration: underline;

  text-underline-offset: 0.18em;
}

/* =========================
   ABOUT PAGE LINK STYLING
========================= */

body.about-page main a {
  color: var(--mgc-green);

  text-decoration: none;

  font-weight: 650;

  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

body.about-page main a:hover {
  color: var(--mgc-green-dark);

  text-decoration: underline;

  text-underline-offset: 0.16em;
}

/* prevent giant thick default underlines */

body.about-page main a:visited {
  color: var(--mgc-green);
}

/* =========================
   MARIN OFFICE CLEANING PAGE
========================= */

.office-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.office-intro-section,
.office-included-section,
.office-process-section,
.office-faq-section {
  padding: 90px 24px;
  background: #ffffff;
}

.office-trust-section,
.office-frequency-section,
.office-local-section {
  padding: 90px 24px;
  background: #f7f9f8;
}

.office-intro-container,
.office-trust-container,
.office-included-container,
.office-frequency-container,
.office-process-container,
.office-local-container,
.office-faq-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* Shared section headers */

.office-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.office-section-header h2,
.office-intro-copy h2,
.office-frequency-copy h2,
.office-local-card h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--mgc-green-dark);
}

.office-section-header p,
.office-intro-copy p,
.office-frequency-copy p,
.office-local-card p {
  margin: 0 auto;
  max-width: 780px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #3a4a42;
}

.office-intro-copy p + p,
.office-local-card p + p {
  margin-top: 16px;
}

/* Intro */

.office-intro-container {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
}

.office-intro-card {
  padding: 34px 30px;
  border-radius: 22px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}

.office-intro-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.office-intro-card ul,
.office-included-card ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 9px;
}

.office-intro-card li,
.office-included-card li {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.45;
  color: #4a5a52;
}

/* Trust cards */

.office-trust-grid,
.office-included-grid,
.office-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.office-trust-card,
.office-included-card,
.office-process-step {
  padding: 30px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}

.office-trust-card h3,
.office-included-card h3,
.office-process-step h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.office-trust-card p,
.office-process-step p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.55;
  color: #4a5a52;
}

/* Frequency */

.office-frequency-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.office-frequency-list {
  display: grid;
  gap: 14px;
}

.office-frequency-list div {
  position: relative;
  padding: 18px 20px 18px 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
}

.office-frequency-list div::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--mgc-green);
  font-weight: 900;
}

/* Process */

.office-process-step span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--mgc-green);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
}

/* Local */

.office-local-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 42px 36px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 14px 38px rgba(0,0,0,0.05);
  text-align: center;
}

/* FAQ */

.office-faq-container {
  width: min(980px, 100%);
}

.office-faq-list {
  display: grid;
  gap: 14px;
}

.office-faq-item {
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.10);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  overflow: hidden;
}

.office-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.office-faq-item summary::-webkit-details-marker {
  display: none;
}

.office-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(38,73,55,0.10);
  color: var(--mgc-green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
}

.office-faq-item[open] summary::after {
  content: "–";
}

.office-faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4a5a52;
}

/* Responsive */

@media (max-width: 980px) {
  .office-intro-container,
  .office-frequency-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .office-trust-grid,
  .office-included-grid,
  .office-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .office-intro-section,
  .office-trust-section,
  .office-included-section,
  .office-frequency-section,
  .office-process-section,
  .office-local-section,
  .office-faq-section {
    padding: 70px 18px;
  }

  .office-trust-grid,
  .office-included-grid,
  .office-process-grid {
    grid-template-columns: 1fr;
  }

  .office-intro-card,
  .office-local-card {
    padding: 28px 22px;
  }

  .office-faq-item summary {
    padding: 18px;
    font-size: 1.05rem;
  }

  .office-faq-item p {
    padding: 0 18px 20px;
  }
}

/* =========================
   SHARED LANDING PAGE SYSTEM
========================= */

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.section-header h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--mgc-green-dark);
}

.section-header p {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a4a42;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.info-card {
  padding: 30px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}

.info-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--mgc-green-dark);
}

.info-card p,
.info-card li {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.55;
  color: #4a5a52;
}

.info-card p {
  margin: 0;
}

.info-card ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 9px;
}

/* =========================
   SAN RAFAEL COMMERCIAL PAGE
========================= */

.sr-section {
  padding: 90px 24px;
  background: #ffffff;
}

.sr-section-tint {
  background: #f7f9f8;
}

.sr-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.sr-two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
}

.sr-feature-card {
  padding: 34px 30px;
  border-radius: 22px;
  background: #f7f9f8;
  border: 1px solid rgba(38,73,55,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}

.sr-section-tint .sr-feature-card {
  background: #ffffff;
}

@media (max-width: 980px) {
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sr-two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .sr-section {
    padding: 70px 18px;
  }

  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 36px;
  }
}

/* =========================
   THANK YOU PAGE
========================= */

.thank-you-page {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(247,249,248,0.96) 0%,
      rgba(255,255,255,0.98) 45%,
      rgba(232,239,234,0.92) 100%
    );
}

.thank-you-section {
  min-height: 100vh;
  padding: 80px 24px;
  display: grid;
  place-items: center;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: 58px 44px;
  text-align: center;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(38,73,55,0.10);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.10);
}

.thank-you-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--mgc-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 800;
}

.thank-you-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.thank-you-card h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--mgc-green-dark);
}

.thank-you-message {
  max-width: 540px;
  margin: 0 auto 14px;
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.6;
  color: #3a4a42;
}

.thank-you-reassurance {
  max-width: 560px;
  margin: 0 auto 34px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  color: #59665f;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.thank-you-primary,
.thank-you-secondary {
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 750;
  text-decoration: none;
}

.thank-you-primary {
  background: var(--mgc-green);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}

.thank-you-secondary {
  background: rgba(38,73,55,0.08);
  color: var(--mgc-green-dark);
}

@media (max-width: 640px) {
  .thank-you-section {
    padding: 56px 18px;
  }

  .thank-you-card {
    padding: 42px 24px;
    border-radius: 24px;
  }

  .thank-you-actions {
    display: grid;
  }
}

/* =========================
   CONTENT LINKS
========================= */

.content-link,
.sr-section a,
.office-section a,
.about-section a,
.com-section a,
.res-section a {
  color: var(--mgc-green);
  text-decoration: none;
  font-weight: 650;
  transition:
    color 0.18s ease,
    opacity 0.18s ease,
    border-color 0.18s ease;
}

/* subtle inline style */

.sr-section p a,
.office-section p a,
.about-section p a,
.com-section p a,
.res-section p a {
  border-bottom: 1px solid rgba(38,73,55,0.22);
}

/* hover */

.content-link:hover,
.sr-section a:hover,
.office-section a:hover,
.about-section a:hover,
.com-section a:hover,
.res-section a:hover {
  color: var(--mgc-green-dark);
  border-bottom-color: rgba(38,73,55,0.48);
}

/* visited links */

.content-link:visited,
.sr-section a:visited,ser
.office-section a:visited,
.about-section a:visited,
.com-section a:visited,
.res-section a:visited {
  color: var(--mgc-green);
}

/* =========================
   RELATED LOCATION LINKS
========================= */

.related-location-link {
  max-width: 760px;

  margin: 36px auto 84px;

  padding: 22px 26px;

  border-radius: 20px;

  background: rgba(38,73,55,0.07);

  border: 1px solid rgba(38,73,55,0.10);

  text-align: center;
}

.related-location-link p {
  margin: 0;

  font-size: 0.98rem;
  line-height: 1.6;

  color: #3f4d45;
}

.related-location-secondary {
  margin-top: 12px !important;

  font-size: 0.92rem !important;

  opacity: 0.82;
}

.related-location-link a {
  color: var(--mgc-green-dark);

  text-decoration: none;

  font-weight: 700;

  border-bottom: none;

  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}

.related-location-link a:hover {
  color: var(--mgc-green);
  text-decoration: underline;
  text-underline-offset: 0.18em;

  border-bottom-color: rgba(38,73,55,0.55);
}

.faq-bridge-section {
  padding: 72px 24px 72px;
}

.faq-bridge-container {
  width: min(760px, 100%);
  margin: 0 auto;

  padding: 28px 32px;

  background:
    linear-gradient(
      180deg,
      rgba(244,248,245,0.95) 0%,
      rgba(234,242,236,0.88) 100%
    );

  border: 1px solid rgba(38,73,55,0.08);

  border-radius: 24px;

  text-align: center;
}

.faq-bridge-text {
  margin: 0 0 12px;

  font-size: 1rem;
  line-height: 1.7;

  color: #4a5a52;
}

.faq-bridge-link {
  color: var(--mgc-green-dark);

  text-decoration: none;

  font-weight: 750;
}

.faq-bridge-link:hover {
  color: var(--mgc-green);

  text-decoration: underline;
  text-underline-offset: 0.16em;
}

/*=============================
    SECTION BACKGROUNDS 
=============================*/
.section-white {
  background: #ffffff !important;
}

.section-soft-green {
  background: #f4f8f5 !important;
}

.section-warm {
  background: #f7f5f2 !important;
}

/* =========================
   EDITORIAL BODY LINKS
========================= */

.content-link,
.com-built-section a,
.com-intro-section a,
.com-process-section a,
.com-local-section a,
.com-faq-section a {
  color: var(--mgc-green-dark);

  text-decoration: none;

  font-weight: 650;

/*  border-bottom: 1px solid rgba(38,73,55,0.22); */

  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}

.content-link:hover,
.com-built-section a:hover,
.com-intro-section a:hover,
.com-process-section a:hover,
.com-local-section a:hover,
.com-faq-section a:hover {
  color: var(--mgc-green);

  border-bottom-color: rgba(38,73,55,0.5);
}

.trust-icon,
.trust-item img {
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  display: block;
}

.trust-icon svg {
  width: 28px;
  height: 28px;

  display: block;
}

.trust-icon-inline {
  color: #61b8b2;
}

.trust-icon-inline svg {
  width: 100%;
  height: 100%;
  display: block;
}

.trust-svg-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-svg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.85;
}

.testimonial-bridge-wrapper {
  padding: 28px 32px;

  margin: 52px auto;

  max-width: 860px;

  background: linear-gradient(
    180deg,
    rgba(244,248,245,0.95) 0%,
    rgba(234,242,236,0.88) 100%
  );

  border: 1px solid rgba(38,73,55,0.08);

  border-radius: 24px;

  text-align: center;
}

.testimonial-bridge {
    font-weight: 500;
}

.testimonial-bridge a {
    color: var(--mgc-green-dark);

    text-decoration: none;

    font-weight: 800;

    display: inline;

    transition:
        color 0.18s ease;
}

.testimonial-bridge a:hover {
    color: var(--mgc-green);
}

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

.nav a,
.nav-dropdown-toggle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--mgc-green-dark);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav a:hover,
.nav-dropdown-toggle:hover {
  color: var(--mgc-green);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--mgc-green);
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--mgc-green-dark);
  color: #fff !important;
}

/* Dropdown */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);

  min-width: 220px;
  padding: 12px;

  background: #fff;
  border: 1px solid rgba(38,73,55,0.10);
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.10);

  display: none;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f4f8f5;
}

/* Mobile grouping */

.mobile-menu-label {
  margin: 18px 0 6px;
  padding: 0 13px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

/* =========================
   FAQ PAGE
========================= */

.faq-intro-section {
  padding: 48px 24px 32px;
}

.faq-intro-container {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.faq-intro-container p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.7;
  color: #3a4a42;
}

.faq-page-section {
  padding: 90px 24px;
}

.faq-page-container {
  width: min(980px, 100%);
  margin: 0 auto;
}

.faq-page-header {
  text-align: center;
  margin-bottom: 42px;
}

.faq-page-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.faq-page-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--mgc-green-dark);
}

.faq-page-list {
  display: grid;
  gap: 14px;
}

.faq-page-item {
  background: #ffffff;
  border: 1px solid rgba(38,73,55,0.10);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  overflow: hidden;
}

.section-white .faq-page-item {
  background: #f7f9f8;
}

.faq-page-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--mgc-green-dark);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-page-item summary::-webkit-details-marker {
  display: none;
}

.faq-page-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(38,73,55,0.10);
  color: var(--mgc-green-dark);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-page-item[open] summary::after {
  content: "–";
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}

.footer-bottom-left p {
    margin: 4px 0;
}

.footer-bottom-right a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.footer-bottom-right a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {

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

}

.faq-page-item p {
  margin: 0;
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.62;
  color: #4a5a52;
}

.faq-page-item p + p {
  padding-top: 0;
}

.faq-page-item a {
  color: var(--mgc-green-dark);
  text-decoration: none;
  font-weight: 650;
}

.faq-page-item a:hover {
  color: var(--mgc-green);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1.5px;
}

@media (max-width: 640px) {
  .faq-intro-section {
    padding: 40px 18px 24px;
  }

  .faq-page-section {
    padding: 70px 18px;
  }

  .faq-page-header {
    margin-bottom: 34px;
  }

  .faq-page-item summary {
    padding: 18px;
    font-size: 1.05rem;
  }

  .faq-page-item p {
    padding: 0 18px 18px;
  }
}

.contact-faq-note {
  padding: 56px 24px 56px;
}

.contact-faq-note-inner {
  width: min(720px, 100%);
  margin: 0 auto;

  text-align: center;
}

.contact-faq-note-inner p {
  margin: 0 0 10px;

  font-size: 0.98rem;
  line-height: 1.7;

  color: #4a5a52;
}

.contact-faq-note-inner a {
  color: var(--mgc-green-dark);

  text-decoration: none;

  font-weight: 700;
}

.contact-faq-note-inner a:hover {
  color: var(--mgc-green);

  text-decoration: underline;

  text-underline-offset: 0.16em;
}

.nav-contact a {
  color: var(--mgc-green-dark);

  text-decoration: none;

  font-weight: 600;

  font-size: 0.95rem;

  letter-spacing: 0.01em;
}

.nav-contact a:hover {
  color: var(--mgc-green);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero-phone {
  margin: 0;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(244,248,245,0.78);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  font-family: var(--font-body);

  font-size: 1rem;

  line-height: 1.3;

  color: var(--mgc-green-dark);

  box-shadow:
    0 4px 18px rgba(0,0,0,0.08);
}

.hero-phone a {
  color: var(--mgc-green-dark);

  font-weight: 750;

  text-decoration: none;
}

.hero-phone a:hover {
  color: var(--mgc-green);

  text-decoration: underline;

  text-underline-offset: 0.16em;
}

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

@media (max-width: 900px) {
  .mobile-call-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 56px;
    border-radius: 18px;
    background: rgba(38,73,55,0.96);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;

    box-shadow: 0 8px 28px rgba(0,0,0,0.18);

    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;

    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .mobile-call-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body {
    padding-bottom: 92px;
  }
}

.contact-info-card {
  margin-top: 32px;
  padding: 24px 26px;
  border-radius: 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
}

.contact-info-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 500;
  color: #ffffff;
}

.contact-info-card p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.contact-kicker {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mgc-green);
}

.contact-info-card .contact-kicker {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.72);
}

.contact-info-card h2 {
  margin: 0 0 14px;
  color: var(--mgc-green-dark);
  font-family: var(--font-display);
  font-weight: 500;
}

.contact-direct a {
  color:  rgba(255,255,255,0.88);
  font-weight: 750;
  text-decoration: none;
}

.contact-direct a:hover {
  color:  rgba(255,255,255,0.88);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.contact-note {
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-card .contact-note {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.76);
}
