:root {
  --stone: #f3f0e8;
  --stone-light: #fcfbf7;
  --navy: #112e51;
  --navy-deep: #091f39;
  --blue: #2457d6;
  --blue-bright: #3972ff;
  --mist: #c9d7ec;
  --mist-soft: #e7edf7;
  --ink: #102b4a;
  --muted: #5b6c80;
  --line: rgba(17, 46, 81, 0.16);
  --white: #ffffff;
  --whatsapp: #20c96b;
  --whatsapp-dark: #13a955;
  --sans: Aptos, "Segoe UI Variable", "Segoe UI", Candara, "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--stone);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.site {
  min-width: 320px;
  overflow: hidden;
}

.shell {
  width: min(100% - 96px, 1400px);
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 122px;
  border-bottom: 1px solid var(--line);
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  width: 252px;
}

.brand-image {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--whatsapp);
  border: 1px solid var(--whatsapp);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.header-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.header-cta svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 696px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 1px;
  background: var(--line);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--stone) 0%,
    rgba(243, 240, 232, 0.99) 34%,
    rgba(243, 240, 232, 0.66) 57%,
    rgba(243, 240, 232, 0.18) 100%
  );
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, var(--stone) 0%, transparent 22%);
}

.hero-visual img {
  position: absolute;
  inset: -4% -3% -4% 18%;
  width: 85%;
  height: 108%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.54;
  filter: saturate(0.86) contrast(0.94);
  animation: washer-drift 11s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.motion-ring {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 77%;
  border: 1px solid rgba(36, 87, 214, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.motion-ring--one {
  width: 520px;
  height: 520px;
  border-top-color: transparent;
  border-width: 2px;
  animation: ring-cycle 19s linear infinite;
}

.motion-ring--two {
  width: 620px;
  height: 620px;
  border-right-color: transparent;
  opacity: 0.52;
  animation: ring-cycle-reverse 27s linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.74fr);
  align-items: center;
  min-height: 696px;
  padding-block: 68px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(70px, 6.1vw, 100px);
  font-weight: 510;
  letter-spacing: -0.068em;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 370;
}

.hero-intro {
  max-width: 620px;
  margin: 34px 0 34px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.63;
}

.hero-intro strong {
  color: var(--navy);
  font-weight: 750;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 17px 34px;
  color: var(--white);
  background: var(--whatsapp);
  border: 1px solid var(--whatsapp);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(19, 169, 85, 0.22);
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.primary-cta:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 21px 40px rgba(19, 169, 85, 0.28);
  transform: translateY(-3px);
}

.primary-cta svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}

.region-note {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 310px;
  padding: 14px 20px;
  color: var(--navy);
  background: rgba(252, 251, 247, 0.88);
  border: 1px solid rgba(17, 46, 81, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(17, 46, 81, 0.12);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.region-note small {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.region-pin {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border: 2px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.region-pin::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.qualities {
  position: relative;
  z-index: 6;
  background: var(--stone-light);
  border-bottom: 1px solid var(--line);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 156px;
}

.quality {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 38px;
}

.quality + .quality {
  border-left: 1px solid var(--line);
}

.quality-icon {
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--blue);
}

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

.quality h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.quality p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 108px;
  padding-block: 130px;
}

.section-heading {
  align-self: start;
  position: sticky;
  top: 44px;
}

.section-heading h2,
.brands-inner h2,
.coverage h2,
.contact h2 {
  margin: 0;
  font-size: clamp(40px, 4.1vw, 64px);
  font-weight: 480;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  max-width: 490px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  padding-top: 0;
  color: var(--blue);
  font-size: 28px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-copy h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 610;
  letter-spacing: -0.035em;
}

.service-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-mark {
  color: var(--mist);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-list article:hover .service-mark {
  color: var(--blue);
  transform: scale(1.45);
}

.brands-section {
  background: var(--stone-light);
  border-block: 1px solid var(--line);
}

.brands-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  align-items: center;
  gap: 100px;
  min-height: 360px;
  padding-block: 72px;
}

.brands-inner h2 {
  max-width: 590px;
  font-size: clamp(38px, 3.6vw, 56px);
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.brand-list span {
  display: grid;
  place-items: center;
  min-height: 126px;
  color: var(--navy);
  background: var(--white);
  font-size: clamp(19px, 1.7vw, 27px);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 78%;
  height: auto;
  object-fit: contain;
}

.brand-logo--consul {
  width: 138px;
  filter: brightness(0) saturate(100%) invert(58%) sepia(62%) saturate(680%) hue-rotate(72deg)
    brightness(92%) contrast(92%);
}

.brand-logo--electrolux {
  width: 190px;
  filter: invert(13%) sepia(25%) saturate(2323%) hue-rotate(183deg) brightness(87%) contrast(108%);
}

.brand-logo--brastemp {
  width: 202px;
}

.brand-list span + span {
  border-left: 1px solid var(--line);
}

.coverage {
  position: relative;
  min-height: 680px;
  color: var(--white);
  background: var(--navy-deep);
  isolation: isolate;
}

.coverage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 76% 50%, rgba(36, 87, 214, 0.2), transparent 42%);
}

.coverage-motion {
  position: absolute;
  top: 50%;
  right: 1%;
  width: 560px;
  height: 560px;
  transform: translateY(-50%);
  opacity: 0.5;
}

.coverage-motion span {
  position: absolute;
  border: 1px solid rgba(201, 215, 236, 0.22);
  border-radius: 50%;
  animation: coverage-cycle 24s linear infinite;
}

.coverage-motion span:nth-child(1) {
  inset: 0;
  border-top-color: transparent;
}

.coverage-motion span:nth-child(2) {
  inset: 72px;
  border-right-color: var(--blue-bright);
  animation-duration: 18s;
  animation-direction: reverse;
}

.coverage-motion span:nth-child(3) {
  inset: 150px;
  border-bottom-color: transparent;
  animation-duration: 13s;
}

.coverage-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 40px 100px;
  min-height: 680px;
  padding-block: 100px 66px;
}

.section-kicker--light {
  color: #9bbcff;
}

.coverage h2 {
  max-width: 560px;
  font-size: clamp(50px, 5vw, 78px);
}

.city-list {
  position: relative;
  z-index: 2;
  display: grid;
}

.city-list span {
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 470;
  letter-spacing: -0.06em;
  line-height: 0.95;
  transition: color 0.25s ease, transform 0.25s ease;
}

.city-list span:hover {
  color: var(--white);
  transform: translateX(12px);
}

.coverage-note {
  grid-column: 2;
  max-width: 460px;
  margin: 0;
  color: var(--mist);
  font-size: 14px;
  line-height: 1.5;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(700px 400px at 50% 120%, rgba(36, 87, 214, 0.34), transparent 65%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  text-align: center;
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.contact-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  padding-block: 132px;
}

.contact-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: #9bbcff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-tag::before,
.contact-tag::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.contact-cta h2 {
  margin: 26px 0 20px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 490;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.contact-cta h2 em {
  display: block;
  color: #9bbcff;
  font-style: normal;
}

.contact-cta-inner > p {
  max-width: 610px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.contact-wa {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 17px 34px;
  overflow: hidden;
  color: var(--white);
  background: var(--whatsapp);
  border-radius: 999px;
  box-shadow: 0 6px 28px rgba(35, 196, 98, 0.4);
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact-wa::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.contact-wa:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 12px 36px rgba(35, 196, 98, 0.45);
  transform: translateY(-3px);
}

.contact-wa:hover::after {
  left: 130%;
}

.contact-wa svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-phone:hover {
  color: var(--white);
}

.contact-phone svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer {
  color: var(--white);
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 0.8fr;
  gap: 78px;
  padding-block: 74px 64px;
}

.footer-wordmark {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-wordmark strong {
  color: var(--white);
  font-size: 38px;
  font-style: italic;
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 1;
}

.footer-wordmark span {
  color: #9bbcff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer small {
  display: block;
  margin-bottom: 12px;
  color: #9bbcff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer address,
.footer p {
  margin: 0;
  color: var(--mist-soft);
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
}

.footer-address a {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  color: var(--mist-soft);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-block: 24px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(35, 196, 98, 0.45);
  transition: transform 0.3s ease;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid var(--whatsapp);
  border-radius: 50%;
  opacity: 0;
  animation: wa-pulse 2.6s ease-out infinite;
}

.wa-float:hover {
  transform: scale(1.1) rotate(8deg);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.reveal--two {
  animation-delay: 0.08s;
}

.reveal--three {
  animation-delay: 0.16s;
}

.reveal--four {
  animation-delay: 0.24s;
}

.brand-link:focus-visible,
.nav a:focus-visible,
.header-cta:focus-visible,
.primary-cta:focus-visible,
.contact-wa:focus-visible,
.contact-phone:focus-visible,
.footer a:focus-visible,
.wa-float:focus-visible {
  outline: 3px solid #82a9ff;
  outline-offset: 4px;
}

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

@keyframes washer-drift {
  from {
    transform: scale(1.015) translate3d(-8px, -2px, 0);
  }
  to {
    transform: scale(1.055) translate3d(14px, 4px, 0);
  }
}

@keyframes ring-cycle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ring-cycle-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes coverage-cycle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes wa-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.85);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (max-width: 1120px) {
  .shell {
    width: min(100% - 56px, 980px);
  }

  .nav {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .hero-inner {
    grid-template-columns: 1fr 320px;
  }

  .hero-visual img {
    left: 28%;
    width: 92%;
  }

  .quality {
    padding-inline: 24px;
  }

  .services,
  .brands-inner,
  .coverage-inner {
    gap: 70px;
  }

  .services {
    grid-template-columns: 0.78fr 1.22fr;
  }
}

@media (max-width: 860px) {
  .topbar {
    min-height: 94px;
  }

  .brand-image {
    width: 100%;
  }

  .brand {
    width: 218px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 15px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 790px;
    padding-block: 72px 250px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual::before {
    background: linear-gradient(
      180deg,
      var(--stone) 0%,
      rgba(243, 240, 232, 0.98) 43%,
      rgba(243, 240, 232, 0.45) 78%,
      var(--stone) 100%
    );
  }

  .hero-visual img {
    inset: auto -18% -7% -8%;
    width: 126%;
    height: 57%;
    object-position: right 40%;
    opacity: 0.42;
  }

  .motion-ring {
    top: 76%;
    left: 76%;
  }

  .region-note {
    right: 0;
    bottom: 52px;
  }

  .quality-grid,
  .services,
  .brands-inner,
  .coverage-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .quality + .quality {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .quality {
    min-height: 132px;
  }

  .services {
    gap: 60px;
    padding-block: 100px;
  }

  .section-heading {
    position: static;
  }

  .brands-inner {
    gap: 48px;
    min-height: auto;
    padding-block: 88px;
  }

  .coverage-inner {
    grid-template-rows: auto;
    align-content: center;
    gap: 58px;
    padding-block: 94px;
  }

  .coverage-note {
    grid-column: 1;
  }

  .coverage-motion {
    right: -220px;
    opacity: 0.36;
  }

  .footer-inner {
    gap: 46px;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 36px, 520px);
  }

  .topbar {
    min-height: 86px;
  }

  .brand-image {
    width: 100%;
  }

  .brand {
    width: 198px;
  }

  .header-cta {
    display: none;
  }

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

  .hero {
    min-height: 820px;
  }

  .hero-inner {
    min-height: 820px;
    padding-block: 58px 265px;
  }

  .eyebrow {
    max-width: 310px;
    font-size: 12px;
    line-height: 1.45;
  }

  .section-kicker {
    font-size: 13px;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 72px);
    line-height: 0.94;
  }

  .hero-intro {
    margin-block: 28px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .primary-cta {
    width: 100%;
  }

  .region-note {
    right: auto;
    left: 0;
    bottom: 42px;
    max-width: 286px;
  }

  .hero-visual img {
    right: -31%;
    bottom: -5%;
    width: 150%;
  }

  .motion-ring--one {
    width: 380px;
    height: 380px;
  }

  .motion-ring--two {
    width: 450px;
    height: 450px;
  }

  .quality {
    padding: 25px 6px;
  }

  .section-heading h2,
  .brands-inner h2,
  .coverage h2,
  .contact h2 {
    font-size: 42px;
  }

  .service-list article {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .service-mark {
    display: none;
  }

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

  .brand-list span {
    min-height: 88px;
  }

  .brand-list span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .coverage {
    min-height: 650px;
  }

  .city-list span {
    font-size: clamp(42px, 14vw, 62px);
  }

  .contact-cta-inner {
    padding-block: 104px;
  }

  .contact-cta h2 {
    font-size: 42px;
  }

  .contact-wa {
    width: 100%;
  }

  .footer-base {
    flex-direction: column;
  }

  .wa-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
}

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

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