/* ================================================================
   MeningVaqtim — Landing Page Styles
   Asosiy rang: Honey Amber (sariq) #E89038
   Dashboard bilan uyg'un dizayn tizimi
   ================================================================ */
:root {
  /* PRIMARY — Honey Amber (sariq) */
  --y:        #E89038;
  --y-dark:   #C47422;
  --y-deep:   #92400e;
  --y-soft:   #FEF3C7;
  --y-mist:   #FFFBF2;
  --y-50:     #FEFCE8;

  /* SECONDARY — Royal Blue */
  --bl:       #3D63E8;
  --bl-dark:  #2F50CC;
  --bl-soft:  #EEF2FE;

  /* NEUTRAL */
  --ink:      #1E293B;
  --ink-s:    #334155;
  --muted:    #64748B;
  --line:     #E9DCC8;
  --surface:  #FFFFFF;
  --bg:       #FFFBF2;

  /* DARK — warm (not cold blue) */
  --dark:     #130900;
  --dark-2:   #1E1200;
  --dark-3:   #2C1A06;

  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;

  --r:    18px;
  --r-sm: 12px;

  --sh:    0 1px 2px rgba(30,41,59,.04), 0 8px 24px -8px rgba(30,41,59,.11);
  --sh-lg: 0 20px 56px -18px rgba(30,41,59,.22);
  --sh-y:  0 8px 24px -6px rgba(232,144,56,.42);
  --sh-bl: 0 8px 24px -6px rgba(61,99,232,.38);
}

/* ── Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Utilities */
.wrap       { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 92px 0; }
.section-sm { padding: 60px 0; }

.sec-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--y-soft); color: var(--y-dark);
  font-weight: 600; font-size: 13px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
  border: 1px solid rgba(232,144,56,.2);
}
.sec-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--y); }
.sec-label.amber-tag { background: var(--y-soft); color: var(--y-dark); }
.sec-label.amber-tag .dot { background: var(--y); }
.sec-label.blue-tag  { background: var(--bl-soft); color: var(--bl-dark); }
.sec-label.blue-tag .dot { background: var(--bl); }

.sec-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sec-head h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(28px,4vw,44px);
  letter-spacing: -.025em; color: var(--ink); line-height: 1.1;
}
.sec-head p { color: var(--muted); font-size: 17px; margin-top: 14px; line-height: 1.65; }

h1,h2,h3,h4 { font-family: var(--font-d); }

/* ── Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 12px;
  font-family: var(--font-b); font-weight: 600; font-size: 15.5px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .18s; white-space: nowrap;
}
.btn-primary {
  background: var(--y); color: #fff;
  box-shadow: var(--sh-y);
}
.btn-primary:hover {
  background: var(--y-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(232,144,56,.55);
}
.btn-amber {
  background: var(--y); color: #fff;
  box-shadow: var(--sh-y);
}
.btn-amber:hover { background: var(--y-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  background: var(--y-soft); border-color: var(--y); color: var(--y-dark);
}
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.btn-lg     { padding: 16px 36px; font-size: 17px; border-radius: 14px; }
.btn-sm     { padding: 9px 18px; font-size: 14px; border-radius: 10px; }
.btn-ghost  { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--ink); background: var(--y-soft); }
.google-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Honeycomb BG — golden tones */
.hc-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .38;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FDE68A' stroke-width='1.1'%3E%3Cpath d='M28 0L56 16v34L28 66 0 50V16z'/%3E%3Cpath d='M28 66L56 82v34M28 66L0 82v34'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── NAV */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(16px);
  background: rgba(255,251,242,.9);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.lp-nav.scrolled { box-shadow: 0 4px 20px rgba(30,41,59,.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-d); font-weight: 800; font-size: 20px;
  color: var(--ink); letter-spacing: -.02em;
}
.brand-name .vaqt { color: var(--ink); }
.brand-name .im   { color: var(--y); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-weight: 500; font-size: 15px;
  transition: color .15s; padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--ink); border-bottom-color: var(--y); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media(max-width:820px) { .nav-links { display: none; } }
@media(max-width:520px) { .nav-cta .btn-ghost { display: none; } }

/* ── LANDING TIL TANLASH TUGMASI */
/* ── Lang switcher dropdown ─────────────────────────────── */
.lp-lang-switcher {
  position: relative;
}
.lp-lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--line);
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
}
.lp-lang-current:hover {
  background: var(--line);
  color: var(--ink);
  border-color: var(--muted);
}
.lp-lang-current[aria-expanded="true"] {
  background: var(--line);
  color: var(--ink);
  border-color: var(--y);
}
.lp-lang-current svg {
  transition: transform .2s;
  flex-shrink: 0;
}
.lp-lang-current[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.lp-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px;
  min-width: 130px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 200;
  flex-direction: column;
  gap: 2px;
}
.lp-lang-dropdown.open { display: flex; }
.lp-lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .12s;
  text-align: left;
  width: 100%;
}
.lp-lang-opt:hover { background: rgba(0,0,0,.06); }
.lp-lang-opt.active {
  background: rgba(232,144,56,.18);
  color: var(--y-dark);
  font-weight: 700;
}
.lp-lang-opt.active:hover { background: rgba(232,144,56,.26); }
html.dark .lp-lang-current { background: rgba(255,255,255,.08); color: #9AA3B0; border: 1.5px solid transparent; }
html.dark .lp-lang-current:hover { color: #C8C0B4; border-color: #6B7280; background: rgba(255,255,255,.08); }
html.dark .lp-lang-current[aria-expanded="true"] { color: #E89038; border-color: #E89038; background: rgba(255,255,255,.08); }
html.dark .lp-lang-dropdown { background: #1C1814; border-color: rgba(255,255,255,.1); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
html.dark .lp-lang-opt { color: #C8C0B4; }
html.dark .lp-lang-opt:hover { background: rgba(255,255,255,.07); }
html.dark .lp-lang-opt.active { background: rgba(232,144,56,.22); color: #E89038; }
html.dark .lp-lang-opt.active:hover { background: rgba(232,144,56,.32); }

/* ── HERO */
.hero {
  position: relative; overflow: hidden;
  padding: 88px 0 48px;
  background: var(--bg);
}
.hero .hc-bg {
  -webkit-mask-image: radial-gradient(ellipse at 78% 15%, #000 0%, transparent 55%);
  mask-image: radial-gradient(ellipse at 78% 15%, #000 0%, transparent 55%);
  opacity: .55;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--y-soft); color: var(--y-dark);
  font-weight: 600; font-size: 13px;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 22px;
  border: 1px solid rgba(232,144,56,.28);
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--y);
  animation: ping 1.8s infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(232,144,56,.45); }
  70%  { box-shadow: 0 0 0 8px rgba(232,144,56,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,144,56,0); }
}
.hero h1 {
  font-size: clamp(28px,4vw,46px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.025em; color: #7CB9E8; margin-bottom: 20px;
}
.hero h1 .hl {
  color: var(--y); position: relative; display: inline-block;
}
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 3px;
  height: 13px; background: var(--y-soft); z-index: -1;
  border-radius: 5px; opacity: .95;
}
.hero-lead {
  font-size: 18px; color: var(--muted);
  max-width: 490px; line-height: 1.65; margin-bottom: 30px;
}
.hero-cta   { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid var(--line);
}
.hero-stats .s strong {
  font-family: var(--font-d); font-size: 28px; font-weight: 800;
  color: var(--ink); display: block; letter-spacing: -.02em;
}
.hero-stats .s span { font-size: 13px; color: var(--muted); }
.hero-visual { position: relative; }
.hero-glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,144,56,.2), transparent 68%);
  top: -40px; right: -50px; z-index: 0; filter: blur(14px); opacity: .9;
}
.bee-stage { position: relative; z-index: 1; height: 460px; width: 100%; }
#beeCanvas { width: 100%; height: 100%; display: block; cursor: grab; }
#beeCanvas:active { cursor: grabbing; }
.bee-shadow {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 28px;
  background: radial-gradient(ellipse, rgba(232,144,56,.18), transparent 70%);
  border-radius: 50%; animation: shadowPulse 3s ease-in-out infinite;
}
@keyframes shadowPulse { 50% { transform: translateX(-50%) scale(.82); opacity: .65; } }
.float-timer {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 13px;
  padding: 11px 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,.95); border-radius: 18px;
  box-shadow: var(--sh-lg); z-index: 2; white-space: nowrap;
}
.ft-ring { flex-shrink: 0; }
.ft-clock-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--y-soft);
  border: 1.5px solid rgba(232,144,56,.3);
  display: flex; align-items: center; justify-content: center;
  align-self: center;
}
.ft-time { font-family: var(--font-d); font-weight: 800; font-size: 21px; color: var(--ink); line-height: 1; }
.ft-lbl  { font-size: 12px; color: var(--y-dark); font-weight: 600; margin-top: 3px; }
.ft-btn  {
  width: 38px; height: 38px; border-radius: 11px; border: none;
  background: var(--y); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: .18s;
}
.ft-btn:hover { background: var(--y-dark); transform: scale(1.06); }
@media(max-width:860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .bee-stage { height: 340px; }
}

