/* =====================================================
   SPOTMELA — Main Stylesheet
   ===================================================== */

/* ---------- TOKENS ---------- */
:root {
  --primary: #001A70;
  --secondary: #2563EB;
  --secondary-50: #EFF6FF;
  --accent: #F97316;
  --accent-50: #FFF7ED;
  --success: #10B981;
  --warn: #F59E0B;
  --danger: #EF4444;

  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;
  --text: #111827;
  --text-soft: #4B5563;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --border-strong: #CBD5E1;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow-md: 0 6px 18px -8px rgba(15,23,42,.18), 0 2px 6px -2px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 40px -20px rgba(15,23,42,.25);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --header-h: 64px;
  --bottom-h: 70px;
  --container: 1280px;

  --font: 'Poppins', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
  padding-bottom: calc(var(--bottom-h) + env(safe-area-inset-bottom));
}
@media (min-width: 1024px) { body { padding-bottom: 0; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(26px, 4.5vw, 42px); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(18px, 3vw, 26px); font-weight: 600; }
h3 { font-size: 15px; font-weight: 600; }
p { margin: 0; color: var(--text-soft); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 24px; } }
.section { padding: 28px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 16px; gap: 12px;
}
.section-head .link {
  color: var(--secondary); font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
}
.section-head .link:hover { text-decoration: underline; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .2s var(--ease), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #1E293B; box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #EA6A0E; box-shadow: 0 8px 22px -8px rgba(249,115,22,.6); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { background: var(--surface-2); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- BADGES ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; font-size: 11px; font-weight: 600;
  border-radius: 999px; letter-spacing: .02em;
}
.badge-premium { background: linear-gradient(90deg,#F59E0B,#F97316); color:#fff; }
.badge-verified { background: var(--secondary-50); color: var(--secondary); }
.badge-success { background: #DCFCE7; color: #047857; }
.badge-soft { background: var(--surface-2); color: var(--text-soft); }

/* ---------- CHIPS ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 13px; font-weight: 500;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: 999px;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer; white-space: nowrap;
}
.chip:hover { background: var(--surface-2); }
.chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---------- ICON BUTTON ---------- */
.icon-btn {
  width: 40px; height: 40px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
  transition: background .2s;
}
.icon-btn:hover { background: var(--surface-2); }

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px; z-index: 99999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 72px;
  display: flex; align-items: center; gap: 12px;
}
.logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 18px; letter-spacing: -.02em;
  text-decoration: none; color: var(--text); flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.logo span b { color: var(--accent); }

.header-search {
  flex: 1;
  display: none;
  align-items: center;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 6px 6px 6px 14px;
  max-width: 640px;
  transition: border-color .2s, box-shadow .2s;
}
.header-search:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.header-search input {
  flex: 1; border: 0; background: transparent; outline: 0;
  font-size: 14px; padding: 6px 8px;
}
.header-search .divider { width: 1px; height: 22px; background: var(--border); flex-shrink: 0; }
.header-search .loc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-soft); padding: 0 10px;
  white-space: nowrap; cursor: pointer; flex-shrink: 0;
}
.header-search .loc:hover { color: var(--primary); }
.header-search .loc i { color: var(--accent); }
.header-search .go {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
}
.header-search .go:hover { background: var(--accent); }
@media (min-width: 768px) { .header-search { display: flex; } }

.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.header-actions .icon-btn { border: 0; }
.post-btn { display: none; }
@media (min-width: 1024px) { .post-btn { display: inline-flex !important; } }

.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--text);
  border: 1.5px solid var(--border);
}
.dot-indicator { position: relative; }
.dot-indicator::after {
  content: ""; position: absolute; top: 8px; right: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--surface);
}

