:root {
  --ink: #063f68;
  --ink-2: #0f5d83;
  --brand-blue: #205d74;
  --fresh-blue: #51a8b1;
  --deep-green: #588b3c;
  --light-green: #93c276;
  --wash: #eefcfd;
  --paper: #ffffff;
  --muted: #55758a;
  --line: rgba(32, 93, 116, 0.14);
  --shadow: 0 22px 70px rgba(16, 93, 131, 0.16);
  --soft-shadow: 0 14px 36px rgba(16, 93, 131, 0.1);
  --radius: 8px;
  --pill: 999px;
  --max: 1160px;
  --font: "Plus Jakarta Sans", "Montserrat", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--wash);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(81, 168, 177, 0.55);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 26px;
  right: 0;
  left: 0;
  z-index: 50;
  background: transparent;
  border: 0;
}

.nav-wrap {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 12px 0 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(44, 123, 155, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 178px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 172px;
  height: 43px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark,
.brand-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-link {
  position: relative;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 21px 8px 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 6px;
  bottom: 8px;
  left: 6px;
  height: 2px;
  content: "";
  background: var(--fresh-blue);
  border-radius: var(--pill);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #f5fcfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--light-green), var(--deep-green));
  border: 1px solid rgba(88, 139, 60, 0.28);
  border-radius: 5px;
  box-shadow: 0 14px 30px rgba(88, 139, 60, 0.24);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(88, 139, 60, 0.33);
}

.btn svg,
.service-icon svg,
.badge-icon svg,
.check-dot svg,
.process-corner svg,
.contact-icon svg,
.check-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.btn-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(147, 194, 118, 0.46);
  box-shadow: none;
}

.btn-green {
  color: var(--paper);
  background: linear-gradient(135deg, var(--light-green), var(--deep-green));
  border-color: rgba(88, 139, 60, 0.28);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fresh-blue);
  font-size: 0.73rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 112px 0 76px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.83) 43%, rgba(255, 255, 255, 0.2) 74%),
    url("../img/hero-cleaning-action.png") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 130px;
  content: "";
  background: linear-gradient(180deg, rgba(238, 252, 253, 0), var(--wash));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 445px);
  gap: 48px;
  align-items: center;
  min-height: 570px;
}

.hero-copy {
  display: grid;
  align-content: center;
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--fresh-blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before,
.eyebrow::after {
  width: 28px;
  height: 8px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='60' height='12' viewBox='0 0 60 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6c8 0 8 5 16 5s8-10 16-10 8 10 16 10 8-5 10-5' fill='none' stroke='%2351a8b1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

h1,
h2,
h3,
.page-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 {
  max-width: 570px;
  font-size: clamp(3.25rem, 6.6vw, 5.8rem);
}

h1 em {
  display: block;
  color: var(--fresh-blue);
  font-style: italic;
  font-weight: 900;
}

h2,
.page-title {
  font-size: clamp(2.05rem, 3.3vw, 3.5rem);
}

h3 {
  font-size: 1.18rem;
}

.lede {
  max-width: 560px;
  margin: 20px 0 0;
  color: #3c6078;
  font-size: 1rem;
  line-height: 1.65;
}

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

.hero-proof {
  display: none;
}

.hero-media {
  display: none;
}

.floating-note {
  display: none;
}

.hero-form-card {
  width: 100%;
  max-width: 445px;
  margin-left: auto;
  padding: 30px 28px 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(21, 112, 148, 0.2);
  backdrop-filter: blur(18px);
}

.hero-form-card .lead-form {
  display: grid;
  gap: 14px;
}

.hero-form-card .form-field,
.hero-form-card .form-field.full {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-width: 0;
}

.hero-form-card label {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  background: rgba(240, 252, 253, 0.86);
  border: 1px solid rgba(81, 168, 177, 0.34);
  border-radius: 8px;
  color: var(--ink);
  padding: 13px 16px;
  font-size: 0.96rem;
}

.hero-form-card textarea {
  min-height: 94px;
  padding-top: 15px;
  resize: vertical;
}

.hero-form-card .message-field {
  align-items: start;
}

.hero-form-card .message-field label {
  padding-top: 35px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
}

.checkbox-row input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  padding: 0;
  background: white;
  border: 1.5px solid rgba(32, 93, 116, 0.48);
  border-radius: 3px;
  accent-color: var(--deep-green);
  appearance: none;
  -webkit-appearance: none;
}

.checkbox-row input:checked {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--light-green), var(--deep-green));
  border-color: var(--deep-green);
  box-shadow: inset 0 0 0 3px white;
}

