/* =======================================================
   Lightfoot Cleaning — Homepage (final polish pass)
   ======================================================= */

:root {
  --teal:        #00b5a3;
  --teal-dark:   #009e8e;
  --teal-darker: #008074;
  --teal-soft:   #f0fffe;
  --text:        #1a1a1a;
  --muted:       #555;
  --muted-soft:  #777;
  --line:        #e8e8e8;
  --line-soft:   #f0f0f0;
  --paper:       #f8f9fa;
  --navy:        #1a2332;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --radius: 8px;
  --btn-h: 52px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--text);
  background: #fff; line-height: 1.6; font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all .2s ease; }
h1,h2,h3,h4 { font-family: var(--font); color: var(--text); letter-spacing: -.02em; margin: 0 0 .5em; line-height: 1.1; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.skip { position: absolute; left:-9999px; top:0; background: var(--teal); color:#fff; padding:.5rem 1rem; z-index:200; }
.skip:focus { left: 1rem; top: 1rem; }

.section { padding: 64px 0; }
.section--white { background: #fff; }
.section--muted { background: var(--paper); }
@media (min-width: 900px) { .section { padding: 100px 0; } }

.eyebrow {
  display: block;
  text-transform: uppercase; font-size: 11px; letter-spacing: 2px;
  font-weight: 700; color: var(--teal); margin: 0 0 12px;
}
.eyebrow--centered { text-align: center; }

.h-display {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.025em; margin: 0 0 1.25rem; color: var(--text);
}
.h-display--centered { text-align: center; }
.sub-centered { text-align: center; color: var(--muted); max-width: 660px; margin: 0 auto 3rem; font-size: 16px; }

/* Section head wrapper — always centred */
.section__head { text-align: center; margin-bottom: 2.5rem; }
.section__head h2 { text-align: center; }

/* Alert styles (used on contact form) */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; }
.alert--error   { background: #fce8e6; color: #a1260d; }
.alert--success { background: var(--teal-soft); color: var(--teal-dark); }

/* Form success panel — replaces form on successful submit */
.form-success {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 48px 32px; gap: 16px; min-height: 320px;
}
.form-success__icon { line-height: 1; }
.form-success__heading { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin: 0; }
.form-success__body { font-size: 1rem; color: #555; margin: 0; max-width: 360px; line-height: 1.6; }
.form-success__body a { color: var(--teal); text-decoration: underline; }

/* Buttons — identical across the site */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: var(--btn-h); padding: 0 32px;
  font: 600 15px/1 var(--font);
  border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap; text-align: center; box-sizing: border-box;
  transition: all .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn--outline { background: #fff; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal-soft); }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--teal); font-weight: 600; font-size: 15px;
  transition: all .2s ease;
}
.arrow-link--lg { font-size: 16px; }
.arrow-link:hover { color: var(--teal-dark); }
.arrow-link .arrow { display: inline-block; transition: transform .2s ease; }
.arrow-link:hover .arrow { transform: translateX(4px); }

/* =======================================================
   NAV
   ======================================================= */
.lf-nav {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; z-index: 200;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.lf-nav.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); border-bottom-color: transparent; }
.lf-nav__inner {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem; padding: 14px 1.5rem;
}
.lf-nav__brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.lf-nav__logo { height: 44px; width: auto; display: block; max-width: 260px; }
@media (min-width: 960px) { .lf-nav__logo { height: 50px; max-width: 280px; } }

.lf-nav__toggle {
  margin-left: auto; display: inline-flex; flex-direction: column; gap: 4px;
  background: transparent; border: 0; padding: 8px; cursor: pointer;
  position: relative; z-index: 2;
}
.lf-nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); }

.lf-nav__menu { display: none; flex: 1; }
.lf-nav__menu.is-open { display: block; width: 100%; }
.lf-nav__list { list-style: none; margin: 0; padding: .5rem 0 .25rem; display: flex; flex-direction: column; gap: 0; }
.lf-nav__list > li > a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 7px 14px; font-size: 15px; font-weight: 500;
  color: var(--text); letter-spacing: .3px;
  border-radius: 4px; transition: color .2s;
}
.lf-nav__list > li > a:hover { color: var(--teal); }
.lf-nav .caret { font-size: 10px; color: var(--muted-soft); }

.lf-nav__dropdown { list-style: none; margin: 0; padding: 0 0 .25rem 1rem; }
.lf-nav__dropdown a { display: block; padding: 5px 12px; font-size: 14px; color: var(--muted); }
.lf-nav__dropdown a:hover { color: var(--teal); }

.lf-nav__phone {
  margin-left: auto; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px;
  background: var(--teal); color: #fff;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 16px -6px rgba(0,181,163,.6);
  transition: background .2s ease, box-shadow .2s ease, transform .1s ease;
}
.lf-nav__phone:hover { background: var(--teal-dark); box-shadow: 0 10px 22px -8px rgba(0,181,163,.8); }
.lf-nav__phone:active { transform: translateY(1px); }
.lf-nav__phone-icon {
  width: 32px; height: 32px; padding: 8px;
  background: rgba(255,255,255,.16); border-radius: 50%;
  box-sizing: border-box; flex-shrink: 0;
}
.lf-nav__phone-label {
  display: none;
  font-size: 10px; font-weight: 700; line-height: 1;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.8);
}
.lf-nav__phone-num {
  font-size: 15px; font-weight: 700; line-height: 1;
  letter-spacing: .01em;
}
@media (min-width: 960px) {
  .lf-nav__phone { padding: 8px 18px 8px 10px; }
  .lf-nav__phone-label { display: block; margin-bottom: 2px; }
  .lf-nav__phone-num { font-size: 16px; }
  .lf-nav__phone-text {
    display: inline-flex; flex-direction: column;
  }
}

