:root {
  --navy: #0a2b46;
  --navy-dark: #061d30;
  --blue: #14528b;
  --blue-bright: #287dc2;
  --cyan: #37a8e8;
  --cyan-dark: #14528b;
  --sky: #dff2ff;
  --pale: #f1f8fc;
  --cream: #f8fbfd;
  --white: #fff;
  --ink: #102f47;
  --muted: #607487;
  --line: #d9e6ef;
  --font: "Plus Jakarta Sans", Arial, sans-serif;
  --shadow: 0 22px 65px rgba(10, 43, 70, 0.12);
  --shadow-sm: 0 10px 30px rgba(10, 43, 70, 0.08);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  padding: 110px 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: -90px;
  left: 20px;
  padding: 11px 16px;
  border-radius: 0 0 10px 10px;
  color: var(--white);
  background: var(--navy);
}
.skip-link:focus {
  top: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font);
}
h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}
h2 {
  font-size: clamp(42px, 5vw, 68px);
}
p {
  color: var(--muted);
}
.kicker {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.kicker--light {
  color: #8dd3fb;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  display: none;
}
.eyebrow--light {
  color: #9edbfc;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 13px 28px rgba(20, 82, 139, 0.22);
}
.btn--primary:hover {
  background: var(--navy);
}
.btn--white {
  color: var(--navy);
  background: var(--white);
}
.btn--white:hover {
  color: var(--white);
  background: var(--navy);
}
.btn--outline {
  color: var(--blue);
  border-color: #afc7d8;
  background: transparent;
}
.btn--outline:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}
.btn--large {
  min-height: 58px;
  padding-inline: 29px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(10, 43, 70, 0.07);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(10, 43, 70, 0.08);
}
.site-header__inner {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  width: 185px;
  flex: 0 0 185px;
}
.brand img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}
.primary-nav > a,
.nav-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 34px 0;
  color: #355066;
  font-size: 15px;
  font-weight: 700;
}
.primary-nav > a::after,
.nav-dropdown > a::after {
  position: absolute;
  right: 50%;
  bottom: 23px;
  left: 50%;
  height: 3px;
  border-radius: 3px;
  content: "";
  background: var(--cyan);
  transition: 0.2s;
}
.primary-nav > a:hover,
.nav-dropdown > a:hover,
.primary-nav .is-active {
  color: var(--blue);
}
.primary-nav > a:hover::after,
.nav-dropdown > a:hover::after,
.primary-nav .is-active::after {
  right: 0;
  left: 0;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a i {
  font-size: 9px;
}
.nav-dropdown__menu {
  position: absolute;
  top: 78px;
  left: -28px;
  width: 280px;
  display: grid;
  visibility: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  opacity: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(8px);
  transition: 0.2s;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.nav-dropdown__menu a {
  padding: 10px 12px !important;
  border-radius: 10px;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 700;
}
.nav-dropdown__menu a::after {
  display: none !important;
}
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: var(--white) !important;
  background: var(--blue) !important;
  outline: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.2;
}
.header-phone > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--sky);
  font-size: 13px;
}
.header-phone small,
.header-phone strong {
  display: block;
}
.header-phone small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.header-phone strong {
  color: var(--navy);
  font-size: 15px;
}
.header-quote {
  min-height: 45px;
  padding-inline: 20px;
}
.nav-toggle {
  width: 45px;
  height: 45px;
  display: none;
  padding: 13px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: var(--white);
}

