/* ============================================================
   Bright Scrub Cleans - multi-page design system
   Fonts: Lexend (headings) + Source Sans 3 (body)
   Palette: navy + teal-green + sky blue (brand)
   ============================================================ */

:root {
  --navy: #0a2e5c;
  --navy-deep: #071f42;
  --navy-soft: #12407c;
  --green: #00a478;
  --green-deep: #007a5a;
  --green-darker: #00684b;
  --blue: #149fe8;
  --ink: #17243c;
  --muted: #55617a;
  --line: #e2e8f0;
  --bg-soft: #f4f7fa;
  --bg-strong: #0a2e5c;
  --white: #ffffff;
  --gold: #f5a623;
  --wa: #25d366;
  --danger: #b42318;
  --success: #067647;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(10, 46, 92, 0.06), 0 4px 12px rgba(10, 46, 92, 0.06);
  --shadow-md: 0 6px 18px rgba(10, 46, 92, 0.1);
  --heading: "Lexend", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy-soft);
  text-decoration: none;
}

a:hover {
  color: var(--green-deep);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading);
  color: var(--navy);
  letter-spacing: 0;
}

button {
  font-family: inherit;
}

::selection {
  background: rgba(20, 159, 232, 0.25);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head h2,
.faq-intro h2,
.quote-intro h2,
.commercial-copy h2,
.process-steps h3,
.cta-band h2 {
  font-size: 38px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--navy);
}

.section-sub {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-deep);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-soft);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-green {
  background: var(--green-deep);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-darker);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  background: #eef4f9;
  color: var(--navy);
}

.btn-sm {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 14px;
}

.btn-lg {
  min-height: 54px;
  padding: 15px 28px;
  font-size: 16.5px;
}

.btn-block {
  width: 100%;
}

.btn.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-soft);
}

.text-link:hover {
  color: var(--green-deep);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin-top: 4px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: var(--ink);
}

.check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f7f2;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.check-list-soft li::before {
  background: #eaf3fb;
  color: var(--blue);
}

.check-list-muted li {
  color: var(--muted);
}

.check-list-muted li::before {
  content: "−";
  background: #f1f4f8;
  color: var(--muted);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.areas-grid-home {
  grid-template-columns: repeat(4, 1fr);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nearby-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-soft);
  transition: border-color 0.2s, color 0.2s;
}

.nearby-chip:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

/* Location pages */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.location-main {
  display: grid;
  gap: 34px;
}

.location-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.location-aside .check-list {
  margin-top: 6px;
}