@media (min-width: 960px) {
  .lf-nav__toggle { display: none; }
  .lf-nav__menu { display: block; margin: 0 auto; flex: 1; }
  .lf-nav__list { flex-direction: row; justify-content: center; padding: 0; align-items: center; gap: 32px; }
  .lf-nav__list > li { position: relative; }
  .lf-nav__list > li > a { padding: 8px 0; }
  .lf-nav__list > li > a:hover { color: var(--teal); }
  .lf-nav__has-dropdown:hover > .lf-nav__dropdown,
  .lf-nav__has-dropdown:focus-within > .lf-nav__dropdown {
    visibility: visible; opacity: 1; transform: translateY(0);
    pointer-events: auto;
  }
  .lf-nav__dropdown {
    visibility: hidden; opacity: 0; transform: translateY(-4px);
    pointer-events: none;
    position: absolute; top: 100%; left: -16px;
    background: transparent; border: 0; box-shadow: none;
    padding-top: 14px; min-width: 260px; margin: 0;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .lf-nav__dropdown::before {
    content: ""; position: absolute; inset: 14px 0 0 0;
    background: #fff; border: 1px solid var(--line); border-radius: 8px;
    box-shadow: var(--shadow-lg); z-index: 0;
  }
  .lf-nav__dropdown li { position: relative; z-index: 1; }
  .lf-nav__dropdown a {
    padding: 10px 18px; color: var(--text); font-size: 14px;
    display: block; position: relative; z-index: 1;
  }
  .lf-nav__dropdown a:hover { background: var(--paper); color: var(--teal); }
  .lf-nav__phone { margin-left: 0; }
}

/* =======================================================
   GLOBAL UTILITIES — container, section-label
   ======================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 960px) { .container { padding: 0 32px; } }
@media (max-width: 600px) { .container { padding: 0 20px; } }

.section-label {
  display: block;
  text-transform: uppercase; font-size: 11px; letter-spacing: 2px;
  font-weight: 700; color: var(--teal); margin: 0 0 12px;
}

/* =======================================================
   HERO — editorial two-column
   ======================================================= */
.hero {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: calc(100vh - 78px);
  max-height: 780px;
}

.hero-left {
  padding: 52px 64px 52px max(1.5rem, calc((100vw - var(--wrap)) / 2 + 1.5rem));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: white;
}

.hero-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.hero-location {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal);
}

.hero-accreditations {
  display: flex; align-items: center; gap: 20px;
}
.hero-accreditations img { object-fit: contain; height: 52px; width: auto; filter: none; opacity: 1; }

.hero-h1 {
  font-size: 48px;
  font-weight: 900; line-height: 1.05;
  letter-spacing: -2px; color: #1a1a1a;
  margin: 0 0 24px;
}
.hero-h1 em { font-style: normal; color: var(--teal); }

.hero-p {
  font-size: 17px; color: #555;
  line-height: 1.7; margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex; align-items: center;
  gap: 32px; margin-bottom: 48px;
}

.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  height: 54px; padding: 0 32px;
  background: var(--teal); color: white;
  font-size: 15px; font-weight: 700;
  border-radius: 6px; text-decoration: none;
  transition: background 0.2s ease; white-space: nowrap;
  font-family: var(--font);
}
.hero-btn-primary:hover { background: var(--teal-dark); color: white; }

.hero-phone { display: flex; flex-direction: column; }
.hero-phone span { font-size: 13px; color: #888; }
.hero-phone a {
  font-size: 24px; font-weight: 900; color: #1a1a1a;
  text-decoration: none; display: block; letter-spacing: -0.5px;
  line-height: 1.2;
}
.hero-phone a:hover { color: var(--teal); }

.hero-proof-bar {
  display: flex; align-items: center;
  padding-top: 28px; border-top: 1px solid #f0f0f0;
  margin-top: auto;
}
.hero-proof-item {
  display: flex; flex-direction: column;
  border-top: 3px solid #00b5a3;
  padding-top: 14px;
}
.hero-proof-div {
  width: 1px; height: 32px; background: #e8e8e8;
  margin: 0 28px; flex-shrink: 0;
}
.hero-proof-n {
  font-size: 32px; font-weight: 900;
  color: #1a1a1a; line-height: 1;
}
.hero-proof-l {
  font-size: 12px; color: #999;
  margin-top: 3px; white-space: nowrap;
}

/* RIGHT COLUMN */
.hero-right {
  background: #fff;
  position: relative; overflow: hidden;
  padding-right: max(1.5rem, calc((100vw - var(--wrap)) / 2 + 1.5rem));
}
.hero-right-inner {
  position: relative; height: 100%;
}
.hero-watermark { display: none; }
.hero-portrait {
  position: absolute;
  top: 52px; left: 0;
  width: 100%;
  height: calc(100% - 104px);
  object-fit: cover;
  object-position: 30% top;
  display: block;
}
.hero-tag { display: none; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; max-height: none; min-height: auto; }
  .hero-right { height: 340px; order: -1; padding-right: 0 !important; }
  .hero-left { padding: 40px 28px; }
  .hero-h1 { font-size: 2.2rem; letter-spacing: -1px; }
  .hero-top-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-btn-primary { width: 100%; justify-content: center; }
  .hero-proof-bar { flex-wrap: wrap; gap: 16px; padding-top: 20px; }
  .hero-proof-div { display: none; }
  .hero-proof-item { flex: 0 0 calc(50% - 8px); }
  /* Remove desktop portrait offset — fill the full hero-right height on mobile */
  .hero-portrait { top: 0; height: 100%; }
}
@media (max-width: 480px) {
  .hero-left { padding: 32px 20px; }
  .hero-h1 { font-size: 1.9rem; }
  .hero-p { font-size: 15px; }
  .hero-phone a { font-size: 20px; }
}

