/* Wash Club landing — built from Claude Design "Wash Club Landing.dc.html" (project 6376f1d4…).
   Values follow the design one to one. Its script picked them by page width (phone < 760px,
   tablet < 1100px); here the same values come from the media queries at the bottom.
   The design relies on the default content-box sizing (the phone frame's 300px + padding), so
   there is deliberately no global border-box reset. */

@font-face { font-family: Manrope; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/manrope-500.woff") format("woff"); }
@font-face { font-family: Manrope; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/manrope-600.woff") format("woff"); }
@font-face { font-family: Manrope; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/manrope-700.woff") format("woff"); }
@font-face { font-family: Manrope; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/fonts/manrope-800.woff") format("woff"); }

:root {
  --bg: #06091a;
  --text: #F4F7FD;
  --muted: #8B9FC4;
  --muted-2: #A9BBDD;
  --accent: #4FB3FF;
  --card: #132140;
  --line: rgba(255, 255, 255, .08);
  --green: #4CD97B;
  --orange: #FF7A2E;
  --amber: #FFB547;
  --grad: linear-gradient(90deg, #2F7BFF, #4FB3FF);
  --pad-x: 72px;
  --h1: 68px;
  --h2: 44px;
}

html { background: var(--bg); scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Manrope, system-ui, sans-serif; -webkit-font-smoothing: antialiased; text-wrap: pretty; }
a { color: var(--accent); text-decoration: none; }
a:not([class]):hover { color: #8ED0FF; }
img { display: block; }
h1, h2, h3, p { margin: 0; }

@keyframes wcbreathe { 0%, 100% { opacity: .45; transform: scale(.94); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes wcfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes wcup { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.page { width: 100%; max-width: 100%; overflow-x: clip; position: relative; }
.page::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 40% at 80% 0%, rgba(47, 123, 255, .28), transparent 60%), radial-gradient(40% 30% at 10% 30%, rgba(79, 179, 255, .14), transparent 60%); }
.wrap { padding-left: var(--pad-x); padding-right: var(--pad-x); position: relative; }

/* ---------- nav ---------- */
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand img { height: 34px; width: auto; }
.brand span { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 700; }
.lang { display: flex; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 3px; gap: 2px; }
.lang-opt { padding: 7px 11px; border-radius: 9px; font-size: 12px; font-weight: 800; cursor: pointer; background: transparent; color: var(--muted); }
.lang-opt.on { background: var(--grad); color: #fff; }

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 40px; align-items: center; padding-top: clamp(24px, 5vw, 64px); padding-bottom: clamp(40px, 6vw, 90px); }
.hero-text { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; text-align: left; animation: wcup .7s ease both; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(79, 179, 255, .14); color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.hero h1 { font-size: var(--h1); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--muted); max-width: 520px; }
.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.stores-desk { margin-top: 6px; }
.store { display: flex; align-items: center; justify-content: center; gap: 12px; height: 60px; padding: 0 20px 0 16px; border-radius: 18px; }
.store-light { background: var(--text); color: var(--bg); box-shadow: 0 12px 32px rgba(0, 0, 0, .35); }
.store-light.store-flat { box-shadow: none; }
.store-dark { background: var(--card); border: 1px solid rgba(255, 255, 255, .1); color: var(--text); }
.store-glass { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); color: var(--text); }
.store-label { display: flex; flex-direction: column; line-height: 1.1; }
.store-label small { font-size: 11px; font-weight: 700; opacity: .7; }
.store-label b { font-size: 17px; font-weight: 800; }
.proof { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 10px; color: var(--muted); font-size: 13px; font-weight: 700; }
.proof span { display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: var(--green); }
.dot-blue { background: var(--accent); }
.dot-orange { background: var(--orange); }

.hero-art { position: relative; display: flex; flex-direction: column; align-items: center; min-height: 420px; padding-top: 0; }
.phone-stage { position: relative; width: 100%; display: flex; justify-content: center; align-items: flex-start; }
.glow { position: absolute; left: 50%; top: 50%; width: min(560px, 90vw); height: min(560px, 90vw); transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(47, 123, 255, .45), rgba(47, 123, 255, 0) 65%); animation: wcbreathe 6s ease-in-out infinite; pointer-events: none; }
.hero-car { position: absolute; right: -6%; bottom: -4%; width: min(260px, 52vw); height: auto; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .6)); pointer-events: none; z-index: 2; }

/* the phone mock-up with the app's home screen */
.phone { animation: wcfloat 7s ease-in-out infinite; position: relative; width: 300px; aspect-ratio: 300 / 640; border-radius: 48px; background: #0d0f16; padding: 10px; box-shadow: 0 50px 110px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 255, 255, .08), inset 0 0 0 2px #1c1f2a; }
.side { position: absolute; width: 3px; border-radius: 2px; background: #1c1f2a; }
.side-1 { left: -2px; top: 22%; height: 36px; }
.side-2 { left: -2px; top: 31%; height: 60px; }
.side-3 { right: -2px; top: 27%; height: 84px; }
.screen { position: relative; height: 100%; border-radius: 40px; background: #0A1428; overflow: hidden; display: flex; flex-direction: column; color: var(--text); font-size: 12px; }
.notch { position: absolute; left: 50%; top: 10px; transform: translateX(-50%); width: 34%; height: 26px; border-radius: 14px; background: #0d0f16; z-index: 3; }
.status { height: 50px; display: flex; justify-content: space-between; align-items: flex-end; padding: 0 24px 6px; font-size: 12px; font-weight: 700; }
.status .bars { font-size: 10px; }
.greet { padding: 8px 16px 0; display: flex; justify-content: space-between; align-items: center; }
.hello { font-size: 10px; color: var(--muted); font-weight: 700; }
.name { font-size: 16px; font-weight: 800; }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #2F7BFF, #4FB3FF); }
.m-card { margin: 12px 16px 0; border-radius: 18px; background: #050E2B; border: 1px solid rgba(79, 179, 255, .25); padding: 12px 14px; position: relative; overflow: hidden; }
.m-glow { position: absolute; inset: 0; background: radial-gradient(60% 80% at 90% 10%, rgba(79, 179, 255, .3), transparent 70%); }
.m-row { position: relative; display: flex; justify-content: space-between; align-items: center; }
.m-plan { font-size: 9px; font-weight: 800; letter-spacing: .1em; color: var(--accent); }
.m-active { font-size: 9px; font-weight: 800; color: var(--green); }
.m-count { position: relative; font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-top: 6px; }
.m-count span { font-size: 11px; color: var(--muted); font-weight: 700; }
.m-bar { position: relative; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .1); margin-top: 10px; }
.m-bar div { width: 71%; height: 100%; border-radius: 3px; background: var(--grad); }
.m-note { position: relative; font-size: 10px; color: var(--muted); margin-top: 6px; }
.c-card { margin: 10px 16px 0; border-radius: 18px; background: linear-gradient(160deg, #0B1B45 0%, #050E2B 70%); border: 1px solid rgba(79, 179, 255, .22); padding: 12px 14px; position: relative; overflow: hidden; height: 88px; box-sizing: border-box; }
.c-text { position: relative; z-index: 1; }
.c-model { font-size: 13px; font-weight: 800; }
.c-type { font-size: 10px; color: var(--muted); }
.plate { margin-top: 6px; display: inline-flex; border: 1.5px solid #111; border-radius: 4px; overflow: hidden; background: #fff; color: #111; font-weight: 800; font-size: 9px; line-height: 1; font-family: ui-monospace, Menlo, monospace; }
.plate span { padding: 3px 5px; }
.plate span:first-child { padding: 3px 4px; border-right: 1.5px solid #111; }
.c-circle { position: absolute; right: -28px; top: -16px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle at 45% 40%, #1E3A7A, #0A1428 72%); border: 1px solid rgba(79, 179, 255, .28); overflow: hidden; }
.c-circle img { position: absolute; left: -2px; top: 0; width: 110px; height: auto; }
.b-row { margin: 10px 16px 0; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.b-row img { width: 36px; height: 36px; border-radius: 10px; }
.b-text { flex: 1; min-width: 0; }
.b-name { font-size: 12px; font-weight: 800; }
.b-time { font-size: 10px; color: var(--muted); }
.b-badge { padding: 6px 10px; border-radius: 9px; background: rgba(79, 179, 255, .14); color: var(--accent); font-size: 10px; font-weight: 800; }
.app-btn { margin: 10px 16px 0; height: 44px; border-radius: 14px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; box-shadow: 0 10px 24px rgba(47, 123, 255, .35); }
.tabbar { margin: auto 14px 14px; height: 54px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); display: flex; align-items: center; justify-content: space-around; color: var(--muted); }

.stores-mob { display: none; gap: 10px; width: 100%; margin-top: 18px; }
.store-m { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; height: 52px; border-radius: 16px; font-weight: 800; font-size: 14px; }
.store-m-light { background: var(--text); color: var(--bg); }
.store-m-dark { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); color: var(--text); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

/* ---------- how it works ---------- */
.how { padding-top: 20px; padding-bottom: clamp(40px, 6vw, 90px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.how-card { border-radius: 24px; padding: 24px; background: var(--card); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.icon-box { width: 44px; height: 44px; border-radius: 14px; background: rgba(79, 179, 255, .14); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.how-card h3 { font-size: 18px; font-weight: 800; }
.how-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- section heads ---------- */
.block { padding-top: clamp(20px, 4vw, 40px); padding-bottom: clamp(40px, 6vw, 90px); display: flex; flex-direction: column; gap: 28px; }
.head { display: flex; flex-direction: column; gap: 10px; max-width: 640px; }
.head-wide { gap: 14px; max-width: 680px; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .12em; color: var(--accent); }
.head h2, .cta h2 { font-size: var(--h2); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; }
.head p { color: var(--muted); font-size: 16px; line-height: 1.55; }

/* ---------- plans ---------- */
.plan { border-radius: 26px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.plan-premium { background: linear-gradient(160deg, #16306B 0%, #0B1B3F 70%); border: 1px solid rgba(79, 179, 255, .35); position: relative; overflow: hidden; box-shadow: 0 24px 60px rgba(47, 123, 255, .2); }
.plan-pro { background: linear-gradient(135deg, rgba(79, 179, 255, .22), rgba(79, 179, 255, .06)); border: 1px solid rgba(79, 179, 255, .35); }
.plan-standart { background: var(--card); border: 1px solid var(--line); }
.plan-glow { position: absolute; inset: 0; background: radial-gradient(60% 60% at 90% 0%, rgba(79, 179, 255, .35), transparent 70%); pointer-events: none; }
.plan-premium > :not(.plan-glow) { position: relative; }
.plan-top { display: flex; justify-content: space-between; align-items: center; }
.plan-name { font-size: 18px; font-weight: 800; }
.badge { padding: 6px 12px; border-radius: 999px; background: var(--orange); color: #fff; font-size: 13px; font-weight: 800; }
.plan-term { font-size: 15px; color: var(--muted); font-weight: 700; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.price { font-size: clamp(26px, 2.4vw, 34px); font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.per { font-size: 14px; color: var(--muted); font-weight: 700; }
.plan-old { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-top: 2px; }
.plan-plain { font-size: 13px; color: var(--muted); margin-top: 2px; }
.plan-premium .plan-term, .plan-premium .per, .plan-premium .plan-old { color: var(--muted-2); }
.plan-save { padding: 12px 14px; border-radius: 14px; background: rgba(255, 122, 46, .14); color: var(--amber); font-size: 13px; font-weight: 800; }
.plan-premium .plan-save { background: rgba(255, 122, 46, .16); }
.plan-info { padding: 12px 14px; border-radius: 14px; background: rgba(79, 179, 255, .1); color: var(--muted); font-size: 13px; font-weight: 700; }
.plan-btn { margin-top: auto; height: 52px; border-radius: 16px; background: #1B2D52; border: 1px solid rgba(255, 255, 255, .1); color: var(--text); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.plan-btn-main { background: var(--grad); border: 0; color: #fff; box-shadow: 0 12px 28px rgba(47, 123, 255, .35); }
.note { color: var(--muted); font-size: 13px; }

/* ---------- branches ---------- */
.partner-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.partner { display: flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); }
.partner img { width: 32px; height: 32px; border-radius: 8px; }
.partner span { font-size: 14px; font-weight: 800; }
.partner-row p { color: var(--muted); font-size: 16px; line-height: 1.55; }
.branches { gap: 24px; align-items: stretch; }
.map { position: relative; border-radius: 26px; overflow: hidden; min-height: 380px; background: #141c33; border: 1px solid var(--line); }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 36px 36px; }
.map-glow { position: absolute; inset: 0; background: radial-gradient(60% 60% at 55% 55%, rgba(47, 123, 255, .18), transparent 75%); }
.pin { position: absolute; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; gap: 5px; }
.pin-1 { left: 72%; top: 42%; }
.pin-2 { left: 40%; top: 62%; }
.pin-3 { left: 58%; top: 80%; }
.pin-label { display: flex; align-items: center; gap: 8px; padding: 7px 12px 7px 7px; border-radius: 999px; background: #0A1428; border: 1px solid rgba(79, 179, 255, .35); box-shadow: 0 10px 30px rgba(0, 0, 0, .5); }
.pin-label img { width: 24px; height: 24px; border-radius: 50%; }
.pin-label span { font-size: 12px; font-weight: 800; white-space: nowrap; }
.pin-dot { width: 10px; height: 10px; border-radius: 50%; background: #CD2E2C; border: 2px solid #0A1428; box-shadow: 0 0 0 4px rgba(205, 46, 44, .25); }
.map-city { position: absolute; left: 16px; bottom: 16px; padding: 8px 12px; border-radius: 12px; background: rgba(10, 20, 40, .85); border: 1px solid var(--line); font-size: 12px; font-weight: 700; color: var(--muted); }
.branch-list { display: flex; flex-direction: column; gap: 12px; }
.branch { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 22px; background: var(--card); border: 1px solid var(--line); }
.branch img { width: 48px; height: 48px; border-radius: 14px; flex: none; }
.branch-text { flex: 1; min-width: 0; }
.branch-name { font-size: 16px; font-weight: 800; }
.branch-addr { font-size: 13px; color: var(--muted); }
.branch-hours { font-size: 12px; font-weight: 700; color: var(--green); margin-top: 4px; }
.branch-more { padding: 16px; border-radius: 22px; border: 1px dashed #4A5E80; color: var(--muted); font-size: 13px; font-weight: 700; text-align: center; }

/* ---------- FAQ ---------- */
.faq { gap: 18px; }
.qa { border-radius: 22px; padding: 22px; background: var(--card); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.qa h3 { font-size: 16px; font-weight: 800; line-height: 1.3; }
.qa p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- download ---------- */
.cta-wrap { padding-bottom: clamp(40px, 6vw, 90px); scroll-margin-top: 16px; }
.cta { border-radius: 32px; padding: clamp(28px, 5vw, 64px); background: linear-gradient(160deg, #16306B 0%, #0B1B3F 70%); border: 1px solid rgba(79, 179, 255, .3); position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(50% 80% at 85% 50%, rgba(79, 179, 255, .35), transparent 70%); pointer-events: none; }
.cta-car { position: absolute; right: -4%; bottom: -18%; width: min(420px, 60vw); height: auto; opacity: .9; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .6)); pointer-events: none; }
.cta h2 { position: relative; max-width: 560px; }
.cta p { position: relative; color: var(--muted-2); font-size: 16px; max-width: 460px; line-height: 1.55; }
.cta .stores { position: relative; }

/* ---------- footer ---------- */
.foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 24px; padding-bottom: 36px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-brand img { height: 26px; width: auto; }
.foot-brand b { font-weight: 800; color: var(--text); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; background: var(--card); border: 1px solid var(--line); color: var(--text); font-weight: 700; }
.legal { display: flex; gap: 18px; }
.legal a { color: var(--muted); }

.to-top { position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 16px; background: var(--card); border: 1px solid rgba(255, 255, 255, .12); box-shadow: 0 12px 30px rgba(0, 0, 0, .45); display: flex; align-items: center; justify-content: center; color: var(--text); z-index: 10; opacity: 0; pointer-events: none; transition: opacity .3s; }
.to-top.show { opacity: 1; pointer-events: auto; }

/* ---------- 404 ---------- */
.notfound { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; }
.notfound h1 { font-size: var(--h1); font-weight: 800; letter-spacing: -.03em; }
.notfound p { color: var(--muted); font-size: 16px; }
.notfound .plan-btn { margin-top: 6px; padding: 0 28px; }

/* ---------- tablet (< 1100px) ---------- */
@media (max-width: 1099.98px) {
  :root { --pad-x: 36px; --h1: 52px; --h2: 36px; }
}

/* ---------- phone (< 760px) ---------- */
@media (max-width: 759.98px) {
  :root { --pad-x: 20px; --h1: 42px; --h2: 28px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .hero-text { gap: 18px; align-items: center; text-align: center; }
  .hero-sub { font-size: 16px; }
  .stores-desk, .proof { display: none; }
  .hero-art { min-height: 0; padding-top: 20px; }
  .phone-stage { max-height: 360px; overflow: hidden; -webkit-mask-image: linear-gradient(#000 65%, transparent 100%); mask-image: linear-gradient(#000 65%, transparent 100%); }
  .phone { animation: none; width: 280px; }
  .hero-car, .cta-car { display: none; }
  .stores-mob { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .foot { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-text, .glow, .phone { animation: none; }
}