/* New homepage hero */
.fresh-hero {
  position: relative;
  padding: 62px 0 0;
  overflow: hidden;
  background: linear-gradient(118deg, #f2faff 0%, #f8fcff 52%, #e0f2fd 100%);
}
.fresh-hero::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  content: "";
  background: rgba(55, 168, 232, 0.1);
}
.fresh-hero__grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  padding: 8px 13px;
  border: 1px solid #c9e1ef;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 800;
}
.pill i {
  color: var(--cyan);
}
.fresh-hero h1 {
  margin-bottom: 25px;
  color: var(--navy);
  font-size: clamp(61px, 7.1vw, 94px);
}
.fresh-hero h1 span {
  color: var(--blue-bright);
}
.fresh-hero__copy > p {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.75;
}
.fresh-hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.hero-call > i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid #bdd5e4;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
}
.hero-call small,
.hero-call span {
  display: block;
}
.hero-call small {
  color: var(--muted);
  font-size: 13px;
}
.hero-call span {
  font-size: 20px;
  font-weight: 800;
}
.fresh-hero__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}
.rating-stars {
  color: #f4ad28;
  font-size: 14px;
  letter-spacing: 3px;
}
.fresh-hero__rating p {
  margin: 0;
}
.fresh-hero__rating strong,
.fresh-hero__rating span {
  display: block;
}
.fresh-hero__rating strong {
  color: var(--navy);
  font-size: 15px;
}
.fresh-hero__rating span {
  color: var(--muted);
  font-size: 13px;
}
.fresh-hero__visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}
.fresh-hero__blob {
  position: absolute;
  right: -35px;
  bottom: 15px;
  width: 95%;
  height: 88%;
  border-radius: 48% 52% 12% 38% / 45% 32% 25% 47%;
  background: var(--blue);
  transform: rotate(-2deg);
}
.fresh-hero__visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 47% 53% 8% 32% / 42% 27% 16% 42%;
  box-shadow: var(--shadow);
}
.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.floating-note i {
  color: var(--blue);
}
.floating-note span,
.floating-note strong {
  display: block;
}
.floating-note strong {
  color: var(--navy);
  font-size: 13px;
}
.floating-note span {
  color: var(--muted);
  font-size: 12px;
}
.floating-note--top {
  top: 52px;
  right: -12px;
}
.floating-note--bottom {
  bottom: 32px;
  left: -25px;
}
.floating-note__check {
  width: 37px;
  height: 37px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  color: var(--white) !important;
  background: var(--blue);
}
.floating-note__check i {
  color: var(--white);
}
.benefit-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 0;
  border-top: 1px solid #cadeeb;
}
.benefit-bar > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 23px;
  border-right: 1px solid #cadeeb;
}
.benefit-bar > div:first-child {
  padding-left: 0;
}
.benefit-bar > div:last-child {
  border-right: 0;
}
.benefit-bar i {
  color: var(--blue);
  font-size: 21px;
}
.benefit-bar strong,
.benefit-bar span {
  display: block;
}
.benefit-bar strong {
  color: var(--navy);
  font-size: 18px;
}
.benefit-bar span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

/* Homepage service cards */
.section-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr;
  align-items: end;
  gap: 95px;
  margin-bottom: 52px;
}
.section-intro h2 {
  margin: 0;
}
.section-intro > div:last-child p {
  margin-bottom: 18px;
  font-size: 16px;
}
.section-intro > div:last-child > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.home-services {
  background: var(--white);
}
.image-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.image-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.image-service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.image-service-card__media {
  position: relative;
  height: 190px;
  display: block;
  overflow: hidden;
  background: #d7e4ed;
}
.image-service-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(6, 29, 48, 0.28));
}
.image-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.image-service-card:hover img {
  transform: scale(1.06);
}
.image-service-card__media > span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 10px;
  font-weight: 800;
}
.image-service-card > div {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.image-service-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.image-service-card p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}
.card-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border: 1px solid #b9cddd;
  border-radius: 50%;
  color: var(--blue);
  transition: 0.2s;
}
.image-service-card:hover .card-arrow {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  transform: rotate(-35deg);
}

/* Moments section */
.cleaning-moments {
  padding: 105px 0;
  color: var(--white);
  background: var(--navy);
}
.cleaning-moments__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
}
.cleaning-moments__intro h2 {
  margin-bottom: 25px;
  color: var(--white);
}
.cleaning-moments__intro p {
  max-width: 480px;
  margin-bottom: 28px;
  color: #aec4d4;
}
.moment-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.moment-list article {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.moment-list article > span {
  color: #71c7f4;
  font-size: 35px;
  font-weight: 800;
}
.moment-list h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 22px;
}
.moment-list p {
  margin: 0;
  color: #a9c0d0;
  font-size: 14px;
}

