:root {
  --green: #179d00;
  --green-dark: #0c6f20;
  --yellow: #f6d500;
  --blue: #1e7be8;
  --blue-dark: #1760b6;
  --ink: #050505;
  --muted: #5f6067;
  --soft: #f7faf3;
  --line: #dedede;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.1vw, 30px);
  width: 100%;
  height: 94px;
  margin: 0;
  padding: 0 clamp(20px, 6vw, 8.2%);
}

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

.brand img {
  display: block;
  width: auto;
  max-height: 52px;
  height: auto;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #050505;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.mobile-menu-toggle svg {
  width: 20px;
  height: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  flex: 1 1 auto;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 900;
}

.main-nav .mobile-nav-quote {
  display: none;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  white-space: nowrap;
  color: #050505;
  letter-spacing: 0;
  text-shadow: 0 0 0 currentColor;
  transition: color 0.2s ease;
}

.main-nav .active {
  color: #111418;
}

.main-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transition: left 0.2s ease, right 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ff9f0a;
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.main-nav .active::before {
  left: 0;
  right: 0;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin: -20px 0;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  z-index: 19;
  height: 34px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease;
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  z-index: 20;
  display: grid;
  min-width: 286px;
  padding: 14px;
  border: 1px solid rgba(255, 173, 22, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(9, 20, 34, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 7px;
  color: #101827;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-menu a::before {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: #fff3ce;
  color: #ff8a00;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 18px);
  flex: 0 0 auto;
}

.phone-pill,
.quote-button,
.outline-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.phone-pill {
  gap: 12px;
  padding: 6px 18px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.phone-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: var(--yellow);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.phone-pill:hover,
.phone-pill:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 173, 22, 0.5);
  background: #fff9df;
  box-shadow: 0 14px 28px rgba(255, 173, 22, 0.18);
}

.phone-pill:hover .phone-icon,
.phone-pill:focus-visible .phone-icon {
  transform: rotate(-12deg) scale(1.08);
  background: #ffad16;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(255, 138, 0, 0.28);
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button {
  width: 44px;
  min-height: 44px;
  background: transparent;
  color: #050505;
}

.quote-button {
  position: relative;
  min-width: 136px;
  padding: 0 27px;
  border-radius: 999px;
  background: var(--yellow);
  color: #050505;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(246, 213, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.quote-button:hover,
.quote-button:focus-visible {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffad16 0%, #ff8a00 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(255, 138, 0, 0.28);
}

.outline-button {
  min-width: 145px;
  padding: 0 28px;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  background: rgba(236, 249, 220, 0.82);
  color: #050505;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 676px;
  margin: 0 0 40px;
  overflow: hidden;
  border-radius: 0;
  background: #eef1ea;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.33), transparent 30%, transparent 100%);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(585px, calc(100% - 220px));
  margin: 125px 0 0 76px;
  padding: 46px 38px 38px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(20, 43, 60, 0.12);
}

.hero-card h1 {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0;
  font-size: clamp(32px, 2.6vw, 43px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-card p {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin: 22px 0 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 43px;
}

.hero-buttons .quote-button,
.hero-buttons .outline-button {
  min-height: 44px;
  min-width: auto;
  padding: 0 23px;
  font-size: 13px;
}

.features {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #62656b;
  font-size: 12px;
  font-weight: 700;
}

.features li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.features span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.features svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.spray-outline {
  position: absolute;
  right: -10px;
  bottom: 10px;
  width: 245px;
  height: 220px;
  color: #dfe8f5;
  opacity: 0.55;
}

.spray-outline svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 4;
}
}

.review-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 164px;
  min-height: 119px;
  padding: 17px 19px 15px;
  border-radius: 20px 0 0 0;
  background: #fff;
  box-shadow: 0 18px 45px rgba(27, 33, 22, 0.12);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.review-top svg {
  width: 30px;
  height: 30px;
  fill: #effcd6;
  color: #5c8b12;
}

.review-top strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 600;
}

.review-top strong span {
  color: #4285f4;
  font-weight: 900;
}

.review-top small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
}

.avatars {
  display: flex;
  margin-top: 24px;
  padding-left: 10px;
}

.avatars i {
  width: 29px;
  height: 29px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #f8d9b5 0 18%, transparent 19%),
    linear-gradient(135deg, #f6d500, #e58d2e);
}

.avatars i:nth-child(2) {
  background:
    radial-gradient(circle at 48% 35%, #f2c6a6 0 18%, transparent 19%),
    linear-gradient(135deg, #233a2e, #b65028);
}

.avatars i:nth-child(3) {
  background:
    radial-gradient(circle at 50% 34%, #ebc0a2 0 18%, transparent 19%),
    linear-gradient(135deg, #0d6535, #c24a2f);
}

.avatars i:nth-child(4) {
  background:
    radial-gradient(circle at 50% 35%, #f5d3b7 0 18%, transparent 19%),
    linear-gradient(135deg, #bed3bd, #446050);
}

@media (max-width: 1120px) {
  .site-header {
    flex-wrap: wrap;
    height: auto;
    padding: 20px 24px 16px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-card {
    width: min(610px, calc(100% - 70px));
    margin-left: 36px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    position: relative;
    z-index: 50;
    flex-wrap: nowrap;
    height: 78px;
    gap: 14px;
    padding: 12px 20px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(9, 20, 34, 0.08);
    overflow: visible;
  }

  .brand img {
    max-height: 48px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    margin-left: auto;
    padding: 0;
    border-radius: 50%;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
    padding: 10px;
    border: 1px solid rgba(255, 173, 22, 0.18);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 24px 54px rgba(9, 20, 34, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    overflow: auto;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    pointer-events: none;
  }

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

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 10px;
    white-space: normal;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown {
    margin: 0 0 6px;
  }

  .main-nav > a:last-child,
  .main-nav > .nav-dropdown:last-child {
    margin-bottom: 0;
  }

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

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav .active {
    background: #fff3ce;
    color: #ff8a00;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0 0 6px;
    padding: 0;
  }

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

  .nav-dropdown-trigger {
    justify-content: space-between;
  }

  .nav-dropdown-trigger::after {
    transform: rotate(45deg);
  }

  .dropdown-menu {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 173, 22, 0.18);
    border-radius: 12px;
    background: #fffaf0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.24s ease, opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease, padding 0.2s ease;
  }

  .nav-dropdown.is-dropdown-open .dropdown-menu {
    max-height: 520px;
    margin: 6px 0 2px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown.is-dropdown-open .nav-dropdown-trigger::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .dropdown-menu a {
    min-height: 38px;
    width: 100%;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    white-space: normal;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.is-dropdown-open .dropdown-menu {
    left: auto;
    top: auto;
    transform: none;
  }

  .header-actions {
    display: none;
  }

  .main-nav .mobile-nav-quote {
    display: flex;
    width: 100%;
    min-height: 46px;
    margin-top: 4px;
    border-radius: 10px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    z-index: 50;
    width: 100%;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(9, 20, 34, 0.08);
  }

  .brand img {
    max-height: 46px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    max-height: calc(100vh - 120px);
    padding: 10px;
    border: 1px solid rgba(255, 173, 22, 0.18);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 24px 54px rgba(9, 20, 34, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    overflow: auto;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    pointer-events: none;
  }

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

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 10px;
    white-space: normal;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown {
    margin: 0 0 6px;
  }

  .main-nav > a:last-child,
  .main-nav > .nav-dropdown:last-child {
    margin-bottom: 0;
  }

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

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav .active {
    background: #fff3ce;
    color: #ff8a00;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
  }

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

  .nav-dropdown-trigger {
    justify-content: space-between;
  }

  .nav-dropdown-trigger::after {
    transform: rotate(45deg);
  }

  .dropdown-menu {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 173, 22, 0.18);
    border-radius: 12px;
    background: #fffaf0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.24s ease, opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease, padding 0.2s ease;
  }

  .nav-dropdown.is-dropdown-open .dropdown-menu {
    max-height: 520px;
    margin: 6px 0 2px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown.is-dropdown-open .nav-dropdown-trigger::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .dropdown-menu a {
    min-height: 38px;
    width: 100%;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    white-space: normal;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.is-dropdown-open .dropdown-menu {
    left: auto;
    top: auto;
    transform: none;
  }

  .header-actions {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    z-index: 56;
    width: auto;
    justify-content: stretch;
    gap: 10px;
  }

  .phone-pill {
    font-size: 13px;
    padding-right: 12px;
  }

  .quote-button {
    min-width: auto;
    padding: 0 18px;
  }

  .hero {
    width: 100%;
    min-height: 820px;
  }

  .hero-photo {
    height: 49%;
    bottom: auto;
    object-position: center top;
  }

  .hero::before {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08) 50%, transparent 51%);
  }

  .hero-card {
    width: calc(100% - 28px);
    margin: 355px 14px 0;
    padding: 54px 27px 34px;
  }

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

  .hero-card p {
    font-size: 16px;
  }

  .features {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px 20px;
  }

  .review-card {
    right: 14px;
    bottom: 14px;
    border-radius: 18px;
  }
}

@media (max-width: 460px) {
  .main-nav {
    gap: 0;
    font-size: 13px;
  }

  .phone-pill {
    display: none;
  }

  .hero-card {
    margin-top: 330px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .outline-button,
  .hero-buttons .quote-button {
    width: 100%;
  }
}

.clean-banner {
  min-height: 0;
  margin: 0;
  padding-bottom: 34px;
  border-radius: 0;
  background: #ffffff;
  overflow: hidden;
}

.clean-banner::before {
  display: none;
}

.big-title {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 1;
  width: 112%;
  margin: 0;
  transform: translateX(-50%);
  color: #ffc104;
  font-size: clamp(190px, 22vw, 345px);
  line-height: 0.86;
  font-weight: 900;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0;
  animation: titleZoom 4.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes titleZoom {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.045);
  }
}

.soft-circle {
  position: absolute;
  z-index: 0;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(222, 222, 218, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.soft-circle-left {
  left: 164px;
  top: 198px;
}

.soft-circle-right {
  right: 126px;
  top: 145px;
  width: 248px;
  height: 248px;
}

.banner-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
}

.banner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.42) 72%, rgba(255, 255, 255, 0.94) 100%);
  pointer-events: none;
}

.banner-visual img,
.banner-visual video {
  display: block;
  width: 100%;
  height: clamp(560px, 42.65vw, 810px);
  object-fit: cover;
}

.banner-visual img {
  mix-blend-mode: multiply;
}

.hero-video-content {
  position: absolute;
  left: 50%;
  top: clamp(190px, 27vw, 410px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  color: #ffffff;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-video-content h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 92px);
  line-height: 1.06;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-video-content h1 span {
  display: block;
  color: #ffc104;
}

.hero-video-content p {
  max-width: 1040px;
  margin: 24px 0 0;
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.4;
  font-weight: 400;
}

.hero-video-content .quote-button {
  margin-top: 24px;
  min-width: 210px;
  min-height: 56px;
  font-family: "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.hero-video-content small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.45;
  font-weight: 600;
}

.service-label {
  position: absolute;
  left: 43.5%;
  top: 35%;
  width: 185px;
  height: 46px;
  border-bottom: 3px solid #ff9300;
  border-left: 3px solid #ff9300;
  transform: translate(-50%, -50%) skewX(-18deg);
  animation: labelFloat 3s ease-in-out infinite;
  transform-origin: left bottom;
}

.service-label::before,
.service-label::after {
  content: "";
  position: absolute;
  bottom: -11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff9300;
}

.service-label::before {
  left: -12px;
  animation: dotPulse 2s ease-in-out infinite;
}

.service-label::after {
  right: -9px;
  width: 8px;
  height: 8px;
  bottom: -6px;
  animation: dotPulse 2s ease-in-out infinite 0.25s;
}

.service-label span {
  position: absolute;
  left: 35px;
  top: -1px;
  transform: skewX(18deg);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #2f7f3b;
  font-size: 16px;
  font-weight: 800;
  text-shadow: none;
  white-space: nowrap;
}

@keyframes labelFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) skewX(-18deg) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) skewX(-18deg) translateY(-8px);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 147, 0, 0.32);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(255, 147, 0, 0);
  }
}

.service-strip {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 4;
  width: min(1410px, calc(100% - 496px));
  margin: 24px auto 0;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 55px rgba(24, 40, 28, 0.09);
  transform: none;
  overflow: hidden;
}

.service-strip::before,
.service-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.service-strip::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.service-strip::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.service-track {
  --service-loop-offset: 11px;
  display: flex;
  gap: 22px;
  width: max-content;
  animation: serviceSlide 22s linear infinite;
}

.service-strip:hover .service-track {
  animation-play-state: paused;
}

.service-card {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  flex: 0 0 440px;
  min-height: 178px;
  padding: 12px 18px 12px 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(63, 148, 71, 0.1), 0 10px 24px rgba(24, 40, 28, 0.06);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(63, 148, 71, 0.16), 0 16px 30px rgba(24, 40, 28, 0.1);
}

.service-card:focus-visible {
  outline: 3px solid rgba(47, 139, 59, 0.35);
  outline-offset: 4px;
}

.service-card img {
  width: 188px;
  height: 154px;
  border-radius: 14px;
  object-fit: cover;
}

.service-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 126px;
  padding-top: 14px;
}

.service-card:nth-child(1) img {
  object-position: center;
}

.service-card:nth-child(2) img {
  object-position: center;
}

.service-card:nth-child(3) img {
  object-position: center;
}

.service-card:nth-child(4) img {
  object-position: center;
}

.service-card:nth-child(5) img {
  object-position: center;
}

.service-card:nth-child(6) img {
  object-position: center;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-template-columns: 188px minmax(0, 1fr);
}

.service-card h2 {
  margin: 0;
  color: #17191d;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.service-card h2 br {
  display: none;
}

.mobile-title {
  display: none;
}

.service-card p {
  margin: 10px 0 0;
  color: #5f6067;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 108px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #3f9447;
  border-radius: 999px;
  background: #ffffff;
  color: #3f9447;
  font-size: 12px;
  font-weight: 700;
}

@keyframes serviceSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--service-loop-offset)));
  }
}

