*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --bg: #f8f8f8;
  --bg2: #f0f0f0;
  --surface: #ffffff;
  --border: #e2e2e2;
  --border2: #d0d0d0;
  --text: #111111;
  --text2: #333333;
  --muted: #777777;
  --faint: #bbbbbb;
  --red: #d0221a;
  --red-dark: #a81913;
  --red-dim: rgba(208,34,26,0.08);
  --red-border: rgba(208,34,26,0.2);
  --ink: #1a1a1a;
  --teal: #0b7a75;
  --amber: #d97706;
}

html, body { overflow-x: hidden; }
body.all-pages { display: flex; flex-direction: column; min-height: 100vh; }
body.all-pages .container.main { margin-top: 32px; }
html { font-family: 'Mulish', sans-serif; background: var(--bg); color: var(--text); }
a { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
h1 { font-family: 'Source Serif 4', serif; font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.5px; }
h2 { font-size: clamp(22px, 3vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 28px); }
h4 { font-size: 20px; }
h5 { font-size: 17px; }
h6 { font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }

p {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 16px;
}
p:last-child { margin-bottom: 0; }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--red);
  padding: 8px 48px;
  display: flex; align-items: center; gap: 16px;
  overflow: hidden;
}
.topbar-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.7);
  letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.topbar-items { display: flex; gap: 20px; overflow: hidden; }
.topbar-item {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
  cursor: pointer; transition: color .2s; white-space: nowrap;
}
.topbar-item:hover { color: white; }
.topbar-sep { color: rgba(255,255,255,0.3); flex-shrink: 0; }

/* ─── NAV ─── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.5px;
}
.logo em { font-style: normal; color: var(--red); }
img.logo { height: 28px; width: auto; display: block; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--muted); font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 5px; transition: all .2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); background: var(--bg); }
.nav-cta {
  background: var(--red) !important; color: white !important;
  border-radius: 5px; margin-left: 8px; padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: var(--white); border-bottom: 2px solid var(--border);
  padding: 16px 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text2); font-size: 15px; font-weight: 700;
  padding: 12px 16px; border-radius: 6px; transition: background .2s;
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { background: var(--bg); }
.mobile-menu .m-cta {
  background: var(--red); color: white !important;
  text-align: center; border-radius: 6px; margin-top: 8px;
  padding: 13px 16px;
}

/* ─── HERO ─── */
.hero {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 0 48px;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: stretch;
  min-height: 440px;
}
.hero-main {
  padding: 64px 64px 64px 0;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
}
.hero-aside {
  padding: 40px 0;
  display: flex; flex-direction: column;
}

.h-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
}
.h-label-dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1px; color: var(--ink);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--red); }

.hero-desc {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-width: 440px; margin-bottom: 32px;
}

.search-bar {
  display: flex;
  border: 2px solid var(--ink); border-radius: 7px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  max-width: 500px;
}
.search-bar:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-dim); }
.search-bar input {
  flex: 1; border: none; outline: none;
  padding: 13px 16px; font-size: 14px;
  font-family: 'Mulish', sans-serif; color: var(--text); background: white;
  min-width: 0;
}
.search-bar input::placeholder { color: var(--faint); }
.search-bar button {
  background: var(--ink); border: none; cursor: pointer;
  padding: 0 22px; color: white;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.search-bar button:hover { background: var(--red); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.htag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--muted); background: var(--bg);
  border: 1px solid var(--border2); border-radius: 4px; padding: 5px 11px;
  cursor: pointer; transition: all .2s;
}
.htag:hover { color: var(--red); border-color: var(--red-border); background: var(--red-dim); }

/* KPI aside */
.aside-header {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint);
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.kpi-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); flex: 1;
}
.kpi {
  background: var(--white); padding: 22px 18px;
  transition: background .2s;
}
.kpi:hover { background: var(--bg); }
.kpi-val {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800; line-height: 1;
  color: var(--ink); margin-bottom: 5px; letter-spacing: -1px;
}
.kpi.kv-red .kpi-val { color: var(--red); }
.kpi.kv-teal .kpi-val { color: var(--teal); }
.kpi.kv-amber .kpi-val { color: var(--amber); }
.kpi-label { font-size: 12px; color: var(--muted); line-height: 1.35; font-weight: 500; }