/* Story */
.home-story {
  background: var(--pale);
}
.home-story__grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 95px;
}
.home-story__media {
  position: relative;
  min-height: 570px;
}
.home-story__image {
  position: absolute;
  inset: 0 45px 40px 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.home-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.story-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 195px;
  height: 155px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 25px;
  border-radius: 24px;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
}
.story-stamp strong {
  font-size: 48px;
  line-height: 1;
}
.story-stamp span {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.45;
}
.home-story__copy h2 {
  margin-bottom: 25px;
}
.home-story__copy .lead {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}
.home-story__copy > p:not(.lead) {
  font-size: 15px;
}
.tick-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.tick-list li {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 12px;
}
.tick-list i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
}
.tick-list strong,
.tick-list span {
  display: block;
}
.tick-list strong {
  color: var(--navy);
  font-size: 18px;
}
.tick-list span {
  color: var(--muted);
  font-size: 15px;
}

/* Process */
.how {
  background: var(--white);
}
.how__heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}
.how__heading h2 {
  margin-bottom: 15px;
}
.how__heading p {
  font-size: 16px;
}
.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.how-grid::before {
  position: absolute;
  top: 31px;
  right: 12%;
  left: 12%;
  border-top: 2px dashed #bfd3e0;
  content: "";
}
.how-grid article {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}
.how-grid article > span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 7px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(20, 82, 139, 0.2);
  font-size: 15px;
  font-weight: 800;
}
.how-grid h3 {
  margin-bottom: 7px;
  font-size: 20px;
}
.how-grid p {
  font-size: 15px;
  line-height: 1.65;
}

/* Proof */
.proof {
  color: var(--white);
  background: var(--blue);
}
.proof__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 90px;
}
.proof__copy h2 {
  color: var(--white);
  font-size: clamp(40px, 4.6vw, 62px);
}
.proof__copy p {
  color: #c4dff0;
}
.proof-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.proof-cards article {
  min-height: 205px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.08);
}
.proof-cards article:nth-child(2),
.proof-cards article:nth-child(3) {
  background: rgba(255, 255, 255, 0.15);
}
.proof-cards i {
  margin-bottom: 28px;
  color: #b7e5ff;
  font-size: 24px;
}
.proof-cards h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 20px;
}
.proof-cards p {
  margin: 0;
  color: #c6ddea;
  font-size: 15px;
}

/* Reviews */
.home-review {
  background: var(--cream);
}
.home-review__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
}
.home-review__heading h2 {
  font-size: clamp(40px, 4.5vw, 60px);
}
.slider-controls {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}
.slider-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid #b8cdda;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
}
.slider-controls button:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}
.reviews__slider {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 55px;
  opacity: 0;
  transition: opacity 0.35s;
}
.review-card.is-active {
  visibility: visible;
  opacity: 1;
}
.review-card__stars {
  margin-bottom: 20px;
  color: #f4ad28;
  letter-spacing: 4px;
}
.review-card > p {
  margin-bottom: 35px;
  color: var(--navy);
  font-size: clamp(23px, 2.5vw, 33px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.45;
}
.review-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
}
.review-card footer > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.review-card cite,
.review-card small {
  display: block;
}
.review-card cite {
  color: var(--navy);
  font-style: normal;
  font-weight: 800;
}
.review-card small {
  color: var(--muted);
  font-size: 13px;
}

/* Quote forms */
.home-quote {
  background: var(--white);
}
.home-quote__shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.home-quote__copy {
  padding: 70px 58px;
}
.home-quote__copy h2 {
  color: var(--white);
  font-size: clamp(42px, 4.5vw, 62px);
}
.home-quote__copy p {
  color: #b9cfdd;
}
.quote-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.quote-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d2e3ed;
  font-size: 15px;
}
.quote-points i {
  color: #79cbf5;
}
.home-quote__form {
  margin: 16px;
  padding: 45px;
  border-radius: 22px;
  background: var(--white);
}
.quote-form h3 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.quote-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.quote-form label > .field-label {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  gap: 4px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
}
.quote-form label > .field-label b {
  color: #d14b4b;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: #fbfdff;
  font-size: 14px;
  transition: 0.2s;
}
.quote-form input,
.quote-form select {
  height: 49px;
  padding: 0 13px;
}
.quote-form textarea {
  min-height: 105px;
  padding: 12px 13px;
  resize: vertical;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 82, 139, 0.09);
  background: var(--white);
}
.quote-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
.quote-form .form-consent input {
  width: 15px;
  height: 15px;
  margin: 6px 0 0;
}
.quote-form .form-consent span {
  color: inherit;
}
.btn--submit {
  width: 100%;
  border-radius: 13px;
}
.form-note {
  margin: 9px 0 0;
  color: #8a9aa5;
  font-size: 10px;
  text-align: center;
}
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.form-message {
  margin-bottom: 15px;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 12px;
}
.form-message--success {
  color: #176a42;
  background: #e8f7ef;
}
.form-message--error {
  color: #9b3232;
  background: #fff0f0;
}
.is-invalid {
  border-color: #c64444 !important;
}

