:root {
  --brand: #0160d6;
  --brand-hover: #0050b5;
  --navy: #00216e;
  --navy-hover: #00174f;
  --accent: #ff3951;
  --price: #f13b13;
  --ink: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --line: #e2e8f0;
  --line-light: #edf2f7;
  --page: #f7f9fc;
  --chip: #f8fafc;
  --success: #0fa958;
  --font: "Mulish", system-ui, -apple-system, sans-serif;
  --display: "Urbanist", system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 32px -8px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 20px 30px -10px rgba(1, 96, 214, 0.12);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: 0; background: transparent; }

/* Responsive Shell (No more black letterbox phone mockup on desktop!) */
.app-shell, .phone {
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  background: var(--page);
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .app-shell, .phone {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  body {
    background: #f1f5f9;
  }
  .app-shell, .phone {
    background: var(--page);
  }
}

.container-xl {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container-xl {
    padding: 0 24px;
  }
}

@media (min-width: 1280px) {
  .container-xl {
    padding: 0 32px;
  }
}

/* Page Layout */
.page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 40px;
  background: var(--page);
  width: 100%;
}
.page.auth {
  min-height: 100svh;
  background: #ffffff;
  gap: 0;
}
.pad {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .pad {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.stack { display: flex; flex-direction: column; gap: 16px; }

/* Responsive Visibility Helpers */
.desktop-only,
.desktop-flex,
.desktop-block { display: none !important; }
.mobile-only { display: flex !important; }

@media (min-width: 1024px) {
  .desktop-only,
  .desktop-flex { display: flex !important; }
  .desktop-block { display: block !important; }
  .mobile-only { display: none !important; }
}

/* Header: logo left, menus dead-center, actions right */
.header-wrapper {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header,
.header,
.header-simple {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #ffffff;
  padding: 12px 16px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 64px;
}

@media (min-width: 768px) {
  .site-header,
  .header,
  .header-simple {
    padding: 12px 24px;
    min-height: 68px;
  }
}

@media (min-width: 1280px) {
  .site-header,
  .header,
  .header-simple {
    padding: 12px 32px;
    min-height: 72px;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  justify-self: center;
}

.site-nav .nav-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

@media (min-width: 1024px) {
  .site-nav {
    gap: 4px;
  }
  .site-nav .nav-link {
    font-size: 14px;
    padding: 8px 14px;
  }
}

.site-nav .nav-link:hover {
  color: var(--ink);
  background: var(--chip);
}

.site-nav .nav-link.active {
  color: var(--brand);
  background: #eef4ff;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.site-actions,
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  justify-self: end;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--chip);
}

.header-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.header-wordmark img { height: 42px; width: 140px; object-fit: contain; }
.logo { height: 32px; width: auto; max-width: 148px; object-fit: contain; object-position: left; }

.icon-btn {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--chip);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
  color: var(--ink);
}
.icon-btn:hover {
  background: #ffffff;
  border-color: var(--brand);
  color: var(--brand);
}
.icon-btn img, .icon { width: 18px; height: 18px; }
.icon-sm { width: 14px; height: 14px; }
.icon-round {
  width: 38px; height: 38px; border-radius: 19px;
  border: 1px solid var(--line); background: var(--chip);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.icon-round:hover {
  background: #ffffff;
  border-color: var(--brand);
}

.btn-header-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--brand);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}
.btn-header-auth:hover {
  background: var(--brand-hover);
}

/* Landing page */
.page.landing {
  gap: 0;
  padding-bottom: 0;
}

.landing-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .landing-hero {
    height: 420px;
  }
}

.landing-hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,16,32,0.35) 10%, rgba(11,16,32,0.72) 100%);
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 20px 88px;
  text-align: center;
}

@media (min-width: 1024px) {
  .landing-hero-copy {
    padding: 88px 24px 120px;
  }
}

.landing-hero-copy .display {
  font-size: 34px;
  line-height: 1.1;
  margin: 14px 0 0;
}

@media (min-width: 1024px) {
  .landing-hero-copy .display {
    font-size: 52px;
  }
}

.landing-lead {
  margin: 12px auto 0;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
}

@media (min-width: 1024px) {
  .landing-lead {
    font-size: 16px;
  }
}

.landing-search-wrap {
  position: relative;
  z-index: 12;
  margin: -56px auto 0;
  padding: 0 16px;
  max-width: 920px;
}

