/* ═══════════════════════════════════════════════════════
   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: 'Manrope', system-ui, -apple-system, sans-serif;
  --fw-heading: 700;
  --fw-body: 400;
  --fw-emphasis: 600;
  --primary:      #1F6F8B;
  --primary-dark: #195B72;
  --secondary:    #1F6F8B;
  --pink:         #1F6F8B;
  --bg:           #F7F8FC;
  --white:        #FFFFFF;
  --text:         #0F172A;
  --muted:        #334155;
  --ghost:        #475569;
  --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.5;
  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: #fff;
  box-shadow: 0 4px 20px rgba(15,23,42,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  padding: 8px 24px;
}
.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(30px, 4vw, 44px);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700 !important; line-height: 1.15;
  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: 16px; color: var(--muted); max-width: 480px;
  margin-bottom: 36px; line-height: 1.6;
}
.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: 600; }
.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: 600; 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: 600; 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: 600; 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: 'Manrope', system-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(24px, 3vw, 36px); font-weight: 700 !important; line-height: 1.2; margin-bottom: 14px; letter-spacing: -.01em; }
.showcase-content p  { color: #475569; opacity: 1; font-size: 16px; line-height: 1.6; 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: 16px; font-weight: 700; color: #64748B;
  opacity: 1; transition: opacity .2s, color .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(22px, 3vw, 32px);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title .accent { color: var(--primary); }
.section-desc { font-size: 15px; color: var(--muted); max-width: 560px; line-height: 1.6; }

.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: 600;
  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: 600; 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(22px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin-bottom: 12px;
}
.app-download-desc {
  font-size: 15px;
  line-height: 1.6;
  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: 30px; font-weight: 700 !important; letter-spacing: -.01em; font-family: 'Manrope', system-ui, sans-serif; margin-bottom: 16px; }
.cta-desc  { font-size: 15px; opacity: .85; max-width: 520px; margin: 0 auto 36px; line-height: 1.6; }
.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: 18px; font-weight: 700; 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: 28px; font-weight: 700; margin-bottom: 16px; }
.auth-left-title {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em;
}
.auth-left p  { font-size: 15px; opacity: .85; line-height: 1.6; 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: 26px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700 !important;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 8px;
}
.auth-form-header p  { font-size: 14px; 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: 'Manrope', system-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: 18px; font-weight: 700; 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;
}

/* Clopos-like typography and spacing for home page only */
.page-home .container {
  max-width: 1240px;
}

.page-home .hero {
  padding-top: 132px;
}

.page-home .hero-inner,
.page-home .showcase-inner {
  gap: 72px;
}

.page-home .hero-title {
  font-size: clamp(32px, 4.2vw, 48px) !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  max-width: 760px;
}

