:root {
  --blue: #003b73;
  --blue-dark: #0b1f3a;
  --green: #1fa67a;
  --green-soft: #eaf7f1;
  --white: #ffffff;
  --gray: #f6f8fa;
  --gray-2: #edf2f6;
  --text: #1f2937;
  --muted: #5f6b7a;
  --line: #dfe7ef;
  --shadow: 0 22px 60px rgba(11, 31, 58, 0.12);
  --shadow-soft: 0 14px 34px rgba(11, 31, 58, 0.08);
  --radius: 8px;
  --radius-lg: 20px;
  --container: 1240px;
  --header-height: 168px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(223, 231, 239, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 150px;
  max-height: 150px;
  object-fit: contain;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.06);
}

.lang-btn {
  min-width: 40px;
  height: 34px;
  padding: 0 11px;
  color: var(--blue-dark);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible,
.lang-btn.is-active {
  color: var(--white);
  background: var(--blue);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 30px 0 28px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--blue);
}

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

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 28px rgba(0, 59, 115, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(0, 59, 115, 0.3);
}

.btn-outline {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(31, 166, 122, 0.45);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--green);
  box-shadow: var(--shadow-soft);
}

.btn-small {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 0.92rem;
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 64px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(31, 166, 122, 0.12), transparent 30%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #f7fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.why-content h2,
.quote-card h2,
.contact-card h2 {
  margin: 0;
  color: var(--blue-dark);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.65rem, 6vw, 4.8rem);
}

.hero h1 span {
  color: var(--green);
}

.hero-subtitle {
  max-width: 580px;
  margin: 24px 0 0;
  color: #314158;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 650;
}

.hero-copy {
  max-width: 580px;
  margin: 14px 0 0;
  color: var(--muted);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  max-width: 560px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 0.96rem;
  font-weight: 750;
}

.trust-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  padding: 3px;
  color: var(--green);
  border: 1px solid rgba(31, 166, 122, 0.45);
  border-radius: 999px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.avatar-stack,
.mini-avatars {
  display: flex;
}

.avatar-stack span,
.mini-avatars i {
  width: 38px;
  height: 38px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: center / cover no-repeat;
  box-shadow: 0 7px 15px rgba(11, 31, 58, 0.12);
}

.avatar-stack span + span,
.mini-avatars i + i {
  margin-left: -12px;
}

.avatar-stack span:nth-child(2) {
  background-image: url("../assets/images/client-avatar-2.png");
}

.avatar-stack span:nth-child(3) {
  background-image: url("../assets/images/client-avatar-3.png");
}

.avatar-stack span:nth-child(4) {
  background-image: url("../assets/images/client-avatar-4.png");
}

.avatar-stack span:nth-child(1),
.mini-avatars i:nth-child(1) {
  background-image: url("../assets/images/client-avatar-1.png");
}

.mini-avatars i:nth-child(2) {
  background-image: url("../assets/images/client-avatar-2.png");
}

.mini-avatars i:nth-child(3) {
  background-image: url("../assets/images/client-avatar-3.png");
}

.mini-avatars i:nth-child(4) {
  background-image: url("../assets/images/client-avatar-4.png");
}

.rating-row strong {
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.stars {
  color: #f5a524;
  font-weight: 900;
  letter-spacing: 0;
}

.stars span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  aspect-ratio: 1.32 / 1;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -120px 42% -80px -80px;
  z-index: -1;
  border: 1px solid rgba(0, 59, 115, 0.08);
  border-radius: 0 0 55% 0;
  transform: rotate(-6deg);
}

.home-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0 0 0 150px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 36%),
    url("../assets/images/hero-clean-home.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.home-placeholder::before {
  content: none;
}

.home-placeholder::after {
  content: none;
}