.checkbox-row span {
  color: #547086;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  line-height: 1.42;
  text-transform: uppercase;
}

.hero-form-card .checkbox-row input[type="checkbox"] {
  display: block;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  padding: 0;
  margin: 2px 0 0;
  border-radius: 4px;
  flex: 0 0 18px;
}

.captcha-mock {
  display: flex;
  width: 176px;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: #2c6e92;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(81, 168, 177, 0.25);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: lowercase;
}

.captcha-mock .captcha-box {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--deep-green);
  background: #eef9fb;
  border-radius: 5px;
}

.hero-form-card .btn {
  width: 100%;
  min-height: 58px;
  margin-top: 0;
}

.hero-form-card .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
}

.form-status-success {
  color: #355d24;
  background: rgba(147, 194, 118, 0.22);
  border: 1px solid rgba(88, 139, 60, 0.28);
}

.form-status-error {
  color: #8a352e;
  background: rgba(255, 237, 232, 0.92);
  border: 1px solid rgba(178, 83, 70, 0.28);
}

.form-note {
  margin: 0;
  color: #627f91;
  font-size: 0.72rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.section {
  padding: 82px 0;
}

.section-alt {
  background: transparent;
  border: 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-header p {
  max-width: 520px;
  margin: 0;
  color: #58788b;
}

.about-modern {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.image-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  grid-template-rows: 150px 150px;
  gap: 12px;
}

.image-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.image-collage .large {
  grid-row: span 2;
}

.stat-tile {
  position: absolute;
  bottom: 18px;
  left: -18px;
  display: grid;
  width: 118px;
  height: 98px;
  align-content: center;
  padding: 16px;
  color: white;
  background: linear-gradient(135deg, var(--fresh-blue), #2c94aa);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(44, 148, 170, 0.24);
}

.stat-tile strong {
  font-size: 1.62rem;
  line-height: 1;
}

.stat-tile span {
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  color: #4d6d82;
  font-size: 0.92rem;
}

.check-dot,
.check-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--fresh-blue));
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(32, 93, 116, 0.18);
}

.process-panel {
  padding: 46px 38px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 93, 116, 0.12);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.process-card {
  position: relative;
  min-height: 150px;
  padding: 28px 24px 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(32, 93, 116, 0.14);
  border-radius: 8px;
  text-align: left;
}

.process-card small {
  display: inline-flex;
  padding: 5px 11px;
  color: #7b98aa;
  background: #f2fbfc;
  border-radius: var(--pill);
  font-size: 0.62rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.process-card strong {
  display: block;
  margin-top: 18px;
  color: var(--fresh-blue);
  font-size: 2.1rem;
  line-height: 1;
}

.process-card span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.process-corner {
  position: absolute;
  top: -20px;
  right: -20px;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--light-green), var(--deep-green));
  border-radius: 0 8px 0 70px;
}

.process-card .process-corner {
  display: grid;
  margin-top: 0;
  place-items: center;
}

.process-card .process-corner svg {
  display: block;
  align-self: center;
  justify-self: center;
  margin: 0;
}

.bento-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bento-card {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  color: white;
  background: var(--brand-blue);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

.bento-card-large {
  grid-column: 1 / -1;
  min-height: 360px;
}

.bento-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.bento-card:hover img {
  transform: scale(1.045);
}

.bento-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 27, 42, 0.82), rgba(3, 27, 42, 0.42) 52%, rgba(3, 27, 42, 0.12)),
    linear-gradient(180deg, rgba(3, 27, 42, 0.04), rgba(3, 27, 42, 0.8));
}