/* ---------- MOBILE SEARCH BAR ---------- */
.mobile-search-bar {
  display: block;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
@media (min-width: 768px) { .mobile-search-bar { display: none; } }
.ms-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 12px;
}
.ms-row input { flex: 1; background: transparent; border: 0; outline: 0; font-size: 14px; }
.ms-row .ic { color: var(--text-muted); font-size: 14px; }
.ms-loc { color: var(--accent); font-size: 14px; }
#mobileCity { font-size: 13px; font-weight: 500; color: var(--text-soft); cursor: pointer; white-space: nowrap; }
#mobileCity:hover { color: var(--primary); }
.ms-divider { width: 1px; height: 16px; background: var(--border); }
.ms-row .filt {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}

/* ---------- STICKY PILLS ---------- */
.sticky-pills {
  position: sticky; top: 72px; z-index: 100;
  background: rgba(248,250,252,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.sticky-pills.scrolled { border-color: var(--border); }
.pills-row {
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none;
}
.pills-row::-webkit-scrollbar { display: none; }

/* =====================================================
   HERO
   ===================================================== */
.hero { padding: 12px 0 4px; }
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex; align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(0,26,112,.82), rgba(0,26,112,.25)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=70") center/cover;
  color: #fff;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .hero-card { min-height: 320px; } }
.hero-card .hero-body { padding: 24px; max-width: 580px; }
.hero-card h1 { color: #fff; }
.hero-card p { color: rgba(255,255,255,.88); margin-top: 8px; }
.hero-card .hero-cta { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-outline {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.35) !important;
}
.hero-outline:hover { background: rgba(255,255,255,.25) !important; }
.pill-stat {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff; padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
}

.promo-row {
  display: grid; gap: 12px; margin-top: 12px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) { .promo-row { grid-template-columns: repeat(4, 1fr); } }
.promo-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
  display: flex; align-items: center; gap: 12px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
}
.promo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.pc-ic {
  width: 40px; height: 40px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  background: var(--accent-50); color: var(--accent);
}
.promo-card.alt .pc-ic { background: var(--secondary-50); color: var(--secondary); }
.pc-title { font-size: 14px; font-weight: 700; color: var(--text); }
.pc-sub { font-size: 11px; color: var(--text-muted); }

/* =====================================================
   LISTING CARDS
   ===================================================== */
.list-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) { .list-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .list-grid { grid-template-columns: repeat(4, 1fr); } }

.list-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
  text-decoration: none; color: inherit;
}
.list-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.list-card .img-wrap {
  position: relative; aspect-ratio: 4/3; background: var(--surface-2);
  overflow: hidden;
}
.list-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.list-card:hover .img-wrap img { transform: scale(1.04); }
.list-card .img-wrap .save {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--text-muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; backdrop-filter: blur(6px);
  transition: transform .2s, color .2s;
}
.list-card .img-wrap .save.active { color: var(--accent); }
.list-card .img-wrap .badge { position: absolute; top: 10px; left: 10px; }
.list-card .img-wrap .ts {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(15,23,42,.68); color: #fff;
  font-size: 10px; padding: 3px 8px; border-radius: 999px; font-weight: 600;
}
.list-card .body { padding: 12px; display: flex; flex-direction: column; gap: 5px; }
.list-card .price { font-weight: 700; font-size: 15px; color: var(--text); }
.list-card .title {
  font-size: 12px; font-weight: 500; color: var(--text-soft);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.list-card .meta {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--text-muted);
}
.list-card .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border-strong); }

/* Horizontal scroll */
.h-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  padding-bottom: 6px; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll .list-card { flex: 0 0 72%; scroll-snap-align: start; }
@media (min-width: 640px) { .h-scroll .list-card { flex-basis: 40%; } }
@media (min-width: 1024px) { .h-scroll .list-card { flex-basis: 23%; } }

/* =====================================================
   BUSINESS CARDS
   ===================================================== */