.window {
  position: absolute;
  top: 9%;
  width: 15%;
  height: 34%;
  border-radius: 4px;
  background: linear-gradient(#d8eef6, #ffffff);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.75);
}

.window-one {
  left: 49%;
}

.window-two {
  left: 66%;
}

.plant {
  position: absolute;
  left: 12%;
  bottom: 31%;
  width: 58px;
  height: 170px;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(ellipse at 30% 22%, #4f8a42 0 18%, transparent 19%),
    radial-gradient(ellipse at 70% 28%, #2f7d42 0 20%, transparent 21%),
    radial-gradient(ellipse at 50% 44%, #62a64f 0 22%, transparent 23%),
    linear-gradient(90deg, transparent 45%, #6b4e36 46% 54%, transparent 55%);
}

.plant::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -26px;
  height: 44px;
  border-radius: 0 0 16px 16px;
  background: #e7dfd5;
  box-shadow: inset 0 -8px 0 rgba(11, 31, 58, 0.07);
}

.sofa {
  position: absolute;
  left: 26%;
  bottom: 28%;
  width: 48%;
  height: 22%;
  border-radius: 28px 28px 18px 18px;
  background:
    radial-gradient(circle at 46% 34%, #f5f0e9 0 13%, transparent 14%),
    radial-gradient(circle at 62% 34%, #eef7f1 0 13%, transparent 14%),
    linear-gradient(#f5efe8, #dfd5cb);
  box-shadow: 0 20px 40px rgba(88, 69, 50, 0.18);
}

.sofa::before,
.sofa::after {
  content: "";
  position: absolute;
  bottom: -16px;
  width: 54px;
  height: 22px;
  border-radius: 10px;
  background: #b68a64;
}

.sofa::before {
  left: 34px;
}

.sofa::after {
  right: 34px;
}

.table {
  position: absolute;
  left: 42%;
  bottom: 11%;
  width: 32%;
  height: 13%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 44%, #6a8f5d 0 7%, transparent 8%),
    linear-gradient(160deg, #ffffff, #e6ddd3);
  box-shadow: 0 18px 28px rgba(89, 70, 53, 0.18);
}

.rug {
  position: absolute;
  left: 31%;
  bottom: 4%;
  width: 54%;
  height: 20%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.95), rgba(204, 190, 174, 0.22));
}

.home-placeholder .window,
.home-placeholder .plant,
.home-placeholder .sofa,
.home-placeholder .table,
.home-placeholder .rug {
  display: none;
}

.quick-response-card {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(280px, 75%);
  padding: 20px;
  border: 1px solid rgba(223, 231, 239, 0.85);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.18);
}

.quick-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green);
  border-radius: 50%;
  background: var(--green-soft);
}

.quick-icon svg,
.service-icon svg,
.benefit-item svg,
.stat-item svg,
.contact-list svg,
.slider-arrow svg,
.back-to-top svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.quick-response-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.94rem;
}

.quick-response-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 82px 0;
}

.services-section {
  background: var(--white);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.why-content h2,
.quote-card h2,
.contact-card h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.section-heading p:not(.eyebrow),
.why-content > p,
.quote-card > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  display: flex;
  gap: 20px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(31, 166, 122, 0.45);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-dark);
  border-radius: 50%;
  background: linear-gradient(135deg, #eef7e9, #f6f8fa);
}

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

.why-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f7fbf6 0%, #ffffff 54%, #eef4f7 100%);
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0 47% 0 -12%;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 0 0 55% 0;
  transform: skewX(-10deg);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
  gap: 50px;
  min-height: 520px;
}

.why-content {
  z-index: 1;
  align-self: center;
  padding: 82px 0;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--blue-dark);
  font-weight: 750;
}

.benefit-item svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  flex: 0 0 auto;
}

.local-note {
  position: relative;
  display: inline-flex;
  margin-top: 32px;
  padding: 13px 18px 13px 42px;
  color: var(--blue-dark);
  font-weight: 800;
  border: 1px solid rgba(31, 166, 122, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
}

.local-note::before {
  content: "\269C";
  position: absolute;
  left: 17px;
  top: 50%;
  color: var(--green);
  transform: translateY(-50%);
}

.why-visual {
  position: relative;
  min-height: 520px;
  aspect-ratio: 1.35 / 1;
}

/* Generated image used for the "Pourquoi nous choisir" section. */
.cleaner-placeholder {
  position: absolute;
  inset: 0 -80px 0 0;
  overflow: hidden;
  border-radius: 120px 0 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 32%),
    url("../assets/images/why-cleaning-team.png") center / cover no-repeat;
  }

.cleaner-placeholder::before {
  content: none;
}

