/* ============================================================
   Tezkor Xizmat — landing
   Tokenlar docs/design/design-system.md §1 dan olingan (client light
   palitrasi + master dark palitrasi dark-scheme uchun).
   ============================================================ */

/* ── 1. Tokenlar ───────────────────────────────────────────── */
:root {
  --bg: #F2F4F8;
  --surface: #FFFFFF;
  --surface-2: #F7F9FC;
  --line: #E6E9EF;
  --line-strong: #D8DDE7;
  --ink: #15171C;
  --muted: #5B6472;
  --faint: #9AA3B2;
  --accent: #2F6BFF;
  --accent-strong: #1E4FD0;
  --accent-tint: rgba(47, 107, 255, .12);
  --on-accent: #FFFFFF;
  --amber: #FF7A00;
  --amber-tint: rgba(255, 122, 0, .14);
  --success: #0E9F6E;
  --ink-deep: #0B0D12;

  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  --e1: 0 1px 2px rgba(16, 24, 40, .06);
  --e2: 0 8px 24px rgba(16, 24, 40, .10);
  --e3: 0 24px 60px rgba(16, 24, 40, .14);

  --fast: 160ms ease-out;
  --move: 240ms cubic-bezier(.2, 0, 0, 1);

  --wrap: 1140px;
  --header-h: 68px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0B0D12;
    --surface: #14171F;
    --surface-2: #1C2029;
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .16);
    --ink: #F3F5F9;
    --muted: #A7AFBF;
    --faint: #6C7585;
    --accent: #4A80FF;
    --accent-strong: #6E9BFF;
    --accent-tint: rgba(74, 128, 255, .16);
    --amber: #FF9530;
    --amber-tint: rgba(255, 149, 48, .16);
    --success: #2FD181;
    --e1: none;
    --e2: 0 8px 24px rgba(0, 0, 0, .45);
    --e3: 0 24px 60px rgba(0, 0, 0, .55);
  }
}

/* ── 2. Reset / baza ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  /* Hero yorug'ligi ekran chetidan chiqadi — gorizontal skrol paydo bo'lmasin */
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -.02em; font-weight: 800; }
b, strong { font-weight: 800; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}
.wrap-narrow { max-width: 780px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  background: var(--surface);
  padding: 10px 16px;
  border-radius: var(--r-md);
  box-shadow: var(--e2);
}
.skip-link:focus { left: 16px; }

/* Ikon chiziqlari: har SVG da takrorlamaslik uchun bitta qoida */
.i {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ── 3. Tugmalar ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 80ms ease, background var(--fast), border-color var(--fast), color var(--fast), box-shadow var(--fast);
}
.btn:active { transform: scale(.96); }
.btn-lg { height: 52px; padding: 0 24px; font-size: 16px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px var(--accent-tint);
}
.btn-primary:hover { background: var(--accent-strong); }

.btn-amber { background: var(--amber); color: #1A1206; }
.btn-amber:hover { filter: brightness(1.06); }

.btn-outline { border-color: var(--line-strong); background: var(--surface); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); }