/* =======================================================
   PROOF STRIP
   ======================================================= */
.proof-strip {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  padding: 0;
}
.proof-strip__grid {
  display: flex; align-items: stretch;
}
.proof-item {
  flex: 1;
  border-right: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.proof-item:last-child { border-right: none; }
.proof-inner {
  height: 130px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 16px;
}
.proof-number {
  font-size: 52px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -1px;
}
.proof-text {
  font-size: 14px;
  color: #777;
  margin-top: 6px;
  line-height: 1.4;
  text-align: center;
  max-width: 140px;
}
.proof-item--logo .proof-number { display: none; }
.proof-item--logo img {
  height: 40px; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: .65; margin-bottom: 2px;
}
@media (max-width: 768px) {
  .proof-strip__grid { flex-wrap: wrap; }
  .proof-item { flex: 0 0 50%; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(2n) { border-right: none; }
  .proof-item--logo { flex: 0 0 100%; border-bottom: none; border-right: none; }
  .proof-inner { height: 100px; }
  .proof-number { font-size: 40px; }
}

/* =======================================================
   COMMERCIAL TARGETING STRIP
   ======================================================= */
.targeting-strip {
  background: white;
  padding: 60px 0;
  border-bottom: 1px solid var(--line-soft);
}
.targeting-strip__grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 60px; align-items: center;
}
.targeting-strip__quote {
  font-size: 19px; font-weight: 700; color: #1a1a1a;
  line-height: 1.45; margin: 0 0 16px;
}
.targeting-strip__sub {
  font-size: 15px; color: #777; margin: 0; line-height: 1.7;
}
.targeting-strip__divider {
  width: 2px; height: 100px; background: #f0f0f0; justify-self: center;
}
.targeting-strip__label {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  margin: 0 0 20px;
}
.targeting-strip__tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.targeting-strip__tag {
  background: var(--paper); border: 1px solid var(--line);
  color: #1a1a1a; font-size: 13px; font-weight: 500;
  border-radius: 4px; padding: 6px 14px;
  transition: all .2s ease;
}
.targeting-strip__tag:hover { border-color: var(--teal); color: var(--teal); }

@media (max-width: 900px) {
  .targeting-strip__grid { grid-template-columns: 1fr; gap: 32px; }
  .targeting-strip__divider { display: none; }
}

/* =======================================================
   COMMERCIAL OBJECTIONS — dark navy 3-col
   ======================================================= */
.commercial-objections {
  background: var(--navy);
  padding: 100px 0;
}
.commercial-objections__head {
  text-align: center; margin-bottom: 64px;
}
.commercial-objections__h2 {
  font-size: 44px;
  font-weight: 900; color: white;
  margin: 16px 0 0; letter-spacing: -1px;
  line-height: 1.15;
}
.commercial-objections__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
.objection-col {
  border-top: 3px solid var(--teal);
  padding-top: 32px;
}
.objection-num {
  font-size: 48px; font-weight: 900; color: var(--teal);
  margin-bottom: 20px; line-height: 1;
}
.objection-col h3 {
  font-size: 24px; font-weight: 800; color: white;
  margin: 0 0 16px; line-height: 1.2;
}
.objection-col p {
  font-size: 16px; color: rgba(255,255,255,0.70);
  line-height: 1.8; margin: 0;
}
.commercial-objections__cta {
  text-align: center; margin-top: 64px;
}
@media (max-width: 900px) {
  .commercial-objections__grid { grid-template-columns: 1fr; gap: 40px; }
  .commercial-objections { padding: 64px 0; }
}

/* =======================================================
   NAV PHONE — updated style
   ======================================================= */
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--teal); color: white;
  font-size: 15px; font-weight: 700;
  padding: 0 20px; height: 40px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s ease; flex-shrink: 0;
  font-family: var(--font);
}
.nav-phone:hover { background: var(--teal-dark); color: white; }
.nav-phone svg { flex-shrink: 0; }
/* Hide phone number text when hamburger is visible — icon-only button saves space */
@media (max-width: 959px) {
  .nav-phone__num { display: none; }
  .nav-phone { padding: 0 14px; }
}

/* =======================================================
   FINAL CTA BLOCK — conversion card with form
   ======================================================= */
