/* ═══════════════════════════════════════════════════════════════
   UyTop — Ko'chmas Mulk Ilovasi | style.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Variables ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:         #3B6FE8;
  --blue-light:   #7AA7FF;
  --green:        #4CAF50;
  --orange:       #FF9800;
  --purple:       #9C27B0;
  --dark:         #0D1117;
  --dark-2:       #161B27;
  --dark-3:       #1E2535;
  --glass:        rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text:         #E8EDF8;
  --muted:        #8A93A8;
  --radius:       20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
  background: rgba(59, 111, 232, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ─── Reveal Animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Keyframes ──────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50%       { opacity: 0.6; box-shadow: 0 0 16px var(--green); }
}

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

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

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(13, 17, 23, 0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1.5px;
}

.logo-icon { font-size: 24px; }

.logo-text {
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 9px 22px;
  background: var(--blue);
  color: white !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ─── Hamburger ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px;
  margin-left: auto;
  z-index: 101;
  position: relative;
  transition: background 0.2s;
}

.hamburger:hover { background: rgba(255, 255, 255, 0.1); }

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px)  rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(10, 13, 20, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 32px;
}

.mobile-menu a {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  padding: 12px 0;
  border: none;
  letter-spacing: -0.5px;
  transition: color 0.2s, transform 0.2s;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open a { opacity: 1; transform: translateY(0); }

.mobile-menu.open a:nth-child(1) { transition: color 0.2s, opacity 0.4s 0.08s, transform 0.4s 0.08s; }
.mobile-menu.open a:nth-child(2) { transition: color 0.2s, opacity 0.4s 0.16s, transform 0.4s 0.16s; }
.mobile-menu.open a:nth-child(3) { transition: color 0.2s, opacity 0.4s 0.24s, transform 0.4s 0.24s; }
.mobile-menu.open a:nth-child(4) { transition: color 0.2s, opacity 0.4s 0.32s, transform 0.4s 0.32s; }

.mobile-menu a:hover {
  color: white;
  transform: translateX(6px);
}

.mobile-menu a:last-child {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: var(--blue);
  color: white !important;
  border-radius: 50px;
  font-size: 18px;
  box-shadow: 0 8px 32px rgba(59, 111, 232, 0.45);
  transform: translateY(20px);
}

.mobile-menu.open a:last-child { transform: translateY(0); }

.mobile-menu-logo {
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* ─── Orbs ───────────────────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #3B6FE8, transparent);
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #9C27B0, transparent);
  top: 20%;
  right: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #4CAF50, transparent);
  bottom: 10%;
  left: 30%;
  animation-delay: -6s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 111, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 111, 232, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── Hero Content ───────────────────────────────────────────── */
.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--blue-light), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--blue);
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(59, 111, 232, 0.40);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 111, 232, 0.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* ─── Trust Strip ────────────────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-avatars { display: flex; }

.av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-left: -8px;
}

.av:first-child { margin-left: 0; }

.trust-text  { font-size: 13px; color: var(--muted); }
.trust-text strong { color: var(--text); }