.btn-light { background: #fff; color: #10131A; }
.btn-light:hover { background: #E9EDF6; }

.btn-outline-light { border-color: rgba(255, 255, 255, .28); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, .1); }

/* ── 4. Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--fast), background var(--fast);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

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

.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; }
.brand-name { font-weight: 800; font-size: 17px; letter-spacing: -.02em; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav a {
  padding: 8px 12px;
  white-space: nowrap;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--fast), background var(--fast);
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a.is-active { color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 8px; flex: none; }

/* Til almashtirgich (UZ | RU) */
.lang {
  display: flex;
  gap: 2px;
  padding: 3px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--surface);
}
.lang button {
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--fast), color var(--fast);
}
.lang button:hover { color: var(--ink); }
.lang button.is-active { background: var(--accent); color: #fff; }

/* Menyu ichidagi CTA faqat mobil menyuda (JS qo'shadi) */
.nav-mobile-cta { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  place-items: center;
  align-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--fast), opacity var(--fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Ru yorliqlari ~30% uzun: joy torayganda ikkilamchi CTA olinadi */
@media (max-width: 1180px) {
  .header-inner { gap: 14px; }
  .nav a { padding: 8px 9px; font-size: 14.5px; }
  .header-cta .btn-ghost { display: none; }
}

/* ── 5. Hero ───────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 64px 0 24px; }

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(48% 55% at 18% 18%, var(--accent-tint), transparent 70%),
    radial-gradient(40% 50% at 82% 8%, var(--amber-tint), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--e1);
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 18%, transparent);
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(34px, 5.2vw, 58px);
  letter-spacing: -.035em;
}
.grad {
  background: linear-gradient(100deg, var(--accent), #6E56CF 55%, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin-top: 18px;
  max-width: 54ch;
  font-size: 17px;
  color: var(--muted);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points .i { width: 17px; height: 17px; color: var(--success); stroke-width: 2.4; }

/* ── 5.1 Telefon maketi ────────────────────────────────────── */
.hero-visual { display: grid; place-items: center; }

.phone {
  width: min(320px, 100%);
  aspect-ratio: 320 / 660;
  padding: 10px;
  border-radius: 46px;
  background: linear-gradient(180deg, #2A2F3B, #10131A);
  box-shadow: var(--e3), inset 0 0 0 1px rgba(255, 255, 255, .08);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-screen {
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #EDF0F5;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
}
.phone-screen::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  border-radius: var(--r-full);
  background: #10131A;
  z-index: 3;
}

.map { position: relative; overflow: hidden; }
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-bg { fill: #E7EBF2; }
.road { stroke: #FFFFFF; stroke-width: 6; fill: none; }
.road-w { stroke-width: 13; }
.block { fill: #DCE2EC; }
.route {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: dash 1.6s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -44; } }

.pin-dest { position: absolute; left: 63%; top: 36%; }
.pin {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(16, 24, 40, .35);
}
.radar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .35;
  animation: radar 2.4s ease-out infinite;
}
@keyframes radar {
  0% { transform: scale(1); opacity: .35; }
  100% { transform: scale(5); opacity: 0; }
}

.puck {
  position: absolute;
  left: 20%;
  top: 80%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #10131A;
  color: #FFC24D;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(16, 24, 40, .35);
  animation: drive 7s ease-in-out infinite;
}
.puck svg { width: 15px; height: 15px; }
@keyframes drive {
  0%   { left: 20%; top: 80%; transform: rotate(18deg); }
  55%  { left: 52%; top: 55%; transform: rotate(6deg); }
  100% { left: 63%; top: 40%; transform: rotate(-4deg); }
}

.chip-live {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .92);
  color: #15171C;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--e1);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0E9F6E;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; } }

.sheet {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 10px 16px 22px;
  color: #15171C;
  box-shadow: 0 -8px 24px rgba(16, 24, 40, .12);
}
.sheet-grip {
  width: 38px;
  height: 4px;
  border-radius: var(--r-full);
  background: #DCE2EC;
  margin: 0 auto 12px;
}
.sheet-row { display: flex; align-items: center; justify-content: space-between; }
.pill {
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 800;
}
.pill-accent { background: rgba(47, 107, 255, .12); color: #2F6BFF; }
.eta { font-size: 12px; font-weight: 700; color: #5B6472; }

.master-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.avatar {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #4F46E5);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.master-meta { flex: 1; min-width: 0; line-height: 1.3; }
.master-meta strong { display: block; font-size: 14px; }
.master-meta span { font-size: 11px; color: #5B6472; font-weight: 600; }
.round-btn {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #F2F4F8;
  color: #5B6472;
}
.round-btn .i { width: 15px; height: 15px; }
.round-btn-accent { background: rgba(47, 107, 255, .12); color: #2F6BFF; }

.invoice {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #E6E9EF;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.invoice div { display: flex; justify-content: space-between; padding: 3px 0; color: #5B6472; font-weight: 600; }
.invoice b { color: #15171C; font-weight: 700; }
.invoice .total { margin-top: 6px; padding-top: 8px; border-top: 1px dashed #E6E9EF; font-size: 13px; }
.invoice .total b { font-weight: 800; }

/* ── 5.2 Statistik chiziq ──────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--line);
  overflow: hidden;
  box-shadow: var(--e1);
}
.stat-strip li {
  background: var(--surface);
  padding: 22px 20px;
  text-align: center;
}
.stat-strip b {
  display: block;
  font-size: 26px;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.stat-strip span { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ── 6. Seksiya karkasi ────────────────────────────────────── */
.section { padding: 88px 0; }
.section-alt {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.section-head { max-width: 680px; margin-bottom: 44px; }
.kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-sub { margin-top: 14px; font-size: 16px; color: var(--muted); }

/* ── 7. Qadamlar ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--e1);
  transition: transform var(--move), box-shadow var(--move), border-color var(--move);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--e2); border-color: var(--line-strong); }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; }
.step p { margin-top: 10px; font-size: 14px; color: var(--muted); }

/* ── 8. Kategoriyalar ──────────────────────────────────────── */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--e1);
  transition: transform var(--move), border-color var(--move), box-shadow var(--move);
}
.cat:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--e2); }
.cat-ic {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-lg);
  font-size: 21px;
  line-height: 1;
}
.cat-txt { min-width: 0; line-height: 1.35; }
.cat-txt strong { display: block; font-size: 15px; font-weight: 700; }
.cat-txt span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ── 9. Imkoniyatlar ───────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--e1);
  transition: transform var(--move), box-shadow var(--move), border-color var(--move);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--e2); border-color: var(--line-strong); }
.feature-ic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-tint);
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-ic .i { width: 22px; height: 22px; }
.feature h3 { font-size: 17px; }
.feature p { margin-top: 10px; font-size: 14px; color: var(--muted); }

/* ── 10. Ikki auditoriya ───────────────────────────────────── */
.audience { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.aud {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--e1);
}
.aud-client {
  background:
    radial-gradient(120% 80% at 0% 0%, var(--accent-tint), transparent 60%),
    var(--surface);
}
.aud-master {
  background: linear-gradient(160deg, #1A1F2B, #0F1218);
  border-color: rgba(255, 255, 255, .1);
  color: #F3F5F9;
}
.aud-master .aud-list li { color: #B9C1CF; }
.aud-master .aud-head p { color: #A7AFBF; }
.aud-master .btn-ghost { color: #B9C1CF; }
.aud-master .btn-ghost:hover { background: rgba(255, 255, 255, .08); color: #fff; }

.aud-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.aud-master .aud-tag { background: var(--amber-tint); color: #FFB367; }
.aud-head h3 { margin-top: 14px; font-size: 24px; }
.aud-head p { margin-top: 8px; color: var(--muted); font-size: 15px; }

.aud-list { margin: 22px 0 26px; display: grid; gap: 11px; }
.aud-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}
.aud-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 14px;
  height: 7px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg) translateY(-1px);
  border-radius: 1px;
}
.aud-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }

/* ── 11. Ilovalar / do'kon tugmalari ───────────────────────── */
.apps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.app-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--e1);
}
.app-head { display: flex; align-items: center; gap: 14px; }
.app-mark { width: 52px; height: 52px; border-radius: 15px; flex: none; box-shadow: var(--e1); }
.app-mark-dark { filter: saturate(.25) brightness(.55); }
.app-head h3 { font-size: 19px; }
.app-head p { font-size: 14px; color: var(--muted); margin-top: 4px; }

.store-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0 16px; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: transform 80ms ease, border-color var(--fast), box-shadow var(--fast);
}
.store-btn:not(.is-soon):hover {
  border-color: var(--ink);
  box-shadow: var(--e2);
  transform: translateY(-2px);
}
.store-btn svg { width: 24px; height: 24px; flex: none; fill: currentColor; }
.store-txt { min-width: 0; }
.store-txt span { display: block; font-size: 10.5px; font-weight: 700; color: var(--muted); line-height: 1.2; }
.store-txt b {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.25;
  white-space: nowrap;
}

/* Do'konda hali yo'q: tugma bosilmaydi, holat yuqori qatorda amber bilan */
.store-btn.is-soon {
  cursor: default;
  border-style: dashed;
  background: transparent;
}
.store-btn.is-soon svg,
.store-btn.is-soon .store-txt b { opacity: .55; }
.store-btn.is-soon .store-txt span {
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}

.apk-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
}
.apk-link:hover { color: var(--accent); }
.apk-link .i { width: 17px; height: 17px; }

.app-web {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--accent);
}
.app-web .i { width: 18px; height: 18px; transition: transform var(--fast); }
.app-web:hover .i { transform: translateX(4px); }
.app-card-master .app-web { color: var(--amber); }

.app-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

/* ── 12. FAQ ───────────────────────────────────────────────── */
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--fast);
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 54px 18px 20px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after,
.faq summary::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--muted);
  transition: transform var(--fast);
}
.faq summary::before { transform: rotate(90deg); }
.faq details[open] summary::before { transform: rotate(0); }
.faq details[open] summary::after { opacity: 0; }
.faq p { padding: 0 20px 20px; font-size: 15px; color: var(--muted); }