.page-home .hero-desc {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.page-home .showcase-content h2,
.page-home .section-title,
.page-home .cta-title {
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.2;
  font-weight: 700 !important;
  max-width: 780px;
}

.page-home .section-desc,
.page-home .showcase-content p,
.page-home .cta-desc {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.page-home .step-title,
.page-home .fi-title,
.page-home .sf-text {
  font-size: 17px;
  font-weight: 600;
}

.page-home .step-desc,
.page-home .fi-desc,
.page-home .sf-sub,
.page-home .hero-stat-lbl,
.page-home .stat-lbl {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.page-home .section-badge,
.page-home .hero-badge {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

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

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

/* Rəqəmlər: biraz qalın (600) */
.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: 600 !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: 'Manrope', system-ui, sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
[class*="title"],
[class*="-title"] {
  font-family: 'Manrope', system-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;
}


/* ══ Ana Səhifə Stilləri ═══════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   BONIX — Design System
   Brand: #0D6E8A (teal), #05445E (navy), #189AB4 (light teal)
   ───────────────────────────────────────────── */
:root {
  --brand-navy:   #05445E;
  --brand-teal:   #0D6E8A;
  --brand-light:  #189AB4;
  --brand-pale:   #D4F1F4;
  --brand-accent: #75E6DA;
  --ink:          #0A1628;
  --ink-2:        #2D4059;
  --ink-3:        #637085;
  --surface:      #FFFFFF;
  --surface-2:    #F4F8FA;
  --surface-3:    #EAF4F7;
  --border:       rgba(13,110,138,.12);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --shadow-sm:    0 1px 4px rgba(5,68,94,.06);
  --shadow-md:    0 4px 20px rgba(5,68,94,.10);
  --shadow-lg:    0 12px 48px rgba(5,68,94,.14);
  --ff-display:   'Manrope', sans-serif;
  --ff-body:      'Manrope', sans-serif;
  --nav-h:        88px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--ff-body);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:#f0f4f6; }
::-webkit-scrollbar-thumb { background:var(--brand-teal); border-radius:3px; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid rgba(13,110,138,.1);
  transition: box-shadow .3s, border-color .3s;
}
.navbar.scrolled {
  background: #fff;
  border-bottom-color: rgba(13,110,138,.14);
  box-shadow: 0 4px 20px rgba(5,68,94,.1);
}
.nav-inner {
  max-width:1320px; margin:0 auto; padding:0 30px;
  height:100%; display:flex; align-items:center; gap:32px;
}
.nav-logo img { height:42px; width:auto; }
.nav-links {
  display:flex; gap:8px; flex:1; align-items:center;
}
.nav-links a {
  font-size:15px; font-weight:600; color:var(--ink-2);
  padding:12px 14px; border-radius:0;
  transition: color .2s, background .2s, transform .18s;
}
.nav-links a:hover {
  color:var(--brand-teal);
  background:rgba(13,110,138,.09);
  transform: translateY(-1px);
}
.nav-actions { display:flex; gap:10px; align-items:center; }
.btn-ghost {
  font-size:15px; font-weight:600; color:var(--ink-2);
  padding:12px 16px; border-radius:0;
  transition: color .2s, background .2s;
}
.btn-ghost:hover { color:var(--brand-teal); background:rgba(13,110,138,.09); }
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--ff-body); font-size:15px; font-weight:700;
  color:#fff; background:var(--brand-teal);
  padding:13px 24px; border-radius:0;
  border: none; cursor:pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(13,110,138,.28);
}
.btn-primary:hover { background:var(--brand-navy); transform:translateY(-1px); box-shadow:0 4px 20px rgba(13,110,138,.36); }
.btn-outline-nav {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--ff-body); font-size:14.5px; font-weight:600;
  color:var(--brand-teal); background:transparent;
  padding:8px 20px; border-radius:var(--radius-sm);
  border:1.5px solid rgba(13,110,138,.28); cursor:pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-outline-nav:hover { background:var(--surface-3); border-color:var(--brand-teal); }
.nav-hamburger { display:none; flex-direction:column; gap:5px; padding:6px; cursor:pointer; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition:.3s; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.hero-mesh {
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(24,154,180,.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(13,110,138,.07) 0%, transparent 70%);
}
.hero-grid-lines {
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(13,110,138,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,110,138,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-wrap {
  max-width:1200px; margin:0 auto; padding:0 24px;
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  position:relative; z-index:1;
}
.hero-kicker {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--surface-3); border:1px solid rgba(13,110,138,.15);
  color:var(--brand-teal); font-size:13px; font-weight:600;
  padding:6px 14px; border-radius:100px;
  letter-spacing:.02em;
  margin-bottom:24px;
}
.hero-kicker-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--brand-accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow:0 0 0 0 rgba(117,230,218,.5); }
  50%      { box-shadow:0 0 0 6px rgba(117,230,218,0); }
}
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style:normal;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-light) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-brand-wordmark{
  display:inline-block;
  line-height:1;
  vertical-align:-0.02em;
  margin-right:.06em;
}
.hero-brand-wordmark img{
  height:1em;
  width:auto;
  display:block;
  object-fit:contain;
}
.hero-desc {
  font-size:15px; font-weight:400; color:var(--ink-3);
  line-height:1.6; max-width:480px; margin-bottom:36px;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; align-items:center; margin-bottom:48px; }
.btn-hero-primary {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--ff-body); font-size:15.5px; font-weight:600;
  color:#fff; background:var(--brand-teal);
  padding:14px 30px; border-radius:var(--radius-sm);
  box-shadow: 0 4px 20px rgba(13,110,138,.32);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-hero-primary:hover { background:var(--brand-navy); transform:translateY(-2px); box-shadow:0 8px 28px rgba(13,110,138,.38); }
.btn-hero-outline {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--ff-body); font-size:15.5px; font-weight:600;
  color:var(--ink-2); background:transparent;
  padding:13px 28px; border-radius:var(--radius-sm);
  border:1.5px solid var(--border);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-hero-outline:hover { border-color:var(--brand-teal); color:var(--brand-teal); background:var(--surface-3); }
.hero-trust {
  display:flex; gap:28px; flex-wrap:wrap;
}
.hero-trust-item {
  display:flex; align-items:center; gap:10px;
}
.ht-icon {
  width:36px; height:36px; border-radius:var(--radius-sm);
  background:var(--surface-3); border:1px solid rgba(13,110,138,.12);
  display:flex; align-items:center; justify-content:center;
  color:var(--brand-teal); font-size:15px; flex-shrink:0;
}
.ht-label { font-size:13px; font-weight:500; color:var(--ink-2); line-height:1.4; }
.ht-label strong { display:block; color:var(--ink); font-weight:600; }

/* Hero Visual */
.hero-visual { position:relative; display:flex; justify-content:center; }
.hero-phone-outer {
  position:relative; width:280px;
}
.hero-phone-frame {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position:relative; z-index:2;
}
.hero-phone-screen {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
}
.hero-phone-screen img {
  width:100%; height:auto; object-fit:contain; border-radius:0;
}
/* Floating notification cards */
.fnc {
  position:absolute; z-index:3;
  background:#fff;
  border-radius:var(--radius-md);
  padding:12px 16px;
  box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:12px;
  min-width:180px;
  animation: floatY 4s ease-in-out infinite;
}
.fnc-left  { left:-110px; top:80px;  animation-delay:0s; }
.fnc-right { right:-100px; top:220px; animation-delay:1.4s; }
.fnc-bot   { left:-60px; bottom:100px; animation-delay:.7s; }
@keyframes floatY {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-8px); }
}
.fnc-icon {
  width:36px; height:36px; border-radius:10px;
  display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0;
}
.fnc-title { font-size:11px; font-weight:700; color:var(--ink); line-height:1.2; }
.fnc-sub   { font-size:10px; color:var(--ink-3); margin-top:1px; }
.fnc-val   { font-size:15px; font-weight:700; color:var(--ink); margin-top:2px; }