.bento-content {
  position: relative;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 28px;
}

.bento-card-large .bento-content {
  max-width: 560px;
  padding: 44px;
}

.bento-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.bento-icon svg {
  width: 21px;
  height: 21px;
}

.bento-card .mini-label {
  margin-bottom: 8px;
  color: #bde8aa;
}

.bento-card h3 {
  color: white;
  font-size: clamp(1.34rem, 2vw, 2.15rem);
  letter-spacing: -0.02em;
}

.bento-card p {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: white;
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.bento-link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.bento-card:hover .bento-link svg {
  transform: translateX(3px);
}

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

.service-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(32, 93, 116, 0.12);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card-body {
  padding: 22px;
}

.service-card h3 {
  color: var(--ink);
}

.service-card p {
  margin: 10px 0 16px;
  color: #58788b;
  font-size: 0.88rem;
}

.service-card.featured {
  background: var(--paper);
  color: var(--ink);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .mini-label,
.service-card.featured .btn-text {
  color: inherit;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--fresh-blue);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-band {
  margin-bottom: 90px;
}

.banner {
  position: relative;
  overflow: hidden;
  padding: 54px;
  color: white;
  background:
    linear-gradient(135deg, rgba(6, 63, 104, 0.95), rgba(32, 93, 116, 0.85)),
    url("../img/hero-clean-home.png") center / cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 34px;
  align-items: center;
}

.banner h2,
.banner p,
.banner .eyebrow {
  color: white;
}

.metric-stack {
  display: grid;
  gap: 14px;
}

.metric-box {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.metric-box strong {
  display: block;
  color: #b7eef1;
  font-size: 2rem;
  line-height: 1;
}

.metric-box span {
  font-size: 0.72rem;
  font-weight: 900;
}

.lead-panel {
  display: none;
}

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

.value-card,
.contact-card,
.quote-card,
.legal-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.split-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.split-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.page-hero {
  padding: 160px 0 70px;
  background: linear-gradient(180deg, #fff, var(--wash));
}

.service-page-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 92px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(246, 254, 255, 0.9) 48%, rgba(246, 254, 255, 0.4)),
    url("../img/detail-cleaning.png") center right / cover no-repeat;
}

.service-page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 86px;
  content: "";
  background: linear-gradient(180deg, rgba(238, 252, 253, 0), var(--wash));
}

.service-page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 720px;
}

.service-detail-stack {
  display: grid;
  gap: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(310px, 0.92fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 254, 255, 0.96));
  border: 1px solid rgba(32, 93, 116, 0.12);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.service-detail.primary {
  border-color: rgba(147, 194, 118, 0.42);
  box-shadow: 0 20px 52px rgba(88, 139, 60, 0.12);
}

.service-detail-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.92fr);
}

.service-detail-reverse .service-detail-media {
  order: 2;
}

.service-detail-media {
  min-height: 330px;
  background: var(--brand-blue);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.service-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.service-detail-copy h3 {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.service-detail-copy p {
  max-width: 590px;
  margin: 14px 0 0;
  color: #526f82;
}

.service-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.service-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #355d75;
  font-size: 0.9rem;
  font-weight: 800;
}

.service-points svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--deep-green);
  stroke-width: 3;
}

.service-list {
  display: grid;
  gap: 20px;
}

.service-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.service-row img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 6px;
}

.service-row.primary {
  border-color: rgba(81, 168, 177, 0.34);
}

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

.contact-icon,
.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--fresh-blue), var(--brand-blue));
  border-radius: 8px;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.payment-chip {
  padding: 9px 12px;
  color: var(--brand-blue);
  background: rgba(81, 168, 177, 0.12);
  border: 1px solid rgba(81, 168, 177, 0.22);
  border-radius: var(--pill);
  font-size: 0.86rem;
  font-weight: 900;
}