/* Process list (service + location pages) */
.process-list {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.process-list li {
  display: flex;
  gap: 10px;
  counter-increment: step;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.process-list li::before {
  content: counter(step);
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.process-list {
  counter-reset: step;
}

.process-list strong {
  color: var(--navy);
}

/* Why choose */
.why-choose {
  background: var(--bg-soft);
}

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

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 34px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.trust-badge svg {
  width: 17px;
  height: 17px;
  color: #7ee2c8;
  flex: 0 0 auto;
}

.hero .trust-badge {
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(10, 46, 92, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.brand img {
  width: 72px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.2s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.header-phone svg {
  width: 17px;
  height: 17px;
  color: var(--green-deep);
}

.header-phone:hover {
  color: var(--green-deep);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s, top 0.25s;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Hero (home) */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 96px 0 120px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 31, 66, 0.94) 0%, rgba(10, 46, 92, 0.84) 45%, rgba(10, 46, 92, 0.45) 100%);
}

.hero-inner {
  max-width: 820px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  font-weight: 600;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  color: #d9f3ec;
}

.hero-lead {
  margin-top: 24px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #cfe3f5;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "✦";
  color: var(--green);
  font-size: 12px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Stats */
.stats-band {
  background: var(--bg-strong);
  color: #fff;
  padding: 56px 0;
}

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

.stats-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

.stat strong {
  display: block;
  font-family: var(--heading);
  font-size: 46px;
  line-height: 1.1;
  font-weight: 700;
  color: #dffbf3;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 14.5px;
  color: #9fb0c7;
}

/* Services */
.services {
  background: var(--bg-soft);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #c9d7e8;
}

.service-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #e9f7f2;
  color: var(--green-deep);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 12px;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.service-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

.service-points li::before {
  content: "✓";
  color: var(--green-deep);
  font-weight: 800;
}

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* Commercial */
.commercial {
  background: var(--white);
}

.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.commercial-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.commercial-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.check-list {
  margin-top: 22px;
}

.commercial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Process */
.process {
  background: var(--white);
}

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

.steps-grid li {
  position: relative;
  padding: 26px;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.step-num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.steps-grid h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.steps-grid p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* Gallery */
.gallery-section {
  background: var(--bg-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: #e8edf3;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
}

/* Reviews */
.reviews {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  margin: 0;
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-card .stars {
  margin-bottom: 14px;
}

.review-card blockquote {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
}

.review-card figcaption {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}

/* Areas */
.areas-section {
  background: var(--bg-soft);
}

.section-tint {
  background: var(--bg-soft);
}

.split-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.link-list,
.link-grid {
  display: grid;
  gap: 12px;
}

.link-list li,
.link-grid li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.link-list a,
.link-grid a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #b8d9ce;
  text-underline-offset: 3px;
}

.link-list a:hover,
.link-grid a:hover {
  color: var(--green-deep);
}

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

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.area-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #c9d7e8;
}

.area-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.area-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}

.faq-intro .btn {
  margin-top: 22px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--heading);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.faq-q::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.25s;
}

.faq-item[data-open="true"] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-a > p {
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.faq-item[data-open="true"] .faq-a {
  grid-template-rows: 1fr;
}

.faq-item[data-open="true"] .faq-a > p {
  padding-bottom: 18px;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: #fff;
  padding: 64px 0 72px;
}

.page-hero h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  max-width: 820px;
  margin-top: 18px;
}

.page-hero-lead {
  margin-top: 16px;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumbs {
  margin: 0 0 8px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs li[aria-current="page"] {
  color: #fff;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.page-hero-split .page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.page-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.page-hero-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Service detail */
.service-detail {
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.service-detail-main {
  display: grid;
  gap: 34px;
}

.detail-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.service-detail-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.aside-card {
  padding: 26px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.aside-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.aside-card-cta {
  background: var(--navy);
  border-color: var(--navy);
}

.aside-card-cta h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.aside-card-cta p {
  color: #c4d2e8;
  margin-bottom: 18px;
}

.aside-card-cta .btn {
  margin-bottom: 10px;
}

.aside-card-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.aside-card-cta .btn-outline:hover {
  border-color: #fff;
}

.related {
  background: var(--bg-soft);
}

/* Area detail */
.area-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.area-detail-grid .btn {
  margin-top: 20px;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: #fff;
  padding: 64px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  font-size: 32px;
}

.cta-band p {
  margin-top: 10px;
  max-width: 640px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Quote form */
.quote-section {
  background: var(--bg-soft);
  color: var(--ink);
}

.quote-section .eyebrow {
  color: var(--green-deep);
}

.quote-section .eyebrow::before {
  background: var(--green);
}

.quote-intro h2 {
  color: var(--navy);
}

.quote-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-deep);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-list strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.contact-list a,
.contact-list span {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
}

.contact-list a:hover {
  color: var(--green-deep);
}

.quote-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}

.quote-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #93a0b8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 159, 232, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a2e5c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}

.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.field-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.field-consent label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}

.form-note {
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}

.form-feedback {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
}

.form-feedback.success {
  display: block;
  background: #e9f7f2;
  color: var(--success);
}

.form-feedback.error {
  display: block;
  background: #fef0ee;
  color: var(--danger);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-card {
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: #e9f7f2;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-card p {
  font-size: 13.5px;
  color: var(--muted);
}

.about-copy p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}

.about-copy .trust-badges {
  margin-top: 24px;
}

.about-copy .trust-badge {
  color: var(--muted);
}

.about-copy .trust-badge svg {
  color: var(--green-deep);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pricing-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-card-cta {
  background: var(--navy);
  border-color: var(--navy);
}

.pricing-card-cta h3 {
  color: #fff;
}

.pricing-card-cta p {
  color: #c4d2e8;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.pricing-card-cta .btn {
  margin-bottom: 10px;
}

.pricing-card-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.pricing-card-cta .btn-outline:hover {
  border-color: #fff;
}

/* Legal */
.legal-body {
  max-width: 820px;
  display: grid;
  gap: 30px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #c4d2e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-logo {
  display: inline-block;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.footer-logo img {
  width: 118px;
  height: 88px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #9fb0c7;
  max-width: 340px;
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.footer-contact a {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}

.footer-contact a:hover {
  color: #7ee2c8;
}

.footer-col h3 {
  font-family: var(--heading);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #8ea2c2;
  margin-bottom: 16px;
}

.footer-col ul {
  display: grid;
  gap: 9px;
}

.footer-col li {
  font-size: 14px;
  color: #9fb0c7;
}

.footer-col a {
  color: #c4d2e8;
}

.footer-col a:hover {
  color: #7ee2c8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 13px;
  color: #8ea2c2;
}

.footer-legal {
  display: flex;
  gap: 14px;
}

.footer-legal a {
  color: #9fb0c7;
}

.footer-legal a:hover {
  color: #fff;
}

/* Floating actions */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.55);
}

.wa-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 92px;
  bottom: 24px;
  z-index: 150;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.mobile-cta {
  display: none;
}

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: rgba(7, 20, 40, 0.92);
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100vh;
}

.lightbox::backdrop {
  background: rgba(7, 20, 40, 0.92);
}

.lightbox img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 92%;
  max-height: 88%;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.26);
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .header-phone span {
    display: none;
  }

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

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

  .stats-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

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

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

@media (max-width: 920px) {
  html {
    scroll-padding-top: 72px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 58px;
    height: 44px;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions .btn,
  .header-phone {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 190;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(10, 46, 92, 0.14);
    transform: translateY(-130%);
    transition: transform 0.3s;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid #f1f4f8;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 560px;
    padding: 72px 0 96px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 31, 66, 0.9) 0%, rgba(7, 31, 66, 0.8) 60%, rgba(7, 31, 66, 0.62) 100%);
  }

  .hero-inner {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero h1 span {
    font-size: 22px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head h2,
  .faq-intro h2,
  .quote-intro h2,
  .commercial-copy h2,
  .cta-band h2 {
    font-size: 31px;
  }

  .services-list,
  .commercial-grid,
  .about-grid,
  .faq-layout,
  .quote-layout,
  .service-detail-grid,
  .area-detail-grid,
  .location-grid,
  .split-content,
  .page-hero-split .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .commercial-media img {
    min-height: 280px;
  }

  .gallery-grid,
  .reviews-grid,
  .areas-grid,
  .link-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-aside {
    position: static;
  }

  .location-aside {
    position: static;
  }


  .page-hero {
    padding: 48px 0 56px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero-media img {
    height: 260px;
  }

  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 180;
    gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 16px rgba(10, 46, 92, 0.08);
  }

  .mobile-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 999px;
    font-size: 15.5px;
    font-weight: 700;
  }

  .mobile-call {
    background: var(--bg-soft);
    color: var(--navy);
  }

  .mobile-call svg {
    width: 18px;
    height: 18px;
  }

  .mobile-quote {
    background: var(--navy);
    color: #fff;
  }

  body {
    padding-bottom: 68px;
  }

  .whatsapp-float {
    bottom: 84px;
    right: 16px;
  }

  .back-to-top {
    bottom: 84px;
    right: 80px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }

  .hero-inner {
    padding: 0 18px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero h1 span {
    font-size: 19px;
  }

  .hero-lead {
    font-size: 16.5px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 12px;
  }

  .stats-grid-3 {
    grid-template-columns: 1fr;
  }

  .stat strong {
    font-size: 36px;
  }

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

  .service-card {
    padding: 20px;
  }

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

  .gallery-grid,
  .reviews-grid,
  .areas-grid,
  .link-grid,
  .pricing-grid,
  .areas-grid-home,
  .trust-grid-4,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 16 / 10;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .quote-form-wrap {
    padding: 24px 18px;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .btn {
    width: 100%;
  }

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

  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .back-to-top {
    right: auto;
    left: 16px;
  }

  .trust-badges {
    gap: 8px 14px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