/* ── 13. CTA ───────────────────────────────────────────────── */
.cta { padding: 20px 0 88px; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 44px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(80% 120% at 8% 0%, rgba(47, 107, 255, .55), transparent 62%),
    radial-gradient(70% 120% at 95% 100%, rgba(255, 122, 0, .38), transparent 60%),
    #10131A;
  box-shadow: var(--e2);
}
.cta h2 { font-size: clamp(24px, 3vw, 34px); }
.cta p { margin-top: 10px; color: rgba(255, 255, 255, .75); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── 14. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer-brand p { margin-top: 16px; font-size: 14px; color: var(--muted); max-width: 42ch; }
/* Ijtimoiy tarmoqlar — footer brend ustunida */
.socials { margin-top: 24px; }
.socials h4 {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 16px 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: transform 80ms ease, color var(--fast), border-color var(--fast), background var(--fast);
}
.social svg { width: 20px; height: 20px; fill: currentColor; flex: none; }
.social:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-tint);
}
.social:active { transform: scale(.96); }

.footer-col,
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}
.footer-col a { font-size: 14.5px; font-weight: 600; color: var(--muted); }
.footer-col a:hover { color: var(--accent); }
.footer-contact { display: inline-flex; align-items: center; gap: 9px; }
.footer-contact .i { width: 17px; height: 17px; color: var(--faint); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--faint);
  font-weight: 600;
}
.footer-domain { letter-spacing: .02em; }