.legal-layout {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.site-footer {
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: #043f6d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(150px, 0.58fr));
  gap: 34px;
}

.site-footer .brand-logo {
  width: 190px;
  filter: brightness(0) invert(1) opacity(0.75);
}

.footer-brand p {
  max-width: 300px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 0.83rem;
  font-weight: 1000;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 10px;
    padding-top: 10px;
    margin-bottom: -4px;
  }

  .nav-links {
    position: fixed;
    inset: 92px 18px auto;
    display: none;
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-link {
    width: 100%;
    padding: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

  .hero {
    padding-top: 36px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 58%, rgba(255, 255, 255, 0.35) 100%),
      url("../img/hero-cleaning-action.png") center right / cover no-repeat;
  }

  .hero-grid,
  .about-modern,
  .banner-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-form-card {
    max-width: 520px;
  }

  .service-gallery,
  .bento-services,
  .process-grid,
  .card-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-card-large {
    grid-column: 1 / -1;
  }

  .service-detail,
  .service-detail-reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-reverse .service-detail-media {
    order: 0;
  }

  .service-row {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .service-row .btn-text {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    top: 0;
    padding-top: 12px;
  }

  .nav-wrap {
    min-height: 56px;
    padding: 8px 12px 8px 14px;
  }

  .brand {
    min-width: 142px;
  }

  .brand-logo {
    width: 142px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 58px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 58%, rgba(238, 252, 253, 0.88) 100%),
      url("../img/hero-cleaning-action.png") center bottom / cover no-repeat;
  }

  .hero-grid {
    gap: 30px;
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.75rem);
  }

  h2,
  .page-title {
    font-size: clamp(2.05rem, 9.8vw, 3.05rem);
  }

  .hero-actions,
  .banner .hero-actions {
    display: grid;
  }

  .hero-form-card {
    padding: 20px;
    max-width: none;
    scroll-margin-top: 112px;
  }

  .hero-form-card .form-field,
  .hero-form-card .form-field.full {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-form-card .message-field label {
    padding-top: 0;
  }

  .service-gallery,
  .bento-services,
  .process-grid,
  .card-grid,
  .contact-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card-large {
    min-height: 260px;
  }

  .bento-card-large .bento-content,
  .bento-content {
    padding: 24px;
  }

  .service-detail-copy {
    padding: 28px 22px;
  }

  .service-detail-media,
  .service-detail-media img {
    min-height: 240px;
  }

  .about-modern {
    gap: 34px;
  }

  .image-collage {
    grid-template-rows: 128px 128px;
  }

  .section {
    padding: 62px 0;
  }

  .section-header {
    display: grid;
  }

  .process-panel,
  .banner {
    padding: 26px 20px;
  }

  .process-card {
    min-height: 210px;
    padding: 34px 26px 28px;
  }

  .process-card strong {
    margin-top: 26px;
  }

  .process-corner {
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 8px;
  }

  .process-corner svg {
    width: 20px;
    height: 20px;
  }

  .value-card,
  .contact-card,
  .quote-card,
  .legal-card {
    padding: 26px 24px;
  }

  .value-card p,
  .contact-card p,
  .quote-card p,
  .legal-card p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .checkbox-row {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
  }

  .checkbox-row span {
    font-size: 0.66rem;
    line-height: 1.34;
  }

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

  .service-row .btn-text {
    grid-column: auto;
  }

  .service-row img {
    height: 190px;
  }

  .footer-bottom {
    display: grid;
  }
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
  overflow: hidden;
}

.footer-social a svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #043f6d;
}

.section-reviews {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.65),
    rgba(238, 252, 253, 0.9)
  );
}

.reviews-wrapper {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

/* Ajustes gerais do Trustindex */
.reviews-wrapper .ti-widget,
.reviews-wrapper iframe {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 700px) {
  .reviews-wrapper {
    padding: 20px;
  }
}
.page-hero-bg {
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}

.page-hero-bg .container {
  position: relative;
  z-index: 2;
}

.page-hero-bg .eyebrow,
.page-hero-bg .page-title,
.page-hero-bg .lede {
  color: #fff;
}

.page-hero-bg .lede {
  max-width: 680px;
  opacity: 0.95;
}