/* ── WHO SECTION */
.who-section { background: var(--y-mist); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.who-card {
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px) saturate(180%);
  border-radius: 24px; border: 1px solid rgba(255,255,255,.95);
  padding: 36px; box-shadow: var(--sh-lg); text-align: center;
  position: relative; overflow: hidden;
}
.who-card .hc-bg { opacity: .5; }
.who-card > *:not(.hc-bg) { position: relative; z-index: 1; }
.who-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--y), var(--y-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 32px; font-weight: 800;
  margin: 0 auto 18px; box-shadow: var(--sh-y);
}
.who-name  { font-family: var(--font-d); font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.who-title { font-size: 14px; color: var(--muted); font-weight: 500; margin-bottom: 20px; }
.who-tags  { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.who-tag       { background: var(--y-soft); color: var(--y-dark); font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.who-tag.amber { background: var(--y-soft); color: var(--y-dark); }
.who-tag.peri  { background: var(--bl-soft); color: #4A65B8; }
.who-text h3   { font-size: 30px; font-weight: 800; line-height: 1.2; color: var(--ink); margin-bottom: 16px; letter-spacing: -.02em; }
.who-text p    { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin-bottom: 14px; }
.who-quote {
  background: var(--y-soft); border-left: 3px solid var(--y);
  border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 20px 0 0;
  font-style: italic; color: var(--ink-s); font-size: 16px;
}
@media(max-width:768px) { .who-grid { grid-template-columns: 1fr; } }

/* ── MAQSAD bento grid */
.mq-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
/* --- Muammo kartasi (katta, chap) --- */
.mq-problem {
  grid-column: 1; grid-row: 1;
  background: linear-gradient(145deg, #1a0c04 0%, #2d1508 60%, #3d1e0a 100%);
  border-radius: 24px; padding: 36px;
  color: #FBF9F1; position: relative; overflow: hidden;
}
.mq-problem::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,144,56,.18) 0%, transparent 70%);
  right: -60px; top: -60px; pointer-events: none;
}
.mq-problem-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #ef4444; margin-bottom: 20px;
}
.mq-red-dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: #ef4444;
  animation: mq-pulse-red 2s infinite;
}
@keyframes mq-pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .55; transform: scale(1.5); }
}
.mq-big-num {
  font-family: var(--font-d);
  font-size: clamp(52px, 8vw, 72px); font-weight: 800;
  color: #E89038; line-height: 1; margin-bottom: 8px; letter-spacing: -.03em;
}
.mq-big-unit {
  font-size: .28em; font-weight: 600;
  color: rgba(232,144,56,.65); vertical-align: middle; margin-left: 6px;
}
.mq-problem-h {
  font-size: 20px; font-weight: 700;
  color: #F8F4EE; margin-bottom: 12px;
}
.mq-problem-p {
  font-size: 15px; color: rgba(248,244,238,.65);
  line-height: 1.65; margin-bottom: 24px;
}
.mq-problem-p strong { color: rgba(248,244,238,.9); }
.mq-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mq-tag {
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(255,255,255,.09); color: rgba(248,244,238,.8);
  border: 1px solid rgba(255,255,255,.12);
}
/* --- Yechimlar (o'ng, 2×2) --- */
.mq-solutions {
  grid-column: 2; grid-row: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.mq-sol {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 20px; box-shadow: var(--sh); transition: transform .2s, box-shadow .2s;
}
.mq-sol:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.mq-sol-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; font-size: 19px; margin-bottom: 12px;
}
.mq-icon-amber { background: var(--y-soft); color: var(--y); }
.mq-icon-green { background: rgba(16,185,129,.12); color: #10B981; }
.mq-icon-blue  { background: var(--bl-soft); color: #3D63E8; }
.mq-icon-pink  { background: rgba(236,72,153,.10); color: #EC4899; }
.mq-sol-num   { font-family: var(--font-d); font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.mq-sol-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.mq-sol-desc  { font-size: 12px; color: var(--muted); line-height: 1.55; }
/* --- Kim uchun (pastki, to'liq kenglik) --- */
.mq-forwho {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--y-soft) 0%, #fff5e4 100%);
  border: 1px solid rgba(232,144,56,.22);
  border-radius: 24px; padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.mq-fw-left { display: flex; align-items: flex-start; gap: 18px; }
.mq-fw-flag { font-size: 36px; line-height: 1; flex-shrink: 0; }
.mq-fw-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.mq-fw-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 520px; }
.mq-fw-desc strong { color: var(--ink); }
.mq-fw-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #E89038, #D47E28);
  color: #fff; font-size: 15px; font-weight: 700;
  padding: 12px 24px; border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232,144,56,.35);
  transition: transform .2s, box-shadow .2s;
}
.mq-fw-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,144,56,.45); color: #fff;
}
/* Responsiv */
@media(max-width:900px) {
  .mq-grid { grid-template-columns: 1fr; }
  .mq-problem, .mq-solutions { grid-column: 1; grid-row: auto; }
}
@media(max-width:600px) {
  .mq-solutions { grid-template-columns: 1fr; }
  .mq-forwho { flex-direction: column; padding: 24px; }
  .mq-fw-btn { width: 100%; justify-content: center; }
}

