:root{--page-title-display:none;}/* Start custom CSS *//* ==========================================================================
   MASTER SOLUTION CLEANING — SITE CSS
   Paste into Elementor: Page Settings > Advanced > Custom CSS
   (or Site Settings > Custom CSS to reuse on every page).
   Everything is scoped under .mscl so it can't fight your theme.
   Brand colors from the brand manual: #18c29c / #126872 / #585857
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

.mscl {
  --mint: #18c29c;
  --mint-dark: #13a585;
  --deep: #126872;
  --deep-2: #0d4b53;
  --ink: #16282b;
  --gray: #585857;
  --gray-soft: #7a8384;
  --tint: #eef6f4;
  --line: #dfe9e7;
  --white: #ffffff;

  --wrap: 1180px;
  --r: 14px;
  --r-lg: 22px;

  font-family: 'Nunito', 'Gotham Rounded', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.mscl *,
.mscl *::before,
.mscl *::after { box-sizing: border-box; }

.mscl img { max-width: 100%; display: block; }

.mscl h1, .mscl h2, .mscl h3, .mscl h4 {
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  font-weight: 800;
}
.mscl h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.mscl h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.mscl h3 { font-size: 1.22rem; font-weight: 700; }
.mscl h4 { font-size: .95rem; font-weight: 700; }
.mscl p  { margin: 0 0 1rem; }
.mscl a  { color: var(--deep); }

.mscl a:focus-visible,
.mscl button:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
  border-radius: 6px;
}

.mscl-sr {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.mscl-is-hidden { display: none !important; }

.mscl-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Buttons ---------- */
.mscl .mscl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .92rem 1.6rem;
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--deep);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.mscl .mscl-btn:hover { background: var(--deep-2); border-color: var(--deep-2); color: var(--white); }

.mscl .mscl-btn--mint { background: var(--mint); border-color: var(--mint); color: #05312b; }
.mscl .mscl-btn--mint:hover { background: var(--mint-dark); border-color: var(--mint-dark); color: #05312b; }

.mscl .mscl-btn--dark { background: var(--ink); border-color: var(--ink); }
.mscl .mscl-btn--dark:hover { background: #0b1b1e; border-color: #0b1b1e; }

.mscl .mscl-btn--ghost { background: transparent; color: var(--deep); border-color: var(--line); }
.mscl .mscl-btn--ghost:hover { background: var(--tint); color: var(--deep); border-color: var(--mint); }

.mscl .mscl-btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.mscl .mscl-btn--ghost-light:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }

.mscl .mscl-link {
  display: inline-block;
  font-weight: 700;
  color: var(--deep);
  text-decoration: none;
  border-bottom: 2px solid var(--mint);
  padding-bottom: 2px;
}
.mscl .mscl-link:hover { color: var(--mint-dark); }

/* ---------- Header ---------- */
.mscl-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.mscl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.mscl-logo img { height: 52px; width: auto; }

.mscl-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.mscl .mscl-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
}
.mscl .mscl-nav a:hover { color: var(--deep); border-bottom-color: var(--mint); }
.mscl .mscl-nav a.is-current { color: var(--deep); border-bottom-color: var(--mint); }

.mscl .mscl-nav__call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--mint);
  color: #05312b !important;
  padding: .7rem 1.25rem !important;
  border-radius: 999px;
  border-bottom: 0 !important;
  font-weight: 800;
  white-space: nowrap;
}
.mscl .mscl-nav__call:hover { background: var(--mint-dark); }
.mscl .mscl-nav__call svg { width: 17px; height: 17px; fill: #05312b; }

.mscl-burger {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.mscl-burger__box { display: block; width: 26px; }
.mscl-burger__box i {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--deep);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.mscl-nav-open .mscl-burger__box i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mscl-nav-open .mscl-burger__box i:nth-child(2) { opacity: 0; }
.mscl-nav-open .mscl-burger__box i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.mscl-hero {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(24,194,156,.16) 0%, rgba(24,194,156,0) 60%),
    var(--white);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.mscl-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.mscl-hero__copy h1 { max-width: 15ch; }
.mscl .mscl-lead {
  font-size: 1.12rem;
  color: var(--gray);
  max-width: 54ch;
  margin-bottom: 1.8rem;
}
.mscl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.9rem;
}

.mscl .mscl-ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.mscl .mscl-ticks li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
}
.mscl .mscl-ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .34em;
  width: 13px; height: 7px;
  border-left: 3px solid var(--mint);
  border-bottom: 3px solid var(--mint);
  border-radius: 1px;
  transform: rotate(-45deg);
}

.mscl-hero__media { position: relative; }
.mscl-hero__media img {
  width: 100%;
  height: clamp(320px, 46vw, 520px);
  object-fit: cover;
  border-radius: var(--r-lg);
}
.mscl .mscl-hero__badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  margin: 0;
  background: var(--deep);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--r);
  font-size: .9rem;
  line-height: 1.3;
  max-width: 220px;
  box-shadow: 0 18px 38px rgba(18,104,114,.28);
}
.mscl .mscl-hero__badge strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--mint);
  margin-bottom: .15rem;
}