/* ─── TRUST ─── */
.trust {
  background: var(--ink); padding: 14px 48px;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}
.ti { display: flex; align-items: center; gap: 8px; }
.ti-icon { font-size: 14px; }
.ti-text { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.ti-text strong { color: white; }

/* ─── MAIN ─── */
body.home-page .main { max-width: 100% !important; margin: 0 auto; padding: 52px 48px; }

/* ─── SEARCHBAR ─── */
.searchbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
  margin-bottom: 32px;
}
.searchbar form {
  display: flex;
  border: 2px solid var(--ink);
  border-radius: 7px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.searchbar form:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 16px;
  font-size: 14px;
  font-family: 'Mulish', sans-serif;
  color: var(--text);
  background: var(--white);
  min-width: 0;
}
.search-input::placeholder { color: var(--faint); }
.search-btn {
  background: var(--ink);
  border: none;
  cursor: pointer;
  padding: 0 22px;
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--red); }

@media (max-width: 1024px) {
  .searchbar { padding: 14px 24px; }
}
@media (max-width: 768px) {
  .searchbar { padding: 12px 16px; }
  .search-input { padding: 10px 12px; font-size: 13px; }
  .search-btn { padding: 0 16px; font-size: 12px; }
}

/* ─── CONTACT FORM ─── */
.contactus {
  max-width: 560px;
  margin: 48px auto;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact p {
  margin: 0;
}

.contact input,
.contact textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  box-shadow: none;
  transition: border-color .2s, box-shadow .2s;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: var(--faint);
}

.contact input:focus,
.contact textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
  outline: none !important;
  background: var(--white) !important;
}

.contact textarea {
  height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.contact button[type="submit"] {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  height: 42px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background .2s;
}

.contact button[type="submit"]:hover {
  background: var(--red-dark);
}

.contact button[type="submit"]:active {
  background: #8a1410;
}

/* Alert */
.alert {
  background: var(--red-dim); border: 1px solid var(--red-border);
  border-left: 4px solid var(--red); border-radius: 6px;
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.alert-body { flex: 1; min-width: 200px; }
.alert strong { color: var(--red); font-size: 14px; font-weight: 700; display: block; margin-bottom: 2px; }
.alert span { font-size: 13px; color: var(--muted); }
.al-btn {
  background: var(--red); color: white;
  font-size: 12px; font-weight: 700; padding: 9px 18px; border-radius: 4px;
  cursor: pointer; white-space: nowrap; letter-spacing: 0.04em; flex-shrink: 0;
}

/* Section header */
.sh {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 12px; border-bottom: 3px solid var(--ink);
  margin-bottom: 24px;
}
.sh-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.3px;
}
.sh-sub { font-size: 13px; color: var(--muted); margin-top: 3px; }
.sh-link { font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: 0.04em; cursor: pointer; text-transform: uppercase; white-space: nowrap; }

/* Categories */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; margin-bottom: 52px;
}
.cat-cell {
  padding: 22px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
  display: flex; flex-direction: column; gap: 7px;
  background: white;
}
.cat-cell:nth-child(4n) { border-right: none; }
.cat-cell:nth-last-child(-n+4) { border-bottom: none; }
.cat-cell:hover { background: var(--red-dim); }
.cat-cell:hover .cc-name { color: var(--red); }
.cc-emoji { font-size: 22px; margin-bottom: 2px; }
.cc-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.1px; transition: color .2s; line-height: 1.3;
}
.cc-count { font-size: 11px; color: var(--faint); font-weight: 600; }