.final-cta-block {
  background: var(--paper);
  padding: 100px 0;
}
.final-cta-card {
  background: white; border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 48px rgba(0,0,0,0.08);
  padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.final-cta-h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900; color: #1a1a1a;
  line-height: 1.1; margin: 16px 0 24px;
  letter-spacing: -1px;
}
.final-cta-h2 span { color: var(--teal); }
.final-cta-left p { font-size: 16px; color: #555; line-height: 1.7; margin: 0; }
.final-cta-contacts { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.final-cta-contact-item { display: flex; align-items: center; gap: 12px; }
.final-cta-icon {
  width: 40px; height: 40px; background: var(--teal-soft);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.final-cta-contact-label { display: block; font-size: 12px; color: #999; margin-bottom: 2px; }
.final-cta-contact-value {
  display: block; font-size: 16px; font-weight: 700;
  color: #1a1a1a; text-decoration: none;
  transition: color .2s ease;
}
.final-cta-contact-value:hover { color: var(--teal); }

/* Quick form */
.quick-form { display: flex; flex-direction: column; gap: 14px; }
.quick-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quick-form__field { display: flex; flex-direction: column; gap: 6px; }
.quick-form__field label {
  font-size: 12px; font-weight: 700; color: #1a1a1a;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.quick-form__field input,
.quick-form__field select,
.quick-form__field textarea {
  border: 1px solid var(--line); border-radius: 6px;
  padding: 0 16px; font-size: 15px; color: #1a1a1a;
  font-family: var(--font); outline: none;
  transition: border-color 0.2s ease;
  background: white;
}
.quick-form__field input,
.quick-form__field select { height: 48px; }
.quick-form__field textarea { padding: 12px 16px; resize: none; }
.quick-form__field input:focus,
.quick-form__field select:focus,
.quick-form__field textarea:focus { border-color: var(--teal); }
.quick-form__submit {
  width: 100%; height: 54px;
  background: var(--teal); color: white;
  font-size: 15px; font-weight: 700;
  border: none; border-radius: 6px; cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font);
}
.quick-form__submit:hover { background: var(--teal-dark); }
.quick-form__note {
  font-size: 12px; color: #aaa; text-align: center; margin: 0;
}

@media (max-width: 960px) {
  .final-cta-card {
    grid-template-columns: 1fr; gap: 48px; padding: 40px 32px;
  }
}
@media (max-width: 600px) {
  .final-cta-block { padding: 64px 0; }
  .final-cta-card { padding: 32px 20px; }
  .quick-form__row { grid-template-columns: 1fr; }
}

/* =======================================================
   MOBILE STICKY CTA
   ======================================================= */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: white; border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  gap: 12px;
}
.mobile-cta-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex: 1 1 0%; min-width: 0; height: 48px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 6px; color: #1a1a1a;
  font-size: 15px; font-weight: 700; text-decoration: none;
  font-family: var(--font);
}
.mobile-cta-enquire {
  display: flex; align-items: center; justify-content: center;
  flex: 1 1 0%; min-width: 0; height: 48px;
  background: var(--teal); border-radius: 6px;
  color: white; font-size: 15px; font-weight: 700;
  text-decoration: none; font-family: var(--font);
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

/* =======================================================
   BIG QUOTE
   ======================================================= */
.big-quote {
  background: var(--navy);
  padding: 100px 0;
}
.big-quote__inner {
  text-align: center; max-width: 900px; margin: 0 auto;
}
.big-quote__mark {
  width: 48px; height: auto;
  color: var(--teal); opacity: .6;
  margin: 0 auto 32px; display: block;
}
.big-quote__text {
  font-size: clamp(1.2rem, 2.5vw, 1.625rem);
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.9); line-height: 1.65;
  margin: 0 0 28px; quotes: none;
}
.big-quote__cite {
  display: inline-block;
  font-style: normal; font-size: 12px; font-weight: 700;
  color: var(--teal); letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 2px solid var(--teal);
}

/* =======================================================
   FLOOR TYPES
   ======================================================= */
.floor-types {
  background: var(--navy);
}
.floor-types .eyebrow--centered,
.floor-types .h-display--centered { color: white; }
.floor-types .sub-centered { color: rgba(255,255,255,0.75); }
.floor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.floor-card {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 4px solid var(--teal);
  padding: 28px 28px 24px;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: background 0.2s ease, transform 0.2s ease;
}
.floor-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.floor-card__type {
  font-size: 20px; font-weight: 800;
  color: #fff; margin: 0 0 10px;
}
.floor-card__desc {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.65; margin: 0 0 20px;
  flex: 1;
}
.floor-card__cta {
  font-size: 14px; font-weight: 700;
  color: var(--teal); margin-top: auto;
}
@media (max-width: 900px) { .floor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .floor-grid { grid-template-columns: 1fr; } }

/* =======================================================
   HARD FLOOR CTA
   ======================================================= */
.hard-floor-cta { }
.hf-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 900px) {
  .hf-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
}
.hf-media {
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hf-media img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.hf-media:hover img { transform: scale(1.02); }
.hf-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.025em;
  color: var(--text); margin: 0 0 16px;
}
.hf-text p { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 54ch; }
.hf-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 32px;
}
.hf-pills span {
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(0,181,163,0.3);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .01em;
  transition: all .2s ease;
}
.hf-pills span:hover { background: var(--teal); color: #fff; }


/* =======================================================
   TRUST STRIP — one row, pipe dividers
   ======================================================= */
.trust-strip { background: var(--teal); padding: 16px 0; overflow: hidden; }
.trust-strip__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem;
  display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: center;
}
.trust-strip__item {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-size: 14px; font-weight: 600;
  white-space: nowrap; flex: 1; justify-content: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__item svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 900px) {
  .trust-strip__inner { flex-wrap: wrap; padding: 6px 16px; justify-content: center; gap: 8px; }
  .trust-strip__item { padding: 4px 12px; border-right: none; font-size: 11px; }
}

/* =======================================================
   COMMERCIAL FOCUS
   ======================================================= */
.commercial-focus__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.commercial-focus__lead p { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 52ch; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: stretch; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: all .2s ease; height: 100%;
  display: flex; flex-direction: column;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); transform: translateY(-2px); }