/* ─── Phone Mockup ───────────────────────────────────────────── */
.hero-phone {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.phone-wrap {
  position: relative;
  width: 280px;
}

.phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 40px;
  background: linear-gradient(145deg, #1a2035, #0d1117);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #0d1117;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-bar-icon {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.app-bar-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #1A1A2E, #3B6FE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.map-mock {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(59, 111, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 111, 232, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: #1a2130;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pin-label {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(76, 175, 80, 0.9);
  color: white;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.pin-1 { top: 20%; left: 20%; }
.pin-2 { top: 35%; left: 55%; }
.pin-2 .pin-label { background: rgba(59, 111, 232, 0.9); }
.pin-3 { top: 60%; left: 30%; }

.pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  margin-top: 3px;
  box-shadow: 0 0 8px #4CAF50;
}

.pin-dot.blue {
  background: #3B6FE8;
  box-shadow: 0 0 8px #3B6FE8;
}

.phone-card {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
  align-items: center;
}

.card-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.card-info   { flex: 1; }
.card-price  { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; color: white; }
.card-addr   { font-size: 9px; color: var(--muted); margin-top: 1px; }

.card-chips {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.chip {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.chip.green {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border-color: rgba(76, 175, 80, 0.3);
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 8px 12px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 16px;
  opacity: 0.45;
}

.bn-item span { font-size: 8px; color: var(--muted); }
.bn-item.active { opacity: 1; }

.phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(59, 111, 232, 0.4), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* ─── Floating Cards ─────────────────────────────────────────── */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  min-width: 140px;
  animation: floatCard 4s ease-in-out infinite;
}

.fc-1 { top: 80px;    left: -70px;  animation-delay: 0s; }
.fc-2 { bottom: 120px; right: -60px; animation-delay: -2s; }

.fc-icon  { font-size: 20px; }
.fc-label { font-size: 11px; font-weight: 700; color: white; }
.fc-sub   { font-size: 9px;  color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { position: relative; }

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--glass-border);
}

.stat-number,
.stat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER (shared)
   ═══════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(59, 111, 232, 0.4);
  border-radius: 50px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: rgba(59, 111, 232, 0.08);
}

.section-tag.light {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */
.features { padding: 100px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 111, 232, 0.35);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(59, 111, 232, 0.15);
}

.card-big { grid-column: span 2; }

.feat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(var(--c, 59, 111, 232), 0.12);
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--c, var(--blue));
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Feature Visuals ────────────────────────────────────────── */
.feat-visual {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.map-visual .mini-map {
  height: 100px;
  background: #1a2130;
  background-image:
    linear-gradient(rgba(59, 111, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 111, 232, 0.05) 1px, transparent 1px);
  background-size: 15px 15px;
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.mm-pin {
  position: absolute;
  font-size: 18px;
  animation: bounce 2s ease-in-out infinite;
}

.p1 { top: 20%; left: 20%; animation-delay: 0s; }
.p2 { top: 40%; left: 55%; animation-delay: -0.7s; }
.p3 { top: 60%; left: 35%; animation-delay: -1.4s; }

.mm-roads {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 40% 33% no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 33% 40% no-repeat;
}

.profile-visual .mini-profile {
  margin-top: 20px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.mp-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.mp-stats { display: flex; gap: 20px; }

.mp-stat  { text-align: center; }
.mp-num   { display: block; font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: white; }
.mp-num.green  { color: var(--green); }
.mp-num.orange { color: var(--orange); }
.mp-lbl   { font-size: 10px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════
   SCREENS SECTION
   ═══════════════════════════════════════════════════════════════ */
.screens-section {
  padding: 100px 0;
  background: var(--dark-2);
}

.screen-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.stab {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}

.stab:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.stab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: 0 4px 20px rgba(59, 111, 232, 0.4);
}

.screens-display {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
}

/* ─── Screen Phone ───────────────────────────────────────────── */
.screen-phone {
  width: 260px;
  height: 540px;
  border-radius: 36px;
  background: #0d1117;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.screen-content {
  display: none;
  flex-direction: column;
  height: 100%;
}

.screen-content.active { display: flex; }

.sc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 44px;
  flex-shrink: 0;
}

.sc-icon          { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.sc-icon.filter-active { color: var(--blue); }

.sc-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #1A1A2E, #3B6FE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sc-map {
  flex: 1;
  position: relative;
  background: #1a2130;
  background-image:
    linear-gradient(rgba(59, 111, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 111, 232, 0.05) 1px, transparent 1px);
  background-size: 16px 16px;
  overflow: hidden;
}

.sc-map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 2px, transparent 2px) 0 0 / 60px 30% no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 2px, transparent 2px) 0 0 / 30% 60px no-repeat;
}

.sc-pin { position: absolute; }
.sc-pin.p1 { top: 25%; left: 20%; }
.sc-pin.p2 { top: 40%; left: 55%; }
.sc-pin.p3 { top: 65%; left: 25%; }
.sc-pin.p4 { top: 55%; left: 65%; }