.slider-arrow {
  position: absolute;
  bottom: 112px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #3f9447;
  border-radius: 50%;
  background: transparent;
  color: #3f9447;
  cursor: pointer;
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.slider-arrow-left {
  left: max(172px, calc((100% - 1560px) / 2));
}

.slider-arrow-right {
  right: max(172px, calc((100% - 1560px) / 2));
}

@media (max-width: 1180px) {
  .clean-banner {
    min-height: 0;
  }

  .banner-visual {
    width: 100%;
    margin: 0;
  }

  .banner-visual video {
    height: 620px;
  }

  .hero-video-content {
    top: 310px;
  }

  .service-strip {
    width: min(980px, calc(100% - 220px));
  }

  .service-track {
    --service-loop-offset: 8px;
    gap: 16px;
  }

  .service-card {
    grid-template-columns: 130px 1fr;
    flex-basis: 360px;
    min-height: 110px;
  }

  .service-card img {
    width: 130px;
    height: 110px;
  }

  .service-card > div {
    min-height: 92px;
  }

  .service-card h2 {
    font-size: 19px;
  }

  .slider-arrow {
    bottom: 36px;
  }
}

@media (max-width: 900px) {
  .service-strip {
    width: min(650px, calc(100% - 48px));
  }
}

@media (max-width: 680px) {
  .clean-banner {
    min-height: 0;
    padding-bottom: 24px;
  }

  .big-title {
    top: 32px;
    font-size: 86px;
  }

  .banner-visual {
    width: 100%;
    margin: 0;
  }

  .banner-visual video {
    height: 520px;
  }

  .hero-video-content {
    top: 260px;
    width: calc(100% - 30px);
  }

  .hero-video-content h1 {
    font-size: 38px;
  }

  .hero-video-content p {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-video-content .quote-button {
    min-width: 176px;
    min-height: 50px;
    margin-top: 20px;
    font-size: 13px;
  }

  .hero-video-content small {
    margin-top: 16px;
    font-size: 12px;
  }

  .service-label {
    display: none;
  }

  .service-strip {
    display: none;
  }

  .mobile-hero-marquee {
    display: block;
    margin-top: 0;
  }

  main > .marquee-strip:not(.mobile-hero-marquee) {
    display: none;
  }

  .service-track {
    animation-duration: 18s;
  }

  .service-card {
    grid-template-columns: 102px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    flex-basis: min(300px, calc(100vw - 56px));
    min-height: 124px;
    padding: 14px 16px 14px 12px;
    border-radius: 16px;
  }

  .service-card img {
    width: 102px;
    height: 92px;
    border-radius: 12px;
  }

  .service-card > div {
    min-height: 92px;
    min-width: 0;
    justify-content: center;
    text-align: left;
  }

  .service-card h2 {
    max-width: none;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.05;
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-card .desktop-title {
    display: none;
  }

  .service-card .mobile-title {
    display: inline;
  }

  .service-card p {
    max-width: none;
    font-size: 13px;
    line-height: 1.25;
  }

  .slider-arrow,
  .soft-circle {
    display: none;
  }
}

.about-cleaning {
  position: relative;
  display: grid;
  grid-template-columns: 360px 545px 348px;
  gap: 62px;
  align-items: center;
  width: 100%;
  min-height: 690px;
  padding: 64px max(42px, calc((100% - 1290px) / 2)) 46px;
  overflow: hidden;
  background: #ffffff;
}

.about-ring {
  position: absolute;
  width: 510px;
  height: 510px;
  border: 70px solid rgba(8, 23, 40, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.about-ring-left {
  left: -334px;
  top: 86px;
}

.about-ring-left::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -44px;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: #ffffff;
}

.about-ring-right {
  right: -315px;
  top: 64px;
}

.about-left,
.about-right,
.about-content {
  position: relative;
  z-index: 1;
}

.about-left {
  animation: aboutSlideLeft 0.9s ease both;
}

.about-content {
  animation: aboutFadeUp 0.9s ease 0.16s both;
}

.about-right {
  animation: aboutSlideRight 0.9s ease 0.28s both;
}

.about-content {
  padding-top: 34px;
}

.about-left {
  min-height: 554px;
}

.about-left > img {
  display: block;
  width: 330px;
  height: 460px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
}

.about-left:hover > img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 0 24px 48px rgba(16, 18, 21, 0.14);
}

.experience-card {
  position: absolute;
  right: -7px;
  bottom: -28px;
  width: 320px;
  min-height: 170px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 34px 34px 30px;
  border-left: 8px solid #ffc104;
  background: #4f9b31;
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(44, 94, 26, 0.22);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-left:hover .experience-card {
  transform: none;
  box-shadow: 0 26px 52px rgba(44, 94, 26, 0.26);
}

.experience-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: #ffc104;
}

.experience-card strong {
  grid-row: span 2;
  display: block;
  font-size: 62px;
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: 0;
}

.experience-card sup {
  font-size: 30px;
  top: -0.4em;
}

.experience-card span {
  display: block;
  margin: 9px 0 0;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
}

.experience-card small {
  display: block;
  margin-top: -18px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}

.section-kicker {
  margin: 0 0 12px;
  color: #ffad16;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.about-content h2 {
  max-width: 760px;
  margin: 0;
  color: #191919;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-copy {
  max-width: 470px;
  margin: 44px 0 33px;
  color: #878c91;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.skill-row {
  width: 445px;
  margin-bottom: 30px;
}

.skill-row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  color: #131416;
  font-size: 24px;
  font-weight: 500;
}

.skill-row strong {
  font-weight: 500;
}

.skill-row progress {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #d8ead1;
}

.skill-row progress::-webkit-progress-bar {
  background: #d8ead1;
}

.skill-row progress::-webkit-progress-value {
  background: #559d34;
}

.skill-row progress::-moz-progress-bar {
  background: #559d34;
}

.read-more-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 244px;
  min-height: 74px;
  margin-top: 7px;
  background: #ffad16;
  color: #050505;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(255, 173, 22, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.read-more-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.read-more-button:hover,
.read-more-button:focus-visible {
  transform: translateY(-5px);
  background: #111827;
  color: #ffffff;
  box-shadow: 0 20px 34px rgba(17, 24, 39, 0.22);
}

.read-more-button:hover::before,
.read-more-button:focus-visible::before {
  transform: translateX(120%);
}

.read-more-button span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.28s ease;
}

.read-more-button:hover span,
.read-more-button:focus-visible span {
  transform: translateX(8px);
}

.about-right {
  min-height: 416px;
  align-self: end;
}

.about-right::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 1;
  width: 202px;
  height: 205px;
  border-top: 6px solid #ffc104;
  border-right: 6px solid #ffc104;
  border-radius: 6px 6px 0 0;
  background: #4f9b31;
  box-shadow: 0 18px 40px rgba(44, 94, 26, 0.16);
}