.feature-card__icon {
  display: block; color: var(--teal);
  margin: 0 0 14px;
  line-height: 0;
}
.feature-card__icon svg {
  width: 32px; height: 32px; display: block;
  stroke: var(--teal); fill: none;
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 12px 0 8px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
@media (min-width: 900px) {
  .commercial-focus__grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* =======================================================
   CLIENT LOGOS — 5 cols, 100px cards, 55px image
   ======================================================= */
.clients__inner { text-align: center; }
.logo-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin: 40px 0;
}
.logo-grid__item {
  background: #fff; border: 1px solid #efefef; border-radius: 8px;
  height: 120px; padding: 10px 14px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 3px solid transparent;
  transition: all .25s ease;
}
.logo-grid__item img {
  width: 100%; height: 100%;
  max-width: 200px; max-height: 90px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter .25s ease;
}
.logo-grid__item:hover {
  border-bottom-color: var(--teal);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.logo-grid__item:hover img { filter: grayscale(0%); }
.clients__cta { margin-top: 2.5rem; }
@media (min-width: 640px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .logo-grid { grid-template-columns: repeat(5, 1fr); } }

/* =======================================================
   SECTORS
   ======================================================= */
.sectors__head { text-align: center; margin-bottom: 3.5rem; }
.sectors__grid { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch; }
.sector-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  color: var(--text); height: 100%;
  border-bottom: 3px solid transparent;
  transition: all .2s ease;
}
.sector-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  border-bottom-color: var(--teal);
  transform: translateY(-3px);
}
.sector-card__media { overflow: hidden; background: var(--paper); height: 200px; }
.sector-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.sector-card:hover .sector-card__media img { transform: scale(1.04); }
.sector-card__body { display: flex; flex-direction: column; flex: 1; }
.sector-card__body h3 { font-size: 18px; font-weight: 700; color: var(--text); margin: 0; padding: 16px 20px 8px; }
.sector-card__body p { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; padding: 0 20px 8px; flex: 1; }
.sector-card__cta { color: var(--teal); font-size: 14px; font-weight: 600; padding: 0 20px 20px; display: inline-flex; align-items: center; gap: 6px; }
.sector-card__cta .arrow { transition: transform .2s ease; }
.sector-card:hover .sector-card__cta .arrow { transform: translateX(4px); }
@media (min-width: 700px)  { .sectors__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .sectors__grid { grid-template-columns: repeat(4, 1fr); } }

/* =======================================================
   EQUIPMENT — full-column photo + inset underlay below
   ======================================================= */
.equipment__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
.equipment__media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--paper); }
.equipment__main {
  width: 100%; height: 100%; min-height: 420px; object-fit: cover;
  object-position: center; display: block;
}
.equipment__heading { font-size: clamp(2rem, 4vw, 3rem); }
.equipment__text p { color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 62ch; }

.checklist { list-style: none; margin: 1.75rem 0 2rem; padding: 0; display: grid; gap: 12px; }
.checklist li {
  padding-left: 32px; position: relative;
  color: var(--text); font-weight: 500; font-size: 15px;
  min-height: 20px;
}
.checklist .tick {
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.checklist .tick svg { width: 20px; height: 20px; display: block; }

@media (min-width: 900px) {
  .equipment__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .equipment__main { min-height: 460px; }
  .equipment__text { display: flex; flex-direction: column; justify-content: center; }
}

/* =======================================================
   HOW IT WORKS — watermark step numbers, dashed connector
   ======================================================= */
.process { padding-top: 52px; padding-bottom: 52px; position: relative; background: #fff; }
@media (min-width: 900px) { .process { padding-top: 90px; padding-bottom: 90px; } }
.process__head { text-align: center; margin-bottom: 3.5rem; }
.process__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 32px; grid-template-columns: 1fr;
  position: relative;
}
.process__steps li {
  padding: 40px 20px 24px; text-align: left;
  position: relative; background: transparent;
  overflow: visible;
}
.step-num-wrap { position: relative; display: block; margin-bottom: 16px; height: 80px; line-height: 1; }
.step-num-bg {
  position: absolute; top: -20px; left: -10px;
  font-size: 120px; font-weight: 900; color: var(--teal);
  opacity: .1; letter-spacing: -.04em; line-height: 1;
  font-variant-numeric: tabular-nums; z-index: 0; pointer-events: none;
}
.step-num {
  position: relative; z-index: 1;
  font-size: 28px; font-weight: 800; color: var(--teal);
  letter-spacing: -.015em; display: inline-block;
  padding-top: 30px;
}
.process__steps h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 8px 0 6px; position: relative; z-index: 1; }
.process__steps p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; position: relative; z-index: 1; }

@media (min-width: 900px) {
  .process__steps { grid-template-columns: repeat(5, 1fr); gap: 24px; padding-top: 24px; }
  .process__steps::before {
    content: ""; position: absolute; top: 72px; left: 10%; right: 10%;
    border-top: 2px dashed rgba(0,181,163,.35);
    z-index: 0;
  }
  .process__steps li { padding: 40px 16px 24px; z-index: 1; }
}

/* =======================================================
   GUARANTEE
   ======================================================= */