.cleaner-body {
  position: absolute;
  right: 20%;
  bottom: 7%;
  width: 22%;
  height: 60%;
  border-radius: 44% 44% 10px 10px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.25) 46% 55%, transparent 56%),
    linear-gradient(#1fa67a, #0b6d62);
  box-shadow: -100px 76px 0 -62px rgba(31, 166, 122, 0.58);
}

.cleaner-head {
  position: absolute;
  right: 25%;
  top: 13%;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, #f0c5a7 0 55%, transparent 56%),
    linear-gradient(#5a3a2d, #5a3a2d);
}

.spray {
  position: absolute;
  right: 47%;
  bottom: 22%;
  width: 72px;
  height: 116px;
  border-radius: 16px 16px 10px 10px;
  background:
    linear-gradient(#1fa67a 0 22%, #ffffff 23% 55%, #6bb4ff 56% 100%);
  box-shadow: 116px 16px 0 -14px #f2d332, 92px 12px 0 -18px #0b1f3a;
}

.spray::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 18px;
  width: 54px;
  height: 34px;
  border-radius: 12px;
  background: var(--green);
}

.cloth {
  position: absolute;
  right: 33%;
  bottom: 19%;
  width: 150px;
  height: 110px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
    linear-gradient(#7bc6d6, #2e9cb7);
  background-size: 16px 100%, auto;
  box-shadow: 0 18px 28px rgba(11, 31, 58, 0.16);
  transform: rotate(5deg);
}

.bucket {
  position: absolute;
  left: 18%;
  bottom: 14%;
  width: 220px;
  height: 120px;
  border-radius: 20px 20px 48px 48px;
  background: linear-gradient(#f1f5f9, #d8e0e8);
  box-shadow: inset 0 -16px 0 rgba(0, 59, 115, 0.08), 0 16px 28px rgba(11, 31, 58, 0.12);
}

.cleaner-placeholder .cleaner-body,
.cleaner-placeholder .cleaner-head,
.cleaner-placeholder .spray,
.cleaner-placeholder .cloth,
.cleaner-placeholder .bucket {
  display: none;
}

.floating-proof {
  position: absolute;
  left: 24px;
  bottom: 58px;
  width: 168px;
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(223, 231, 239, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.floating-proof strong {
  display: block;
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
}

.floating-proof span {
  display: block;
  margin-top: 5px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.mini-avatars {
  justify-content: center;
  margin-top: 12px;
}

.mini-avatars i {
  width: 28px;
  height: 28px;
  border-width: 2px;
}

.stats-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 166, 122, 0.1), transparent 40%),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 22px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-item:first-child {
  border-left: 0;
}

.stat-item svg {
  width: 40px;
  height: 40px;
  color: #78c94f;
}

.stat-item strong {
  display: block;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.testimonials-section {
  background:
    radial-gradient(circle at 10% 58%, rgba(31, 166, 122, 0.08), transparent 22%),
    var(--white);
}

.testimonial-wrap {
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(1080px, 100%);
  margin-inline: auto;
  scroll-behavior: smooth;
}

.testimonial-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.06);
}

.testimonial-card p {
  margin: 15px 0 26px;
  color: #334155;
}

.client {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.client-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  border-radius: 50%;
  background: center / cover no-repeat;
  border: 2px solid var(--white);
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.12);
}

.avatar-1 {
  background-image: url("../assets/images/client-avatar-1.png");
}

.avatar-2 {
  background-image: url("../assets/images/client-avatar-2.png");
}

.avatar-3 {
  background-image: url("../assets/images/client-avatar-3.png");
}

.avatar-4 {
  background-image: url("../assets/images/client-avatar-4.png");
}

.avatar-5 {
  background-image: url("../assets/images/client-avatar-5.png");
}

.avatar-6 {
  background-image: url("../assets/images/client-avatar-6.png");
}

.client strong,
.client span {
  display: block;
}

.client strong {
  color: var(--blue-dark);
}

.client span {
  color: var(--muted);
  font-size: 0.9rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green);
  border: 0;
  border-radius: 50%;
  background: var(--green-soft);
  transform: translateY(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--shadow-soft);
}

.slider-arrow.left {
  left: 0;
}

.slider-arrow.right {
  right: 0;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.gallery-section {
  padding-top: 70px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

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

.compare-card h3 {
  margin: 12px 0 0;
  color: var(--blue-dark);
  font-size: 1rem;
  text-align: center;
}

.compare-visual {
  position: relative;
  min-height: 150px;
  aspect-ratio: 1.92 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.compare-visual::before,
.compare-visual::after {
  content: none;
}

.compare-visual.kitchen {
  background-image: url("../assets/images/before-after-kitchen.png");
}

.compare-visual.bathroom {
  background-image: url("../assets/images/before-after-bathroom.png");
}

.compare-visual.living {
  background-image: url("../assets/images/before-after-living-room.png");
}

.compare-visual.office {
  background-image: url("../assets/images/before-after-office.png");
}

.before-label,
.after-label {
  position: absolute;
  bottom: 12px;
  z-index: 2;
  padding: 5px 11px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 99px;
  background: rgba(11, 31, 58, 0.76);
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.9);
}

.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
}

.divider::before {
  content: "\2194";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(11, 31, 58, 0.14);
  transform: translate(-50%, -50%);
}

.quote-contact-section {
  padding: 60px 0 78px;
  background:
    radial-gradient(circle at 8% 14%, rgba(31, 166, 122, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.quote-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 34px;
  align-items: stretch;
}

.quote-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.quote-card {
  padding: clamp(24px, 4vw, 36px);
}

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

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

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

.field label {
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 46px;
  padding: 0 14px;
}

.field textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 166, 122, 0.13);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #d24b4b;
}

.field-error {
  min-height: 17px;
  color: #b42318;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn-submit {
  width: 100%;
}

.form-success {
  display: none;
  margin: 0;
  padding: 13px 15px;
  color: #0f5f47;
  font-weight: 800;
  border: 1px solid rgba(31, 166, 122, 0.35);
  border-radius: var(--radius);
  background: var(--green-soft);
}

.form-success.is-visible {
  display: block;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 32px);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list a,
.contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 750;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--green);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

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

.supplies-visual {
  position: relative;
  min-height: 210px;
  aspect-ratio: 1.75 / 1;
  margin: 30px -32px -32px;
  overflow: hidden;
  background: url("../assets/images/contact-cleaning-supplies.png") center / cover no-repeat;
}

.supplies-visual::after {
  content: none;
}

.supplies-visual .bottle,
.supplies-visual .sprayer,
.supplies-visual .leaf-bed {
  display: none;
}

.bottle,
.sprayer {
  position: absolute;
  bottom: 38px;
  border-radius: 12px 12px 8px 8px;
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.14);
}