.landing-search {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 12px;
}

@media (min-width: 1024px) {
  .landing-search {
    padding: 14px 16px 16px;
  }
}

.tabs-center {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 12px;
  padding: 4px;
}

.tabs-center .tab {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
}

.landing-search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
}

@media (min-width: 720px) {
  .landing-search-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .landing-search-form {
    grid-template-columns: minmax(220px, 1.4fr) 160px 140px auto;
  }
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-select {
  width: auto;
  min-width: 150px;
  height: 44px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

a.filter.on,
.filter.on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.stream-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 5px;
  max-width: 560px;
}

.stream-switch a {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.stream-switch a.on {
  background: var(--brand);
  color: #fff;
}

.empty-state {
  text-align: center;
  padding: 40px 16px;
  color: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: #fff;
}

.empty-state a {
  color: var(--brand);
  font-weight: 700;
}

.landing-field {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--chip);
}

.landing-field input {
  border: 0;
  background: transparent;
  width: 100%;
  outline: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.landing-search-btn {
  width: auto;
  min-width: 108px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: none;
}

.landing-main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 36px;
  padding-bottom: 48px;
}

@media (min-width: 1024px) {
  .landing-main {
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 64px;
  }
}

.landing-packages { margin-top: 16px; }

.pkg-meta { text-align: right; }

.pkg-progress { width: 140px; }

.landing-card-action {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-light);
}

.landing-promos .ad { padding: 16px; }

.store-cat-name {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ink);
}

/* Hero Section */
.hero {
  margin: 0 16px;
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .hero {
    margin: 12px auto 0;
    max-width: 1280px;
    height: 380px;
    padding: 40px;
    border-radius: 28px;
  }
}

.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(153deg, rgba(11,16,32,0.45) 20%, rgba(11,16,32,0.85) 80%);
}
.hero .content { position: relative; z-index: 2; }
.chip-glass {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.15);
  border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 700;
  backdrop-filter: blur(8px);
}
.display { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; }
.h1 { font-size: 32px; line-height: 1.15; margin: 12px 0 0; }
@media (min-width: 768px) {
  .h1 { font-size: 48px; }
}
.h2 { font-size: 24px; margin: 0; }
@media (min-width: 768px) {
  .h2 { font-size: 28px; }
}
.h3 { font-size: 18px; margin: 0; }
@media (min-width: 768px) {
  .h3 { font-size: 22px; }
}
.price { color: var(--price); }

/* Search & Filter Widgets */
.search-console-desktop {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 18px 24px;
  margin: -36px 16px 10px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .search-console-desktop {
    margin: -48px auto 16px;
    max-width: 1200px;
  }
}

.search {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); background: #ffffff; border-radius: 18px;
  padding: 12px 16px; box-shadow: 0 6px 12px rgba(15,23,42,0.03);
}
.search .grow { flex: 1; font-size: 15px; font-weight: 600; color: var(--soft); }
.filter {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); background: var(--chip);
  border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700; color: var(--brand);
}
.search-go {
  width: 40px; height: 40px; border-radius: 12px; background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 9px rgba(1,96,214,0.2);
  color: #ffffff;
}