/* ══════════════════════════════════════
   LOGOS / TRUSTED-BY STRIP
══════════════════════════════════════ */
.trusted {
  background:var(--surface-2); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:24px 0;
}
.trusted-inner {
  max-width:1200px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; gap:48px; flex-wrap:wrap;
  justify-content:center;
}
.trusted-label { font-size:13px; font-weight:600; color:var(--ink-3); letter-spacing:.06em; text-transform:uppercase; white-space:nowrap; }
.trusted-logos { display:flex; gap:36px; align-items:center; flex-wrap:wrap; justify-content:center; }
.trusted-logo {
  font-family:var(--ff-display); font-size:16px; font-weight:700;
  color:var(--ink-3); opacity:.5; letter-spacing:-.01em;
  transition:opacity .2s;
}
.trusted-logo:hover { opacity:.8; }

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.section { padding:100px 0; }
.section-alt { background:var(--surface-2); }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--brand-teal); margin-bottom:16px;
}
.section-eyebrow svg { width:14px; height:14px; }
.section-h2 {
  font-family:var(--ff-display); font-size:clamp(22px,2.8vw,32px);
  font-weight:700; line-height:1.2; letter-spacing:-.015em; color:var(--ink);
  margin-bottom:16px;
}
.section-h2 em { font-style:normal; color:var(--brand-teal); }
.section-lead { font-size:15px; color:var(--ink-3); line-height:1.6; max-width:560px; }