.guarantee { background: var(--teal); color: #fff; padding: 52px 0; }
@media (min-width: 900px) { .guarantee { padding: 90px 0; } }
.guarantee__inner { text-align: center; max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.guarantee h2 { color: #fff; font-size: 42px; font-weight: 800; letter-spacing: -.025em; margin: 0 0 1.25rem; line-height: 1.1; }
.guarantee p { color: #fff; font-size: 18px; line-height: 1.7; margin: 0 0 2rem; opacity: .95; }
.guarantee__pills { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; margin: 0 -6px; }
.guarantee__pills span {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 13px; font-weight: 600;
  border-radius: 20px; padding: 7px 18px;
  margin: 6px;
}
@media (max-width: 600px) { .guarantee h2 { font-size: 30px; } }

/* =======================================================
   FINAL CTA
   ======================================================= */
.final-cta__head { text-align: center; margin-bottom: 3rem; }
.final-cta__cards { display: grid; gap: 24px; grid-template-columns: 1fr; max-width: 960px; margin: 0 auto; }
.cta-card {
  padding: 40px; border-radius: 10px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-height: 220px; justify-content: center;
  transition: all .2s ease;
}
.cta-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cta-card--primary { background: var(--teal); color: #fff; }
.cta-card--outline { background: #fff; color: var(--text); border: 2px solid var(--teal); }
.cta-card__tag {
  text-transform: uppercase; font-size: 11px; letter-spacing: 2px;
  font-weight: 700; opacity: .8;
}
.cta-card--outline .cta-card__tag { color: var(--teal); opacity: 1; }
.cta-card h3 { font-size: 22px; font-weight: 800; margin: 4px 0; letter-spacing: -.015em; line-height: 1.2; }
.cta-card--outline h3 { color: var(--text); }
.cta-card p { margin: 0 0 1rem; opacity: .9; font-size: 15px; }
.cta-card--outline p { color: var(--muted); opacity: 1; }
.cta-card__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 28px; border-radius: 6px;
  font-size: 15px; font-weight: 600;
  transition: all .2s ease;
}
.cta-card__btn--light { background: #fff; color: var(--teal); }
.cta-card__btn--light:hover { background: var(--paper); }
.cta-card__btn--teal { background: var(--teal); color: #fff; }
.cta-card__btn--teal:hover { background: var(--teal-dark); }
@media (min-width: 900px) { .final-cta__cards { grid-template-columns: 1fr 1fr; } }

/* =======================================================
   REVIEWS
   ======================================================= */
.reviews { background: var(--navy); }
.reviews__head { text-align: center; margin-bottom: 3rem; }
.reviews__head .h-display--centered { color: white; }
.reviews__heading { color: #fff; text-align: center; }
.reviews__head .sub-centered { color: rgba(255,255,255,0.65); }
.reviews__grid {
  display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch;
}
.review-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 28px; display: flex; flex-direction: column;
  transition: background .2s ease; height: 100%;
}
.review-card:hover { background: rgba(255,255,255,0.1); }
.review-card__stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; line-height: 1; margin-bottom: 14px; }
.review-card__quote {
  margin: 0 0 20px; font-size: 15px; font-style: italic; color: rgba(255,255,255,0.7); line-height: 1.7;
  flex: 1;
}
.review-card__meta { display: flex; flex-direction: column; gap: 2px; }
.review-card__name { font-size: 14px; font-weight: 700; color: #fff; }
.review-card__source {
  font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px;
  display: inline-flex; align-items: center; gap: 4px;
}
.review-card__source svg { flex-shrink: 0; vertical-align: middle; }
.reviews__cta { text-align: center; margin-top: 40px; }
.reviews__cta a { color: var(--teal); font-size: 15px; font-weight: 700; transition: color .2s; display: inline-flex; align-items: center; gap: 4px; }
.reviews__cta a:hover { color: var(--teal-dark); }
@media (min-width: 700px)  { .reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

/* =======================================================
   BEFORE / AFTER
   ======================================================= */
.before-after__head { text-align: center; margin-bottom: 3rem; }
.before-after__intro {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  max-width: 720px; margin: 1.5rem auto 0;
}
.before-after__grid {
  display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 40px;
}
.before-after__grid figure { margin: 0; }
.result-image-wrap {
  position: relative; border-radius: 10px; overflow: hidden;
}
.result-image-wrap img {
  width: 100%; height: 320px; object-fit: cover; display: block;
}
.result-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 20px; text-transform: uppercase;
  z-index: 1;
}
.result-badge--warn { background: #e53e3e; }
.before-after__grid figcaption {
  font-size: 13px; color: #777; font-style: italic;
  text-align: center; margin-top: 10px;
}
@media (min-width: 900px) { .before-after__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* =======================================================
   FOOTER — dark navy, logo white, teal-border pills
   ======================================================= */
.lf-footer { background: var(--navy); color: #aaa; padding: 72px 0 0; }
.lf-footer__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem;
  display: grid; gap: 40px; grid-template-columns: 1fr;
}
.lf-footer__logo {
  height: 50px; width: auto; max-width: 260px; display: block; margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.lf-footer__brand { display: none; }
.lf-footer address { font-style: normal; font-size: 14px; line-height: 1.8; margin-bottom: 1rem; color: #aaa; }
.lf-footer__contact { margin: 0; }
.lf-footer__contact a { color: #aaa; font-size: 14px; }
.lf-footer__contact a:hover { color: #fff; }
.lf-footer__phone { color: #fff !important; font-weight: 600; font-size: 14px; }

.lf-footer__social { list-style: none; padding: 0; margin: 20px 0 0; display: flex; gap: 10px; }
.lf-footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, color .2s ease;
}
.lf-footer__social a:hover { border-color: var(--teal); color: var(--teal); }
.lf-footer__social svg { width: 16px; height: 16px; }

.lf-footer__col h4 {
  color: var(--teal); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; margin: 0 0 16px; text-transform: uppercase;
}
.lf-footer__col ul { list-style: none; margin: 0; padding: 0; }
.lf-footer__col li { margin: 0 0 .35rem; line-height: 2; }
.lf-footer__col a { color: #aaa; font-size: 14px; transition: color .2s; }
.lf-footer__col a:hover { color: #fff; }

/* Credential pills (teal border, teal text, transparent bg for footer) */
.lf-footer__badges {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.lf-footer__badges li {
  border: 1px solid rgba(0,181,163,.4);
  color: var(--teal);
  background: transparent;
  padding: 5px 14px; font-size: 12px; font-weight: 500;
  border-radius: 20px; display: inline-block;
  line-height: 1.4; transition: all .2s ease;
}
.lf-footer__badges li:hover { background: var(--teal); color: #fff; }

.lf-footer__accreds {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 16px;
}
.lf-footer__accreds img {
  height: 40px; width: auto; background: #fff;
  border-radius: 4px; padding: 4px; object-fit: contain;
}

.lf-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding: 24px 0; }
.lf-footer__bottom-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; align-items: center;
  color: #666; font-size: 13px;
}
.lf-footer__bottom p { margin: 0; }
.lf-footer__legal a { color: #666; }
.lf-footer__legal a:hover { color: #fff; }
@media (min-width: 900px) { .lf-footer__inner { grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 48px; } }

/* =======================================================
   MOBILE (≤768px)
   ======================================================= */
@media (max-width: 768px) {
  .sectors__grid,
  .reviews__grid,
  .before-after__grid { grid-template-columns: 1fr !important; }
  .logo-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .lf-footer__inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .trust-strip__inner { flex-wrap: wrap !important; justify-content: center !important; gap: 8px !important; }
  .trust-strip__item { padding: 4px 12px !important; border-right: none !important; }
}

/* =======================================================
   FAQ SECTION — Accordion (shared with inner pages)
   ======================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  transition: background 0.15s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item.is-open { background: #f9fffe; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  padding: 20px 24px;
  cursor: pointer;
  line-height: 1.45;
  letter-spacing: -.01em;
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: #00b5a3; }
.faq-item.is-open .faq-question { color: #00b5a3; }

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(0,181,163,0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1v10M1 6h10' stroke='%2300b5a3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, background-color 0.2s;
}
.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
  background-color: #00b5a3;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1v10M1 6h10' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  padding: 0 24px;
  margin: 0;
}
.faq-item.is-open .faq-answer {
  max-height: 600px;
  padding-bottom: 22px;
}
.faq-answer a { color: #00b5a3; }
.faq-answer a:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* =======================================================
   HOME.CSS — ADDITIONAL MOBILE FIXES
   ======================================================= */

/* --- NAV: ensure toggle visible, menu hidden on mobile --- */
@media (max-width: 959px) {
  .lf-nav__toggle { display: inline-flex !important; }
  /* .lf-nav__menu hidden by default, shown via .is-open added by JS */
  .lf-nav__menu:not(.is-open) { display: none !important; }
  .lf-nav__menu.is-open {
    display: block !important; width: 100%;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 100;
  }
}
@media (min-width: 960px) {
  .lf-nav__toggle { display: none !important; }
  .lf-nav__menu { display: block !important; }
}

@media (max-width: 768px) {

  /* Body padding for sticky bar */
  body { padding-bottom: 70px; }

  /* =======================================================
     MOBILE HEADER — logo left, hamburger right only
     ======================================================= */

  /* FIX 1: Hide phone button entirely */
  .nav-phone { display: none !important; }

  /* FIX 4: Prevent horizontal overflow */
  html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100% !important; }

  /* FIX 1: Header inner — explicit 64px height, logo left / hamburger right */
  .lf-nav__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 64px !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    gap: 0 !important;
  }

  /* FIX 2: Hamburger — guaranteed tappable on Android/iOS */
  .lf-nav__toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 8px !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    pointer-events: all !important;
    position: relative !important;
    z-index: 1001 !important;
    cursor: pointer !important;
  }

  /* FIX 3: Open menu — fixed overlay, top matches 64px header height */
  .lf-nav__menu.is-open {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    max-height: calc(100vh - 64px) !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    z-index: 1000 !important;
    overflow-y: auto !important;
    padding: 0 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.12) !important;
  }

  /* Nav list layout in open menu */
  .lf-nav__menu.is-open .lf-nav__list {
    flex-direction: column !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .lf-nav__menu.is-open .lf-nav__list > li {
    border-bottom: 1px solid #f0f0f0 !important;
    width: 100% !important;
  }
  .lf-nav__menu.is-open .lf-nav__list > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 1.5rem !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    width: 100% !important;
  }

  /* Dropdowns: hidden by default, shown when parent has .is-open (toggled by JS) */
  .lf-nav__menu.is-open .lf-nav__dropdown {
    display: none !important;
  }
  .lf-nav__menu.is-open .lf-nav__has-dropdown.is-open .lf-nav__dropdown {
    display: flex !important;
    flex-direction: column !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: all !important;
    box-shadow: none !important;
    padding: 0 0 8px 1.5rem !important;
    border: none !important;
    background: #fafafa !important;
    border-top: 1px solid #f0f0f0 !important;
  }
  .lf-nav__menu.is-open .lf-nav__dropdown a {
    display: block !important;
    padding: 7px 1rem !important;
    font-size: 14px !important;
    color: #555 !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }
  .lf-nav__menu.is-open .lf-nav__dropdown li:last-child a {
    border-bottom: none !important;
  }
  /* Rotate caret when dropdown is open */
  .lf-nav__menu.is-open .lf-nav__has-dropdown.is-open > a .caret {
    display: inline-block !important;
    transform: rotate(180deg) !important;
  }
  .lf-nav__list .caret { transition: transform 0.2s ease; }

  /* Lock body scroll when menu is open */
  body.mobile-menu-open { overflow: hidden !important; }

  /* --- HEADINGS minimum sizes --- */
  h1 { font-size: clamp(1.75rem, 8vw, 2.25rem) !important; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  .h-display { font-size: clamp(1.75rem, 7vw, 2.25rem) !important; }
  .commercial-objections__h2 { font-size: clamp(1.75rem, 7vw, 2.25rem) !important; }

  /* --- TRUST STRIP — allow wrapping, smaller text --- */
  .trust-strip__inner {
    flex-wrap: wrap !important; justify-content: center !important;
    gap: 6px 4px !important; padding: 8px 12px !important;
  }
  .trust-strip__item {
    border-right: none !important; padding: 3px 8px !important;
    font-size: 11px !important; white-space: normal !important;
    flex: 0 0 auto !important; justify-content: flex-start !important;
  }

  /* --- FLOOR GRID: already 1-col at 560px, but ensure 768px is 2-col --- */

  /* --- SECTORS: already handled in home.css at 700px --- */

  /* --- REVIEWS: already 1-col at 768px via existing rule --- */

  /* --- COMMERCIAL OBJECTIONS: already 1-col at 900px --- */

  /* --- FINAL CTA CARD / CONTACT FORM --- */
  .final-cta-card {
    grid-template-columns: 1fr !important;
    gap: 32px !important; padding: 24px 16px !important;
    overflow: hidden !important;
  }
  /* Contact info first, form below — natural DOM order */
  .final-cta-left { order: 0 !important; min-width: 0 !important; overflow: hidden !important; }
  .final-cta-right { order: 1 !important; min-width: 0 !important; overflow: hidden !important; }
  /* Hide duplicate description (already covered by page hero copy) */
  .final-cta-left > p { display: none !important; }
  /* Tighten contact detail list */
  .final-cta-contacts { margin-top: 16px !important; gap: 10px !important; }
  /* Contact items: align top so icon doesn't force overflow */
  .final-cta-contact-item { align-items: flex-start !important; min-width: 0 !important; }
  /* Text column inside contact item must shrink so long emails don't overflow */
  .final-cta-contact-item > div:not(.final-cta-icon) {
    min-width: 0 !important; overflow: hidden !important; flex: 1 !important;
  }
  /* Prevent long email from overflowing — break-word only kicks in when
     the whole token won't fit, so normal words still wrap at spaces */
  .final-cta-contact-value {
    font-size: 14px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    display: block !important;
    max-width: 100% !important;
  }
  .final-cta-contact-label { font-size: 11px !important; }
  .final-cta-contact-email { font-size: 11px !important; }
  .final-cta-h2 { font-size: 1.6rem !important; }
  /* Form layout */
  .quick-form { width: 100% !important; max-width: 100% !important; }
  .quick-form__row { grid-template-columns: 1fr !important; gap: 12px !important; }
  .quick-form__field { width: 100% !important; max-width: 100% !important; }
  /* All inputs/selects/textareas fill their column and can't overflow */
  .quick-form__field input,
  .quick-form__field select,
  .quick-form__field textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
  }
  .quick-form__field input,
  .quick-form__field select { height: 52px !important; }
  /* Submit button: let text wrap rather than overflow */
  .quick-form__submit {
    width: 100% !important;
    height: auto !important;
    min-height: 52px !important;
    padding: 14px 16px !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }

  /* --- BUTTONS full-width --- */
  .hero-btn-primary { width: 100% !important; justify-content: center !important; }

  /* --- PROOF STRIP — already wraps at 768px via existing rule --- */

  /* --- SECTIONS padding reduction --- */
  .commercial-objections { padding: 56px 0 !important; }
  .final-cta-block { padding: 56px 0 !important; }
  .big-quote { padding: 56px 0 !important; }
  .floor-types .section,
  .section { padding: 56px 0 !important; }

  /* --- CTA CARD buttons full-width --- */
  .cta-card__btn { width: 100% !important; }
  .final-cta__cards { padding: 0 1rem; }

  /* --- TOUCH TARGETS --- */
  .btn, .hero-btn-primary, .cta-card__btn,
  .mobile-cta-call, .mobile-cta-enquire {
    min-height: 44px !important;
  }
  .faq-question { min-height: 44px !important; padding: 16px 20px !important; }

  /* --- IMAGES — no overflow --- */
  img { max-width: 100% !important; }

  /* --- FOOTER already stacked at 768px via existing rule --- */

  /* --- HERO ACCREDITATIONS — wrap logos on small screens --- */
  .hero-accreditations { flex-wrap: wrap !important; gap: 12px !important; }
  .hero-accreditations img { height: 40px !important; }

  /* --- EQUIPMENT — reduce min-height for mobile --- */
  .equipment__main { min-height: 260px !important; }
}

@media (max-width: 480px) {
  /* All multi-col grids collapse to 1 */
  .sectors__grid,
  .commercial-objections__grid,
  .reviews__grid,
  .before-after__grid,
  .floor-grid { grid-template-columns: 1fr !important; }

  .logo-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Hero */
  .hero-h1 { font-size: 1.75rem !important; }
  .hero-p { font-size: 15px !important; }

  /* Sections padding */
  .section { padding: 48px 0 !important; }
  .wrap { padding: 0 1rem !important; }
  .container { padding: 0 16px !important; }

  /* Floor grid: already 1-col at 560px */
  .guarantee h2 { font-size: 1.6rem !important; }
}

/* --- TABLET (600–899px): sectors/reviews at 2 cols --- */
@media (min-width: 600px) and (max-width: 899px) {
  .sectors__grid { grid-template-columns: 1fr 1fr !important; }
  .reviews__grid { grid-template-columns: 1fr 1fr !important; }
  .floor-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .lf-footer__inner { grid-template-columns: 1fr 1fr !important; }
}

/* ── Trading Standards callout (shared with inner pages) ─── */
.ts-callout-wrap { padding: 32px 0 8px; }
.ts-callout {
  background: #f0faf9;
  border: 1px solid #b2e4df;
  border-radius: 10px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ts-callout__logo { height: 68px; width: auto; flex-shrink: 0; }
.ts-callout__divider { width: 1px; height: 52px; background: #b2e4df; flex-shrink: 0; }
.ts-callout__text { flex: 1; }
.ts-callout__heading { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 5px; }
.ts-callout__body { font-size: 14px; color: #444; line-height: 1.65; margin: 0; }
.ts-callout__badge {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; flex-shrink: 0;
  color: #00b5a3; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
@media (max-width: 700px) {
  .ts-callout { flex-wrap: wrap; gap: 16px; }
  .ts-callout__divider { display: none; }
  .ts-callout__badge { flex-direction: row; }
}