.biz-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
  text-decoration: none; color: inherit;
}
.biz-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.biz-img {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2);
}
.biz-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.biz-card:hover .biz-img img { transform: scale(1.04); }
.biz-badge { position: absolute; top: 10px; left: 10px; }
.biz-body { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.biz-name { font-weight: 600; font-size: 14px; color: var(--text); }
.biz-cat { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.biz-stars { font-size: 12px; color: var(--warn); }
.biz-stars span { color: var(--text-muted); }
.biz-loc { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-top: 2px; }

/* =====================================================
   SERVICES
   ===================================================== */
.services-grid {
  display: grid; gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(8, 1fr); } }

.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; text-decoration: none; color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
}
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.svc-name { font-size: 12px; font-weight: 600; color: var(--text); }
.svc-count { font-size: 10px; color: var(--text-muted); }

/* =====================================================
   JOBS
   ===================================================== */
.jobs-list { display: flex; flex-direction: column; gap: 10px; }
.job-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.job-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.job-logo {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--secondary-50); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.job-info { flex: 1; min-width: 0; }
.job-title { font-weight: 600; font-size: 14px; color: var(--text); }
.job-company { font-size: 12px; color: var(--text-soft); margin-top: 2px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.tag {
  display: inline-block; padding: 2px 8px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 999px; font-size: 11px; color: var(--text-muted);
}
.job-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.job-time { font-size: 11px; color: var(--text-muted); }

/* =====================================================
   EVENTS
   ===================================================== */
.events-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) { .events-grid { grid-template-columns: repeat(4, 1fr); } }

.event-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.event-img {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2);
}
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.event-card:hover .event-img img { transform: scale(1.04); }
.event-date-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: #fff;
  border-radius: 10px; padding: 6px 10px;
  display: flex; flex-direction: column; align-items: center; line-height: 1;
}
.ed-day { font-size: 18px; font-weight: 700; }
.ed-mon { font-size: 10px; font-weight: 600; letter-spacing: .06em; opacity: .85; }
.event-body { padding: 12px; display: flex; flex-direction: column; gap: 5px; }
.event-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--secondary);
}
.event-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.event-meta { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.event-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.event-price { font-size: 12px; font-weight: 600; color: var(--accent); }

/* =====================================================
   WHY SPOTMELA
   ===================================================== */
.why-section {
  background: linear-gradient(135deg, var(--secondary-50), var(--surface));
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  margin: 0 -4px;
}
.why-grid {
  display: grid; gap: 16px; margin-top: 28px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: var(--secondary-50); color: var(--secondary);
}
.why-card h3 { font-size: 14px; color: var(--text); }
.why-card p { font-size: 13px; color: var(--text-soft); line-height: 1.55; }

.stats-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: var(--primary); border-radius: var(--radius-lg);
  padding: 24px 16px; margin-top: 32px;
  color: #fff;
}
.stat-item { flex: 1; text-align: center; padding: 8px 16px; min-width: 120px; }
.stat-num { font-size: clamp(22px, 4vw, 32px); font-weight: 700; color: #fff; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
@media (max-width: 640px) { .stat-divider { display: none; } }

/* =====================================================
   PRICING
   ===================================================== */
.plan-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .25s, box-shadow .25s, border-color .2s;
  position: relative;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-50), var(--surface) 35%);
}
.ribbon {
  position: absolute; top: -13px; left: 22px;
  background: var(--accent); color: #fff;
  padding: 4px 14px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
}
.plan-card .nm { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.plan-card .price { font-size: 32px; font-weight: 700; color: var(--text); line-height: 1.1; }
.plan-card .price small { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.plan-card ul { margin: 8px 0; display: flex; flex-direction: column; gap: 9px; }
.plan-card ul li { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--text-soft); }
.plan-card ul li .ic { color: var(--success); margin-top: 1px; flex-shrink: 0; }

/* =====================================================
   APP DOWNLOAD
   ===================================================== */
.app-section {
  background: linear-gradient(135deg, #001A70 0%, #1E3A8A 50%, #0C2666 100%);
  border-radius: var(--radius-xl);
  overflow: hidden; padding: 0;
  margin: 0 -4px;
}
.app-inner {
  display: grid; grid-template-columns: 1fr; gap: 0;
  align-items: center;
}
@media (min-width: 768px) {
  .app-inner { grid-template-columns: 1fr 1fr; }
}
.app-content {
  padding: 40px 32px;
  color: #fff;
}
.app-tag {
  display: inline-block;
  background: rgba(255,255,255,.15); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; margin-bottom: 16px;
}
.app-title { font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.app-desc { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.app-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px;
}
.app-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.85);
}
.app-feat i { color: var(--accent); font-size: 14px; }

.app-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 14px; padding: 12px 18px; color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
  text-decoration: none;
}
.store-btn:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.store-btn i { font-size: 24px; }
.sb-sub { font-size: 10px; opacity: .75; }
.sb-main { font-size: 15px; font-weight: 700; }