.about-right img {
  position: relative;
  z-index: 2;
  display: block;
  width: 310px;
  height: 430px;
  margin: 0 0 0 36px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
}

.about-right:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 0 24px 48px rgba(16, 18, 21, 0.14);
}

.green-block {
  position: absolute;
  left: 18px;
  bottom: -18px;
  z-index: 1;
  width: 202px;
  height: 205px;
  border-left: 6px solid #ffc104;
  border-bottom: 6px solid #ffc104;
  border-radius: 0 0 6px 6px;
  background: #4f9b31;
  box-shadow: 0 18px 40px rgba(44, 94, 26, 0.16);
  overflow: hidden;
}

.green-block::before {
  content: none;
}

.green-block::after {
  content: none;
}

@keyframes aboutSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutSlideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(42px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-left,
  .about-content,
  .about-right,
  .testimonial-cards,
  .service-tile {
    animation: none;
  }

  .about-left > img,
  .about-right img,
  .experience-card {
    transition: none;
  }

  .process-steps::before,
  .process-steps::after {
    animation: none;
    opacity: 1;
    clip-path: none;
  }
}

@media (max-width: 1380px) {
  .about-cleaning {
    grid-template-columns: minmax(300px, 360px) minmax(0, 520px);
    justify-content: center;
    gap: 52px;
    padding-left: max(28px, calc((100% - 1120px) / 2));
    padding-right: max(28px, calc((100% - 1120px) / 2));
  }

  .about-right {
    display: none;
  }
}

@media (max-width: 860px) {
  .about-cleaning {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .about-left {
    min-height: 470px;
    width: min(420px, 100%);
  }

  .about-left > img {
    width: min(330px, 86%);
    height: 390px;
  }

  .experience-card {
    right: 0;
    bottom: -18px;
    width: min(320px, 82%);
  }

  .about-content h2 {
    font-size: 40px;
    white-space: normal;
  }
}

.marquee-strip {
  display: none;
  width: 100%;
  overflow: hidden;
  border-top: 20px solid #ffad16;
  border-radius: 20px 20px 0 0;
  background: #ffd65a;
  color: #050505;
}

.mobile-hero-marquee {
  display: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 20px 0 22px;
  animation: marqueeScroll 24s linear infinite;
}

.marquee-track span {
  position: relative;
  flex: 0 0 auto;
  color: #050505;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "*";
  margin-left: 34px;
  color: #050505;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.services-intro {
  width: 100%;
  padding: 88px 24px 58px;
  background: #fff8e9;
  text-align: center;
}

.services-kicker {
  margin: 0 0 16px;
  color: #ffad16;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.services-intro h2 {
  max-width: 1220px;
  margin: 0 auto;
  color: #191919;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
}

.services-intro h2 span {
  display: block;
}

@media (max-width: 680px) {
  .services-intro {
    padding: 72px 20px 54px;
  }

  .services-kicker {
    font-size: 28px;
  }

  .services-intro h2 {
    font-size: clamp(31px, 8.7vw, 38px);
  }

  .services-intro h2 span {
    white-space: nowrap;
  }
}

.service-grid-section {
  width: 100%;
  padding: 0 0 86px;
  background: #fff8e9;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding: 8px 0 0;
}

.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 1 calc((100% - 84px) / 4);
  min-height: 420px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, #f5dc04 0%, #fff4c9 54%, #fff8e7 100%);
  padding: 10px 12px 20px;
  box-shadow: 0 20px 42px rgba(171, 112, 10, 0.13);
  animation: serviceCardFromBottom 0.9s ease both;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(171, 112, 10, 0.18);
}

.service-tile:nth-child(1),
.service-tile:nth-child(5) {
  animation-name: serviceCardFromLeft;
}

.service-tile:nth-child(2),
.service-tile:nth-child(6) {
  animation-name: serviceCardFromTop;
  animation-delay: 0.12s;
}

.service-tile:nth-child(3),
.service-tile:nth-child(7) {
  animation-name: serviceCardFromRight;
  animation-delay: 0.24s;
}

.service-tile:nth-child(4),
.service-tile:nth-child(8) {
  animation-name: serviceCardFromBottom;
  animation-delay: 0.36s;
}

.service-tile > img {
  display: block;
  width: 100%;
  height: 230px;
  border-radius: 24px;
  object-fit: cover;
}

.service-tile-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 160px;
  padding: 26px 8px 0;
}

.service-icon-badge {
  position: absolute;
  left: 8px;
  top: -214px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: #ffad16;
  border: 1px solid rgba(255, 173, 22, 0.18);
  box-shadow: 0 12px 26px rgba(107, 69, 8, 0.16);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.service-icon-badge svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
  transition: transform 0.28s ease, stroke 0.28s ease;
}

.service-icon-badge svg :first-child {
  stroke: #101827;
}

.service-tile:hover .service-icon-badge {
  transform: translateY(-5px) rotate(-3deg);
  background: #ffad16;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(255, 138, 0, 0.24);
}

.service-tile:hover .service-icon-badge svg {
  transform: scale(1.08);
}

.service-tile:hover .service-icon-badge svg :first-child {
  stroke: #ffffff;
}

.service-tile h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.12vw, 21px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.service-tile a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 8px 9px 8px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #050505;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.service-tile a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffad16 0%, #ffd600 100%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-tile a span,
.service-tile a svg {
  position: relative;
  z-index: 1;
}

.service-tile a svg {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 50%;
  background: #ffad16;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
  transition: transform 0.24s ease, background 0.24s ease, stroke 0.24s ease, box-shadow 0.24s ease;
}

.service-tile a:hover {
  transform: translateY(-3px);
  color: #050505;
  box-shadow: 0 16px 28px rgba(255, 138, 0, 0.24);
}

.service-tile a:hover::before {
  opacity: 1;
}

.service-tile a:hover svg {
  transform: translateX(4px) rotate(360deg);
  background: #101827;
  stroke: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 24, 39, 0.2);
}