/* ══════════════════════════════════════
   HOW IT WORKS  — horizontal steps
══════════════════════════════════════ */
.hiw-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:2px;
  background:var(--border); border-radius:var(--radius-lg); overflow:hidden;
  margin-top:60px;
}
.hiw-step {
  background:var(--surface); padding:36px 28px;
  position:relative; overflow:hidden;
  transition:background .25s;
}
.hiw-step:hover { background:var(--surface-3); }
.hiw-num {
  font-family:var(--ff-display); font-size:48px; font-weight:700;
  color:rgba(13,110,138,.07); line-height:1; margin-bottom:20px;
  letter-spacing:-.04em;
}
.hiw-icon-wrap {
  width:48px; height:48px; border-radius:14px;
  background:var(--surface-3); border:1px solid rgba(13,110,138,.14);
  display:flex; align-items:center; justify-content:center;
  color:var(--brand-teal); font-size:20px;
  margin-bottom:20px;
}
.hiw-title { font-family:var(--ff-display); font-size:16px; font-weight:600; color:var(--ink); margin-bottom:10px; }
.hiw-desc  { font-size:14px; color:var(--ink-3); line-height:1.6; }
.hiw-connector {
  position:absolute; top:36px; right:-1px; width:2px; height:48px;
  background:linear-gradient(to bottom, var(--brand-accent), transparent);
}

/* ══════════════════════════════════════
   FEATURES — alternating rows
══════════════════════════════════════ */
.feature-row {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
  padding:80px 0;
  border-bottom:1px solid var(--border);
}
.feature-row:last-child { border-bottom:none; }
.feature-row.reverse .feature-visual { order:-1; }
.feature-tag {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--surface-3); border:1px solid rgba(13,110,138,.14);
  color:var(--brand-teal); font-size:12.5px; font-weight:700;
  padding:5px 12px; border-radius:100px; margin-bottom:20px;
}
.feature-h3 {
  font-family:var(--ff-display); font-size:clamp(18px,2vw,26px);
  font-weight:700; line-height:1.2; letter-spacing:-.01em; color:var(--ink);
  margin-bottom:14px;
}
.feature-desc { font-size:15px; color:var(--ink-3); line-height:1.6; margin-bottom:28px; }
.feature-points { display:flex; flex-direction:column; gap:14px; }
.fp-item { display:flex; align-items:flex-start; gap:12px; }
.fp-check {
  width:22px; height:22px; border-radius:6px; flex-shrink:0; margin-top:1px;
  background:var(--surface-3); border:1px solid rgba(13,110,138,.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--brand-teal); font-size:10px;
}
.fp-text { font-size:14.5px; color:var(--ink-2); line-height:1.55; }
.fp-text strong { color:var(--ink); font-weight:600; }