/* ---------- Promise strip ---------- */
.mscl-strip {
  background: var(--deep);
  color: var(--white);
  padding: clamp(2.4rem, 5vw, 3.4rem) 0;
}
.mscl-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}
.mscl-strip__grid > div { border-left: 3px solid var(--mint); padding-left: 1.25rem; }
.mscl-strip h3 { color: var(--white); margin-bottom: .35rem; }
.mscl-strip p { color: rgba(255,255,255,.82); margin: 0; font-size: .98rem; }

/* ---------- Sections ---------- */
.mscl-section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; background: var(--white); }
.mscl-section--tint { background: var(--tint); }

.mscl-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.mscl-head p { color: var(--gray); font-size: 1.05rem; margin: 0; }

/* ---------- Services ---------- */
.mscl-svc {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 2.6rem) 0;
  border-top: 1px solid var(--line);
}
.mscl-svc--flip .mscl-svc__media { order: 2; }
.mscl-svc__media img {
  width: 100%;
  height: clamp(260px, 32vw, 400px);
  object-fit: cover;
  border-radius: var(--r-lg);
}
.mscl-svc__body h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 800; }
.mscl-svc__body > p { color: var(--gray); max-width: 58ch; }

.mscl .mscl-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.mscl .mscl-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .99rem;
  color: var(--ink);
}
.mscl .mscl-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--mint);
}

/* ---------- Steps ---------- */
.mscl .mscl-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  counter-reset: none;
}
.mscl .mscl-steps > li {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.7rem 1.7rem;
  border: 1px solid var(--line);
}
.mscl-steps__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--mint);
  color: #05312b;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.mscl .mscl-steps p { color: var(--gray); margin: 0; font-size: .99rem; }

/* ---------- Gallery ---------- */
.mscl-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mscl-gallery figure { margin: 0; }
.mscl-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--r);
}
.mscl-gallery__wide { grid-column: span 2; }
.mscl-gallery__wide img { height: 250px; }
.mscl-gallery figure:last-child { grid-column: span 2; }

/* ---------- About ---------- */
.mscl-about__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.mscl-about p { color: var(--gray); max-width: 62ch; }
.mscl-about .mscl-btn { margin-top: .6rem; }

.mscl-area {
  background: var(--tint);
  border-radius: var(--r-lg);
  padding: 1.9rem;
  border-top: 5px solid var(--mint);
}
.mscl-area h3 { margin-bottom: .4rem; }
.mscl-area > p { font-size: .95rem; margin-bottom: .9rem; }
.mscl-area ul {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .8rem;
  font-size: .94rem;
  font-weight: 600;
}
.mscl .mscl-area__note { font-size: .88rem; color: var(--gray-soft); margin: 0; }

/* ---------- Reviews ---------- */
.mscl-reviews__intro { max-width: 60ch; margin-bottom: 2rem; }
.mscl-reviews__intro p { color: var(--gray); margin-bottom: 1.4rem; }

.mscl .mscl-reviews__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mscl .mscl-reviews__list > li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem;
}
.mscl-stars { color: var(--mint); letter-spacing: 2px; margin-bottom: .6rem; }
.mscl .mscl-reviews__list p { font-size: 1rem; color: var(--ink); }
.mscl .mscl-reviews__list cite {
  font-style: normal;
  font-weight: 700;
  font-size: .9rem;
  color: var(--gray-soft);
}

/* ---------- CTA ---------- */
.mscl-cta {
  background: var(--deep);
  color: var(--white);
  padding: clamp(3.4rem, 7vw, 5.2rem) 0;
  text-align: center;
}
.mscl .mscl-cta__kicker {
  color: var(--mint);
  font-weight: 700;
  margin-bottom: .6rem;
  font-size: 1rem;
}
.mscl .mscl-cta__phone {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  margin-bottom: 1rem;
  border-bottom: 5px solid var(--mint);
  padding-bottom: .12em;
}
.mscl .mscl-cta__phone:hover { color: var(--mint); }
.mscl .mscl-cta__sub {
  color: rgba(255,255,255,.85);
  max-width: 46ch;
  margin: 0 auto 1.8rem;
}
.mscl-cta__actions {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.mscl-footer {
  background: var(--white);
  color: var(--gray);
  padding: clamp(2.8rem, 5vw, 3.6rem) 0 1.6rem;
  font-size: .95rem;
}
.mscl-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2rem;
}
.mscl-footer h4 { color: var(--ink); margin-bottom: .9rem; }
.mscl-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.mscl .mscl-footer a { color: var(--gray); text-decoration: none; }
.mscl .mscl-footer a:hover { color: var(--deep); }
.mscl-footer__brand img { height: 68px; width: auto; margin-bottom: 1rem; }
.mscl-footer__brand p { max-width: 34ch; margin: 0; }