@keyframes serviceCardFromLeft {
  from {
    opacity: 0;
    transform: translateX(-70px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes serviceCardFromRight {
  from {
    opacity: 0;
    transform: translateX(70px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes serviceCardFromTop {
  from {
    opacity: 0;
    transform: translateY(-56px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceCardFromBottom {
  from {
    opacity: 0;
    transform: translateY(56px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .service-grid {
    justify-content: center;
    gap: 24px;
    width: min(880px, calc(100% - 36px));
  }

  .service-tile {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 680px) {
  .service-grid-section {
    padding-bottom: 58px;
  }

  .service-grid {
    width: min(420px, calc(100% - 28px));
  }

  .service-tile {
    flex-basis: 100%;
  }

  .service-tile > img {
    height: 225px;
  }

  .service-tile h3 {
    font-size: 22px;
  }
}

.booking-process {
  position: relative;
  width: 100%;
  padding: 92px 24px 86px;
  background: #fffaf0;
  text-align: center;
  overflow: hidden;
}

.process-kicker {
  margin: 0 0 18px;
  color: #ff7a00;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.booking-process h2 {
  margin: 0 auto 62px;
  color: #191919;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 82px;
  width: min(1360px, calc(100% - 24px));
  margin: 0 auto;
}

.process-steps::before,
.process-steps::after {
  content: "";
  position: absolute;
  width: 124px;
  height: 74px;
  border-top: 3px solid #ff7a00;
  border-radius: 50%;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: processArrowDraw 3.2s ease-in-out infinite;
  pointer-events: none;
}

.process-steps::before {
  top: 6px;
  left: 28.8%;
  transform: rotate(12deg);
}

.process-steps::after {
  top: 214px;
  right: 28.8%;
  transform: rotate(190deg);
  animation-delay: 1.35s;
}

@keyframes processArrowDraw {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  18%,
  62% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  82%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  transition: transform 0.3s ease;
}

.process-step:nth-child(2) {
  margin-top: 16px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin: 0 auto 18px;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.55), transparent 34%),
    linear-gradient(145deg, #ffd600 0%, #ffad16 54%, #ff8a00 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(255, 150, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.process-icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 2;
}

.process-step:hover .process-icon {
  transform: translateY(-8px);
  border-color: rgba(255, 236, 166, 0.92);
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(145deg, #ffbd24 0%, #ff9800 58%, #f27900 100%);
  box-shadow: 0 24px 44px rgba(255, 138, 0, 0.28), 0 0 0 8px rgba(255, 173, 22, 0.1);
}

.process-step.reveal-on-scroll.is-visible:hover {
  transform: translateY(-8px) scale(1.02);
}

.process-step.reveal-on-scroll.is-visible:hover .process-icon {
  transform: translateY(-10px) scale(1.06);
}

.process-step h3 {
  margin: 0 0 20px;
  color: #050505;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.process-step p {
  max-width: 390px;
  margin: 0 auto;
  color: #585858;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

.process-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 58px;
  margin-top: 66px;
  border: 7px solid rgba(255, 122, 0, 0.34);
  border-radius: 999px;
  background: #ff7a00;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.process-button:hover {
  transform: translateY(-3px);
  background: #ffad16;
  box-shadow: 0 18px 32px rgba(255, 122, 0, 0.22);
}

@media (max-width: 980px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .process-steps::before,
  .process-steps::after {
    display: none;
  }

  .process-step:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .booking-process {
    padding: 72px 18px;
  }

  .booking-process h2 {
    margin-bottom: 46px;
    font-size: 42px;
  }
}

.before-after-section {
  display: grid;
  grid-template-columns: minmax(420px, 695px) minmax(420px, 620px);
  justify-content: center;
  align-items: center;
  gap: 76px;
  width: 100%;
  padding: 90px 28px 98px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 173, 22, 0.18) 0 145px, transparent 146px),
    radial-gradient(circle at 88% 90%, rgba(255, 214, 90, 0.22) 0 190px, transparent 191px),
    linear-gradient(135deg, #fff1cc 0%, #fff8e9 52%, #eef5f7 100%);
}

.before-after-visual {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.1);
  --compare-position: 50%;
  --compare-frame-width: 695px;
}

.compare-image,
.compare-after-image img {
  display: block;
  width: 100%;
  height: 532px;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
}

.compare-before-image {
  filter: saturate(0.92) contrast(1.02);
}

.compare-after-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: var(--compare-position);
  overflow: hidden;
}

.compare-after-image img {
  width: var(--compare-frame-width);
  max-width: none;
  filter: saturate(1.08) contrast(1.03);
}

.before-after-visual:hover .compare-after-image img,
.before-after-visual:hover .compare-before-image {
  transform: scale(1.025);
  transition: transform 0.45s ease;
}

.before-after-visual::before {
  content: "";
  position: absolute;
  left: var(--compare-position);
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 3px;
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(-50%);
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  min-height: 39px;
  padding: 0 24px;
  border-radius: 6px;
  background: #ffffff;
  color: #050505;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
}

.compare-after {
  left: 18px;
  background: #ffad16;
  color: #ffffff;
  font-weight: 800;
}

.compare-before {
  right: 18px;
}

.compare-drag {
  position: absolute;
  left: var(--compare-position);
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffffff;
  color: #050505;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 28px rgba(16, 24, 32, 0.14);
  pointer-events: none;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.before-after-kicker {
  margin: 0 0 24px;
  color: #ffad16;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.before-after-content h2 {
  margin: 0 0 26px;
  color: #10152b;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}

.before-after-content > p:not(.before-after-kicker) {
  max-width: 550px;
  margin: 0 0 34px;
  color: #00192f;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

.before-after-list {
  display: grid;
  gap: 20px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.before-after-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 42px;
  padding: 7px 18px 7px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #00192f;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(19, 24, 30, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.before-after-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffad16;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.before-after-list li:hover {
  transform: translateX(8px) translateY(-3px);
  background: #fff7df;
  box-shadow: 0 18px 36px rgba(255, 173, 22, 0.2);
}

.before-after-list li:hover::before {
  transform: rotate(360deg) scale(1.08);
  background: #f5dc04;
}

.before-after-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 216px;
  min-height: 54px;
  border-radius: 10px;
  background: #ffad16;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(255, 173, 22, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  background: #f5dc04;
  box-shadow: 0 20px 34px rgba(255, 173, 22, 0.27);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #050505;
  font-size: 14px;
  font-weight: 800;
}

.text-action:hover {
  color: #ff7a00;
}

@media (max-width: 1120px) {
  .before-after-section {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 78px 28px;
  }

  .before-after-visual,
  .before-after-content {
    width: min(720px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .before-after-section {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 54px 16px 64px;
    background:
      radial-gradient(circle at 0 0, rgba(255, 173, 22, 0.2) 0 118px, transparent 119px),
      radial-gradient(circle at 100% 100%, rgba(255, 214, 90, 0.18) 0 150px, transparent 151px),
      linear-gradient(180deg, #fff6df 0%, #ffffff 100%);
  }

  .before-after-content {
    order: -1;
    width: 100%;
    text-align: left;
  }

  .before-after-kicker {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .before-after-content h2 {
    max-width: 340px;
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.08;
  }

  .before-after-content h2 span {
    display: block;
  }

  .before-after-content > p:not(.before-after-kicker) {
    max-width: 320px;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.55;
    text-align: left;
  }

  .before-after-list {
    gap: 11px;
    width: min(330px, 100%);
    margin: 0 0 24px;
  }

  .before-after-list li {
    width: fit-content;
    margin: 0;
    min-height: 46px;
    padding: 8px 18px 8px 9px;
    font-size: 15px;
    text-align: left;
  }

  .before-after-actions {
    justify-content: center;
  }

  .before-after-visual {
    width: 100%;
    border: 6px solid #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(16, 24, 32, 0.12);
  }

  .before-after-visual img {
    height: 300px;
  }

  .compare-image,
  .compare-after-image img {
    height: 300px;
  }

  .compare-after-image img {
    width: calc(100vw - 44px);
  }

  .compare-label {
    top: 14px;
    min-width: 76px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(16, 24, 32, 0.12);
  }

  .compare-after {
    left: 14px;
  }

  .compare-before {
    right: 14px;
  }

  .compare-drag {
    width: 58px;
    height: 58px;
    font-size: 13px;
    box-shadow: 0 12px 24px rgba(16, 24, 32, 0.16);
  }
}

.why-choose-section {
  display: grid;
  grid-template-columns: minmax(360px, 570px) minmax(520px, 760px);
  justify-content: center;
  align-items: center;
  gap: 96px;
  width: 100%;
  padding: 104px 28px 96px;
  background: #ffffff;
}

.why-visual {
  position: relative;
  width: 100%;
  min-height: 514px;
}

.why-visual img {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 514px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.why-visual:hover img {
  transform: translateY(-8px) scale(1.02);
  filter: saturate(1.06) contrast(1.03);
}

.team-count {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  width: 188px;
  height: 184px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px 18px 18px 0;
  background: linear-gradient(145deg, #ffad16 0%, #ff8a00 100%);
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(126, 73, 0, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-visual:hover .team-count {
  transform: translateY(-8px);
  box-shadow: 0 28px 52px rgba(126, 73, 0, 0.3);
}

.team-count strong {
  display: block;
  font-size: 60px;
  line-height: 0.85;
  font-weight: 800;
}

.team-count span {
  display: block;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
}

.why-kicker {
  margin: 0 0 24px;
  color: #ffad16;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.why-kicker span {
  display: none;
}

.why-content h2 {
  max-width: 780px;
  margin: 0 0 24px;
  color: #10152b;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(42px, 3.45vw, 58px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.why-content > p:not(.why-kicker) {
  max-width: 690px;
  margin: 0 0 36px;
  color: #00192f;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

.why-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 44px;
  padding: 8px 20px 8px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #00192f;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(19, 24, 30, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.why-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffad16;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.why-list li:hover {
  transform: translateX(8px) translateY(-3px);
  background: #fff7df;
  box-shadow: 0 18px 36px rgba(255, 173, 22, 0.2);
}

.why-list li:hover::before {
  transform: rotate(360deg) scale(1.08);
  background: #f5dc04;
}

@media (max-width: 1120px) {
  .why-choose-section {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 84px 28px;
  }

  .why-visual {
    width: min(570px, 100%);
    margin: 0 auto;
  }

  .why-content {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .why-content h2 {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .why-choose-section {
    padding: 66px 18px;
  }

  .why-visual {
    min-height: 420px;
  }

  .why-visual img {
    height: 420px;
  }

  .team-count {
    width: 150px;
    height: 142px;
  }

  .team-count strong {
    font-size: 48px;
  }

  .why-content h2 {
    font-size: 42px;
  }
}

.why-choose-section {
  position: relative;
  display: block;
  width: 100%;
  padding: 96px 28px 112px;
  background: #fffaf0;
  overflow: hidden;
}

.why-choose-section::before {
  content: none;
}

.why-choose-section::after {
  content: none;
}

.why-choose-section .why-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.why-choose-section .why-kicker {
  margin: 0 0 14px;
  color: #ffad16;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.why-choose-section .why-kicker::before,
.why-choose-section .why-kicker::after {
  content: none;
}

.why-choose-section .why-content h2 {
  max-width: 880px;
  margin: 0 auto;
  color: #111418;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
  white-space: normal;
}

.why-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  justify-content: center;
  gap: 38px;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.why-card {
  position: relative;
  min-height: 270px;
  padding: 34px 28px 88px;
  border: 1px solid rgba(255, 173, 22, 0.12);
  background: #ffffff;
  box-shadow: 38px -14px 0 rgba(255, 245, 218, 0.88), 0 22px 38px rgba(0, 25, 47, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.why-card h3 {
  margin: 0 0 14px;
  color: #070b11;
  font-size: clamp(21px, 1.45vw, 26px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.why-card p {
  max-width: 210px;
  margin: 0;
  color: #7a838d;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.why-card-icon {
  position: absolute;
  left: 28px;
  bottom: -38px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 96px;
  border: 1px solid rgba(255, 173, 22, 0.32);
  background: linear-gradient(180deg, #ffffff 0%, #fff8e9 100%);
  box-shadow: 0 18px 28px rgba(255, 173, 22, 0.13);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.why-card-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #ffad16;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease, stroke 0.35s ease;
}

.why-card:hover {
  transform: translateY(-12px);
  background: #fff8e9;
  box-shadow: 28px -12px 0 rgba(255, 224, 132, 0.42), 0 30px 54px rgba(255, 137, 0, 0.16);
}

.why-card:hover .why-card-icon {
  transform: translateY(-8px) rotate(-3deg);
  border-color: rgba(255, 173, 22, 0.7);
  background: #ffad16;
}

.why-card:hover .why-card-icon svg {
  transform: scale(1.08);
  stroke: #ffffff;
}

.why-choose-section .why-content {
  transform: none;
}

.services-kicker,
.process-kicker,
.before-after-kicker,
.why-kicker,
.testimonial-kicker,
.faq-kicker,
.about-content,
.services-intro h2,
.booking-process h2,
.before-after-content,
.why-content,
.testimonial-content,
.faq-content {
  transform: none;
  animation: none;
  transition: none;
}

.before-after-visual,
.before-after-visual:hover,
.appointment-card,
.appointment-card:hover {
  transform: none;
}

.about-left,
.about-right,
.about-left:hover,
.about-right:hover,
.about-left .experience-card,
.about-left:hover .experience-card {
  transform: none;
  animation: none;
}

.about-left > img,
.about-right img {
  animation: none;
}

.about-left:hover > img,
.about-right:hover img {
  transform: scale(1.035);
}

@media (max-width: 980px) {
  .why-card-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 64px;
  }

  .why-card {
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .why-card-grid {
    gap: 18px;
  }

  .why-choose-section {
    padding: 70px 18px 104px;
  }

  .why-choose-section .why-kicker {
    margin-bottom: 8px;
    font-size: 28px;
    letter-spacing: 0;
  }

  .why-choose-section .why-content h2 {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.05;
    white-space: nowrap;
  }

  .why-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    column-gap: 15px;
    min-height: 0;
    padding: 22px 18px;
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(0, 25, 47, 0.07);
  }

  .why-card-icon {
    position: static;
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    transform: none;
    background: #fffaf0;
    box-shadow: 0 10px 22px rgba(255, 173, 22, 0.12);
  }

  .why-card h3 {
    margin: 0 0 6px;
    font-size: clamp(17px, 4.85vw, 19px);
    line-height: 1.08;
    white-space: nowrap;
    word-spacing: normal;
  }

  .why-card h3 br {
    display: none;
  }

  .why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .why-card:hover,
  .why-card:hover .why-card-icon,
  .why-card:hover .why-card-icon svg {
    transform: none;
  }

  .why-card::before {
    display: none;
  }
}

.testimonial-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 34%) 1fr;
  align-items: start;
  gap: 60px;
  width: 100%;
  padding: 58px 28px 78px 0;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 173, 22, 0.14) 0 120px, transparent 121px),
    radial-gradient(circle at 38% 92%, rgba(255, 214, 90, 0.22) 0 190px, transparent 191px),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  overflow: hidden;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 0;
  width: 48%;
  height: 120px;
  background: linear-gradient(90deg, rgba(243, 243, 243, 0.88), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.testimonial-photo {
  position: relative;
  z-index: 1;
  height: 760px;
  overflow: hidden;
  background: #f7f7f7;
}

.testimonial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  transition: filter 0.55s ease;
}

.testimonial-photo:hover img {
  filter: saturate(1.06) contrast(1.03);
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding-top: 0;
  overflow: hidden;
  --testimonial-card-width: 370px;
  --testimonial-card-gap: 30px;
}

.testimonial-kicker {
  margin: 0 0 12px;
  color: #ffad16;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.testimonial-kicker span {
  display: none;
}

.testimonial-content h2 {
  margin: 0 0 52px;
  color: #191919;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
}

.testimonial-cards {
  display: flex;
  gap: var(--testimonial-card-gap);
  width: max-content;
  animation: testimonialSlide 18s ease-in-out infinite;
}

.testimonial-card {
  position: relative;
  flex: 0 0 var(--testimonial-card-width);
  min-height: 420px;
  padding: 40px 40px 34px;
  border: 1px solid #dedede;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.testimonial-section .reveal-on-scroll.is-visible,
.testimonial-section .reveal-on-scroll.is-visible:hover,
.testimonial-card:hover,
.testimonial-photo:hover img {
  transform: none;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  width: 120px;
  height: 70px;
  background: #ffad16;
}

.testimonial-card:hover {
  border-color: #ffad16;
  background: linear-gradient(180deg, #fff7df 0%, #ffffff 64%);
  box-shadow: 0 24px 50px rgba(255, 173, 22, 0.18);
}

.testimonial-card:hover::before {
  background: #f5dc04;
}

.testimonial-card-top {
  position: relative;
  z-index: 1;
  min-height: 75px;
}

.avatar {
  display: block;
  width: 72px;
  height: 72px;
  margin-left: 2px;
  border-radius: 50%;
  background-image: url("assets/testimonial-avatars.png");
  background-size: 300% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.72);
}

.avatar-one {
  background-position: 0% center;
}

.avatar-two {
  background-position: 50% center;
}

.avatar-three {
  background-position: 100% center;
}

.quote-mark {
  position: absolute;
  right: 38px;
  top: 42px;
  width: 92px;
  height: 92px;
  color: #f0f0f0;
}

.quote-mark svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 3;
}

.stars {
  margin: 18px 0 22px;
  color: #ffad16;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 8px;
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
}

.testimonial-card p {
  min-height: 94px;
  margin: 0 0 28px;
  color: #85898e;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.testimonial-author {
  padding-top: 28px;
  border-top: 1px solid #dedede;
}

.testimonial-author h3 {
  margin: 0 0 12px;
  color: #17191d;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.testimonial-author span {
  color: #ffad16;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .testimonial-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 58px 24px 70px;
  }

  .testimonial-photo {
    width: min(700px, 100%);
    height: 520px;
  }

  .testimonial-cards {
    --testimonial-card-gap: 24px;
  }

  .testimonial-card {
    flex-basis: min(var(--testimonial-card-width), calc(50vw - 36px));
  }
}

@media (max-width: 760px) {
  .testimonial-section {
    display: block;
    padding: 54px 0 64px 16px;
    overflow: hidden;
  }

  .testimonial-photo {
    display: none;
  }

  .testimonial-content {
    width: 100%;
    margin: 0;
    overflow: visible;
  }

  .testimonial-kicker {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .testimonial-content h2 {
    max-width: 330px;
    margin: 0 0 28px;
    font-size: 38px;
    line-height: 1.08;
  }

  .testimonial-cards {
    display: flex;
    gap: 14px;
    width: max-content;
    padding-right: 16px;
    overflow-x: visible;
    overflow-y: hidden;
    animation: testimonialMobileSlide 18s linear infinite;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-cards::-webkit-scrollbar {
    height: 0;
  }

  .testimonial-card {
    flex: 0 0 min(286px, 76vw);
    scroll-snap-align: start;
    min-height: auto;
    padding: 26px 22px 24px;
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(7, 23, 44, 0.08);
  }

  .testimonial-card[aria-hidden="true"] {
    display: block;
  }

  .testimonial-card::before {
    top: 32px;
    width: 88px;
    height: 58px;
    border-radius: 0 18px 18px 0;
  }

  .testimonial-card-top {
    min-height: 66px;
  }

  .avatar {
    width: 62px;
    height: 62px;
  }

  .quote-mark {
    right: 24px;
    top: 28px;
    width: 72px;
    height: 72px;
  }

  .stars {
    margin: 16px 0 18px;
  }

  .testimonial-card p {
    min-height: auto;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.6;
  }

  .testimonial-author {
    padding-top: 20px;
  }

  .testimonial-author h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
}

@keyframes testimonialSlide {
  0%,
  16% {
    transform: translateX(0);
  }

  28%,
  44% {
    transform: translateX(calc((var(--testimonial-card-width) + var(--testimonial-card-gap)) * -1));
  }

  56%,
  72% {
    transform: translateX(calc((var(--testimonial-card-width) + var(--testimonial-card-gap)) * -2));
  }

  84%,
  100% {
    transform: translateX(calc((var(--testimonial-card-width) + var(--testimonial-card-gap)) * -3));
  }
}

@keyframes testimonialMobileSlide {
  0%,
  16% {
    transform: translateX(0);
  }

  28%,
  44% {
    transform: translateX(calc((min(286px, 76vw) + 14px) * -1));
  }

  56%,
  72% {
    transform: translateX(calc((min(286px, 76vw) + 14px) * -2));
  }

  84%,
  100% {
    transform: translateX(calc((min(286px, 76vw) + 14px) * -3));
  }
}

.faq-section {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(520px, 1.35fr);
  gap: 86px;
  width: 100%;
  padding: 96px max(28px, calc((100% - 1410px) / 2)) 168px;
  margin-bottom: -108px;
  background:
    radial-gradient(circle at 7% 12%, rgba(255, 173, 22, 0.18) 0 118px, transparent 119px),
    radial-gradient(circle at 91% 78%, rgba(255, 214, 90, 0.18) 0 150px, transparent 151px),
    #fff6df;
}

.faq-copy {
  align-self: center;
}

.faq-kicker {
  margin: 0 0 24px;
  color: #ffad16;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.faq-kicker span {
  display: none;
}

.faq-copy h2 {
  margin: 0 0 26px;
  color: #10152b;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 3.8vw, 60px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0;
}

.faq-copy > p:not(.faq-kicker) {
  max-width: 520px;
  margin: 0 0 34px;
  color: #1b2435;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

.faq-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 188px;
  min-height: 54px;
  border-radius: 10px;
  background: #ffad16;
  color: #050505;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(255, 173, 22, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-button:hover {
  transform: translateY(-2px);
  background: #f5dc04;
  box-shadow: 0 20px 34px rgba(255, 173, 22, 0.27);
}

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

.faq-list details {
  border: 1px solid rgba(16, 31, 43, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(42, 45, 48, 0.05);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 22px 28px;
  color: #10152b;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.18;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #10152b;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details[open] {
  background: #ffffff;
  border-color: rgba(255, 173, 22, 0.26);
}

.faq-list details p {
  margin: 0;
  padding: 0 28px 28px;
  color: #5f6670;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

@media (max-width: 980px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 76px 24px 150px;
  }
}

@media (max-width: 680px) {
  .faq-section {
    padding: 62px 18px 132px;
  }

  .faq-copy h2 {
    font-size: 42px;
  }

  .faq-list summary {
    padding: 20px;
    font-size: 21px;
  }

  .faq-list details p {
    padding: 0 20px 22px;
    font-size: 16px;
  }
}

.contact-booking {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(460px, 1fr);
  gap: 28px;
  width: min(1690px, calc(100% - 72px));
  margin: 0 auto;
  padding: 30px 0 76px;
  background: #ffffff;
}

.booking-photo-panel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #f5f5f0;
}

.booking-photo-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: 35% center;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.booking-photo-panel:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.rating-pill {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  min-height: 88px;
  padding: 18px 42px;
  border-radius: 28px 28px 0 0;
  background: #ffffff;
  box-shadow: 0 -18px 42px rgba(20, 20, 20, 0.1);
}

.rating-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
}

.rating-item strong {
  grid-row: span 2;
  color: #ffad16;
  font-size: 44px;
  line-height: 1;
}

.rating-item span {
  color: #ffad16;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
}

.rating-item small {
  margin-top: 5px;
  color: #17191d;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
}

.booking-form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding: 80px 74px;
  background: linear-gradient(90deg, #fff4d8 0%, #f0f5f7 100%);
}

.booking-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #050505;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.booking-kicker span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffad16;
}

.booking-kicker svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.booking-form-panel h2 {
  margin: 0 0 42px;
  color: #10152b;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

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

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

.booking-form label {
  display: block;
}

.booking-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-radius: 4px;
  background: #ffffff;
  color: #1b2435;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  padding: 0 14px;
  outline: 2px solid transparent;
  transition: outline-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input::placeholder {
  color: #1b2435;
}

.booking-form input:focus,
.booking-form select:focus {
  outline-color: rgba(255, 173, 22, 0.45);
  box-shadow: 0 12px 28px rgba(255, 173, 22, 0.12);
}

.booking-form button {
  min-height: 54px;
  margin-top: 32px;
  border: 0;
  border-radius: 10px;
  background: #ffad16;
  color: #050505;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form button:hover {
  transform: translateY(-2px);
  background: #f5dc04;
  box-shadow: 0 16px 28px rgba(255, 173, 22, 0.24);
}

@media (max-width: 1180px) {
  .contact-booking {
    grid-template-columns: 1fr;
    width: min(900px, calc(100% - 42px));
  }

  .booking-photo-panel,
  .booking-form-panel,
  .booking-photo-panel img {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .contact-booking {
    width: calc(100% - 28px);
    padding-bottom: 54px;
  }

  .booking-photo-panel,
  .booking-photo-panel img {
    min-height: 430px;
  }

  .rating-pill {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 24px;
  }

  .booking-form-panel {
    min-height: auto;
    padding: 54px 22px;
  }

  .booking-form-panel h2 {
    font-size: 42px;
  }

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

.contact-page-form {
  display: grid;
  gap: 18px;
}

.contact-page-form label {
  display: block;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(16, 31, 43, 0.12);
  border-radius: 10px;
  background: #ffffff;
  color: #1b2435;
  font: inherit;
  font-size: 16px;
  padding: 18px 20px;
  outline: 2px solid transparent;
  transition: outline-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-page-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  outline-color: rgba(255, 173, 22, 0.45);
  box-shadow: 0 12px 28px rgba(255, 173, 22, 0.12);
}

.contact-booking {
  position: relative;
  display: block;
  width: 100%;
  min-height: 700px;
  margin: -1px 0 0;
  padding: 76px max(28px, calc((100% - 1170px) / 2)) 44px;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.15) 47.2% 62%, transparent 62.2%),
    linear-gradient(180deg, transparent 0 28%, rgba(18, 34, 45, 0.92) 28% 100%),
    #fff6df;
  overflow: hidden;
}

.contact-booking::before {
  content: "";
  position: absolute;
  inset: 28% 0 0;
  background:
    linear-gradient(rgba(18, 34, 45, 0.86), rgba(18, 34, 45, 0.86)),
    url("assets/contact.png") right center / contain no-repeat;
  opacity: 0.95;
}

.contact-booking::after {
  content: none;
}

.appointment-card {
  position: relative;
  z-index: 2;
  width: 470px;
  min-height: 620px;
  margin-left: 0;
  padding: 46px 60px 48px;
  border-radius: 0;
  background: linear-gradient(145deg, #ffbd27 0%, #ffad16 58%, #f49a08 100%);
  color: #ffffff;
  box-shadow: none;
}

.appointment-spark {
  position: absolute;
  right: 21px;
  top: 10px;
  width: 112px;
  height: 112px;
  opacity: 0.22;
}

.appointment-spark::before,
.appointment-spark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 108px;
  height: 3px;
  background: rgba(255, 255, 255, 0.82);
  transform: translate(-50%, -50%);
}

.appointment-spark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.appointment-spark {
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.82) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.82) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px));
}

.appointment-card h2 {
  margin: 0 0 30px;
  color: #ffffff;
  font-size: 29px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.appointment-card .booking-form {
  gap: 15px;
}

.appointment-card .booking-form input,
.appointment-card .booking-form select,
.appointment-card .booking-form textarea {
  width: 100%;
  min-height: 60px;
  border: 1px solid rgba(16, 31, 43, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 700;
}

.appointment-card .booking-form textarea {
  display: block;
  min-height: 148px;
  padding-top: 22px;
  resize: vertical;
}

.appointment-card .booking-form input::placeholder,
.appointment-card .booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.92);
}

.appointment-card .booking-form select {
  color: rgba(255, 255, 255, 0.92);
}

.appointment-card .booking-form select option {
  color: #10152b;
}

.appointment-card .booking-form button {
  position: relative;
  min-height: 70px;
  margin-top: 0;
  border-radius: 0;
  background: #101f2b;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.appointment-card .booking-form button:hover {
  transform: none;
  background: #071827;
  color: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(255, 214, 0, 0.55), 0 16px 30px rgba(7, 24, 39, 0.24);
}

.appointment-cleaner {
  position: absolute;
  z-index: 3;
  left: 46%;
  bottom: -1px;
  width: auto;
  height: 610px;
  max-height: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 34px rgba(5, 11, 16, 0.22));
  animation: appointmentFloat 4.8s ease-in-out infinite;
}

@keyframes appointmentFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1180px) {
  .contact-booking {
    min-height: auto;
    padding: 58px 24px 0;
  }

  .appointment-card {
    width: min(470px, 100%);
    margin-left: 0;
  }

  .appointment-cleaner {
    left: auto;
    right: 4%;
    height: min(560px, 58vw);
    width: auto;
  }
}

@media (max-width: 760px) {
  .contact-booking {
    padding: 36px 18px 28px;
    background:
      linear-gradient(180deg, transparent 0 12%, rgba(18, 34, 45, 0.92) 12% 100%),
      #fff6df;
  }

  .contact-booking::before {
    inset: 12% 0 0;
  }

  .contact-booking::after {
    display: none;
  }

  .appointment-card {
    padding: 38px 26px 34px;
  }

  .appointment-cleaner {
    display: none;
    animation: none;
  }
}

.site-footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 173, 22, 0.22) 0 180px, transparent 181px),
    radial-gradient(circle at 92% 18%, rgba(30, 123, 232, 0.16) 0 220px, transparent 221px),
    linear-gradient(135deg, #020b1d 0%, #071a36 48%, #031126 100%);
  color: #ffffff;
  border-top: 5px solid #ffad16;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 0.95fr 1fr;
  column-gap: 38px;
  width: 100%;
  margin: 0 auto;
  padding: 38px 8.2% 28px;
}

.footer-brand,
.footer-column {
  min-height: 150px;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  padding-left: 0;
}

.footer-contact {
  border-right: 0;
  padding-right: 0;
}

.footer-brand img {
  display: block;
  width: 210px;
  height: auto;
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.footer-brand p {
  max-width: 285px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.footer-social a svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social .facebook {
  background: #1877f2;
}

.footer-social .instagram {
  background:
    radial-gradient(circle at 30% 105%, #fdf497 0 12%, #fdf497 13%, transparent 28%),
    radial-gradient(circle at 30% 105%, #fd5949 0 36%, #d6249f 62%, #285aeb 100%);
}

.footer-social .youtube {
  background: #ff0000;
}

.footer-social .instagram svg {
  fill: none;
}

.footer-social .youtube svg path:last-child {
  fill: #ff0000;
  stroke: #ff0000;
}

.footer-mobile-actions {
  display: none;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
}

.footer-column a,
.footer-contact p {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  transition: color 0.24s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffad16, #ffd600);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.footer-column a:hover {
  color: #ffad16;
}

.footer-column a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-contact svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: #ffad16;
  stroke-width: 2;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 8.2% 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.24s ease;
}

.footer-bottom a:hover {
  color: #ffad16;
}

.site-footer .reveal-on-scroll,
.site-footer .reveal-on-scroll.is-visible,
.site-footer .footer-brand,
.site-footer .footer-column,
.site-footer .footer-social a,
.site-footer a {
  transform: none;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .footer-brand,
  .footer-column {
    border-right: 0;
    padding: 0;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 18px 12px 0;
  }

  .footer-main,
  .footer-bottom {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 0;
    padding-bottom: 18px;
  }

  .footer-brand,
  .footer-column {
    min-height: 0;
    padding: 18px;
    border: 1px solid rgba(255, 173, 22, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  }

  .footer-brand {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-brand img {
    width: min(230px, 74vw);
    margin: 0 auto 16px;
    padding: 10px 14px;
  }

  .footer-brand p {
    max-width: 300px;
    margin: 0 auto 16px;
    font-size: 13px;
    line-height: 1.65;
  }

  .footer-mobile-actions {
    display: grid;
    gap: 10px;
    width: 100%;
    margin: 0 0 16px;
  }

  .footer-mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  }

  .footer-mobile-actions svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
  }

  .footer-call-action {
    background: #ffad16;
  }

  .footer-whatsapp-action {
    background: #123d73;
  }

  .footer-social {
    justify-content: center;
    gap: 12px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    background-clip: padding-box;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }

  .footer-column h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 173, 22, 0.72);
    color: #ffad16;
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
  }

  .footer-column h2::before {
    content: "";
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background:
      url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9 8 7 5-7 5Z' fill='%23fff'/%3E%3C/svg%3E") center / 14px 14px no-repeat,
      #ffad16;
    box-shadow: 0 8px 18px rgba(255, 173, 22, 0.26);
  }

  .footer-column a,
  .footer-contact p {
    gap: 10px;
    margin-bottom: 11px;
    font-size: 14px;
    line-height: 1.35;
  }

  .footer-column[aria-label="Footer services"] {
    grid-column: auto;
  }

  .footer-contact p br {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 -12px;
    padding-top: 16px;
    padding-bottom: 20px;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(38px);
  filter: blur(8px);
  transition:
    opacity var(--reveal-duration, 0.78s) ease,
    transform var(--reveal-duration, 0.78s) cubic-bezier(0.2, 0.72, 0.2, 1),
    filter var(--reveal-duration, 0.78s) ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-110px);
}

.reveal-right {
  transform: translateX(110px);
}

.reveal-top {
  transform: translateY(-86px);
}

.reveal-bottom {
  transform: translateY(86px);
}

.reveal-zoom {
  transform: translateY(32px) scale(0.94);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
}

.service-tile.reveal-on-scroll.is-visible:hover {
  transform: translateY(-8px);
}

.about-left,
.about-content,
.about-right,
.service-tile {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(7, 23, 44, 0.72);
  backdrop-filter: blur(7px);
  box-sizing: border-box;
  overflow: auto;
}

.quote-modal.is-open {
  display: flex;
}

.quote-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.76fr) minmax(0, 1.24fr);
  width: min(1040px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  min-height: 0;
  border: 2px solid #ffad16;
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  box-sizing: border-box;
}

.quote-modal-side {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 30px 26px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 213, 0, 0.2), transparent 27%),
    radial-gradient(circle at 88% 64%, rgba(255, 173, 22, 0.14), transparent 28%),
    linear-gradient(160deg, #07172c 0%, #0b2139 54%, #06111f 100%);
  color: #ffffff;
  overflow: hidden auto;
}

.quote-modal-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='130' height='130' viewBox='0 0 130 130' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffad16' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' opacity='.6'%3E%3Cpath d='M26 18l4 10 10 4-10 4-4 10-4-10-10-4 10-4 4-10Z'/%3E%3Ccircle cx='98' cy='24' r='8'/%3E%3Ccircle cx='108' cy='96' r='6'/%3E%3Cpath d='M50 92h28M58 80h12l8 12-8 12H58l-8-12 8-12Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px 150px;
  opacity: 0.12;
  pointer-events: none;
}

.quote-modal-side > * {
  position: relative;
  z-index: 1;
}

.quote-modal-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 170px;
  height: 92px;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 173, 22, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 226, 0.95));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.quote-modal-logo img {
  max-width: 140px;
  max-height: 64px;
}

.quote-modal-photo {
  flex: 0 0 auto;
  width: 100%;
  height: 192px;
  margin: 0 0 24px;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.quote-modal-side small {
  color: #ffbd21;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-modal-side h2 {
  margin: 18px 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
}

.quote-contact-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 173, 22, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-contact-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 173, 22, 0.16);
  color: #ffbd21;
}

.quote-contact-card svg,
.quote-field svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-contact-card strong {
  display: block;
  color: #ffbd21;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-contact-card a,
.quote-contact-card p {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.quote-modal-main {
  position: relative;
  min-height: 0;
  padding: 38px 34px 34px;
  overflow-y: auto;
  box-sizing: border-box;
}

.quote-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7d7466;
  cursor: pointer;
}

.quote-modal-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.quote-modal-main h2 {
  margin: 0 42px 12px 0;
  color: #07172c;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.04;
}

.quote-modal-main > p {
  max-width: 620px;
  margin: 0 0 24px;
  color: #6f665b;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

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

.quote-field {
  position: relative;
  display: block;
  min-height: 58px;
  border: 1px solid rgba(7, 23, 44, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 239, 0.92));
  box-shadow: 0 14px 34px rgba(7, 23, 44, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-field.quote-wide {
  grid-column: 1 / -1;
}

.quote-field svg {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff1a8, #ffd65a);
  color: #07172c;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(255, 173, 22, 0.2);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 16px 0 66px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #07172c;
  font: 700 14px/1.2 Manrope, Arial, sans-serif;
  outline: none;
  box-shadow: none;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: #777d84;
  opacity: 1;
}

.quote-field textarea {
  min-height: 130px;
  padding-top: 20px;
  resize: vertical;
}

.quote-field select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #07172c 50%) right 23px center / 7px 7px no-repeat,
    linear-gradient(135deg, transparent 50%, #07172c 50%) right 18px center / 7px 7px no-repeat;
}

.quote-field:has(select) {
  border-color: rgba(255, 173, 22, 0.34);
  background: linear-gradient(180deg, #fff9df, #ffffff);
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  background: transparent;
}

.quote-field:focus-within {
  transform: translateY(-2px);
  border-color: #ffad16;
  box-shadow: 0 0 0 4px rgba(255, 173, 22, 0.18), 0 18px 38px rgba(255, 173, 22, 0.14);
}

.quote-field:focus-within svg {
  background: linear-gradient(135deg, #ffd600, #ffad16);
  color: #07172c;
}

.quote-submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 10px;
  border: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.38), transparent 24%),
    linear-gradient(90deg, #ffd600, #ffad16 55%, #ff920f);
  color: #07172c;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(255, 157, 22, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-submit:hover,
.quote-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(255, 157, 22, 0.34);
}

.quote-submit svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 0;
  color: #877d70;
  font-size: 13px;
  font-weight: 700;
}

  .side-toast {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1100;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    min-width: 280px;
    max-width: min(380px, calc(100vw - 32px));
    padding: 18px 18px 18px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #fff8e5);
    color: #07172c;
    box-shadow: 0 24px 80px rgba(7, 23, 44, 0.24);
    transform: translateX(-140%);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
  }

  .side-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
  }

  .side-toast-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #147d38;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
  }

  .side-toast-copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 800;
  }

  .side-toast-copy p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: #3d423f;
  }
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ef7d00;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(239, 125, 0, 0.34), 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.floating-call:hover,
.floating-call:focus-visible {
  transform: translateY(-4px) scale(1.04);
  background: #d96f00;
  box-shadow: 0 20px 42px rgba(239, 125, 0, 0.42), 0 10px 22px rgba(0, 0, 0, 0.22);
}

.floating-call svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px), (max-height: 820px) {
  .quote-modal-panel {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    width: min(980px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
    border-radius: 22px;
  }

  .quote-modal-side {
    padding: 18px 18px;
  }

  .quote-modal-logo {
    width: 136px;
    height: 66px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .quote-modal-logo img {
    max-width: 112px;
    max-height: 48px;
  }

  .quote-modal-photo {
    height: 138px;
    margin-bottom: 12px;
    border-width: 4px;
    border-radius: 16px;
  }

  .quote-modal-side small {
    font-size: 11px;
  }

  .quote-modal-side h2 {
    margin: 10px 0 12px;
    font-size: 25px;
  }

  .quote-contact-card {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    margin-top: 8px;
    padding: 9px;
  }

  .quote-contact-card span {
    width: 38px;
    height: 38px;
  }

  .quote-contact-card a,
  .quote-contact-card p {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .quote-modal-main {
    padding: 28px 26px 24px;
  }

  .quote-modal-main h2 {
    font-size: clamp(34px, 4vw, 46px);
  }

  .quote-modal-main > p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .quote-form {
    gap: 12px;
  }

  .quote-field,
  .quote-field input,
  .quote-field select {
    min-height: 54px;
  }

  .quote-field textarea {
    min-height: 104px;
  }

  .quote-submit {
    min-height: 54px;
    margin-top: 4px;
  }
}

@media (max-width: 860px) {
  .quote-modal {
    padding: 14px;
  }

  .quote-modal-panel {
    grid-template-columns: 1fr;
  }

  .quote-modal-side {
    display: none;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .floating-call {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .floating-call svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 680px) {
  .mobile-hero-marquee {
    display: block;
    margin: 0;
    border-top: 0;
    border-radius: 0;
  }

  main > .marquee-strip:not(.mobile-hero-marquee) {
    display: none;
  }

  .quote-modal {
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .quote-modal-panel {
    width: calc(100vw - 20px);
    height: auto;
    max-height: none;
    margin: 0;
    border-width: 1px;
    border-radius: 18px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .quote-modal-main {
    width: 100%;
    padding: 26px 16px 18px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .quote-modal-close {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(7, 23, 44, 0.22);
    background: rgba(255, 255, 255, 0.72);
  }

  .quote-modal-main h2 {
    max-width: calc(100% - 52px);
    margin: 0 52px 10px 0;
    font-size: 34px;
    line-height: 1.05;
  }

  .quote-modal-main > p {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .quote-form {
    gap: 12px;
  }

  .quote-field {
    min-height: 52px;
    border-radius: 14px;
    box-sizing: border-box;
  }

  .quote-field svg {
    left: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: 10px;
  }

  .quote-field input,
  .quote-field select,
  .quote-field textarea {
    box-sizing: border-box;
    min-height: 52px;
    padding-left: 56px;
    padding-right: 12px;
    border-radius: 14px;
    font-size: 13px;
  }

  .quote-field select {
    background:
      linear-gradient(45deg, transparent 50%, #07172c 50%) right 18px center / 6px 6px no-repeat,
      linear-gradient(135deg, transparent 50%, #07172c 50%) right 14px center / 6px 6px no-repeat;
    padding-right: 30px;
  }

  .quote-field textarea {
    min-height: 96px;
    padding-top: 17px;
  }

  .quote-submit {
    min-height: 54px;
    margin-top: 4px;
    border-radius: 14px;
  }

  .quote-note {
    font-size: 12px;
  }
}

@media (max-width: 680px) {
  body,
  main,
  .site-header,
  .clean-banner,
  .banner-visual,
  .about-cleaning,
  .services-intro,
  .service-grid-section,
  .booking-process,
  .before-after-section,
  .why-choose-section,
  .testimonial-section,
  .faq-section,
  .contact-booking,
  .site-footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    overflow: visible;
  }

  .services-kicker,
  .process-kicker,
  .before-after-kicker,
  .why-choose-section .why-kicker,
  .testimonial-kicker,
  .faq-kicker {
    display: block;
    margin: 0 auto 10px;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  .services-intro h2,
  .booking-process h2,
  .before-after-content h2,
  .why-choose-section .why-content h2,
  .testimonial-content h2,
  .faq-copy h2 {
    width: min(340px, 100%);
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: 34px;
    line-height: 1.12;
    text-align: center;
    white-space: normal;
    text-wrap: balance;
  }

  .services-intro h2 span,
  .before-after-content h2 span {
    display: block;
    white-space: normal;
  }

  .before-after-content > p:not(.before-after-kicker),
  .before-after-list {
    margin-right: auto;
    margin-left: auto;
  }

  .before-after-content > p:not(.before-after-kicker) {
    text-align: center;
  }

  .clean-banner {
    padding-bottom: 20px;
  }

  .banner-visual::after {
    background:
      linear-gradient(180deg, rgba(0, 25, 47, 0.58) 0%, rgba(0, 25, 47, 0.42) 46%, rgba(0, 25, 47, 0.5) 72%, rgba(255, 255, 255, 0.92) 100%);
  }

  .banner-visual video {
    height: 430px;
    object-position: center;
  }

  .hero-video-content {
    top: 214px;
    width: min(330px, calc(100% - 34px));
  }

  .hero-video-content h1 {
    max-width: 320px;
    font-size: clamp(29px, 8.8vw, 35px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .hero-video-content h1 span {
    display: block;
  }

  .hero-video-content p {
    max-width: 306px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
  }

  .hero-video-content .quote-button {
    min-width: 184px;
    min-height: 48px;
    margin-top: 18px;
    border-radius: 999px;
    font-size: 12px;
  }

  .faq-section {
    padding: 58px 18px 112px;
  }

  .faq-copy {
    width: 100%;
    text-align: center;
  }

  .faq-copy h2 {
    max-width: 330px;
    margin-bottom: 20px;
  }

  .faq-copy > p:not(.faq-kicker) {
    max-width: 325px;
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
  }

  .faq-button {
    width: min(230px, 100%);
    margin: 0 auto;
    min-height: 54px;
    border-radius: 10px;
  }

  .about-cleaning {
    display: block;
    min-height: 0;
    padding: 54px 18px 64px;
    overflow: hidden;
  }

  .about-left {
    width: 100%;
    min-height: 0;
    margin: 0 0 34px;
  }

  .about-left > img {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
  }

  .experience-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    min-height: 104px;
    margin: -54px auto 0;
    padding: 22px 24px;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    border-left-width: 0;
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(44, 94, 26, 0.2);
  }

  .experience-card strong {
    font-size: 48px;
  }

  .experience-card sup {
    font-size: 22px;
  }

  .experience-card span,
  .experience-card small {
    margin: 0;
    font-size: 20px;
    line-height: 1.05;
  }

  .about-content {
    width: min(340px, 100%);
    margin: 0 auto;
    padding-top: 0;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .about-content h2 {
    max-width: 340px;
    font-size: 34px;
    line-height: 1.1;
    white-space: normal;
  }

  .about-copy {
    max-width: 100%;
    margin: 26px 0 28px;
    font-size: 16px;
    line-height: 1.6;
    overflow: visible;
  }

  .skill-row {
    width: 100%;
    margin-bottom: 14px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(85, 157, 52, 0.16);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 25, 47, 0.05);
  }

  .skill-item {
    gap: 12px;
    margin-bottom: 24px;
  }

  .skill-label {
    font-size: 22px;
    line-height: 1.2;
  }

  .skill-row > div {
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.2;
  }

  .skill-row progress {
    height: 8px;
    border-radius: 999px;
  }

  .skill-row progress::-webkit-progress-bar {
    border-radius: 999px;
  }

  .skill-row progress::-webkit-progress-value {
    border-radius: 999px;
  }

  .skill-row progress::-moz-progress-bar {
    border-radius: 999px;
  }

  .read-more-button {
    width: 100%;
    min-height: 58px;
    margin-top: 12px;
    border-radius: 12px;
  }
}