/* Feature visual cards */
.feature-visual {
  background:var(--surface-2); border-radius:var(--radius-xl);
  padding:32px; border:1px solid var(--border);
  min-height:340px; display:flex; flex-direction:column; gap:14px;
  position:relative; overflow:hidden;
}
.feature-visual::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 50% at 50% 0%, rgba(13,110,138,.06) 0%, transparent 70%);
  pointer-events:none;
}
/* mini dashboard card */
.mini-dash { background:#fff; border-radius:var(--radius-md); padding:20px; box-shadow:var(--shadow-sm); border:1px solid var(--border); }
.mini-dash-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }
.mini-dash-title { font-size:13px; font-weight:700; color:var(--ink); }
.mini-dash-badge { font-size:11px; font-weight:600; color:#10B981; background:#D1FAE5; padding:3px 9px; border-radius:100px; }
.mini-kpis { display:flex; gap:10px; }
.mini-kpi {
  flex:1; background:var(--surface-2); border-radius:var(--radius-sm); padding:12px;
  border:1px solid var(--border);
}
.mk-lbl { font-size:10px; color:var(--ink-3); margin-bottom:4px; }
.mk-val { font-size:20px; font-weight:700; color:var(--ink); }
.mk-trend { font-size:10px; color:#10B981; font-weight:600; margin-top:3px; }
.mini-bar-row { display:flex; gap:8px; align-items:flex-end; height:60px; margin-top:12px; }
.mbr-col { flex:1; border-radius:4px 4px 0 0; }
.mini-card-list { display:flex; flex-direction:column; gap:8px; }
.mcl-item {
  background:#fff; border-radius:10px; padding:10px 14px;
  display:flex; align-items:center; gap:10px; box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
}
.mcl-avatar { width:32px; height:32px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; color:#fff; flex-shrink:0; }
.mcl-name { font-size:13px; font-weight:600; color:var(--ink); }
.mcl-sub  { font-size:11px; color:var(--ink-3); }
.mcl-bonus{ margin-left:auto; font-size:13px; font-weight:700; color:var(--brand-teal); }

/* ══════════════════════════════════════
   STATS SECTION
══════════════════════════════════════ */
.stats-section {
  background:var(--brand-navy);
  padding:80px 0;
  position:relative; overflow:hidden;
}
.stats-section::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(24,154,180,.15) 0%, transparent 70%);
}
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(255,255,255,.08); border-radius:var(--radius-lg); overflow:hidden;
  margin-top:0; position:relative; z-index:1;
}
.stat-item {
  background:transparent; padding:40px 32px; text-align:center;
  transition:background .25s;
}
.stat-item:hover { background:rgba(255,255,255,.04); }
.stat-num {
  font-family:var(--ff-display); font-size:40px; font-weight:700;
  color:#fff; letter-spacing:-.02em; line-height:1;
  margin-bottom:8px;
}
.stat-num span { color:var(--brand-accent); }
.stat-label { font-size:14px; color:rgba(255,255,255,.55); font-weight:400; }
.stats-header { text-align:center; margin-bottom:52px; position:relative; z-index:1; }
.stats-header .section-eyebrow { color:var(--brand-accent); }
.stats-header .section-h2 { color:#fff; }

/* ══════════════════════════════════════
   APP DOWNLOAD
══════════════════════════════════════ */
.app-section { padding:100px 0; background:var(--surface); }
.app-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.app-phones { display:flex; justify-content:center; gap:20px; position:relative; }
.app-phone {
  width:160px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transform:rotate(-4deg);
}
.app-phone:last-child { transform:rotate(4deg) translateY(20px); }
.app-phone-screen { background: transparent; border-radius:0; aspect-ratio:auto; overflow:visible; }
.app-phone-screen img { width:100%; height:auto; object-fit:contain; border-radius:0; }
.store-buttons { display:flex; gap:14px; flex-wrap:wrap; margin-top:32px; }
.store-btn {
  display:inline-flex; align-items:center; gap:12px;
  background:var(--ink); color:#fff;
  padding:12px 22px; border-radius:var(--radius-sm);
  font-size:14px; font-weight:500;
  transition:background .2s, transform .15s;
  border:1px solid rgba(255,255,255,.06);
}
.store-btn:hover { background:var(--brand-navy); transform:translateY(-1px); }
.store-btn svg, .store-btn i { font-size:22px; }
.store-btn small { display:block; font-size:10px; opacity:.65; text-transform:uppercase; letter-spacing:.06em; }
.store-btn strong { display:block; font-size:14px; font-weight:700; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-section { padding:100px 0; background:var(--surface-2); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:56px; }
.testi-card {
  background:var(--surface); border-radius:var(--radius-lg);
  padding:32px; border:1px solid var(--border);
  transition:transform .25s, box-shadow .25s;
  position:relative;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.testi-quote-mark {
  font-size:52px; font-family:Georgia, serif; font-weight:700;
  color:var(--surface-3); line-height:.8; margin-bottom:16px;
  position:absolute; top:24px; right:24px;
}
.testi-text { font-size:15px; color:var(--ink-2); line-height:1.7; margin-bottom:24px; font-style:italic; }
.testi-stars { color:#F59E0B; font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700; color:#fff; flex-shrink:0;
}
.testi-name  { font-size:14px; font-weight:700; color:var(--ink); }
.testi-store { font-size:12px; color:var(--ink-3); }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section { padding:80px 0; }
.cta-card {
  background:linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-teal) 100%);
  border-radius:var(--radius-xl); padding:72px 80px;
  text-align:center; position:relative; overflow:hidden;
}
.cta-card::before {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-eyebrow { display:inline-flex; align-items:center; gap:8px; color:var(--brand-accent); font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:20px; position:relative; z-index:1; }
.cta-h2 {
  font-family:var(--ff-display); font-size:clamp(22px,3vw,34px);
  font-weight:700; color:#fff; letter-spacing:-.02em; line-height:1.2;
  margin-bottom:16px; position:relative; z-index:1;
}
.cta-desc { font-size:15px; color:rgba(255,255,255,.7); max-width:520px; margin:0 auto 36px; position:relative; z-index:1; line-height:1.6; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }
.btn-cta-white {
  display:inline-flex; align-items:center; gap:10px;
  background:#fff; color:var(--brand-navy);
  font-family:var(--ff-body); font-size:15.5px; font-weight:700;
  padding:14px 30px; border-radius:var(--radius-sm);
  transition:transform .15s, box-shadow .2s;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
}
.btn-cta-white:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,.28); }
.btn-cta-ghost {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.1); color:#fff;
  font-family:var(--ff-body); font-size:15.5px; font-weight:600;
  padding:13px 28px; border-radius:var(--radius-sm);
  border:1.5px solid rgba(255,255,255,.25);
  transition:background .2s;
}
.btn-cta-ghost:hover { background:rgba(255,255,255,.18); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, var(--brand-teal) 0%, #0a5470 100%);
  color:rgba(255,255,255,.8);
  padding:64px 0 32px;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:48px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.2);
}
.footer-brand img { height:32px; margin-bottom:16px; filter:brightness(0) invert(1); }
.footer-brand p { font-size:14px; line-height:1.7; max-width:260px; color:rgba(255,255,255,.85); }
.footer-col-h { font-family:var(--ff-body); font-size:13px; font-weight:700; color:#fff; letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px; }
.footer-col-links { display:flex; flex-direction:column; gap:10px; }
.footer-col-links a { font-size:14px; color:rgba(255,255,255,.82); transition:color .2s; }
.footer-col-links a:hover { color:#fff; }
.footer-col-links li { font-size:14px; color:rgba(255,255,255,.82); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:28px; flex-wrap:wrap; gap:16px;
}
.footer-copy { font-size:13px; }
.footer-socials { display:flex; gap:10px; }
.fs-btn {
  width:40px; height:40px; border-radius:var(--radius-sm);
  background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:16px;
  transition:background .2s, color .2s, transform .2s;
}
.fs-btn:hover { background:rgba(255,255,255,.35); color:#fff; border-color:rgba(255,255,255,.4); transform:translateY(-2px); }

/* ══════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════ */
.mobile-drawer {
  display:none; position:fixed; inset:0; z-index:999;
  background:rgba(10,22,40,.6); backdrop-filter:blur(4px);
}
.mobile-drawer.open { display:block; }
.mobile-drawer-inner {
  position:absolute; top:0; right:0; width:280px; height:100%;
  background:#fff; padding:80px 28px 28px;
  display:flex; flex-direction:column; gap:4px;
  box-shadow:var(--shadow-lg);
}
.mobile-drawer-inner a {
  font-size:16px; font-weight:500; color:var(--ink-2);
  padding:11px 14px; border-radius:var(--radius-sm);
  transition:background .15s;
}
.mobile-drawer-inner a:hover { background:var(--surface-3); }
.mobile-drawer-divider { height:1px; background:var(--border); margin:8px 0; }
.mobile-drawer-close {
  position:absolute; top:20px; right:20px;
  width:36px; height:36px; border-radius:10px;
  background:var(--surface-2); display:flex; align-items:center; justify-content:center;
  font-size:16px; color:var(--ink-2); cursor:pointer;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1024px){
  .hero-wrap { grid-template-columns:1fr; gap:48px; }
  .hero-visual { display:none; }
  .hiw-grid { grid-template-columns:repeat(2,1fr); }
  .feature-row { grid-template-columns:1fr; gap:40px; }
  .feature-row.reverse .feature-visual { order:0; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .app-inner { grid-template-columns:1fr; gap:48px; }
  .app-phones { order:-1; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
  :root { --nav-h:72px; }
  .navbar{
    background: #fff;
    border-bottom-color: rgba(13,110,138,.12);
  }
  .nav-inner{
    padding: 0 16px;
  }
  .nav-logo img{
    height: 34px;
  }
  .nav-links, .nav-actions { display:none; }
  .nav-hamburger { display:flex; }
  .hero { padding-top:calc(var(--nav-h) + 48px); padding-bottom:64px; }
  .hero-trust { flex-direction:column; gap:16px; }
  .hiw-grid { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .cta-card { padding:48px 28px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .section-h2 { font-size:28px; }
}

/* ══ MISC UTILITIES ═══════════ */
.text-center { text-align:center; }
.max-center { max-width:600px; margin-left:auto; margin-right:auto; }
.mt-4 { margin-top:16px; }
.mt-6 { margin-top:24px; }
.mt-8 { margin-top:32px; }
.mt-14 { margin-top:56px; }
.flex-center { display:flex; justify-content:center; }