/* Inner pages */
.page-hero {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  background: linear-gradient(120deg, #eaf7ff, #f7fbfe);
}
.page-hero::before {
  position: absolute;
  right: -140px;
  bottom: -280px;
  width: 570px;
  height: 570px;
  border: 95px solid rgba(55, 168, 232, 0.13);
  border-radius: 50%;
  content: "";
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 245px;
  display: flex;
  align-items: center;
}
.page-hero__inner > div {
  max-width: 900px;
}
.page-hero h1 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(49px, 6.3vw, 78px);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.breadcrumbs a:hover {
  color: var(--navy);
}
.inner-services,
.generic-page,
.contact-page,
.service-detail {
  background: var(--cream);
}
.content-prose {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}
.content-prose h2,
.content-prose h3 {
  color: var(--navy);
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.content-prose h2 {
  margin: 42px 0 17px;
  font-size: clamp(31px, 3.2vw, 43px);
}
.content-prose h2:first-child {
  margin-top: 0;
}
.content-prose h3 {
  margin: 34px 0 13px;
  font-size: 24px;
}
.content-prose p {
  color: var(--muted);
}
.content-prose ul,
.content-prose ol {
  display: grid;
  gap: 9px;
  margin: 19px 0 26px;
  padding-left: 23px;
}
.content-prose li::marker {
  color: var(--blue);
  font-weight: 800;
}
.content-prose a {
  color: var(--blue);
  font-weight: 800;
}
.content-prose a.btn {
  color: var(--white);
}
.content-prose--intro {
  max-width: 830px;
  margin: 0 auto 55px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card--image {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: 0.25s;
}
.service-card--image:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.service-card--image::before,
.service-card--image::after {
  display: none;
}
.service-card__image {
  height: 220px;
  display: block;
  overflow: hidden;
  background: #d7e4ed;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.service-card--image:hover .service-card__image img {
  transform: scale(1.06);
}
.service-card__body {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}
.service-card__body h2,
.service-card__body h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.service-card__body p {
  margin-bottom: 22px;
  color: var(--muted) !important;
  font-size: 15px;
  line-height: 1.7;
}
.service-card__body > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.generic-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 75px;
}
.side-cta {
  position: sticky;
  top: 120px;
  padding: 32px;
  border-radius: 24px;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
}
.side-cta > span {
  color: #a9e0fc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.side-cta h2 {
  margin: 12px 0 14px;
  color: var(--white);
  font-size: 31px;
}
.side-cta p {
  color: #d0e3ef;
  font-size: 14px;
}
.side-cta__phone {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.side-cta__phone > i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
}
.side-cta__phone span,
.side-cta__phone small {
  display: block;
}
.side-cta__phone small {
  color: #b8d7e9;
  font-size: 9px;
  text-transform: uppercase;
}
.simple-cta {
  padding: 65px 0;
  color: var(--white);
  background: var(--blue);
}
.simple-cta > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.simple-cta span {
  color: #a9e0fc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.simple-cta h2 {
  margin: 7px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 42px);
}
.simple-cta .btn--white {
  color: var(--navy);
}
.simple-cta .btn--white:hover {
  color: var(--white);
}
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: start;
  gap: 70px;
}
.contact-page__grid > div:last-child {
  padding: 10px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 32px;
}
.contact-cards > a,
.contact-cards > div {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}
.contact-cards > a > span,
.contact-cards > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}
.contact-cards small,
.contact-cards strong,
.contact-cards b {
  display: block;
}
.contact-cards small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-cards strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 18px;
  overflow-wrap: anywhere;
}
.contact-cards b {
  color: var(--muted);
  font-size: 13px;
}
.map-embed {
  margin-top: 60px;
}
.map-embed iframe {
  width: 100%;
  height: 470px;
  border: 0 !important;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

/* Single service */
.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 375px;
  align-items: start;
  gap: 75px;
}
.service-content-image {
  margin: 0 0 36px;
}
.service-content-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.service-summary {
  margin: 38px 0;
  padding: 28px;
  border: 1px solid #cfe0eb;
  border-radius: 20px;
  background: #eef8fd;
}
.service-summary > p {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 600;
}
.service-summary__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}
.service-summary__phone {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 17px;
  border: 1px solid #b8cfdd;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}
.service-summary__phone > i {
  color: var(--blue);
}
.service-summary__phone span,
.service-summary__phone small {
  display: block;
}
.service-summary__phone small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}
.service-sidebar {
  position: sticky;
  top: 115px;
}
.service-nav {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.service-nav h2 {
  margin: 0;
  padding: 23px;
  color: var(--white);
  background: var(--navy);
  font-size: 21px;
}
.service-nav a {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 19px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.service-nav a:last-child {
  border-bottom: 0;
}
.service-nav a:hover,
.service-nav a.is-active {
  color: var(--white);
  background: var(--blue);
}
.service-nav a i {
  font-size: 10px;
}
.service-sidebar #service-quote {
  margin-top: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.faq-section {
  margin-top: 65px;
  padding-top: 55px;
  border-top: 1px solid var(--line);
}
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 19px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: 0;
  padding: 0 19px 19px;
  color: var(--muted);
  font-size: 14px;
}

/* Footer */
.footer-cta {
  padding: 63px 0;
  color: var(--white);
  background: var(--cyan);
}
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-cta span {
  color: #e8f8ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-cta h2 {
  max-width: 770px;
  margin: 7px 0 0;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 56px);
}
.site-footer {
  padding-top: 75px;
  color: #b6cad8;
  background: var(--navy-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.45fr 0.65fr 1.05fr;
  gap: 55px;
  padding-bottom: 60px;
}
.brand--footer {
  width: 205px;
  display: block;
  margin-bottom: 19px;
  padding: 10px;
  border-radius: 12px;
  background: var(--white);
}
.brand--footer img {
  height: 72px;
}
.footer-about p {
  max-width: 330px;
  font-size: 15px;
}
.footer-grid h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 15px;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-services .footer-links {
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
}
.footer-links a {
  font-size: 15px;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}
.footer-contact li {
  color: #b6cad8;
  font-size: 15px;
  line-height: 1.55;
}
.footer-contact small {
  display: block;
  color: #6f91a8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6e8da1;
  font-size: 12px;
}
.footer-bottom p {
  margin: 0;
  color: inherit;
}
.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 3px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: #1daa55;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 800;
}
.floating-whatsapp i {
  font-size: 19px;
}
.back-to-top {
  position: fixed;
  z-index: 80;
  right: 25px;
  bottom: 82px;
  width: 40px;
  height: 40px;
  visibility: hidden;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  color: var(--white);
  background: var(--blue);
  transform: translateY(9px);
  transition: 0.2s;
}
.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease var(--delay, 0ms),
    transform 0.6s ease var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-header__inner {
    gap: 22px;
  }
  .primary-nav {
    gap: 19px;
  }
  .header-phone {
    display: none;
  }
  .fresh-hero__grid {
    gap: 40px;
  }
  .image-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-story__grid,
  .proof__grid {
    gap: 60px;
  }
  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 85px 0;
  }
  .site-header__inner {
    height: 79px;
  }
  .brand {
    width: 158px;
    flex-basis: 158px;
  }
  .brand img {
    height: 60px;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .header-actions {
    margin-left: 0;
  }
  .primary-nav {
    position: fixed;
    top: var(--nav-top, 87px);
    right: 20px;
    left: 20px;
    max-height: calc(100vh - var(--nav-top, 87px) - 20px);
    display: block;
    visibility: hidden;
    margin: 0;
    padding: 14px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    opacity: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    transition: 0.2s;
  }
  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .primary-nav > a,
  .nav-dropdown > a {
    display: flex;
    padding: 12px;
    border-radius: 10px;
  }
  .primary-nav > a::after,
  .nav-dropdown > a::after {
    display: none;
  }
  .primary-nav > a:hover,
  .nav-dropdown > a:hover {
    background: var(--pale);
  }
  .nav-dropdown__menu {
    position: static;
    width: 100%;
    display: none;
    visibility: visible;
    padding: 5px 10px;
    border: 0;
    opacity: 1;
    box-shadow: none;
    transform: none;
  }
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    display: grid;
  }
  .fresh-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 35px;
  }
  .fresh-hero__copy {
    max-width: 720px;
  }
  .fresh-hero__visual {
    width: min(700px, 100%);
    margin-left: auto;
  }
  .benefit-bar {
    grid-template-columns: 1fr 1fr;
  }
  .benefit-bar > div {
    padding: 18px;
    border-bottom: 1px solid #cadeeb;
  }
  .benefit-bar > div:nth-child(2) {
    border-right: 0;
  }
  .benefit-bar > div:nth-child(n + 3) {
    border-bottom: 0;
  }
  .section-intro,
  .cleaning-moments__grid,
  .home-story__grid,
  .proof__grid,
  .home-review__grid,
  .home-quote__shell {
    grid-template-columns: 1fr;
  }
  .section-intro {
    gap: 20px;
  }
  .image-service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cleaning-moments__grid {
    gap: 55px;
  }
  .home-story__media {
    min-height: 520px;
  }
  .home-story__copy {
    max-width: 720px;
  }
  .how-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 45px;
  }
  .how-grid::before {
    display: none;
  }
  .proof__copy {
    max-width: 720px;
  }
  .reviews__slider {
    min-height: 380px;
  }
  .home-quote__copy {
    padding-bottom: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .generic-page__grid,
  .contact-page__grid,
  .service-detail__grid {
    grid-template-columns: 1fr;
  }
  .side-cta,
  .service-sidebar {
    position: static;
  }
  .service-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .service-sidebar #service-quote {
    margin-top: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1200px);
  }
  .section {
    padding: 70px 0;
  }
  h2 {
    font-size: 41px;
  }
  .site-header__inner {
    height: 74px;
  }
  .brand {
    width: 145px;
    flex-basis: 145px;
  }
  .header-quote {
    display: none;
  }
  .fresh-hero {
    padding-top: 42px;
  }
  .fresh-hero h1 {
    font-size: 57px;
  }
  .fresh-hero__copy > p {
    font-size: 16px;
  }
  .fresh-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .fresh-hero__visual,
  .fresh-hero__visual > img {
    min-height: 405px;
    height: 405px;
  }
  .fresh-hero__visual > img {
    object-position: 63% center;
  }
  .floating-note--top {
    top: 14px;
    right: -4px;
  }
  .floating-note--bottom {
    bottom: 15px;
    left: -3px;
  }
  .benefit-bar,
  .image-service-grid,
  .proof-cards,
  .how-grid,
  .form-row,
  .services-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .benefit-bar > div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid #cadeeb !important;
  }
  .benefit-bar > div:last-child {
    border-bottom: 0 !important;
  }
  .image-service-card__media {
    height: 215px;
  }
  .cleaning-moments {
    padding: 75px 0;
  }
  .moment-list article {
    grid-template-columns: 45px 1fr;
  }
  .home-story__media {
    min-height: 440px;
  }
  .home-story__image {
    inset: 0 10px 50px 0;
  }
  .story-stamp {
    width: 175px;
    height: 135px;
  }
  .proof-cards article {
    min-height: 180px;
  }
  .home-review__heading h2 {
    font-size: 39px;
  }
  .review-card {
    padding: 34px 26px;
  }
  .review-card > p {
    font-size: 23px;
  }
  .home-quote__copy {
    padding: 48px 25px 20px;
  }
  .home-quote__form {
    margin: 10px;
    padding: 30px 20px;
  }
  .page-hero {
    padding: 65px 0;
  }
  .page-hero__inner {
    min-height: 220px;
  }
  .page-hero h1 {
    font-size: 45px;
  }
  .service-sidebar {
    grid-template-columns: 1fr;
  }
  .service-card__image {
    height: 205px;
  }
  .simple-cta > .container,
  .footer-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-page__grid > div:last-child {
    padding: 25px 20px;
  }
  .footer-cta {
    padding: 52px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-services .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 16px 0;
  }
  .floating-whatsapp span {
    display: none;
  }
  .floating-whatsapp {
    width: 50px;
    justify-content: center;
    padding: 0;
  }
}