.app-rating { display: flex; align-items: center; gap: 10px; }
.ar-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; }
.ar-text { font-size: 12px; color: rgba(255,255,255,.7); }

/* PHONE MOCKUP */
.app-mockup {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 20px;
}
@media (max-width: 767px) { .app-mockup { display: none; } }
.phone-shell {
  width: 220px;
  background: #0A0F1E;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.1);
}
.phone-screen {
  background: #F8FAFC; border-radius: 26px; overflow: hidden;
  padding: 12px; display: flex; flex-direction: column; gap: 8px;
}
.ps-header {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; padding: 2px 0 4px;
}
.ps-search {
  display: flex; align-items: center; gap: 6px;
  background: #E2E8F0; border-radius: 999px;
  padding: 7px 12px; font-size: 11px; color: #6B7280;
}
.ps-cats { display: flex; gap: 6px; overflow: hidden; }
.ps-cat {
  flex: 1; padding: 6px 4px; border-radius: 10px;
  font-size: 9px; font-weight: 600; text-align: center; white-space: nowrap;
}
.ps-card {
  display: flex; gap: 8px; align-items: center;
  background: #fff; border: 1px solid #E5E7EB;
  border-radius: 10px; padding: 8px;
}
.ps-img {
  width: 42px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE); flex-shrink: 0;
}
.ps-title { font-size: 10px; font-weight: 600; color: #111827; }
.ps-sub { font-size: 9px; color: #6B7280; margin-top: 2px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--primary); color: #cbd5e1;
  padding: 40px 0 90px; margin-top: 40px;
}
@media (min-width: 1024px) { .footer { padding-bottom: 40px; } }
.footer-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 14px; }
.footer ul { display: flex; flex-direction: column; gap: 9px; }
.footer a { font-size: 13px; color: #94a3b8; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer .logo { color: #fff; }
.brand-blurb { color: #94a3b8; font-size: 13px; margin-top: 10px; max-width: 340px; line-height: 1.6; }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.social a:hover { background: var(--accent); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 28px; padding-top: 18px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: #94a3b8; font-size: 12px;
}

/* =====================================================
   BOTTOM NAV (MOBILE)
   ===================================================== */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  display: flex; justify-content: space-around; align-items: center;
}
@media (min-width: 1024px) { .bottom-nav { display: none; } }
.bottom-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10px; color: var(--text-muted); transition: color .2s; padding: 4px 0;
  text-decoration: none;
}
.bottom-nav .ic { font-size: 18px; }
.bottom-nav a.active { color: var(--primary); }
.bottom-nav .fab {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #FB923C);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 24px -8px rgba(249,115,22,.55);
  margin-top: -26px; border: 4px solid var(--surface);
  transition: transform .25s var(--ease);
}
.bottom-nav .fab:hover { transform: rotate(90deg) scale(1.05); }

/* =====================================================
   LOCATION MODAL
   ===================================================== */
.location-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  display: none; align-items: center; justify-content: center;
  z-index: 999999;
}
.location-box {
  width: 320px; background: #fff; padding: 28px 24px;
  border-radius: 20px; text-align: center;
  box-shadow: 0 24px 48px rgba(0,0,0,.25);
}
.location-box h3 { margin: 12px 0 8px; font-size: 18px; }
.location-box p { font-size: 14px; color: var(--text-soft); line-height: 1.5; }
/* Mobile */

@media (max-width: 768px) {

    .footer {
        display: none !important;
    }

}