:root {
  --blue-950: #07195e;
  --blue-900: #09247c;
  --blue-800: #0734a7;
  --blue-700: #0646c8;
  --blue-600: #0759dd;
  --cyan: #20becf;
  --cyan-dark: #16aebf;
  --yellow: #ffba1a;
  --text: #071744;
  --muted: #35436f;
  --line: #dfe6f2;
  --panel: #f5fbff;
  --shadow: 0 18px 38px rgba(7, 25, 94, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.35;
  overflow-x: hidden;
}

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  left: 20px;
  top: 18px;
  z-index: 100;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--blue-900);
  border-radius: 8px;
  font-weight: 800;
}

main > section,
.site-footer {
  scroll-margin-top: 112px;
}

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

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

.fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

button,
.btn,
.store-badge,
.step,
.feature-grid article,
.stats article,
.social a {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.btn:hover,
.store-badge:hover {
  transform: translateY(-3px);
}

.btn:focus-visible,
.store-badge:focus-visible,
.nav-links a:focus-visible,
.social a:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(32, 190, 207, .45);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(1180px, calc(100% - 80px));
  min-height: 105px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--blue-800);
}

.brand-logo {
  width: 214px;
  height: auto;
  display: block;
}

.logo-mark {
  width: 66px;
  height: 66px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-mark svg { width: 100%; height: 100%; }

.brand-text {
  font-size: 44px;
  letter-spacing: 0;
  line-height: 1;
}

.brand-text span,
.download h2 span,
.advantage-content h2 span {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  font-weight: 800;
  color: #06163e;
}

.nav-links a.active { color: #0646d3; }

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--cyan);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  min-height: 42px;
  padding: 12px 21px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline {
  color: var(--blue-700);
  border: 1.5px solid var(--blue-700);
  background: #fff;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #0875d8 0%, #0557c4 100%);
  box-shadow: 0 8px 16px rgba(5, 87, 196, .18);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  color: var(--blue-900);
  font-size: 20px;
  place-items: center;
}

.hero {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  min-height: 640px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  padding: 28px 0 24px;
  position: relative;
}

.hero-copy {
  padding-left: 56px;
  z-index: 2;
}

.hero-copy,
.hero-visual {
  animation: riseIn .75s ease both;
}

.hero-visual {
  animation-delay: .12s;
}

.hero h1 {
  margin: 0 0 34px;
  color: var(--blue-950);
  font-size: clamp(54px, 5.5vw, 77px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 .word-cyan {
  color: var(--cyan);
}

.hero h1 .word-yellow {
  color: var(--yellow);
}

.hero p {
  margin: 0 0 42px;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.34;
  font-weight: 500;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  color: var(--blue-900);
  background: #f2fbff;
  border: 1px solid #d6f3f8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-trust i {
  color: var(--cyan-dark);
  font-size: 13px;
}

.store-badge {
  width: 230px;
  height: 72px;
  aspect-ratio: 368 / 116;
  align-items: center;
  gap: 13px;
  padding: 9px 16px;
  color: #fff;
  background: #050505;
  border: 1px solid #282828;
  border-radius: 8px;
  display: inline-flex;
  overflow: hidden;
  line-height: 0;
}

.store-badge i {
  display: inline-flex;
  flex: 0 0 40px;
  width: 40px;
  font-size: 40px;
  color: #fff;
}

.store-badge.google i {
  color: #34a853;
  filter: drop-shadow(12px 0 0 #4285f4) drop-shadow(0 10px 0 #fbbc05);
  transform: translate(-6px, -4px);
}

.store-badge span {
  display: grid;
  gap: 0;
  min-width: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.store-badge small {
  display: block;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.store-badge.apple i {
  flex-basis: 42px;
  width: 42px;
  font-size: 42px;
}

.store-badge.apple span {
  font-size: 30px;
  text-transform: none;
}

.store-badge.apple small {
  font-size: 16px;
  text-transform: none;
}

.store-badge.is-pressed,
.phone-screen button.is-pressed {
  transform: scale(.97);
}

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

.shape {
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.shape.teal.big {
  width: 150px;
  height: 150px;
  left: 42px;
  top: 208px;
  background: var(--cyan);
  animation: floatShape 5.4s ease-in-out infinite;
}

.shape.teal.dot {
  width: 43px;
  height: 43px;
  right: 6px;
  top: 66px;
  background: var(--cyan);
  animation: pulseDot 2.8s ease-in-out infinite;
}

.shape.yellow {
  width: 162px;
  height: 162px;
  left: -6px;
  top: 388px;
  background: var(--yellow);
  animation: floatShape 6s ease-in-out infinite reverse;
}

.laundry-photo {
  width: 445px;
  height: 468px;
  position: absolute;
  top: 80px;
  right: 22px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #bcd7fa, #f6fbff 42%, #eff8ff 60%, #cfe7ff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
  z-index: 1;
  animation: softFloat 7s ease-in-out infinite;
}

.basket {
  position: absolute;
  left: 55px;
  right: -10px;
  bottom: 25px;
  height: 140px;
  border-radius: 20px 20px 70px 70px;
  background:
    repeating-linear-gradient(90deg, rgba(116, 65, 22, .55) 0 8px, rgba(230, 166, 83, .85) 8px 20px),
    linear-gradient(#cf8841, #b97835);
  transform: rotate(2deg);
}

.cloth {
  position: absolute;
  border-radius: 36px;
  box-shadow: 0 12px 20px rgba(17, 34, 80, .16);
}

.cloth-blue {
  width: 300px;
  height: 78px;
  right: 14px;
  top: 194px;
  background: repeating-linear-gradient(0deg, #6dbaff 0 8px, #4f9ff0 8px 14px);
  transform: rotate(-2deg);
}

.cloth-light {
  width: 268px;
  height: 76px;
  right: 30px;
  top: 278px;
  background: repeating-linear-gradient(0deg, #f7fbff 0 8px, #dce8f5 8px 14px);
  transform: rotate(6deg);
}

.cloth-gray {
  width: 265px;
  height: 72px;
  right: 84px;
  top: 145px;
  background: repeating-linear-gradient(0deg, #a4a8ae 0 9px, #7b828b 9px 15px);
  transform: rotate(12deg);
}

.leaf {
  position: absolute;
  background: #33713d;
  border-radius: 100% 0 100% 0;
  filter: blur(.3px);
}

.leaf-one {
  width: 78px;
  height: 42px;
  right: 30px;
  top: 100px;
  transform: rotate(28deg);
}

.leaf-two {
  width: 62px;
  height: 34px;
  right: 104px;
  top: 84px;
  transform: rotate(-10deg);
}

.phone {
  width: 312px;
  min-height: 588px;
  padding: 15px;
  border-radius: 45px;
  background: linear-gradient(90deg, #030407 0%, #393c41 47%, #0b0c0f 100%);
  box-shadow: 0 18px 32px rgba(0, 0, 0, .38);
  position: relative;
}

.phone-hero {
  position: absolute;
  top: 22px;
  left: 110px;
  z-index: 4;
  transform: rotate(6deg);
  animation: phoneFloat 5.8s ease-in-out infinite;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid rgba(255, 255, 255, .1);
  border-radius: 39px;
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  width: 116px;
  height: 22px;
  top: 14px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  background: #030407;
  border-radius: 0 0 18px 18px;
}

.phone-screen {
  min-height: 558px;
  border-radius: 32px;
  background: #fff;
  overflow: hidden;
  padding: 30px 26px 22px;
  position: relative;
}

.status {
  font-size: 9px;
  font-weight: 800;
  color: #222;
}

.app-logo-mini {
  margin: 20px auto 20px;
  display: grid;
  justify-items: center;
  gap: 0;
}

.app-logo-mini img {
  width: 154px;
  height: auto;
  display: block;
}

.phone-screen .phone-title {
  margin: 0;
  text-align: center;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.phone-screen > p {
  margin: 3px 0 14px;
  text-align: center;
  color: #6d7590;
  font-size: 11px;
  font-weight: 700;
}

.service-list {
  display: grid;
  gap: 11px;
  margin-bottom: 18px;
}

.service-list div {
  position: relative;
  min-height: 53px;
  display: grid;
  grid-template-columns: 34px 1fr 12px;
  align-items: center;
  column-gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(7, 25, 94, .12);
}

.service-list div:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 18px rgba(7, 25, 94, .16);
}

.service-list div.is-selected {
  box-shadow: 0 0 0 2px rgba(32, 190, 207, .45), 0 12px 20px rgba(7, 25, 94, .16);
}

.service-list div.is-selected span {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.service-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  border: 2px solid #a8c6fa;
  border-radius: 7px;
  font-size: 15px;
}

.service-list strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
}

.service-list p {
  margin: 0;
  min-width: 0;
  text-align: left;
}

.service-list small {
  display: block;
  color: #7a8196;
  font-size: 8px;
  font-weight: 700;
}

.service-list b {
  color: var(--blue-900);
  font-size: 22px;
}

.phone-screen button {
  width: 100%;
  height: 45px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #1264df, #0048bf);
  border-radius: 7px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.phone-screen button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(0, 72, 191, .2);
}

.stats {
  width: min(1180px, calc(100% - 80px));
  margin: 20px auto 0;
  min-height: 188px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: linear-gradient(120deg, #012caa 0%, #064ed7 53%, #023dbd 100%);
  color: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.stats article {
  min-height: 105px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  position: relative;
}

.stats article:hover {
  transform: translateY(-5px);
}

.stats article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(255, 255, 255, .28);
}

.stat-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 38px;
}

.stats strong {
  font-size: 35px;
  line-height: 1;
  font-weight: 900;
}

.stats .rating {
  color: var(--cyan);
}

.stats span {
  font-size: 16px;
  font-weight: 700;
}

.how {
  width: min(1180px, calc(100% - 80px));
  margin: 34px auto 50px;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title h2,
.advantage-content h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
}

.section-title p {
  margin: 8px 0 0;
  color: var(--blue-950);
  font-size: 16px;
  font-weight: 500;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 42px;
}

.step {
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -37px;
  width: 74px;
  height: 12px;
  background:
    radial-gradient(circle, var(--blue-700) 2px, transparent 3px) left center / 12px 8px repeat-x;
}

.step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 53px;
  right: -48px;
  border-left: 10px solid var(--blue-700);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  z-index: 2;
}

.icon-card {
  width: 118px;
  height: 118px;
  margin: 0 auto 33px;
  border: 1px solid #dde7f2;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(7, 25, 94, .13);
  position: relative;
  display: grid;
  place-items: center;
}

.icon-card i {
  color: var(--blue-700);
  font-size: 48px;
}

.step:hover .icon-card,
.step:focus-within .icon-card {
  transform: translateY(-7px);
  box-shadow: 0 18px 34px rgba(7, 25, 94, .18);
}


.step-copy {
  display: grid;
  grid-template-columns: 31px 1fr;
  column-gap: 13px;
  align-items: start;
  min-width: 0;
}

.step-copy span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--cyan-dark);
  font-size: 14px;
  font-weight: 900;
}

.step h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
}

.step p {
  grid-column: 2;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.advantages {
  min-height: 460px;
  background: linear-gradient(90deg, #eaf7ff 0%, #f8fcff 35%, #edf8ff 100%);
  display: grid;
  grid-template-columns: minmax(300px, 39%) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  overflow: visible;
  padding: 0 max(40px, calc((100vw - 1180px) / 2)) 0;
}

.advantage-phone {
  height: 460px;
  position: relative;
}

.phone-map {
  position: absolute;
  left: 48px;
  top: 8px;
  transform: rotate(-7deg);
  animation: mapPhoneFloat 6.4s ease-in-out infinite;
}

.phone-map .phone-screen {
  padding: 53px 23px 20px;
}

.phone-map h3 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 900;
}

.map {
  height: 158px;
  border-radius: 8px;
  background:
    linear-gradient(30deg, transparent 48%, #d8dee9 49% 51%, transparent 52%),
    linear-gradient(110deg, transparent 48%, #d8dee9 49% 51%, transparent 52%),
    linear-gradient(#eef2f6 0 0);
  background-size: 120px 70px, 100px 76px, auto;
  position: relative;
  overflow: hidden;
}

.route {
  width: 180px;
  height: 84px;
  left: 42px;
  top: 28px;
  position: absolute;
  border-top: 5px solid var(--blue-700);
  border-right: 5px solid var(--blue-700);
  transform: skewY(-24deg);
  animation: routePulse 2.2s ease-in-out infinite;
}

.map i,
.map b {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 6px solid var(--blue-700);
  border-radius: 50%;
}

.map i { left: 50px; top: 78px; }
.map b { right: 22px; top: 35px; }

.driver-card {
  margin: -20px 12px 18px;
  padding: 13px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(7, 25, 94, .12);
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, #9d633c 0 18%, transparent 19%),
    radial-gradient(circle at 50% 38%, #21140d 0 29%, transparent 30%),
    linear-gradient(#f0ba8e 0 46%, #0d5fc9 47% 100%);
}

.driver-card strong,
.driver-card small {
  display: block;
}

.driver-card strong {
  font-size: 13px;
  font-weight: 900;
}

.driver-card small {
  color: #68738b;
  font-size: 10px;
  font-weight: 700;
}

.driver-card em {
  color: var(--yellow);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.phone-map p {
  margin: 13px 8px;
  text-align: left;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.phone-map p i {
  color: var(--blue-700);
  margin-right: 4px;
}

.phone-map p span {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  border: 4px solid var(--cyan);
  border-radius: 50%;
  vertical-align: -2px;
}

.advantage-content {
  align-self: stretch;
  padding: 70px 26px 54px 0;
}

.advantage-content h2 {
  margin-bottom: 48px;
}

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

.feature-grid article {
  display: grid;
  grid-template-columns: 84px 1fr;
  column-gap: 20px;
  align-items: start;
  border-radius: 8px;
  overflow: visible;
}

.feature-grid article:hover {
  transform: translateY(-4px);
}

.feature-grid article:nth-child(n+4) {
  padding-top: 34px;
  border-top: 1px solid rgba(7, 25, 94, .12);
}

.feature-icon,
.feature-icon-img {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  justify-self: center;
  max-width: none;
}

.feature-icon {
  color: var(--blue-700);
  background: #fff;
  border: 1px solid #d8e8f6;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(7, 25, 94, .1);
  font-size: 31px;
}

.feature-grid h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 17px;
  font-weight: 900;
}

.feature-grid p {
  margin: 0;
  color: var(--blue-950);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  grid-column: 2;
}

.download {
  width: min(1180px, calc(100% - 80px));
  min-height: 226px;
  margin: -6px auto 35px;
  padding: 34px 98px;
  display: grid;
  grid-template-columns: 1fr 158px 300px;
  align-items: center;
  gap: 72px;
  color: #fff;
  background: linear-gradient(120deg, #0632b7 0%, #0458d2 55%, #0239b0 100%);
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(32, 190, 207, .32), transparent 68%);
  animation: glowSlide 7s ease-in-out infinite;
  pointer-events: none;
}

.download h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 900;
}

.download p {
  margin: 12px 0 0;
  font-size: 24px;
  font-weight: 800;
}

.download p span {
  color: var(--cyan);
}

.qr {
  width: 158px;
  height: 158px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.qr span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(#000 0 0) 0 0/33px 33px no-repeat,
    linear-gradient(#000 0 0) 100% 0/33px 33px no-repeat,
    linear-gradient(#000 0 0) 0 100%/33px 33px no-repeat,
    linear-gradient(#fff 0 0) 7px 7px/19px 19px no-repeat,
    linear-gradient(#fff 0 0) calc(100% - 26px) 7px/19px 19px no-repeat,
    linear-gradient(#fff 0 0) 7px calc(100% - 26px)/19px 19px no-repeat,
    repeating-linear-gradient(90deg, #000 0 7px, transparent 7px 14px),
    repeating-linear-gradient(0deg, transparent 0 9px, #000 9px 14px, transparent 14px 21px);
  border: 6px solid #000;
  image-rendering: pixelated;
  transition: transform .25s ease;
}

.qr:hover span {
  transform: scale(1.04);
}

.download-actions h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.download-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.download-actions .store-badge {
  width: 230px;
}

.site-footer {
  width: min(1180px, calc(100% - 80px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand .logo-mark {
  width: 47px;
  height: 47px;
}

.footer-logo {
  width: 152px;
}

.footer-brand .brand-text {
  font-size: 25px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 58px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

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

.social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 22px;
  text-decoration: none;
}

.social a:hover {
  transform: translateY(-3px);
}

.instagram {
  border: 3px solid #ff317b;
  border-radius: 8px;
}

.instagram::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: 3px;
  top: 3px;
  background: #ff317b;
  border-radius: 50%;
}

.instagram::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid #ff317b;
  border-radius: 50%;
}

.facebook {
  background: #1877f2;
  border-radius: 50%;
}

.facebook::after {
  content: "f";
  position: absolute;
  left: 8px;
  top: 1px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.tiktok::before {
  content: "♪";
  position: absolute;
  left: 2px;
  top: -4px;
  color: #071744;
  font-size: 27px;
  font-weight: 900;
  text-shadow: 3px 0 #ff315d, -3px 0 #20becf;
}

.social a::before,
.social a::after {
  display: none;
}

.social .instagram {
  color: #ff317b;
  border: 0;
}

.social .facebook {
  color: #1877f2;
  background: transparent;
  border-radius: 0;
}

.social .tiktok {
  color: #071744;
}

.service-list i {
  font-size: 14px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

@keyframes riseIn {
  from { opacity: .92; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(4.5deg) translateY(-12px); }
}

@keyframes mapPhoneFloat {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-5.8deg) translateY(-9px); }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -12px); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(32, 190, 207, .28); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(32, 190, 207, 0); }
}

@keyframes routePulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(6, 70, 200, 0)); }
  50% { filter: drop-shadow(0 0 7px rgba(6, 70, 200, .42)); }
}

@keyframes glowSlide {
  0%, 100% { transform: translateX(0); opacity: .8; }
  50% { transform: translateX(920px); opacity: .35; }
}

@media (max-width: 1080px) {
  .nav-shell {
    width: min(940px, calc(100% - 42px));
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 82px;
  }

  .brand-text { font-size: 34px; }
  .logo-mark { width: 52px; height: 52px; }
  .brand-logo { width: 184px; }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    grid-column: 1 / -1;
    display: none;
  }

  body.menu-open .nav-links,
  body.menu-open .nav-actions {
    display: flex;
  }

  body.menu-open .nav-links {
    margin-top: 4px;
    padding: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(7, 25, 94, .12);
  }

  body.menu-open .nav-actions {
    padding-bottom: 20px;
  }

  .hero {
    width: min(940px, calc(100% - 42px));
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero-copy {
    padding-left: 0;
    text-align: center;
  }

  .hero p br { display: none; }

  .store-row { justify-content: center; }

  .hero-visual {
    min-height: 560px;
    margin-top: 20px;
  }

  .phone-hero {
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
    animation-name: phoneFloatTablet;
  }

  .laundry-photo {
    right: 50%;
    transform: translateX(68%);
  }

  .shape.teal.big { left: 22%; }
  .shape.yellow { left: 20%; }

  .stats,
  .how,
  .download,
  .site-footer {
    width: min(940px, calc(100% - 42px));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .step::before,
  .step::after {
    display: none;
  }

  .advantages {
    grid-template-columns: 1fr;
    padding: 52px 21px 0;
  }

  .advantage-content {
    order: -1;
    padding: 0;
    width: min(940px, 100%);
    margin: 0 auto;
  }

  .advantage-phone {
    width: min(940px, 100%);
    margin: 0 auto;
    height: 390px;
  }

  .phone-map {
    left: 50%;
    top: 10px;
    transform: translateX(-50%) rotate(-6deg);
    animation-name: mapPhoneFloatTablet;
  }

  @keyframes phoneFloatTablet {
    0%, 100% { transform: translateX(-50%) rotate(5deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(4deg) translateY(-10px); }
  }

  @keyframes mapPhoneFloatTablet {
    0%, 100% { transform: translateX(-50%) rotate(-6deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(-5deg) translateY(-8px); }
  }

  .download {
    grid-template-columns: 1fr 160px;
    gap: 34px;
  }

  .download-actions {
    grid-column: 1 / -1;
    justify-items: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px 0 28px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 18px 34px;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .hero,
  .stats,
  .how,
  .download,
  .site-footer {
    width: min(100% - 28px, 520px);
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero p {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero p br { display: block; }

  .store-row {
    display: grid;
    justify-items: center;
    gap: 12px;
  }

  .hero-trust {
    max-width: 330px;
    margin: 18px auto 0;
    justify-content: center;
  }

  .hero-trust span {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    background: #f7fcff;
    box-shadow: 0 8px 18px rgba(7, 25, 94, .06);
  }

  .store-badge {
    width: 230px;
    height: 70px;
    gap: 12px;
    padding: 10px 15px;
  }

  .store-badge i {
    flex-basis: 38px;
    width: 38px;
    font-size: 38px;
  }

  .store-badge span {
    font-size: 24px;
  }

  .store-badge small {
    font-size: 12px;
  }

  .store-badge.google i {
    filter: drop-shadow(10px 0 0 #4285f4) drop-shadow(0 8px 0 #fbbc05);
    transform: translate(-4px, -3px);
  }

  .store-badge.apple i {
    flex-basis: 38px;
    width: 38px;
    font-size: 38px;
  }

  .store-badge.apple span {
    font-size: 27px;
  }

  .store-badge.apple small {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 560px;
    width: 100%;
    overflow: visible;
  }

  .phone {
    width: 222px;
    min-height: 470px;
    padding: 11px;
    border-radius: 35px;
  }

  .phone-screen {
    min-height: 448px;
    border-radius: 26px;
    padding: 25px 19px 17px;
  }

  .phone-hero {
    width: 312px;
    min-height: 588px;
    padding: 15px;
    border-radius: 45px;
  }

  .phone-hero .phone-screen {
    min-height: 558px;
    border-radius: 32px;
    padding: 30px 26px 22px;
  }

  .phone-screen button {
    gap: 5px;
    font-size: 11px;
  }

  .phone-hero {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(5deg) scale(.72);
    transform-origin: top center;
    animation-name: phoneFloatMobile;
  }

  .phone-notch {
    width: 92px;
    height: 18px;
    top: 10px;
  }

  .phone-hero .phone-notch {
    width: 116px;
    height: 22px;
    top: 14px;
  }

  .app-logo-mini img { width: 128px; }
  .service-list div { min-height: 45px; }
  .service-list strong { font-size: 10px; }
  .service-list small { font-size: 7px; }

  .phone-hero .app-logo-mini img { width: 154px; }
  .phone-hero .service-list div { min-height: 53px; }
  .phone-hero .service-list strong { font-size: 12px; }
  .phone-hero .service-list small { font-size: 8px; }
  .phone-hero .phone-screen button { font-size: inherit; }

  .laundry-photo {
    width: 292px;
    height: 308px;
    top: 126px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .cloth-blue { width: 205px; height: 52px; right: 32px; top: 132px; }
  .cloth-light { width: 190px; height: 50px; right: 42px; top: 190px; }
  .cloth-gray { width: 165px; height: 47px; right: 74px; top: 98px; }
  .basket { left: 42px; right: 18px; height: 90px; }

  .shape.teal.big {
    width: 96px;
    height: 96px;
    left: calc(50% - 148px);
    top: 238px;
  }

  .shape.yellow {
    width: 108px;
    height: 108px;
    left: calc(50% - 148px);
    top: 382px;
  }

  .shape.teal.dot {
    width: 28px;
    height: 28px;
    right: calc(50% - 146px);
    top: 160px;
  }

  @keyframes phoneFloatMobile {
    0%, 100% { transform: translateX(-50%) rotate(5deg) scale(.72) translateY(0); }
    50% { transform: translateX(-50%) rotate(4deg) scale(.72) translateY(-7px); }
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
    border-radius: 18px;
  }

  .stats article + article::before { display: none; }
  .stats strong { font-size: 28px; }
  .stats span { font-size: 13px; text-align: center; }
  .stat-icon { width: 44px; height: 44px; font-size: 34px; }

  .section-title h2,
  .advantage-content h2 {
    font-size: 32px;
  }

  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .step {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 16px;
    align-items: center;
  }

  .icon-card {
    width: 92px;
    height: 92px;
    margin: 0;
    border-radius: 20px;
    transform: scale(.78);
    transform-origin: center;
  }

  .step-copy {
    grid-template-columns: 28px 1fr;
  }

  .step p {
    margin-top: 9px;
  }

  .advantages {
    margin-top: 20px;
  }

  .feature-grid {
    gap: 24px;
  }

  .feature-grid article {
    grid-template-columns: 74px 1fr;
    column-gap: 16px;
  }

  .feature-icon,
  .feature-icon-img {
    width: 66px;
    height: 66px;
  }

  .feature-grid article:nth-child(n+4) {
    padding-top: 0;
    border-top: 0;
  }

  .advantage-phone {
    height: 342px;
    display: grid;
    place-items: start center;
    overflow: visible;
  }

  .phone-map {
    transform: translateX(-50%) rotate(-5deg) scale(.82);
    transform-origin: top center;
    animation-name: mapPhoneFloatMobile;
  }

  @keyframes mapPhoneFloatMobile {
    0%, 100% { transform: translateX(-50%) rotate(-5deg) scale(.82) translateY(0); }
    50% { transform: translateX(-50%) rotate(-4deg) scale(.82) translateY(-7px); }
  }

  .download {
    grid-template-columns: 1fr;
    padding: 28px 26px;
    text-align: center;
    justify-items: center;
    gap: 24px;
    border-radius: 18px;
  }

  .download h2 {
    font-size: 30px;
  }

  .download p {
    font-size: 19px;
  }

  .download-actions {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .brand-text { font-size: 30px; }
  .logo-mark { width: 48px; height: 48px; }
  .brand-logo { width: 168px; }
  .hero h1 { font-size: 38px; }
  .store-badge { width: min(230px, 100%); }
  .hero-visual { min-height: 560px; }
  .stats { grid-template-columns: 1fr; }
  .stats article { min-height: 96px; }
  .stat-icon { width: 42px; height: 42px; font-size: 32px; }
  .steps { gap: 24px; }
  .step { grid-template-columns: 78px 1fr; gap: 10px; }
  .icon-card { transform: scale(.66); margin-left: -10px; }
}

@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; }
  .stats article { min-height: 96px; }
}

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

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