.tabs {
  display: flex; gap: 8px; width: 100%;
  border: 1px solid var(--line); background: #ffffff; border-radius: 16px; padding: 6px;
}
.tab {
  flex: 1; height: 42px; border-radius: 12px; border: 0; background: transparent;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--muted);
  transition: all 0.15s ease;
}
.tab:hover:not(.on) {
  background: var(--chip);
  color: var(--ink);
}
.tab.on { background: var(--brand); color: #ffffff; }
.tab img { width: 14px; height: 14px; }
.tab:not(.on) img { filter: brightness(0); opacity: 0.5; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.section-head h2 { font-family: var(--display); font-size: 20px; font-weight: 800; margin: 0; }
@media (min-width: 768px) {
  .section-head h2 { font-size: 24px; }
}
.link { color: var(--brand); font-size: 14px; font-weight: 700; }
.link:hover { text-decoration: underline; }

/* Responsive Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.grid-responsive-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .grid-responsive-2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.grid-responsive-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .grid-responsive-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .grid-responsive-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.grid-responsive-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .grid-responsive-4 { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .grid-responsive-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* Two Column Desktop Split Layouts */
.desktop-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (min-width: 1024px) {
  .desktop-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: start;
    gap: 32px;
  }
}

.desktop-split-wide {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (min-width: 1024px) {
  .desktop-split-wide {
    display: grid;
    grid-template-columns: 7fr 5fr;
    align-items: start;
    gap: 32px;
  }
}

.sticky-sidebar {
  position: static;
}
@media (min-width: 1024px) {
  .sticky-sidebar {
    position: sticky;
    top: 92px;
  }
}

/* Cards & Panels */
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}
.card .cap { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.card .cap p { margin: 0; font-size: 15px; font-weight: 700; color: var(--ink); }
.card .cap span { font-size: 13px; color: var(--soft); margin-top: 2px; }

.thumb { width: 100%; height: 120px; object-fit: cover; }
@media (min-width: 768px) {
  .thumb { height: 160px; }
}
.thumb-lg { height: 160px; width: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .thumb-lg { height: 200px; }
}
.thumb-xl { height: 200px; width: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .thumb-xl { height: 230px; }
}
.thumb-hero { height: 260px; width: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .thumb-hero { height: 360px; }
}

.panel {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .panel {
    padding: 28px;
    border-radius: 24px;
  }
}
.soft-copy { font-size: 14px; color: var(--soft); margin: 0; }

.pkg {
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--line); background: var(--chip);
  border-radius: 16px; padding: 16px;
  transition: all 0.2s ease;
}
.pkg:hover {
  background: #ffffff;
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.pkg-top { display: flex; justify-content: space-between; gap: 12px; }
.pkg-top p { margin: 0; }
.pkg-top .org { font-size: 13px; color: var(--soft); margin-top: 2px; }
.pill {
  display: inline-flex; align-items: center;
  border: 1px solid var(--brand); background: #ffffff; color: var(--brand);
  border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 700;
}
.pill.price { border-color: var(--line); color: var(--price); font-weight: 800; font-size: 13px; }
.bar { height: 8px; border-radius: 999px; background: #e2e8f0; overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--brand); border-radius: inherit; }
.progress { font-size: 12px; display: flex; gap: 6px; margin-bottom: 6px; }
.progress b { color: var(--brand); }

.ad p { margin: 0 0 10px; font-size: 16px; font-weight: 800; }
.ad img { height: 130px; width: 100%; object-fit: cover; border-radius: 10px; }
@media (min-width: 768px) {
  .ad img { height: 170px; }
}

.store-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
@media (min-width: 768px) {
  .store-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.store-cat {
  border: 1px solid var(--line); background: var(--chip); border-radius: 18px; padding: 12px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.store-cat:hover {
  background: #ffffff;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.store-cat img { height: 120px; width: 100%; object-fit: cover; border-radius: 12px; margin-bottom: 10px; }
@media (min-width: 768px) {
  .store-cat img { height: 150px; }
}
.count { display: inline-block; background: var(--accent); color: #ffffff; border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 700; width: fit-content; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.stat {
  border: 1px solid var(--line); background: #ffffff; border-radius: 18px; padding: 18px;
  box-shadow: var(--shadow-sm);
}
.stat span { display: block; text-align: right; font-size: 13px; font-weight: 700; color: var(--brand); }
.stat b { display: block; margin-top: 8px; font-family: var(--display); font-size: 26px; color: var(--ink); }

/* Trip Cards */
.trip-card {
  overflow: hidden; border: 1px solid var(--line); background: #ffffff; border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.trip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}
.badge {
  position: absolute; right: 12px; top: 12px;
  border-radius: 999px; padding: 5px 12px; color: #ffffff; font-size: 12px; font-weight: 700;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.badge.navy { background: var(--navy); }
.badge.green { background: #0fa958; }
.meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--soft); margin: 6px 0; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.book-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #ffffff; border-radius: 999px; padding: 10px 16px; font-size: 13px; font-weight: 700;
  transition: background 0.15s ease;
}
.book-dark:hover { background: var(--brand); }

/* Buttons */
.btn {
  display: flex; height: 52px; width: 100%; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 16px; color: #ffffff; font-size: 15px; font-weight: 800;
  box-shadow: 0 8px 12px rgba(1,96,214,0.2);
  transition: all 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.brand { background: var(--brand); }
.btn.brand:hover { background: var(--brand-hover); }
.btn.navy { background: var(--navy); }
.btn.navy:hover { background: var(--navy-hover); }
.btn-sm { height: auto; width: auto; border-radius: 999px; padding: 8px 14px; font-size: 12px; font-weight: 700; box-shadow: none; }

/* Fields */
.field {
  display: flex; height: 56px; width: 100%; align-items: center; gap: 12px;
  border: 1px solid var(--line); background: #ffffff; border-radius: 16px; padding: 0 16px;
  box-shadow: 0 4px 8px rgba(15,23,42,0.02);
  transition: border-color 0.15s ease;
}
.field:focus-within {
  border-color: var(--brand);
}
.field label { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.field span { font-size: 12px; font-weight: 700; color: var(--soft); }
.field input { border: 0; outline: none; background: transparent; font-size: 15px; font-weight: 600; width: 100%; padding: 0; color: var(--ink); }
.field .ico {
  width: 32px; height: 32px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--chip); display: flex; align-items: center; justify-content: center;
}

.activity {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); background: var(--chip); border-radius: 16px; padding: 14px; margin-bottom: 12px;
  transition: all 0.15s ease;
}
.activity:hover {
  background: #ffffff;
  border-color: var(--brand);
}
.activity .ico { width: 40px; height: 40px; border-radius: 20px; background: #eaf2ff; display: flex; align-items: center; justify-content: center; color: var(--brand); }
.activity p { margin: 0; font-size: 15px; font-weight: 700; color: var(--ink); }
.activity span { font-size: 13px; color: var(--soft); }

/* Menu Modal on Mobile */
.menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(0,0,0,0.5);
  display: none;
  backdrop-filter: blur(4px);
}
.menu.open { display: block; }
.menu aside {
  background: #ffffff; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px;
  padding: 48px 28px 24px; min-height: 520px; display: flex; flex-direction: column;
  box-shadow: 0 16px 36px rgba(15,23,42,0.15);
  max-width: 500px;
  margin: 0 auto;
}
.menu nav { display: flex; flex-direction: column; gap: 20px; font-size: 18px; font-weight: 700; }
.menu nav a:hover { color: var(--brand); }
.menu .support { margin: auto 0 20px; text-align: right; font-size: 16px; font-weight: 700; color: var(--soft); }
.social { display: flex; gap: 24px; border-top: 1px solid var(--line); padding: 18px 0; justify-content: center; }

.input {
  height: 50px; width: 100%; border-radius: 14px; border: 1px solid var(--line);
  background: var(--chip); padding: 0 14px; font-size: 14px; font-weight: 600; outline: none;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.input:focus {
  border-color: var(--brand);
  background: #ffffff;
}

.pay {
  display: flex; width: 100%; align-items: center; gap: 14px;
  border: 1px solid var(--line); border-radius: 16px; padding: 14px; background: #ffffff; margin-bottom: 12px;
  transition: all 0.15s ease;
  cursor: pointer;
}
.pay:hover { border-color: var(--brand); }
.pay.on { background: #f0f7ff; border-color: var(--brand); }
.pay img { height: 26px; width: 44px; object-fit: contain; }
.radio { width: 20px; height: 20px; border-radius: 10px; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; }
.pay.on .radio { background: var(--brand); border-color: var(--brand); }
.pay.on .radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #ffffff;
}

/* Modern Multi-Column Desktop Footer */
.footer-wrapper {
  background: #ffffff;
  border-top: 1px solid var(--line);
  margin-top: auto;
  width: 100%;
}
.footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 16px 24px;
}
@media (min-width: 768px) {
  .footer {
    padding: 56px 24px 32px;
  }
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-cols {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
  }
}
.footer-col h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 14px;
  color: var(--soft);
  transition: color 0.15s ease;
}
.footer-col ul a:hover {
  color: var(--brand);
}

.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners img {
  height: 38px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.partners img:hover {
  opacity: 1;
}

.copy { text-align: center; font-size: 13px; color: var(--soft); margin: 20px 0 0; }

.ok { color: var(--success); font-size: 13px; font-weight: 700; }
.err { color: var(--accent); font-size: 13px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; }
.bold { font-weight: 800; }
.mt { margin-top: 12px; }
.mb { margin-bottom: 12px; }
.rel { position: relative; }
