/* ═══════════════════════════════════════════════════════
   Bonix / jobai.az  —  Ana səhifə + Auth stilləri
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Soft10-a yaxın daha modern tipografiya */
  --font-base: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --fw-heading: 700;
  --fw-body: 400;
  --fw-emphasis: 700;
  --primary:      #1F6F8B;
  --primary-dark: #195B72;
  --secondary:    #1F6F8B;
  --pink:         #1F6F8B;
  --bg:           #F7F8FC;
  --white:        #FFFFFF;
  --text:         #0F172A;
  --muted:        #64748B;
  --ghost:        #94A3B8;
  --border:       #E2E8F0;
  --success:      #10B981;
  --error:        #EF4444;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 4px 24px rgba(31,111,139,.10);
  --shadow-lg:    0 12px 48px rgba(31,111,139,.18);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-base);
  background: #fff;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-feature-settings: "lnum" 1, "tnum" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Rəqəmlər eyni əsas şriftdə; cədvəl üçün sabit en */
:where(.hero-stat-num, .stat-num, .ss-val, .app-balance-val, .app-card-val, .ms-val, .fc-value) {
  font-variant-numeric: lining-nums tabular-nums;
}

/* ── Utilities ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.flex      { display: flex; }
.flex-col  { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  font-size: 15px; font-weight: 500;
  transition: all .2s;
}
.btn-primary {
  background: var(--primary); color: #fff;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(31,111,139,.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(31,111,139,.4); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff; color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: transform .28s ease, opacity .28s ease, background-color .28s ease, box-shadow .28s ease;
}
.navbar.nav-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}
.navbar.scrolled {
  background: rgba(248,249,252,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(15,23,42,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 14px 40px rgba(31,111,139,.12);
}
.nav-logo {
  display: inline-flex; align-items: center;
  margin-left: -27px;
}
.nav-logo-mark {
  height: 52px;
  min-width: 228px;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img {
  width: 202px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-wordmark {
  display: block;
  height: auto;
  object-fit: contain;
}
.brand-wordmark--nav { width: 114px; }
.brand-wordmark--auth { width: 110px; }
.brand-wordmark--footer { width: 120px; }
.brand-wordmark--crumb { width: 78px; }
.brand-wordmark--hero { width: 150px; }
.nav-links {
  display: flex; align-items: center; gap: 10px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all .2s;
}
.nav-links a:hover {
  color: var(--primary);
  background: rgba(31,111,139,.08);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn {
  min-height: 42px;
  border-width: 1.5px;
  padding-inline: 18px;
  font-weight: 600;
}
.nav-actions .btn-outline {
  background: rgba(255,255,255,.8);
}
.nav-actions .btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.nav-actions .btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: #fff;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
  pointer-events: none;
  display: none;
}
.hero-bg-blob-1 { width: 600px; height: 600px; background: rgba(31,111,139,.12); top: -200px; right: -150px; }
.hero-bg-blob-2 { width: 400px; height: 400px; background: rgba(236,72,153,.10); bottom: -100px; left: -100px; }
.hero-bg-blob-3 { width: 300px; height: 300px; background: rgba(124,58,237,.08); top: 30%; left: 30%; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31,111,139,.1); color: var(--primary);
  border: 1px solid rgba(31,111,139,.2);
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

.hero-title {
  font-size: clamp(38px, 5.2vw, 58px);
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 800 !important; line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 20px;
}
.hero-title .highlight {
  display: inline-block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  color: inherit;
}
.hero-title .highlight .brand-wordmark {
  display: block;
  width: 170px;
}
.hero-desc {
  font-size: 17px; color: var(--muted); max-width: 480px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btns .btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 0;
}
.hero-stat-num { font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.25; }
.hero-stat-lbl { font-size: 13px; color: var(--muted); margin-top: 6px; max-width: 210px; line-height: 1.5; }
.hero-stat-num i {
  color: var(--primary);
  font-size: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ── Phone mockup ───────────────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-wrap {
  position: relative; z-index: 2;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.phone-frame {
  width: 280px; height: 560px;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
}
.phone-frame--hero-device {
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-device-img {
  width: 280px;
  height: 560px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  border-radius: 36px;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,.28)) drop-shadow(0 0 0 1px rgba(255,255,255,.06));
}
.phone-notch {
  width: 80px; height: 24px;
  background: #0a0a1a; border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
}
.phone-notch-dot { width: 8px; height: 8px; background: #333; border-radius: 50%; }
.phone-screen {
  background: #F1F5F9; border-radius: 32px;
  height: calc(100% - 36px); overflow: hidden;
}

/* App screen content */
.app-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 16px 14px 20px;
  color: #fff;
}
.app-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.app-store-name { font-size: 11px; font-weight: 700; opacity: .8; }
.app-notif-btn { width: 26px; height: 26px; background: rgba(255,255,255,.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.app-balance-lbl { font-size: 9px; opacity: .7; }
.app-balance-val { font-size: 22px; font-weight: 400; }
.app-balance-sub { font-size: 8px; opacity: .6; margin-top: 2px; }

.app-body { padding: 10px 12px; display: flex; flex-direction: column; gap: 8px; }
.app-card-mini {
  background: #fff; border-radius: 12px;
  padding: 10px 12px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.app-card-row { display: flex; justify-content: space-between; align-items: center; }
.app-card-title { font-size: 8px; font-weight: 600; color: #64748B; }
.app-card-val { font-size: 13px; font-weight: 400; color: #0F172A; }
.app-card-sub { font-size: 7px; color: #94A3B8; margin-top: 1px; }
.app-progress { height: 4px; background: #EEF2FF; border-radius: 2px; margin-top: 6px; }
.app-progress-fill { height: 100%; background: linear-gradient(90deg,var(--primary),var(--primary-dark)); border-radius: 2px; }
.app-tx { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid #F1F5F9; }
.app-tx-icon { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.app-tx-name { font-size: 8px; font-weight: 600; color: #0F172A; }
.app-tx-date { font-size: 6.5px; color: #94A3B8; }
.app-tx-amt  { font-size: 9px; font-weight: 400; margin-left: auto; }

/* Floating cards around phone */
.float-card {
  position: absolute; background: #fff;
  border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  white-space: nowrap; z-index: 3;
  animation: float-card 6s ease-in-out infinite;
}
.float-card-1 { left: -90px; top: 20%; animation-delay: 0s; }
.float-card-2 { right: -90px; top: 45%; animation-delay: 2s; }
.float-card-3 { left: -60px; bottom: 20%; animation-delay: 4s; }
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-label { font-size: 9px; color: #94A3B8; font-weight: 500; }
.fc-value { font-size: 14px; font-weight: 400; color: #0F172A; }
.fc-badge { display: inline-flex; align-items: center; gap: 4px; background: #D1FAE5; color: #059669; font-size: 8px; font-weight: 700; padding: 2px 6px; border-radius: 20px; margin-top: 4px; }
.fc-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }

/* ══════════════════════════════════════════════════════════════
   APP SHOWCASE (gradient bg)
══════════════════════════════════════════════════════════════ */
.app-showcase {
  background: #fff;
  padding: 92px 0;
  position: relative; overflow: hidden;
}
.app-showcase::before {
  content: ''; position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
.showcase-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.showcase-phone {
  display: flex; justify-content: center;
  position: relative;
  overflow: visible;
}
.showcase-device-shell {
  width: min(92%, 360px);
  min-height: 560px;
  border-radius: 32px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.showcase-device-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  border-radius: 22px;
  filter: drop-shadow(0 20px 36px rgba(5, 22, 30, .36));
}
.showcase-content {
  color: var(--text);
  max-width: 620px;
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31,111,139,.10);
  border: 1px solid rgba(31,111,139,.18);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}
.showcase-content h2 { font-size: clamp(33px, 4vw, 48px); font-weight: 900 !important; line-height: 1.18; margin-bottom: 14px; letter-spacing: -.015em; }
.showcase-content p  { color: #475569; opacity: 1; font-size: 18px; line-height: 1.7; margin-bottom: 30px; max-width: 620px; }
.showcase-features { display: grid; grid-template-columns: 1fr; gap: 14px; }
.showcase-feature {
  display: flex; align-items: center; gap: 12px;
  background: #ffffff;
  border: 1px solid #dce7f0;
  border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(31,111,139,.08);
  transition: transform .2s ease, background .2s ease;
}
.showcase-feature:hover {
  transform: translateY(-2px);
  background: #f7fbff;
}
.sf-icon { width: 38px; height: 38px; border-radius: 11px; background: rgba(31,111,139,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--primary); }
.sf-text { font-size: 16px; font-weight: 700; color: #0f172a; }
.sf-sub  { font-size: 13px; color: #64748b; opacity: 1; margin-top: 2px; }

.showcase-float {
  position: absolute;
  min-width: 188px;
  background: rgba(255,255,255,.95);
  border: 1px solid #d5e3ee;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 16px 30px rgba(31,111,139,.16);
  animation: showcaseFloat 4s ease-in-out infinite;
  z-index: 4;
}
.showcase-float-left { left: -10px; top: 12%; animation-delay: 0s; }
.showcase-float-right { right: -18px; top: 38%; animation-delay: 1.1s; }
.showcase-float-bottom { left: 18px; bottom: 7%; animation-delay: .7s; min-width: 176px; }
.sf-float-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #065f46;
}
.sf-float-top i { color: #22C55E; }
.sf-float-top--danger { color: #991b1b; }
.sf-float-top--danger i { color: #EF4444; }
.sf-float-top--neutral { color: #0f172a; }
.sf-float-top--neutral i { color: #1F6F8B; }
.sf-float-value {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}
@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════════════════════
   TRUSTED BY
══════════════════════════════════════════════════════════════ */
.trusted { padding: 60px 0; background: #fff; }
.trusted-title { text-align: center; font-size: 14px; font-weight: 600; color: var(--ghost); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 32px; }
.trusted-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trusted-logo {
  font-size: 18px; font-weight: 800; color: #CBD5E1;
  opacity: .7; transition: opacity .2s;
  display: flex; align-items: center; gap: 8px;
}
.trusted-logo:hover { opacity: 1; color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(31,111,139,.08); color: var(--primary);
  padding: 4px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 800 !important;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title .accent { color: var(--primary); }
.section-desc { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }

.steps-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 60px;
}
.step-card {
  background: #F8F9FC; border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
  transition: all .3s; position: relative; overflow: hidden;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(31,111,139,.2); }
.step-num {
  font-size: 48px; font-weight: 400;
  color: rgba(31,111,139,.08); position: absolute;
  top: 16px; right: 24px; line-height: 1;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 24px;
}
.step-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-desc  { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── Step card with visual ──────────────────────────────────── */
.step-visual {
  margin-top: 20px;
  background: #fff; border-radius: 12px; padding: 14px;
  border: 1px solid var(--border);
}
.mini-stat-row { display: flex; gap: 10px; }
.mini-stat {
  flex: 1; background: #F8F9FC; border-radius: 10px; padding: 10px;
}
.ms-lbl { font-size: 9px; color: var(--ghost); font-weight: 600; }
.ms-val { font-size: 16px; font-weight: 400; color: var(--text); margin-top: 2px; }
.mini-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 6px; }
.mini-bar-fill { height: 100%; background: var(--primary); border-radius: 2px; }

/* ══════════════════════════════════════════════════════════════
   KEY FEATURES
══════════════════════════════════════════════════════════════ */
.features-section { background: #fff; }
.features-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.features-gallery-img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--border); transition: all .2s;
  cursor: default;
}
.feature-item:hover, .feature-item.active {
  background: rgba(31,111,139,.04);
  border-color: rgba(31,111,139,.25);
  box-shadow: var(--shadow);
}
.fi-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(31,111,139,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.fi-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fi-desc  { font-size: 14px; color: var(--muted); line-height: 1.5; }

.features-phone { display: flex; justify-content: center; position: sticky; top: 100px; }

/* ══════════════════════════════════════════════════════════════
   STATS BANNER
══════════════════════════════════════════════════════════════ */
.stats-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 70px 0;
}
.app-download-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
}
.app-download-copy {
  max-width: 620px;
}
.app-download-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 10px;
}
.app-download-title {
  font-size: clamp(30px, 3.7vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: 12px;
}
.app-download-desc {
  font-size: 16px;
  line-height: 1.7;
  opacity: .93;
}
.app-download-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.store-btn {
  min-width: 188px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.14);
  color: #fff;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.store-btn i {
  font-size: 24px;
}
.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.store-btn small {
  font-size: 11px;
  opacity: .8;
}
.store-btn strong {
  font-size: 18px;
  font-weight: 700;
}
.store-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}
.store-btn:hover small,
.store-btn:hover strong,
.store-btn:hover i {
  color: var(--primary);
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
  transition: all .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tc-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.tc-text { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #fff;
  flex-shrink: 0;
}
.tc-name { font-size: 14px; font-weight: 700; color: var(--text); }
.tc-store { font-size: 12px; color: var(--ghost); }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
.cta-section { padding: 100px 0; background: #F8F9FC; }
.cta-section { background: #fff; }
.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 28px; padding: 70px;
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: rgba(255,255,255,.06); border-radius: 50%;
  top: -150px; right: -100px;
}
.cta-card::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: rgba(255,255,255,.04); border-radius: 50%;
  bottom: -100px; left: -80px;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-title { font-size: 40px; font-weight: 800 !important; letter-spacing: -.015em; font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif; margin-bottom: 16px; }
.cta-desc  { font-size: 17px; opacity: .85; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-login-btn {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.cta-login-btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}
.cta-btns .btn-white:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: rgba(255,255,255,.78);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 0;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 36px; height: 36px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.footer-logo-img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.footer-brand-img {
  width: min(170px, 100%);
  height: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  display: block;
}
.footer-logo-text { font-size: 20px; font-weight: 800; color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.78); font-size: 15px;
  transition: all .2s;
}
.social-btn i { font-size: 15px; line-height: 1; }
.social-btn:hover { background: var(--primary); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   AUTH PAGES (login / register)
══════════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
}
.auth-left {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px; position: relative; overflow: hidden;
}
.auth-left-content {
  color: #fff;
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-top: 14px;
}
.auth-left-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 42px;
}
.auth-left-brand--left {
  justify-content: flex-start;
}
.auth-left-brand-img {
  width: min(190px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
}
.auth-left h2 { font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.auth-left-title {
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.015em;
}
.auth-left p  { font-size: 16px; opacity: .85; line-height: 1.7; margin-bottom: 40px; }
.auth-left-blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  pointer-events: none;
}
.alb-1 { width: 300px; height: 300px; background: rgba(255,255,255,.1); top: -100px; right: -80px; }
.alb-2 { width: 200px; height: 200px; background: rgba(236,72,153,.2); bottom: -60px; left: -60px; }

.auth-feature-list { display: flex; flex-direction: column; gap: 14px; }
.auth-feature {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.12); border-radius: 12px;
  padding: 12px 16px; border: 1px solid rgba(255,255,255,.15);
}
.af-icon { font-size: 20px; }
.af-text { font-size: 14px; font-weight: 600; }

.auth-right {
  display: flex; align-items: center; justify-content: center;
  padding: 60px; background: #fff;
}
.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-form-header { margin-bottom: 32px; text-align: center; }
.auth-form-header h1 {
  font-size: 30px;
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 800 !important;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 8px;
}
.auth-form-header p  { font-size: 16px; color: var(--muted); }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px; color: var(--text);
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #F8F9FC;
  transition: all .2s; outline: none;
}
.form-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(31,111,139,.1); }
.form-input.error { border-color: var(--error); }
.form-input-wrap { position: relative; }
.form-input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ghost); font-size: 16px; }
.form-input-wrap .form-input { padding-left: 42px; }
.form-input-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; color: var(--ghost); font-size: 15px; cursor: pointer; padding: 6px;
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border-radius: 8px;
}
.form-input-toggle:hover { color: var(--muted); background: rgba(0,0,0,.04); }
.form-select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--text);
  background: #F8F9FC; cursor: pointer; outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-select:focus { border-color: var(--primary); background-color: #fff; box-shadow: 0 0 0 3px rgba(31,111,139,.1); }

.phone-input-wrap { display: flex; }
.phone-prefix {
  padding: 13px 14px; background: #F1F5F9;
  border: 1.5px solid var(--border); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 15px; color: var(--muted); font-weight: 600;
  white-space: nowrap;
}
.phone-input-wrap .form-input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.form-error { font-size: 12px; color: var(--error); margin-top: 5px; display: none; }
.form-error.show { display: block; }

.alert {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 20px; display: none;
}
.alert.show { display: block; }
.alert-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }

.btn-full { width: 100%; justify-content: center; }
.auth-link { text-align: center; font-size: 14px; color: var(--muted); margin-top: 20px; }
.auth-link a { color: var(--primary); font-weight: 600; }
.auth-link a:hover { text-decoration: underline; }

.auth-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 40px;
}
.auth-logo--center {
  justify-content: center;
  margin-bottom: 26px;
}
.auth-logo-main {
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
}
.auth-logo-icon { width: 36px; height: 36px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.auth-logo-img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.auth-logo-text { font-size: 20px; font-weight: 800; color: var(--primary); }

/* Category grid */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 4px;
}
.cat-btn {
  padding: 10px 6px; border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #F8F9FC; text-align: center;
  font-size: 12px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.cat-btn:hover, .cat-btn.active {
  border-color: var(--primary); background: rgba(31,111,139,.06); color: var(--primary);
}
.cat-icon { font-size: 18px; display: block; margin-bottom: 4px; }

.cat-select { position: relative; }
.cat-select-trigger {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #F8F9FC;
  color: var(--text);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.cat-select-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cat-select-left i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}
.cat-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(15,23,42,.12);
  padding: 8px;
  display: none;
  z-index: 20;
  max-height: 240px;
  overflow-y: auto;
}
.cat-select-menu.open { display: block; }
.cat-option {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  text-align: left;
}
.cat-option i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}
.cat-option:hover,
.cat-option.active {
  background: rgba(31,111,139,.08);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner, .showcase-inner, .features-grid { grid-template-columns: 1fr; }
  .features-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual {
    display: flex;
    margin-top: 18px;
  }
  .phone-wrap {
    width: 100%;
    animation: none;
    display: flex;
    justify-content: center;
  }
  .hero-device-img {
    width: min(100%, 280px);
    height: auto;
  }
  .float-card { display: none; }
  .showcase-phone { margin-bottom: 18px; }
  .showcase-device-shell { min-height: 500px; max-width: 340px; margin-inline: auto; }
  .showcase-float-left { left: 10px; top: 8%; }
  .showcase-float-right { right: 8px; top: 33%; }
  .showcase-float-bottom { left: 12px; bottom: 8%; }
  .app-download-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .app-download-actions {
    justify-content: flex-start;
  }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-logo { margin-left: 0; }
  .nav-logo-mark {
    min-width: 194px;
    height: 46px;
    padding: 6px 10px;
  }
  .nav-logo-img { width: 174px; height: 36px; }
  .nav-actions .btn-sm { padding: 8px 14px; font-size: 13px; }
  .hero { padding: 100px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat-lbl { max-width: none; }
  .app-showcase { padding: 70px 0; }
  .features-gallery { grid-template-columns: 1fr; gap: 16px; }
  .features-gallery-img { max-width: 420px; }
  .showcase-content h2 { font-size: 31px; }
  .showcase-content p { font-size: 16px; }
  .showcase-float { display: none; }
  .showcase-device-shell { min-height: 430px; width: min(100%, 300px); }
  .app-download-title { font-size: 30px; }
  .store-btn {
    width: 100%;
    min-width: 0;
  }
  .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 24px; }
  .cta-title { font-size: 28px; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 40px 24px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .nav-inner { padding: 6px 8px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-sm { padding: 7px 10px; font-size: 12px; }
  .nav-actions .btn { min-height: 38px; }
  .nav-logo-mark { min-width: 168px; height: 40px; }
  .nav-logo-img { width: 146px; height: 31px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-visual { margin-top: 12px; }
  .showcase-device-shell { width: 100%; min-height: 0; padding: 0; }
  .showcase-device-img { max-width: min(100%, 290px); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Global typography balance (all web pages using main.css) */
body,
p, span, a, li, label, small,
td, th,
input, textarea, select, button {
  font-weight: var(--fw-body);
}

h1, h2, h3, h4, h5, h6,
[class*="title"],
[class*="-title"] {
  font-weight: var(--fw-heading) !important;
  letter-spacing: -0.01em;
}

b, strong {
  font-weight: var(--fw-emphasis) !important;
}

/* Specific override for "Necə işləyir" heading */
.how-it-works-title {
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}

/* Rəqəmlər: panel ilə eyni çəki (400) */
.hero-stat-num, .stat-num, .ss-val, .app-balance-val, .app-card-val, .ms-val, .fc-value,
input[type="number"], input[type="tel"], input[inputmode="numeric"] {
  font-weight: 400 !important;
  font-variant-numeric: lining-nums tabular-nums;
}

/* Wider numeric normalization across marketing/auth pages */
:where(
  [class*="num"],
  [class*="val"],
  [class*="amount"],
  [class*="balance"],
  [class*="count"],
  [class*="total"],
  [class*="kpi"]
) {
  font-variant-numeric: lining-nums tabular-nums;
}


/* Soft10-like visible typography/background pass (brand colors untouched) */
html, body {
  background: #fff !important;
}

body, button, input, textarea, select, label, p, span, a, li, small {
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
[class*="title"],
[class*="-title"] {
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-weight: 700 !important;
}

.hero, .section, .features-section, .trusted, .cta-section, .app-showcase {
  background-color: #fff !important;
}

.step-card, .feature-item, .testimonial-card, .showcase-feature {
  border-radius: 14px;
}