.bottle.one {
  right: 118px;
  width: 48px;
  height: 112px;
  background: linear-gradient(#0b1f3a 0 18%, #1fa67a 18% 58%, #ffffff 58%);
}

.bottle.two {
  right: 58px;
  width: 48px;
  height: 92px;
  background: linear-gradient(#1fa67a 0 20%, #ffffff 20% 58%, #6fc4df 58%);
}

.sprayer {
  right: 180px;
  width: 58px;
  height: 88px;
  background: linear-gradient(#ffffff 0 40%, #6fc4df 40%);
}

.sprayer::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 16px;
  width: 52px;
  height: 26px;
  border-radius: 8px;
  background: var(--green);
}

.leaf-bed {
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 170px;
  height: 70px;
  background:
    radial-gradient(ellipse at 10% 55%, #5fa84f 0 12%, transparent 13%),
    radial-gradient(ellipse at 22% 40%, #88c35d 0 13%, transparent 14%),
    radial-gradient(ellipse at 36% 54%, #3d8e4a 0 13%, transparent 14%),
    radial-gradient(ellipse at 53% 42%, #77bf4e 0 14%, transparent 15%),
    radial-gradient(ellipse at 68% 57%, #4fa65f 0 14%, transparent 15%),
    radial-gradient(ellipse at 84% 43%, #7ccf61 0 13%, transparent 14%);
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 0%, rgba(31, 166, 122, 0.16), transparent 26%),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr 1fr;
  gap: 46px;
  padding: 48px 0 34px;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-logo {
  width: 146px;
  max-height: 58px;
  object-fit: contain;
}

.footer-brand p,
.site-footer p {
  color: rgba(255, 255, 255, 0.82);
}

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

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.map-line {
  position: relative;
  height: 72px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(150deg, transparent 0 18px, rgba(255, 255, 255, 0.12) 18px 20px);
}

.map-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-line span::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--green);
}

.footer-bottom {
  padding: 20px 0 26px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1280px) {
  .brand-logo {
    height: 130px;
    max-height: 130px;
  }

  .site-nav {
    gap: 18px;
  }

  .header-actions .phone-link {
    display: none;
  }
}

@media (max-width: 1120px) {
  .brand-logo {
    height: 112px;
    max-height: 112px;
  }

  .header-actions .phone-link {
    display: none;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
    aspect-ratio: 1.55 / 1;
  }

  .home-placeholder {
    border-radius: 80px 0 0 80px;
  }

  .why-content {
    padding-bottom: 0;
  }

  .why-visual {
    min-height: 430px;
    aspect-ratio: 1.75 / 1;
  }

  .cleaner-placeholder {
    inset: 0;
    border-radius: 90px 0 0 0;
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 162px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand-logo {
    height: 150px;
    max-height: 150px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .lang-btn {
    min-width: 38px;
    height: 32px;
    padding-inline: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 8px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 14px 12px;
    border-radius: 7px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-link.is-active {
    background: var(--gray);
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 42px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
  }

  .trust-list,
  .service-grid,
  .stats-grid,
  .gallery-grid,
  .quote-contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    gap: 38px;
  }

  .service-card {
    min-height: 0;
  }

  .stats-grid .stat-item:nth-child(3) {
    border-left: 0;
  }

  .testimonial-grid,
  .quote-contact-grid {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .trust-list,
  .service-grid,
  .benefit-grid,
  .stats-grid,
  .gallery-grid,
  .quote-contact-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 0;
    aspect-ratio: 1.05 / 1;
  }

  .home-placeholder {
    border-radius: 44px 0 0 44px;
    background-position: 54% center;
  }

  .plant {
    left: 6%;
    transform: scale(0.82);
    transform-origin: bottom center;
  }

  .sofa {
    left: 22%;
    width: 56%;
  }

  .quick-response-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .why-section::before {
    inset: 0;
    border-radius: 0;
    transform: none;
  }

  .why-content {
    padding-top: 64px;
  }

  .why-visual {
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .cleaner-placeholder {
    background-position: 58% center;
  }

  .cleaner-body {
    right: 17%;
    width: 28%;
  }

  .cleaner-head {
    right: 22%;
  }

  .bucket {
    left: 7%;
    width: 170px;
  }

  .floating-proof {
    left: 16px;
    bottom: 24px;
  }

  .testimonial-wrap {
    padding: 0 0 66px;
  }

  .testimonial-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(278px, 84%);
    grid-template-columns: none;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 4px 4px 18px;
    scroll-padding-inline: 4px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .testimonial-card {
    min-height: 250px;
    scroll-snap-align: start;
  }

  .slider-arrow {
    top: auto;
    bottom: 0;
    display: grid;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .slider-arrow:hover,
  .slider-arrow:focus-visible {
    transform: translateY(-2px);
  }

  .slider-arrow.left {
    left: calc(50% - 56px);
  }

  .slider-arrow.right {
    right: calc(50% - 56px);
  }

  .stat-item {
    min-height: 96px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .stat-item:first-child {
    border-top: 0;
  }

  .compare-visual {
    min-height: 0;
    aspect-ratio: 1.65 / 1;
  }

  .contact-actions .btn {
    min-height: 50px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-logo {
    height: 150px;
    max-height: 150px;
  }

  .language-switcher {
    gap: 2px;
    padding: 3px;
  }

  .lang-btn {
    min-width: 34px;
    height: 30px;
    padding-inline: 8px;
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 32px;
  }

  .rating-row {
    align-items: flex-start;
    gap: 12px;
  }

  .avatar-stack span {
    width: 30px;
    height: 30px;
  }

  .stars span {
    display: block;
    margin-top: 2px;
  }

  .testimonial-grid {
    grid-auto-columns: minmax(260px, 88%);
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-card {
    gap: 16px;
  }

  .quote-card,
  .contact-card {
    border-radius: var(--radius);
  }

  .supplies-visual {
    margin-inline: -24px;
  }
}