/* ── 15. Reveal animatsiyasi ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease-out, transform 520ms cubic-bezier(.2, 0, 0, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ── 16. Responsiv ─────────────────────────────────────────── */
/* ≤1024: ustunlar ikkitaga tushadi va header gamburger menyuga o'tadi
   (ru yorliqlari bilan gorizontal nav shu kenglikdan pastda sig'maydi) */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 640px; }
  .steps, .cats { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .header-inner { gap: 10px; }
  .header-cta { display: none; }
  /* .nav mobil'da absolyut — o'ng chetga til va menyu tugmasi qoladi */
  .lang { margin-left: auto; }
  .nav-toggle { display: grid; }
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 12px 20px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--e2);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px; font-size: 16px; }
  .nav .nav-mobile-cta { display: inline-flex; margin-top: 10px; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 40px; }
  /* Uch ustun tor ekranda ham qoladi — matnlar kalta, ikki qatorga o'raladi */
  .stat-strip { margin-top: 48px; }
  .stat-strip li { padding: 18px 10px; }
  .stat-strip b { font-size: 22px; }
  .stat-strip span { font-size: 12px; }
  .audience, .apps { grid-template-columns: 1fr; }
  .cta-inner { padding: 32px 24px; }
  .aud { padding: 26px 22px; }
}

@media (max-width: 560px) {
  .steps, .cats, .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .store-row { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .phone { width: min(280px, 86vw); }
}

/* ── 17. Harakatni kamaytirish ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