/* ── HOW IT WORKS (yangi) */
.hw-section { background: var(--y-mist); position: relative; overflow: hidden; }
.hw-bg-deco {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,144,56,.07) 0%, transparent 70%);
}
/* 4 qadam + 3 strelka: 1fr auto 1fr auto 1fr auto 1fr */
.hw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 10px;
  margin-bottom: 28px;
}
.hw-conn {
  font-size: 20px; color: rgba(232,144,56,.4);
  align-self: center; padding-top: 40px;
}
.hw-step {
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 22px 18px 20px;
  box-shadow: var(--sh); transition: transform .2s, box-shadow .2s;
}
.hw-step:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.hw-step-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.hw-num {
  font-family: var(--font-d); font-size: 12px; font-weight: 800;
  letter-spacing: .07em; padding: 3px 9px; border-radius: 999px;
}
.hw-s1 .hw-num { background: rgba(61,99,232,.12); color: #3D63E8; }
.hw-s2 .hw-num { background: var(--y-soft); color: var(--y-dark); }
.hw-s3 .hw-num { background: rgba(16,185,129,.12); color: #10B981; }
.hw-s4 .hw-num { background: rgba(236,72,153,.10); color: #EC4899; }
.hw-time-badge { font-size: 11px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.hw-icon-wrap {
  width: 50px; height: 50px; border-radius: 15px;
  display: grid; place-items: center; font-size: 23px; margin-bottom: 14px;
}
.hw-ci-1 { background: rgba(61,99,232,.12); color: #3D63E8; }
.hw-ci-2 { background: var(--y-soft); color: var(--y-dark); }
.hw-ci-3 { background: rgba(16,185,129,.12); color: #10B981; }
.hw-ci-4 { background: rgba(236,72,153,.10); color: #EC4899; }
.hw-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.hw-desc  { font-size: 13.5px; color: var(--muted); line-height: 1.62; }
/* Perks strip */
.hw-perks {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 18px 28px; box-shadow: var(--sh);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.hw-perk {
  display: flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--ink); padding: 6px 18px;
}
.hw-perk-ic { font-size: 15px; flex-shrink: 0; }
.hw-perk-sep { width: 1px; height: 26px; background: var(--line); flex-shrink: 0; }
/* Responsive */
@media(max-width:920px) {
  .hw-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hw-conn  { display: none; }
  .hw-perk-sep { display: none; }
}
@media(max-width:560px) {
  .hw-steps { grid-template-columns: 1fr; }
  .hw-perks { padding: 14px 16px; }
  .hw-perk  { padding: 5px 8px; }
}

/* ── FEATURES BENTO (yangi) */
.fx-bento { display: flex; flex-direction: column; gap: 20px; }

/* --- Tier 1: 2 hero karta --- */
.fx-hero-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fx-hero {
  border-radius: 24px; padding: 32px;
  position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.fx-hero:hover { transform: translateY(-4px); }
/* Pomodoro — qorarang */
.fx-pomo {
  background: linear-gradient(145deg, #0f0700 0%, #1c0d00 55%, #2a1400 100%);
  border: 1px solid rgba(232,144,56,.18);
  color: #FBF9F1;
}
.fx-pomo::before {
  content: ''; position: absolute; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,144,56,.14) 0%, transparent 70%);
  right: -50px; top: -50px; pointer-events: none;
}
/* Analytics — oq */
.fx-analytics {
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh);
}
.fx-analytics:hover { box-shadow: var(--sh-lg); }

.fx-hero-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 14px; text-transform: uppercase;
}
.fx-pomo      .fx-hero-badge { background: rgba(232,144,56,.2); color: #E89038; }
.fx-badge-green               { background: rgba(16,185,129,.12); color: #10B981; }
.fx-hero h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.fx-pomo     h3 { color: #F8F4EE; }
.fx-analytics h3 { color: var(--ink); }
.fx-hero p { font-size: 14.5px; line-height: 1.65; }
.fx-pomo     p { color: rgba(248,244,238,.62); }
.fx-analytics p { color: var(--muted); }

/* Pomodoro timer mock */
.fx-pomo-mock { margin-top: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.fx-pomo-ring { position: relative; width: 120px; height: 120px; }
.fx-pomo-ring svg { position: absolute; inset: 0; }
.fx-pomo-time {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 22px; font-weight: 800; color: #E89038;
}
.fx-pomo-label {
  font-size: 11px; font-weight: 600; color: rgba(232,144,56,.5);
  text-transform: uppercase; letter-spacing: .07em; margin-top: 10px;
}

/* Analytics bar chart mock */
.fx-bars-mock { display: flex; align-items: flex-end; gap: 7px; height: 90px; margin-top: 24px; }
.fx-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.fx-bar {
  width: 100%; border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, rgba(16,185,129,.7), rgba(16,185,129,.2));
}
.fx-bar-active { background: linear-gradient(to top, #10B981, rgba(16,185,129,.4)); }
.fx-bar-lbl { font-size: 10px; font-weight: 600; color: var(--muted); }

/* --- Tier 2: 4 o'rta karta --- */
.fx-mid-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.fx-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 22px 20px; box-shadow: var(--sh);
  transition: transform .2s, box-shadow .2s;
}
.fx-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.fx-card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; font-size: 21px; margin-bottom: 13px;
}
.fxi-amber  { background: var(--y-soft); color: var(--y-dark); }
.fxi-indigo { background: rgba(99,102,241,.12); color: #6366F1; }
.fxi-pink   { background: rgba(236,72,153,.10); color: #EC4899; }
.fxi-teal   { background: rgba(20,184,166,.10); color: #14B8A6; }
.fx-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.fx-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* --- Tier 3: Pill'lar --- */
.fx-extra {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--y-mist); border: 1px solid var(--line);
  border-radius: 18px; padding: 18px 24px;
}
.fx-extra-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted); white-space: nowrap;
}
.fx-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.fx-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 14px; box-shadow: var(--sh);
  transition: transform .15s, box-shadow .15s;
}
.fx-pill:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.fx-pill i { font-size: 13px; }

/* Responsive */
@media(max-width:900px) {
  .fx-hero-row { grid-template-columns: 1fr; }
  .fx-mid-row  { grid-template-columns: 1fr 1fr; }
}
@media(max-width:560px) {
  .fx-mid-row { grid-template-columns: 1fr; }
  .fx-extra   { padding: 14px 16px; }
}

/* ── STATS (warm dark) */
.stats-section {
  background: linear-gradient(135deg, #130900 0%, #1E1200 60%, #271500 100%);
  position: relative; overflow: hidden;
}
.stats-section .hc-bg {
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FDE68A' stroke-width='1'%3E%3Cpath d='M28 0L56 16v34L28 66 0 50V16z'/%3E%3Cpath d='M28 66L56 82v34M28 66L0 82v34'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; z-index: 1; }
.stat-item  { text-align: center; padding: 32px 20px; }
.stat-num {
  font-family: var(--font-d); font-size: clamp(36px,5vw,56px); font-weight: 800;
  line-height: 1; margin-bottom: 10px;
  background: linear-gradient(135deg, var(--y), #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-num.amber-grad {
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text; background-clip: text;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,.52); font-weight: 500; }
@media(max-width:680px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ── DASHBOARD PREVIEW */
.dv-section { background: var(--y-mist); }

/* 50 / 50 split */
.dv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 28px;
}

/* Browser frame */
.dv-browser {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 28px 56px -12px rgba(30,41,59,.22), 0 0 0 1px var(--line);
  transition: transform .3s, box-shadow .3s;
}
.dv-browser:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 72px -16px rgba(30,41,59,.28), 0 0 0 1px var(--line);
}
.dv-chrome {
  background: #E8EAED; padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.dv-dots { display: flex; gap: 5px; flex-shrink: 0; }
.dv-dot  { width: 12px; height: 12px; border-radius: 50%; }
.dv-urlbar {
  flex: 1; max-width: 240px; margin: 0 auto;
  background: #fff; border-radius: 6px;
  padding: 4px 10px; font-size: 10.5px; color: #94A3B8; font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.dv-chrome-r { display: flex; gap: 6px; flex-shrink: 0; }
.dv-chrome-btn { width: 16px; height: 16px; border-radius: 3px; background: rgba(0,0,0,.08); }
.dv-screen { line-height: 0; }
.dv-screen-img { width: 100%; height: auto; display: block; }

/* Tavsif panel (o'ng) */
.dv-desc { display: flex; flex-direction: column; }
.dv-desc-h {
  font-family: var(--font-d); font-size: clamp(26px,3vw,38px); font-weight: 800;
  color: var(--ink); line-height: 1.15; margin: 0 0 14px;
}
.dv-desc-sub {
  font-size: 16px; color: var(--muted); line-height: 1.65; margin: 0 0 28px;
}
.dv-feat-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 0 0 32px; }
.dv-feat-item { display: flex; align-items: flex-start; gap: 14px; }
.dv-feat-ic {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 17px;
}
.dv-feat-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.dv-feat-item span   { font-size: 13px; color: var(--muted); line-height: 1.5; }
.dv-cta-btn {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: linear-gradient(135deg, #3D63E8, #2D53D8);
  color: #fff; font-size: 15px; font-weight: 700;
  padding: 13px 24px; border-radius: 12px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(61,99,232,.35);
  transition: transform .2s, box-shadow .2s;
}
.dv-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,99,232,.45); color: #fff; }

/* Pastki natijalar lentasi */
.dv-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(135deg, rgba(61,99,232,.06) 0%, rgba(232,144,56,.06) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 40px;
  margin-top: 12px;
}
.dv-band-item { text-align: center; }
.dv-band-num {
  font-family: var(--font-d); font-size: 36px; font-weight: 800;
  line-height: 1; margin-bottom: 6px;
}
.dv-band-num span { font-size: 22px; opacity: .7; }
.dv-band-lbl { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.dv-band-sub { font-size: 12px; color: var(--muted); }
.dv-band-sep {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--line), transparent);
  margin: 0 24px;
}

/* Responsive */
@media(max-width:900px) {
  .dv-split { grid-template-columns: 1fr; gap: 32px; }
  .dv-desc  { order: -1; }
  .dv-band  { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 24px; }
  .dv-band-sep { display: none; }
}
@media(max-width:480px) {
  .dv-band { grid-template-columns: 1fr; padding: 24px 20px; }
  .dv-band-num { font-size: 28px; }
}

/* ── REVIEWS */
.rv-section { background: var(--bg); }

/* Sarlavha */
.rv-head { text-align: center; margin-bottom: 40px; }
.rv-head h2 { margin: 10px 0 8px; }
.rv-head p  { color: var(--muted); font-size: 16px; }
.rv-rating {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(232,144,56,.1); border: 1px solid rgba(232,144,56,.25);
  border-radius: 99px; padding: 6px 16px; font-size: 13px;
  color: #C47422; font-weight: 700; margin-bottom: 12px;
}
.rv-rating i { color: #E89038; font-size: 12px; }
.rv-rating span { color: var(--muted); font-weight: 500; }

/* Featured katta sharh */
.rv-featured {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2A2420 0%, #1F1B17 100%);
  border: 1px solid rgba(232,144,56,.12); border-radius: 24px; padding: 48px 52px 40px;
  margin-bottom: 20px; box-shadow: var(--sh-lg);
}
.rv-qmark {
  position: absolute; top: -10px; left: 36px;
  font-family: Georgia, serif; font-size: 160px; font-weight: 900;
  color: rgba(232,144,56,.18); line-height: 1; pointer-events: none;
  user-select: none;
}
.rv-featured-text {
  position: relative;
  font-size: clamp(18px, 2.2vw, 22px); font-weight: 500; font-style: italic;
  color: #D4C9BC; line-height: 1.65; margin: 0 0 32px;
  max-width: 820px;
}
.rv-featured-foot { display: flex; align-items: center; gap: 14px; }
.rv-featured-info { flex: 1; }
.rv-av {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-d); font-weight: 800; font-size: 16px; color: #fff;
}
.rv-av-sm { width: 40px; height: 40px; font-size: 13px; }
.rv-name { font-weight: 700; font-size: 15px; color: #EDE8E3; }
.rv-featured .rv-role { font-size: 13px; color: #8A8078; }
.rv-stars-sm { display: flex; gap: 3px; color: #E89038; font-size: 13px; flex-shrink: 0; }

/* 3 ta kichik karta */
.rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rv-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 22px 22px 18px; box-shadow: var(--sh);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.rv-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.rv-card-top { display: flex; align-items: center; gap: 10px; }
.rv-card .rv-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.rv-card .rv-role { font-size: 12px; color: var(--muted); }
.rv-text {
  font-size: 14px; color: var(--ink-s); line-height: 1.65;
  font-style: italic; flex: 1; margin: 0;
}
.rv-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--muted);
  background: var(--y-mist); border-radius: 99px;
  padding: 4px 10px; width: fit-content;
}

/* Responsive */
@media(max-width:860px) {
  .rv-grid { grid-template-columns: 1fr 1fr; }
  .rv-featured { padding: 36px 32px 30px; }
}
@media(max-width:560px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-featured { padding: 28px 22px 24px; }
  .rv-qmark { font-size: 100px; }
}

/* ── ROADMAP */
/* ── ROADMAP (yangi) */
.rp-section { background: var(--y-mist); }

/* Live status banner */
.rp-live {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 24px; margin-bottom: 28px; box-shadow: var(--sh);
}
.rp-live-left { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.rp-live-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: rp-pulse 2s ease-in-out infinite;
}
@keyframes rp-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}
.rp-live-label { font-size: 13px; font-weight: 700; color: #16A34A; white-space: nowrap; }
.rp-live-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.rp-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  background: var(--y-mist); border: 1px solid var(--line);
  border-radius: 99px; padding: 4px 10px;
}
.rp-chip i { font-size: 11px; color: var(--y-dark); }

/* Grid */
.rp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
/* Birinchi karta (mobil) — 2 ustun kenglikda */
.rp-card-hero { grid-column: span 1; grid-row: span 2; }

/* Karta */
.rp-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 24px; box-shadow: var(--sh); display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.rp-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.rp-quarter {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
}
.rp-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; font-size: 20px; color: #fff;
}
.rp-card-hero .rp-icon { width: 56px; height: 56px; font-size: 24px; border-radius: 16px; }
.rp-title {
  font-size: 18px; font-weight: 800; color: var(--ink); margin: 0;
}
.rp-card-hero .rp-title { font-size: 22px; }
.rp-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.rp-list {
  list-style: none; display: flex; flex-direction: column; gap: 7px; flex: 1; margin: 4px 0 0;
}
.rp-list li {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--ink);
}
.rp-list li i { color: #22C55E; font-size: 13px; flex-shrink: 0; }

/* Progress bar (faqat hero card) */
.rp-progress-wrap {
  height: 6px; background: var(--y-mist); border-radius: 99px; overflow: hidden; margin-top: 6px;
}
.rp-progress-bar { height: 100%; border-radius: 99px; }
.rp-progress-lbl { font-size: 11px; color: var(--muted); font-weight: 600; }

/* Status teglari */
.rp-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; border-radius: 99px; padding: 4px 12px;
  width: fit-content; margin-top: auto;
}
.rp-soon    { background: rgba(139,92,246,.1); color: #7C3AED; }
.rp-planned { background: var(--y-mist); color: var(--muted); border: 1px solid var(--line); }

/* Responsive */
@media(max-width:860px) {
  .rp-grid { grid-template-columns: 1fr 1fr; }
  .rp-card-hero { grid-column: span 2; grid-row: span 1; }
}
@media(max-width:560px) {
  .rp-grid { grid-template-columns: 1fr; }
  .rp-card-hero { grid-column: span 1; }
  .rp-live { flex-direction: column; align-items: flex-start; }
}

/* ── FINAL CTA */
.fc-section {
  background: linear-gradient(160deg, #1C1814 0%, #221E18 50%, #1A1610 100%);
  border-top: 1px solid rgba(232,144,56,.1);
  position: relative; overflow: hidden;
}
.fc-noise { display: none; }
.fc-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}

/* Chap */
.fc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2);
  border-radius: 99px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: #4ADE80;
  margin-bottom: 24px;
}
.fc-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: rp-pulse 2s ease-in-out infinite;
}
.fc-h {
  font-family: var(--font-d); font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; color: #EDE8E3; line-height: 1.1;
  letter-spacing: -.025em; margin: 0 0 20px;
}
.fc-hl {
  background: linear-gradient(90deg, #E89038, #F59E0B);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fc-sub {
  font-size: 16px; color: #8A8078; line-height: 1.7; margin: 0 0 32px;
}
.fc-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.fc-btn-prim {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #E89038, #C47422);
  color: #fff; font-size: 15px; font-weight: 700;
  padding: 14px 26px; border-radius: 13px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,144,56,.4);
  transition: transform .2s, box-shadow .2s;
}
.fc-btn-prim:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,144,56,.5); color: #fff; }
.fc-btn-sec {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8); font-size: 15px; font-weight: 600;
  padding: 14px 22px; border-radius: 13px; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.fc-btn-sec:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.2); color: #fff; }
.fc-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: #6A6258;
}
.fc-trust i { margin-right: 4px; }

/* O'ng panel */
/* Productivity score karta */
.fc-right { display: flex; flex-direction: column; }
.fc-score-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 24px 26px; display: flex; flex-direction: column; gap: 18px;
  box-shadow: none;
}
.fc-sc-hd { display: flex; align-items: center; justify-content: space-between; }
.fc-sc-title { font-size: 13px; font-weight: 700; color: #EDE8E3; }
.fc-sc-date  { font-size: 11px; color: #8A8078; }

/* Ring + meta */
.fc-sc-top { display: flex; align-items: center; gap: 20px; }
.fc-ring-wrap { position: relative; width: 120px; height: 120px; flex-shrink: 0; }
.fc-ring-wrap svg { position: absolute; inset: 0; }
.fc-ring-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.fc-score-num {
  font-family: var(--font-d); font-size: 30px; font-weight: 800;
  color: #EDE8E3; line-height: 1;
}
.fc-score-lbl { font-size: 11px; color: #8A8078; }

.fc-sc-meta { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.fc-sc-meta-item { display: flex; align-items: center; gap: 8px; }
.fc-sc-meta-item i { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.fc-sc-meta-n { font-family: var(--font-d); font-size: 18px; font-weight: 800; color: #EDE8E3; line-height: 1; }
.fc-sc-meta-l { font-size: 11px; color: #8A8078; margin-left: 2px; }

/* Bar chart */
.fc-sc-chart-lbl { font-size: 11px; font-weight: 600; color: #8A8078; text-transform: uppercase; letter-spacing: .06em; }
.fc-sc-chart {
  display: flex; align-items: flex-end; gap: 6px; height: 64px;
}
.fc-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; height: 100%; justify-content: flex-end; }
.fc-bar { width: 100%; border-radius: 4px 4px 0 0; min-height: 4px; background: rgba(255,255,255,.1); }
.fc-bar-today { background: linear-gradient(180deg, #E89038, #F59E0B) !important; }
.fc-bar-day { font-size: 10px; color: rgba(255,255,255,.3); }
.fc-bar-day-active { color: #E89038; font-weight: 700; }

/* Badge row */
.fc-sc-badge-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 10px 14px;
}
.fc-sc-badge-ic {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg,#F59E0B,#D97706);
  display: grid; place-items: center; font-size: 14px; color: #fff;
}
.fc-sc-badge-lbl  { font-size: 10px; color: #8A8078; }
.fc-sc-badge-name { font-size: 12px; font-weight: 700; color: #EDE8E3; }
.fc-sc-prog-wrap {
  flex: 1; height: 5px; background: rgba(255,255,255,.1);
  border-radius: 99px; overflow: hidden;
}
.fc-sc-prog { height: 100%; background: linear-gradient(90deg,#E89038,#F59E0B); border-radius: 99px; }
.fc-sc-prog-pct { font-size: 11px; font-weight: 700; color: #8A8078; white-space: nowrap; }

/* Responsive */
@media(max-width:860px) {
  .fc-wrap { grid-template-columns: 1fr; gap: 36px; }
}
@media(max-width:480px) {
  .fc-btns { flex-direction: column; }
  .fc-btn-prim, .fc-btn-sec { justify-content: center; }
  .fc-trust { gap: 12px; }
}

/* ── FOOTER */
.ft {
  background: #1E1A15; border-top: 1px solid rgba(232,144,56,.12);
  padding: 56px 0 28px;
}

/* Yuqori qism */
.ft-top {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1fr;
  gap: 48px; margin-bottom: 40px; align-items: start;
}
.ft-brand-link { text-decoration: none; display: inline-flex; }
.ft-brand-link .brand-name .vaqt { color: #8A8078; }
.ft-brand-link .brand-name .im   { color: #EDE8E3; }
.ft-desc {
  font-size: 14px; color: #8A8078; line-height: 1.65;
  margin: 14px 0 14px;
}
.ft-live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2);
  border-radius: 99px; padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: #4ADE80; margin-bottom: 18px;
}
.ft-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22C55E; flex-shrink: 0;
  animation: rp-pulse 2s ease-in-out infinite;
}
.ft-socials { display: flex; gap: 8px; }
.ft-soc {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center; font-size: 15px;
  color: #8A8078; text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.ft-soc:hover { background: rgba(232,144,56,.15); border-color: rgba(232,144,56,.3); color: #E89038; }

/* Link ustunlar */
.ft-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ft-col-h {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #EDE8E3; margin-bottom: 14px;
}
.ft-col a {
  display: block; font-size: 14px; color: #8A8078;
  text-decoration: none; margin-bottom: 10px;
  transition: color .15s;
}
.ft-col a:hover { color: #E89038; }

/* Mini CTA qutisi */
.ft-cta-box {
  background: linear-gradient(135deg, rgba(232,144,56,.12), rgba(196,116,34,.08));
  border: 1px solid rgba(232,144,56,.2);
  border-radius: 18px; padding: 22px 20px;
}
.ft-cta-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: #E89038; margin-bottom: 8px;
}
.ft-cta-h {
  font-family: var(--font-d); font-size: 18px; font-weight: 800;
  color: #EDE8E3; margin-bottom: 7px;
}
.ft-cta-p { font-size: 13px; color: #8A8078; line-height: 1.5; margin-bottom: 16px; }
.ft-cta-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #E89038, #C47422);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 10px 18px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(232,144,56,.35);
  transition: transform .2s, box-shadow .2s;
}
.ft-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,144,56,.45); color: #fff; }

/* Ajratuvchi chiziq */
.ft-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.1) 20%, rgba(255,255,255,.1) 80%, transparent);
  margin-bottom: 24px;
}

/* Pastki qism */
.ft-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: #5A5248; flex-wrap: wrap; gap: 12px;
}
.ft-bottom-chips { display: flex; gap: 16px; }
.ft-bc { display: flex; align-items: center; gap: 5px; }
.ft-bc i { font-size: 12px; color: #5A5248; }
.ft-made { display: flex; align-items: center; gap: 6px; }
.ft-bee  { flex-shrink: 0; opacity: .6; }

/* Responsive */
@media(max-width:960px) {
  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-cta-box { grid-column: span 2; }
}
@media(max-width:640px) {
  .ft-top { grid-template-columns: 1fr; }
  .ft-cta-box { grid-column: span 1; }
  .ft-links { grid-template-columns: 1fr 1fr; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media(max-width:400px) {
  .ft-links { grid-template-columns: 1fr; }
}

/* ── Bootstrap Icons sizing */
.p-bi          { font-size: 22px; }
.feat-bi       { font-size: 22px; }
.feat-bi-blue  { color: var(--bl); }
.feat-bi-amber { color: var(--y-dark); }
.feat-bi-peri  { color: var(--y-deep); }
.step-bi       { font-size: 20px; color: #fff; }
.dci-bi        { font-size: 15px; }
.chk-bi        { font-size: 11px; color: #fff; }
.badge-bi      { font-size: 15px; color: #fff; }
.badge-bi-off  { font-size: 14px; color: var(--y); }
.stat-bi        { font-size: 28px; color: var(--y); display: block; margin-bottom: 10px; }
.amber-stat-bi  { color: rgba(255,255,255,.58); }
.t-stars .bi-star-fill, .t-stars .bi-star-half { color: var(--y); font-size: 15px; }
.rm-bi         { font-size: 18px; color: #fff; }
.rm-bi-muted   { font-size: 16px; color: var(--muted); }
.footer-bi     { font-size: 12px; margin-right: 5px; opacity: .7; vertical-align: -1px; }
.footer-col a:hover .footer-bi { opacity: 1; }
.social-bi     { font-size: 16px; }

/* ── Scroll animations */
.reveal       { opacity: 0; transform: translateY(20px); transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.in    { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-24px); transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal-left.in  { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(24px); transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal-right.in { opacity: 1; transform: none; }

/* ──────────────────────────────────────────────────────────────
   KUN / TUN REJIMI (Faza 122)
   ────────────────────────────────────────────────────────────── */

/* Theme toggle button — landing page versiyasi */
.theme-toggle {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1; padding: 0;
}
.theme-toggle:hover { background: var(--y-soft); border-color: var(--y); color: var(--y-dark); }
html.dark .theme-toggle       { color: #f59e0b; border-color: rgba(245,158,11,.35); }
html.dark .theme-toggle:hover { background: rgba(245,158,11,.1); border-color: #f59e0b; }

/* CSS o'zgaruvchilarini dark mode uchun qayta aniqlash */
html.dark {
  --ink:    #E6EDF3;
  --ink-s:  #C9D1D9;
  --muted:  #848D97;
  --surface: #161B22;
  --bg:     #0D1117;
  --line:   rgba(240,246,252,.10);
  --y-mist: #0D1117;
  --y-50:   rgba(232,144,56,.08);
  --y-soft: rgba(232,144,56,.16);
  --bl-soft: rgba(61,99,232,.16);
}
html.dark body { background: #0D1117; color: #E6EDF3; }

/* Nav */
html.dark .lp-nav {
  background: rgba(13,17,23,.94);
  border-bottom: 1px solid rgba(240,246,252,.10);
}
html.dark .lp-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.4); }
html.dark .nav-links a { color: #848D97; }
html.dark .nav-links a:hover { color: #E6EDF3; }

/* Hero float-timer karta */
html.dark .float-timer {
  background: rgba(22,27,34,.92);
  border-color: rgba(240,246,252,.12);
}

/* Who, Stats, Features, How, Roadmap qismlari */
html.dark .who-card {
  background: rgba(22,27,34,.88);
  border-color: rgba(240,246,252,.12);
}
html.dark .mq-sol,
html.dark .hw-step,
html.dark .hw-perks,
html.dark .fx-card,
html.dark .fx-pill,
html.dark .rv-card {
  background: #161B22;
  border-color: rgba(240,246,252,.10);
}
html.dark .rv-tag { background: rgba(255,255,255,.06); }
/* Dashboard preview dark */
html.dark .dv-proof {
  background: #161B22;
  border-color: rgba(240,246,252,.10);
  box-shadow: none;
}
html.dark .dv-proof-num { color: #E6EDF3; }
html.dark .dv-proof-lbl { color: #848D97; }
html.dark .dv-desc-h    { color: #E6EDF3; }
html.dark .dv-item strong { color: #E6EDF3; }
html.dark .dv-item span   { color: #848D97; }
html.dark .dv-browser {
  box-shadow: 0 28px 60px -14px rgba(0,0,0,.55), 0 0 0 1px rgba(240,246,252,.12);
}
html.dark .dv-chrome  { background: #1C2128; border-bottom-color: rgba(240,246,252,.08); }
html.dark .dv-urlbar  { background: #0D1117; color: #4B5563; }

/* fx-analytics dark */
html.dark .fx-analytics {
  background: #161B22;
  border-color: rgba(240,246,252,.10);
  box-shadow: none;
}
html.dark .fx-analytics h3 { color: #E6EDF3; }
html.dark .fx-analytics p  { color: #848D97; }
html.dark .fx-card h3 { color: #E6EDF3; }
html.dark .fx-card p  { color: #848D97; }
html.dark .fx-pill    { color: #E6EDF3; }
html.dark .fx-extra   { background: #0D1117; border-color: rgba(240,246,252,.08); }
html.dark .fx-bar-lbl { color: #4B5563; }
html.dark .fx-bar     { background: linear-gradient(to top, rgba(16,185,129,.55), rgba(16,185,129,.12)); }
html.dark .fx-bar-active { background: linear-gradient(to top, #10B981, rgba(16,185,129,.3)); }
html.dark .hw-title { color: #E6EDF3; }
html.dark .hw-desc  { color: #848D97; }
html.dark .hw-perk  { color: #E6EDF3; }
html.dark .hw-perk-sep { background: rgba(240,246,252,.10); }
html.dark .hw-conn { color: rgba(232,144,56,.3); }
html.dark .mq-forwho {
  background: linear-gradient(135deg, rgba(232,144,56,.10) 0%, rgba(232,144,56,.05) 100%);
  border-color: rgba(232,144,56,.20);
}
html.dark .mq-fw-title { color: #E6EDF3; }
html.dark .mq-fw-desc  { color: #848D97; }
html.dark .mq-fw-desc strong { color: #E6EDF3; }
html.dark .mq-sol-num,
html.dark .mq-sol-title { color: #E6EDF3; }
html.dark .mq-sol-desc  { color: #848D97; }
html.dark .rp-live {
  background: #161B22;
  border-color: rgba(240,246,252,.10);
}
html.dark .rp-chip {
  background: #1C2128;
  border-color: rgba(240,246,252,.10);
  color: #E6EDF3;
}
html.dark .rp-card {
  background: #161B22;
  border-color: rgba(240,246,252,.10);
}
html.dark .rp-planned {
  background: rgba(255,255,255,.06);
  border-color: rgba(240,246,252,.10);
}

/* Dark mode: ko'zga qulay issiq qoʻngʻir-kulrang tonal palette */

/* rv-featured — issiq qoʻngʻir-qoʻngʻir, qulay kontrast */
html.dark .rv-featured {
  background: linear-gradient(135deg, #2A2420 0%, #1F1B17 100%);
  border: 1px solid rgba(232,144,56,.12);
}
html.dark .rv-featured-text { color: #D4C9BC; }
html.dark .rv-qmark         { color: rgba(232,144,56,.18); }
html.dark .rv-name          { color: #EDE8E3; }
html.dark .rv-featured .rv-role { color: #8A8078; }

/* fc-section (CTA) — dark modeda issiq qo'ng'ir */
html.dark .fc-section {
  background: linear-gradient(160deg, #1C1814 0%, #221E18 50%, #1A1610 100%);
  border-top:    1px solid rgba(232,144,56,.1);
  border-bottom: 1px solid rgba(232,144,56,.07);
}
html.dark .fc-badge   { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.2); color: #4ADE80; }
html.dark .fc-h       { color: #EDE8E3; }
html.dark .fc-sub     { color: #8A8078; }
html.dark .fc-btn-sec {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.8);
}
html.dark .fc-btn-sec:hover { background: rgba(255,255,255,.13); color: #fff; }
html.dark .fc-trust   { color: #6A6258; }
html.dark .fc-bar     { background: rgba(255,255,255,.1); }
html.dark .fc-bar-day { color: rgba(255,255,255,.3); }
html.dark .fc-sc-badge-row { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }

/* Footer — eng yorqin bo'lim, aniq ajralib tursin */
html.dark .ft {
  background: #1E1A15;
  border-top: 1px solid rgba(232,144,56,.12);
}
html.dark .ft-col a       { color: #8A8078; }
html.dark .ft-col a:hover { color: #E89038; }
html.dark .ft-copy,
html.dark .ft-made,
html.dark .ft-bc          { color: #5A5248; }
html.dark .ft-cta-box {
  background: rgba(232,144,56,.07);
  border-color: rgba(232,144,56,.15);
}
html.dark .ft-sep {
  background: linear-gradient(to right, transparent, rgba(232,144,56,.15), transparent);
}

/* Stats section number color */
html.dark .stat-item { color: #E6EDF3; }

/* Ghost button dark */
html.dark .btn-ghost { color: #848D97; }
html.dark .btn-ghost:hover { color: #E6EDF3; background: rgba(240,246,252,.07); }

/* ================================================================
   RESPONSIVE — Planshet (768px) va Telefon (480px / 375px)
   ================================================================ */

/* ── Global ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section    { padding: 60px 0; }
  .section-sm { padding: 36px 0; }
  .sec-head   { margin-bottom: 36px; }
  .sec-head p { font-size: 15px; }
}
@media (max-width: 480px) {
  .section    { padding: 44px 0; }
  .section-sm { padding: 28px 0; }
  .wrap       { padding: 0 16px; }
  .sec-head   { margin-bottom: 24px; }
  .sec-head h2 { letter-spacing: -.02em; }
}

/* ── NAV — desktop only tugmalar ────────────────────────────── */
@media (max-width: 820px) {
  .nav-desktop-only { display: none !important; }
}

/* ── NAV — hamburger tugma ───────────────────────────────────── */
.nav-burger {
  display: none;
  background: none; border: 1px solid var(--line);
  border-radius: 9px; cursor: pointer;
  width: 36px; height: 36px; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-burger:hover { background: var(--y-soft); border-color: var(--y); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 820px) { .nav-burger { display: flex; } }

/* ── NAV — mobil menyu drawer ───────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: rgba(255,251,242,.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 98;
  padding: 20px 20px 32px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile > a {
  font-size: 17px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  padding: 13px 16px; border-radius: 12px;
  transition: background .15s, color .15s;
}
.nav-mobile > a:hover,
.nav-mobile > a:focus { background: var(--y-soft); color: var(--y-dark); }
.nav-mobile-divider { height: 1px; background: var(--line); margin: 12px 0; }
.nav-mobile-cta { display: flex; flex-direction: column; gap: 10px; }
.nav-mobile-cta .btn { width: 100%; justify-content: center; font-size: 16px; padding: 14px; }

html.dark .nav-mobile {
  background: rgba(19,9,0,.97);
  border-top-color: rgba(232,144,56,.12);
}
html.dark .nav-mobile > a { color: #C9D1D9; }
html.dark .nav-mobile > a:hover { background: rgba(232,144,56,.1); color: #E89038; }
html.dark .nav-mobile-divider { background: rgba(255,255,255,.08); }
html.dark .nav-burger span { background: #C9D1D9; }
html.dark .nav-burger { border-color: rgba(255,255,255,.12); }
html.dark .nav-burger:hover { background: rgba(232,144,56,.1); border-color: rgba(232,144,56,.3); }

/* ── HERO ─────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero { padding: 52px 0 36px; }
  .hero-lead { font-size: 16px; max-width: 100%; }
  .hero-stats { gap: 20px; padding-top: 22px; }
  .hero-stats .s strong { font-size: 22px; }
}
@media (max-width: 480px) {
  .hero { padding: 36px 0 28px; }
  .hero-lead { font-size: 15px; margin-bottom: 22px; }
  .hero-cta { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-cta .btn { width: 100%; justify-content: center; font-size: 15px; }
  .hero-cta .btn-lg { padding: 14px 20px; border-radius: 12px; }
  .bee-stage { height: 240px; }
  .float-timer { padding: 9px 12px; gap: 8px; border-radius: 14px; }
  .ft-time { font-size: 17px; }
  .ft-lbl  { font-size: 10px; }
  .hero-stats { gap: 16px; }
  .hero-stats .s strong { font-size: 20px; }
}

/* ── STATS ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .stat-item { padding: 22px 14px; }
}
@media (max-width: 480px) {
  .stat-item { padding: 16px 10px; }
  .stat-label { font-size: 12px; }
}

/* ── WHO ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .who-grid { gap: 32px; }
  .who-text h3 { font-size: 24px; }
  .who-text p  { font-size: 15px; }
}
@media (max-width: 480px) {
  .who-card   { padding: 24px 20px; }
  .who-avatar { width: 72px; height: 72px; font-size: 26px; }
  .who-name   { font-size: 18px; }
  .who-text h3 { font-size: 20px; }
  .who-quote  { font-size: 14px; }
}

/* ── MAQSAD ───────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .mq-problem { padding: 24px 20px; }
  .mq-problem-h { font-size: 17px; }
  .mq-problem-p { font-size: 14px; }
  .mq-sol { padding: 16px; }
  .mq-sol-title { font-size: 12px; }
  .mq-fw-flag { font-size: 28px; }
  .mq-fw-title { font-size: 16px; }
  .mq-fw-desc  { font-size: 13px; }
}

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hw-step { padding: 18px 14px; }
  .hw-title { font-size: 15px; }
  .hw-desc  { font-size: 12.5px; }
  .hw-perk  { font-size: 12.5px; padding: 5px 10px; }
}

/* ── FEATURES ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .fx-hero { padding: 24px 20px; }
  .fx-hero h3 { font-size: 20px; }
  .fx-card { padding: 18px 16px; }
  .fx-extra { padding: 14px 14px; gap: 10px; }
  .fx-pill  { font-size: 12px; padding: 5px 12px; }
}

/* ── DASHBOARD PREVIEW ────────────────────────────────────────── */
@media (max-width: 768px) {
  .dv-desc-h { font-size: clamp(22px, 5vw, 32px); }
}
@media (max-width: 480px) {
  .dv-split    { gap: 20px; }
  .dv-desc-sub { font-size: 14px; }
  .dv-feat-item strong { font-size: 13px; }
  .dv-cta-btn  { width: 100%; justify-content: center; }
  .dv-band     { padding: 20px 14px; gap: 16px; }
  .dv-band-num { font-size: 26px; }
  .dv-band-num span { font-size: 18px; }
  .dv-band-lbl { font-size: 13px; }
  .dv-band-sub { font-size: 11px; }
}

/* ── REVIEWS ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .rv-featured { padding: 24px 18px 20px; }
  .rv-featured-text { font-size: 16px; margin-bottom: 20px; }
  .rv-qmark { font-size: 80px; left: 20px; }
  .rv-card { padding: 18px 16px 14px; }
  .rv-text { font-size: 13px; }
}

/* ── ROADMAP ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .rp-card { padding: 18px 16px; }
  .rp-title { font-size: 16px; }
  .rp-card-hero .rp-title { font-size: 18px; }
  .rp-desc { font-size: 13px; }
  .rp-list li { font-size: 12px; }
  .rp-live { padding: 12px 16px; gap: 10px; }
}

/* ── FINAL CTA ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .fc-score-card { padding: 18px 14px; gap: 14px; }
  .fc-sc-top { gap: 14px; }
  .fc-ring-wrap { width: 96px; height: 96px; }
  .fc-score-num { font-size: 24px; }
  .fc-sc-meta-n { font-size: 16px; }
  .fc-trust { flex-direction: column; gap: 8px; }
}

/* ── FOOTER ───────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .ft { padding: 40px 0 20px; }
  .ft-top { gap: 28px; margin-bottom: 28px; }
  .ft-desc { font-size: 13px; }
  .ft-cta-h { font-size: 16px; }
  .ft-cta-p { font-size: 12px; }
  .ft-links { grid-template-columns: 1fr 1fr; }
  .ft-col a { font-size: 13px; }
  .ft-bottom { font-size: 12px; }
}
@media (max-width: 375px) {
  .ft-links { grid-template-columns: 1fr; }
  .ft-bottom-chips { gap: 10px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