.mscl-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: .87rem;
  color: var(--gray-soft);
}
.mscl-footer__bottom p { margin: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .mscl-footer__grid { grid-template-columns: 1fr 1fr; }
  .mscl .mscl-nav { gap: 1.1rem; }
}

@media (max-width: 980px) {
  .mscl-burger { display: block; }

  .mscl-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 22px 1.2rem;
    display: none;
    box-shadow: 0 20px 30px rgba(22,40,43,.1);
  }
  .mscl-nav-open .mscl-nav { display: flex; }
  .mscl .mscl-nav a {
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .mscl .mscl-nav a:hover,
  .mscl .mscl-nav a.is-current { border-bottom-color: var(--line); }
  .mscl .mscl-nav__call {
    margin-top: 1rem;
    justify-content: center;
    border-bottom: 0 !important;
  }
  .mscl-header__inner { position: relative; }

  .mscl-hero__grid { grid-template-columns: 1fr; }
  .mscl-hero__copy h1 { max-width: 20ch; }
  .mscl .mscl-hero__badge { left: auto; right: 16px; bottom: 16px; }

  .mscl-svc { grid-template-columns: 1fr; }
  .mscl-svc--flip .mscl-svc__media { order: 0; }

  .mscl-about__grid { grid-template-columns: 1fr; }
  .mscl-strip__grid { grid-template-columns: 1fr; }
  .mscl .mscl-steps { grid-template-columns: 1fr; }
  .mscl .mscl-reviews__list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .mscl { font-size: 16px; }
  .mscl-gallery { grid-template-columns: 1fr 1fr; }
  .mscl-gallery__wide { grid-column: span 2; }
  .mscl-gallery img { height: 190px; }
  .mscl-gallery__wide img { height: 220px; }

  .mscl-hero__actions .mscl-btn { flex: 1 1 100%; }
  .mscl-cta__actions .mscl-btn { flex: 1 1 100%; }
  .mscl-footer__grid { grid-template-columns: 1fr; }
  .mscl-area ul { grid-template-columns: 1fr 1fr; }
  .mscl-logo img { height: 44px; }
  .mscl .mscl-hero__badge { position: static; max-width: none; margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .mscl *, .mscl *::before, .mscl *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ==========================================================================
   SERVICES PAGE — additional blocks
   ========================================================================== */

/* ---------- Page hero (inner pages) ---------- */
.mscl-phero {
  background: var(--deep);
  color: var(--white);
  padding: clamp(2.8rem, 6vw, 4.6rem) 0;
}
.mscl-phero h1 {
  color: var(--white);
  max-width: 18ch;
  margin-bottom: .7rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.mscl .mscl-phero p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 60ch;
  margin-bottom: 1.7rem;
}
.mscl-phero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Two-column checklist ---------- */
.mscl .mscl-list--2col {
  grid-template-columns: 1fr 1fr;
  column-gap: 1.6rem;
}

/* ---------- Included / not included ---------- */
.mscl-note {
  background: var(--tint);
  border-left: 5px solid var(--mint);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.3rem 1.5rem;
  margin: 1.4rem 0 0;
}
.mscl .mscl-note p { margin: 0; font-size: .97rem; color: var(--gray); }
.mscl .mscl-note strong { color: var(--ink); }

/* ---------- Extra service cards ---------- */
.mscl-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mscl-cards > article {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--mint);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
}
.mscl-cards h3 { margin-bottom: .5rem; }
.mscl .mscl-cards p { color: var(--gray); font-size: .99rem; margin: 0; }

/* ---------- Frequency ---------- */
.mscl-freq {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
}
.mscl-freq > div { border-left: 3px solid var(--mint); padding-left: 1.1rem; }
.mscl-freq h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.mscl .mscl-freq p { color: var(--gray); font-size: .95rem; margin: 0; }

/* ---------- FAQ ---------- */
.mscl-faq { max-width: 820px; }
.mscl-faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.mscl-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mscl-faq summary::-webkit-details-marker { display: none; }
.mscl-faq summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 3px solid var(--mint);
  border-bottom: 3px solid var(--mint);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-top: -5px;
}
.mscl-faq details[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.mscl-faq summary:hover { color: var(--deep); }
.mscl .mscl-faq details p {
  margin: .9rem 0 0;
  color: var(--gray);
  max-width: 70ch;
}

@media (max-width: 980px) {
  .mscl-cards { grid-template-columns: 1fr; }
  .mscl-freq { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .mscl .mscl-list--2col { grid-template-columns: 1fr; }
  .mscl-freq { grid-template-columns: 1fr; }
  .mscl-phero__actions .mscl-btn { flex: 1 1 100%; }
}/* End custom CSS */