/* Featured */
.feat-layout {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 0; border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; margin-bottom: 52px; background: white;
}
.feat-main {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
}
.feat-main:hover { background: #fafafa; }
.fm-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red);
  background: var(--red-dim); border: 1px solid var(--red-border);
  border-radius: 3px; padding: 3px 10px;
  display: inline-block; margin-bottom: 18px;
}
.feat-main h3 {
  font-family: 'Source Serif 4', serif;
  font-size: 28px; font-weight: 700; line-height: 1.2;
  color: var(--ink); letter-spacing: -0.5px; margin-bottom: 14px;
}
.feat-main p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.fm-read {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 800; color: var(--red);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.fm-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--red); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: transform .2s;
}
.feat-main:hover .fm-arrow { transform: translateX(3px); }

.feat-sidebar { display: flex; flex-direction: column; }
.fs-item {
  padding: 20px 22px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
  flex: 1; display: flex; flex-direction: column; gap: 5px;
}
.fs-item:last-child { border-bottom: none; }
.fs-item:hover { background: var(--bg); }
.fs-cat {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--faint);
}
.fs-title { font-size: 13px; font-weight: 600; color: var(--text2); line-height: 1.4; }
.fs-meta { font-size: 11px; color: var(--faint); margin-top: 2px; }

/* How it works */
.hiw { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 52px; }
.hiw-card {
  background: white; border: 1px solid var(--border); border-radius: 8px;
  padding: 26px 22px; position: relative; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.hiw-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.hiw-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.hiw-n {
  font-family: 'Syne', sans-serif;
  font-size: 40px; font-weight: 800; color: var(--border2);
  line-height: 1; margin-bottom: 12px; letter-spacing: -1px;
}
.hiw-t { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 7px; }
.hiw-d { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* CTA */
.cta {
  background: var(--red); border-radius: 8px; padding: 52px 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
  margin-bottom: 52px; position: relative; overflow: hidden; flex-wrap: wrap;
}
.cta::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 300px;
  background: linear-gradient(to left, rgba(0,0,0,0.08), transparent);
  pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800; color: white;
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.cta-text p { font-size: 14px; color: rgba(255,255,255,0.65); }
.cta-f { display: flex; gap: 10px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-f input {
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3);
  color: white; padding: 13px 18px; border-radius: 6px;
  font-size: 14px; font-family: 'Mulish', sans-serif; outline: none;
  width: 220px; transition: border-color .2s; min-width: 0;
}
.cta-f input::placeholder { color: rgba(255,255,255,0.5); }
.cta-f input:focus { border-color: white; }
.cta-f button {
  background: white; color: var(--red); border: none; cursor: pointer;
  padding: 13px 26px; border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 800; white-space: nowrap;
  transition: background .2s, color .2s;
}
.cta-f button:hover { background: var(--ink); color: white; }

/* Footer */
.container.main { margin-bottom: 52px; }

footer {
  background: var(--ink); padding: 28px 48px;
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 16px; text-align: center;
}
.f-logo { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 800; color: white; letter-spacing: -0.3px; }
.f-logo em { font-style: normal; color: var(--red); }
.f-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.f-links a { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 600; transition: color .2s; }
.f-links a:hover { color: rgba(255,255,255,0.65); }
.f-copy, .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); width: 100%; text-align: center; }