.sc-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.sc-badge.green { background: rgba(76, 175, 80, 0.85);  color: white; }
.sc-badge.blue  { background: rgba(59, 111, 232, 0.85); color: white; }

.sc-panel {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.sc-handle {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 8px;
}

.sc-card-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

.sc-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sc-cinfo { flex: 1; }

.sc-badge-sm {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 5px;
  margin-bottom: 2px;
}

.sc-badge-sm.green {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.sc-badge-sm.blue {
  background: rgba(59, 111, 232, 0.2);
  color: #7AA7FF;
  border: 1px solid rgba(59, 111, 232, 0.3);
}

.sc-price { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 800; color: white; }
.sc-place { font-size: 8px; color: var(--muted); }

.sc-chips-row {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.sc-chip {
  font-size: 7.5px;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-btn {
  background: rgba(26, 26, 46, 0.9);
  color: white;
  text-align: center;
  padding: 7px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
}

.sc-bottomnav {
  display: flex;
  justify-content: space-around;
  padding: 6px 4px 10px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.sc-bn {
  text-align: center;
  font-size: 14px;
  opacity: 0.4;
  line-height: 1.4;
}

.sc-bn small { font-size: 7px; color: var(--muted); display: block; }
.sc-bn.active { opacity: 1; }

/* ─── List Screen ────────────────────────────────────────────── */
.sc-list {
  flex: 1;
  overflow: hidden;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-ad-card {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-ad-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sc-ad-body { flex: 1; }

/* ─── Profile Screen ─────────────────────────────────────────── */
.sc-profile-body {
  flex: 1;
  overflow: hidden;
  padding: 10px;
}

.sc-pheader {
  text-align: center;
  margin-bottom: 12px;
}

.sc-pavatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin: 0 auto 6px;
}

.sc-pname    { font-size: 12px; font-weight: 700; color: white; margin-bottom: 2px; }
.sc-pemail   { font-size: 8px; color: var(--muted); margin-bottom: 4px; }

.sc-verified {
  display: inline-block;
  font-size: 8px;
  padding: 2px 8px;
  border-radius: 50px;
  background: rgba(59, 111, 232, 0.15);
  border: 1px solid rgba(59, 111, 232, 0.3);
  color: var(--blue-light);
}

.sc-pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.sc-pcard {
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.sc-pnum        { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: white; }
.sc-pnum.blue   { color: var(--blue-light); }
.sc-pnum.green  { color: var(--green); }
.sc-pnum.orange { color: var(--orange); }
.sc-plbl        { font-size: 8px; color: var(--muted); }

.sc-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.3);
  font-size: 16px;
}

.sc-bnum {
  margin-left: auto;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--green);
}

/* ─── Filter Screen ──────────────────────────────────────────── */
.sc-filter-sheet {
  flex: 1;
  overflow: hidden;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
}

.sc-fhandle {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin: 0 auto 8px;
}

.sc-ftitle {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.sc-fsec {
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sc-frow {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.sc-ftag {
  font-size: 8px;
  padding: 3px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

.sc-ftag.active-green  { background: rgba(76,  175, 80,  0.2); border-color: rgba(76,  175, 80,  0.4); color: #4CAF50; }
.sc-ftag.active-blue   { background: rgba(59,  111, 232, 0.2); border-color: rgba(59,  111, 232, 0.4); color: var(--blue-light); }
.sc-ftag.active-purple { background: rgba(156, 39,  176, 0.2); border-color: rgba(156, 39,  176, 0.4); color: #ce93d8; }

.sc-fprices {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 9px;
  color: var(--muted);
}

.sc-fprice {
  flex: 1;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  font-weight: 700;
  color: white;
}

.sc-fapply {
  margin-top: 8px;
  background: rgba(26, 26, 46, 0.9);
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
}

/* ─── Screen Info ────────────────────────────────────────────── */
.screen-info  { max-width: 380px; }
.sinfo-content { display: none; }
.sinfo-content.active { display: block; }

.sinfo-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
}

.sinfo-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sinfo-content ul { display: flex; flex-direction: column; gap: 10px; }
.sinfo-content li { color: var(--text); font-size: 14px; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.how-section { padding: 100px 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 111, 232, 0.3);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: rgba(59, 111, 232, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.step-line {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   DOWNLOAD
   ═══════════════════════════════════════════════════════════════ */
.download-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
}

.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb-d1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 111, 232, 0.2), transparent);
  top: -200px;
  right: -100px;
  animation-delay: -1s;
}

.orb-d2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.15), transparent);
  bottom: -100px;
  left: -50px;
  animation-delay: -4s;
}

.download-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.download-text { flex: 1; }

.download-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 16px 0 18px;
}

.download-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.download-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Store Buttons ──────────────────────────────────────────── */
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.store-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.24);
}

/* Real store logos (PNG) */
.store-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.store-sub  { font-size: 10px; color: var(--muted); }
.store-name { font-size: 16px; font-weight: 700; color: white; }

/* ─── Download Phone ─────────────────────────────────────────── */
.download-phone { flex: 0 0 auto; }

.dl-phone {
  width: 220px;
  height: 420px;
  border-radius: 32px;
  background: #0d1117;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(59, 111, 232, 0.15);
  overflow: hidden;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dl-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.dl-tagline { font-size: 11px; color: var(--muted); margin-bottom: 24px; }

.dl-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dl-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  background: var(--dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-text { font-size: 13px; color: var(--muted); }
.footer-copy { font-size: 12px; color: rgba(138, 147, 168, 0.5); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 960px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links    { display: none; }
  .hamburger    { display: flex; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 60px;
    gap: 48px;
    max-width: 100%;
  }

  .hero-content        { max-width: 100%; }
  .hero-btns,
  .hero-trust          { justify-content: center; }
  .hero-phone          { order: -1; }
  .fc-1                { left: -30px; top: 60px; }
  .fc-2                { right: -20px; bottom: 100px; }

  .stats-grid          { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item::before   { display: none !important; }

  .features-grid       { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card-big            { grid-column: span 2; }

  .screens-display     { flex-direction: column; align-items: center; }
  .screen-info         { max-width: 500px; text-align: center; }
  .sinfo-content ul    { align-items: center; }

  .steps-grid          { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .step-line           { display: none; }

  .download-inner      { flex-direction: column; gap: 40px; text-align: center; }
  .download-text p     { max-width: 100%; }
  .download-btns       { justify-content: center; }
  .download-phone      { display: none; }

  .footer-inner        { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 600px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .hero {
    padding: 100px 16px 50px;
    gap: 36px;
  }

  .hero-title    { font-size: 34px; letter-spacing: -0.5px; }
  .hero-desc     { font-size: 15px; }
  .hero-btns     { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary,
  .btn-ghost     { width: 100%; justify-content: center; }
  .hero-phone,
  .float-card    { display: none; }

  .stats-section      { padding: 40px 0; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number        { font-size: 36px; }

  .features           { padding: 60px 0; }
  .section-header     { margin-bottom: 36px; }
  .features-grid      { grid-template-columns: 1fr; gap: 12px; }
  .card-big           { grid-column: span 1; }
  .section-title      { font-size: 26px; }
  .section-desc       { font-size: 14px; }

  .screens-section    { padding: 60px 0; }
  .screen-tabs        { gap: 6px; }
  .stab               { padding: 8px 14px; font-size: 12px; }
  .screens-display    { gap: 32px; }
  .screen-phone       { width: 240px; height: 480px; }
  .sinfo-content h3   { font-size: 20px; }
  .sinfo-content p    { font-size: 13px; }
  .sinfo-content li   { font-size: 13px; }

  .how-section        { padding: 60px 0; }
  .steps-grid         { gap: 14px; }
  .step-card          { padding: 24px 20px; }

  .download-section   { padding: 60px 0; }
  .download-text h2   { font-size: 28px; }
  .download-btns      { flex-direction: column; align-items: center; }
  .store-btn          { width: 100%; justify-content: center; max-width: 280px; }

  .footer             { padding: 28px 0; }
  .footer-inner       { gap: 10px; }
}