/* Animations */
@keyframes up { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.hero-main > * { animation: up .5s ease both; }
.h-label { animation-delay:.05s; }
.hero h1 { animation-delay:.12s; }
.hero-desc { animation-delay:.2s; }
.search-bar { animation-delay:.27s; }
.hero-tags { animation-delay:.34s; }
.hero-aside { animation: up .5s ease .18s both; }

/* ═══════════════════════════════════════════
   TABLET — 1024px and below
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .topbar { padding: 8px 24px; }
  .topbar-label { display: none; }
  nav { padding: 0 24px; }
  .hero { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; min-height: auto; }
  .hero-main { padding: 48px 0 36px; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-aside { padding: 32px 0 36px; }
  .kpi-grid { grid-template-columns: repeat(4, 1fr); }
  .main { padding: 40px 24px; }
  body.home-page .main { padding: 40px 24px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-cell:nth-child(4n) { border-right: 1px solid var(--border); }
  .cat-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--border); }
  .cat-cell:nth-child(2n) { border-right: none; }
  .cat-cell:nth-last-child(-n+2) { border-bottom: none; }
  .hiw { grid-template-columns: repeat(2, 1fr); }
  .cta { padding: 40px 32px; }
  .cta-f input { width: 200px; }
  footer { padding: 24px; }
}

/* ═══════════════════════════════════════════
   MOBILE — 768px and below
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .topbar { padding: 8px 16px; gap: 10px; }
  .topbar-items { gap: 12px; }
  .topbar-sep { display: none; }
  .topbar-item { font-size: 11px; }
  .topbar-item:not(:first-child) { display: none; }
  nav { padding: 0 16px; height: 56px; }
  .logo { font-size: 19px; }
  img.logo { height: 26px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 56px; }
  .hero { padding: 0 16px; }
  .hero-main { padding: 36px 0 28px; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); letter-spacing: -0.5px; }
  .hero-desc { font-size: 14px; max-width: 100%; margin-bottom: 24px; }
  .search-bar { max-width: 100%; }
  .search-bar input { padding: 12px 14px; font-size: 14px; }
  .search-bar button { padding: 0 16px; font-size: 12px; }
  .hero-tags { gap: 6px; }
  .htag { font-size: 11px; padding: 4px 10px; }
  .hero-aside { padding: 28px 0 32px; }
  .aside-header { font-size: 10px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi { padding: 18px 14px; }
  .kpi-val { font-size: 28px; }
  .kpi-label { font-size: 11px; }
  .trust { padding: 12px 16px; gap: 16px; justify-content: center; }
  .ti-text { font-size: 11px; }
  .main { padding: 32px 16px; }
  body.home-page .main { padding: 32px 16px; }
  .alert { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 16px; }
  .alert-body { min-width: 0; width: 100%; }
  .al-btn { width: 100%; text-align: center; padding: 11px 18px; }
  .sh-title { font-size: 18px; }
  .sh-link { font-size: 11px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-cell { padding: 16px 14px; }
  .cc-emoji { font-size: 20px; }
  .cc-name { font-size: 12px; }
  .feat-layout { grid-template-columns: 1fr; border-radius: 8px; }
  .feat-main { padding: 28px 22px; border-right: none; border-bottom: 1px solid var(--border); }
  .feat-main h3 { font-size: 22px; }
  .feat-sidebar { border-top: none; }
  .fs-item { padding: 16px 18px; }
  .hiw { grid-template-columns: 1fr; gap: 10px; }
  .hiw-card { padding: 22px 20px; display: flex; gap: 16px; align-items: flex-start; }
  .hiw-card::before { width: 3px; height: auto; top: 0; left: 0; right: auto; bottom: 0; }
  .hiw-n { font-size: 32px; margin-bottom: 0; flex-shrink: 0; width: 52px; }
  .hiw-body { flex: 1; }
  .cta { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 24px; }
  .cta-text h2 { font-size: 22px; }
  .cta-f { flex-direction: column; width: 100%; }
  .cta-f input { width: 100%; }
  .cta-f button { width: 100%; text-align: center; padding: 14px; }
  footer { flex-direction: column; align-items: center; padding: 24px 16px; gap: 16px; text-align: center; }
  .f-links { gap: 14px; justify-content: center; }
  .f-copy { text-align: center; }
}

/* ═══════════════════════════════════════════
   SMALL MOBILE — 480px and below
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .topbar-items { display: none; }
  .hero h1 { font-size: 30px; }
  .cat-cell { padding: 14px 12px; gap: 5px; }
  .cc-emoji { font-size: 18px; }
  .cc-name { font-size: 11px; }
  .cc-count { font-size: 10px; }
  .feat-main h3 { font-size: 20px; }
  .kpi-val { font-size: 26px; }
}

/* ═══════════════════════════════════
            WIDGETS
═══════════════════════════════════ */

/* ---- SUBLIST ---- */

.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  background: var(--red-dim);
  border-color: var(--red-border);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--red-border);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.col-gap:has(> .item-bubbles)::before { display: none !important; }

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23d0221a'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */

.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  color: var(--red);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {
  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}

.container {
  max-width: 1600px !important;
}
