/* ── Use Case Page Styles ─────────────────────────────────────────────────── */

/* HERO — matches integrations page pattern */
.uc-hero,
.uc-list-hero {
  background: var(--black);
  padding: calc(72px + 56px) 60px 80px;
  position: relative;
  overflow: hidden;
}
.uc-hero::before,
.uc-list-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.uc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Breadcrumb (detail page only) */
.uc-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
}
.uc-breadcrumb a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .15s;
}
.uc-breadcrumb a:hover { color: rgba(255,255,255,.75); }
.uc-breadcrumb-sep { color: rgba(255,255,255,.15); }
.uc-breadcrumb-current { color: rgba(255,255,255,.5); }

/* Badge — reuse integrations .hero-badge */
.uc-hero .hero-badge,
.uc-list-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.uc-hero .hero-badge::before,
.uc-list-hero .hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 2s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* H1 */
.uc-hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.uc-hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub text */
.uc-hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 auto 40px;
  max-width: 580px;
}

/* Actions — reuse .hero-actions from integrations */
.uc-hero .hero-actions,
.uc-list-hero .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

/* Chips — reuse .hero-chips/.hero-chip from integrations */
.uc-hero .hero-chips,
.uc-list-hero .hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.uc-hero .hero-chip,
.uc-list-hero .hero-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 5px 13px;
  font-size: .74rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.uc-hero .hero-chip i,
.uc-list-hero .hero-chip i {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* STATS BAR */
.uc-stats-bar {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 32px 60px;
}
.uc-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.uc-stat-item { padding: 16px; }
.uc-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.uc-stat-lbl {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* PROBLEM SECTION */
.uc-problem-section {
  background: var(--black);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.uc-problem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 20% 50%, rgba(255,255,255,.025) 0%, transparent 70%);
  pointer-events: none;
}
.uc-problem-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.uc-problem-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}
.uc-problem-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  white-space: nowrap;
  flex-shrink: 0;
}
.uc-problem-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.1) 0%, transparent 100%);
}
.uc-problem-body {
  position: relative;
  padding-left: 36px;
  border-left: 1.5px solid rgba(255,255,255,.1);
}
.uc-problem-glyph {
  position: absolute;
  top: -28px;
  left: -4px;
  font-size: 7rem;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(255,255,255,.05);
  pointer-events: none;
  user-select: none;
}
.uc-problem-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  margin: 0;
  font-style: normal;
  font-weight: 400;
}
.uc-problem-foot {
  margin-top: 40px;
  padding-left: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  color: rgba(255,255,255,.18);
  font-weight: 500;
  letter-spacing: .08em;
}
.uc-problem-foot i {
  font-size: .78rem;
  animation: uc-bounce 2s ease-in-out infinite;
}
@keyframes uc-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* SOLUTION */
.uc-solution-section {
  padding: 86px 60px;
  background: var(--white);
}
.uc-solution-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.uc-section-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 8px;
}
.uc-section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}
.uc-solution-text {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
}
.uc-solution-visual {
  background: var(--black);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.uc-flow-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.uc-flow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.uc-flow-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.uc-flow-step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.uc-flow-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.uc-flow-num.active {
  background: #22c55e22;
  border-color: #22c55e66;
  color: #4ade80;
}
.uc-flow-line {
  width: 1px;
  flex: 1;
  min-height: 16px;
  background: rgba(255,255,255,.08);
  margin: 4px 0;
}
.uc-flow-text {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  padding: 4px 0 16px;
}
.uc-flow-text strong {
  color: rgba(255,255,255,.85);
}

/* FLOW SECTION (full width) */
.uc-flow-section {
  background: var(--off);
  padding: 86px 60px;
}
.uc-flow-section-inner {
  max-width: 900px;
  margin: 0 auto;
}
.uc-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border2);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.uc-step-card {
  background: var(--white);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s;
}
.uc-step-card:hover { background: #f0fdf4; }
.uc-step-num {
  font-size: 2rem;
  font-weight: 800;
  color: #d1fae5;
  line-height: 1;
}
.uc-step-text {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.65;
}
.uc-step-text strong {
  color: var(--black);
  display: block;
  margin-bottom: 3px;
  font-size: .82rem;
}

/* BENEFITS TABLE */
.uc-benefits-section {
  padding: 86px 60px;
  background: var(--white);
}
.uc-benefits-inner {
  max-width: 900px;
  margin: 0 auto;
}
.uc-benefits-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.uc-benefits-table thead tr {
  background: var(--black);
}
.uc-benefits-table thead th {
  padding: 16px 24px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
}
.uc-benefits-table thead th:first-child { color: rgba(255,255,255,.5); }
.uc-benefits-table thead th.th-before { color: #f87171; }
.uc-benefits-table thead th.th-after  { color: #4ade80; }
.uc-benefits-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.uc-benefits-table tbody tr:last-child { border-bottom: none; }
.uc-benefits-table tbody tr:nth-child(even) { background: var(--off); }
.uc-benefits-table tbody td {
  padding: 18px 24px;
  font-size: .88rem;
  line-height: 1.5;
}
.td-area {
  font-weight: 700;
  color: var(--black);
  width: 22%;
}
.td-before {
  color: #b91c1c;
  width: 35%;
}
.td-before::before {
  content: '✗ ';
  font-size: .75rem;
}
.td-after {
  color: #15803d;
  width: 43%;
  font-weight: 600;
}
.td-after::before {
  content: '✓ ';
  font-size: .75rem;
}

/* CTA SECTION */
.uc-cta {
  background: var(--black);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.uc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, #22c55e12 0%, transparent 70%);
}
.uc-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.uc-cta-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 14px;
}
.uc-cta-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.uc-cta-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 36px;
}
.uc-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RELATED USE CASES */
.uc-related {
  padding: 86px 60px;
  background: var(--off);
}
.uc-related-inner {
  max-width: 900px;
  margin: 0 auto;
}
.uc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.uc-related-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}
.uc-related-card:hover {
  border-color: var(--black);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.uc-related-industry {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 8px;
}
.uc-related-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 6px;
}
.uc-related-dir {
  font-size: .7rem;
  color: var(--muted2);
}
.uc-related-arrow {
  font-size: .75rem;
  color: var(--muted2);
  margin-top: 10px;
  display: block;
  transition: transform .15s;
}
.uc-related-card:hover .uc-related-arrow { transform: translateX(4px); }

/* LIST PAGE — uses same .uc-hero-inner, .uc-hero-h1, .uc-hero-sub as detail */

/* FILTER BAR — centered column layout, scrolls with page */
.uc-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 60px;
}
.uc-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.uc-search-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
}
.uc-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .9rem;
  color: var(--muted2);
  pointer-events: none;
}
.uc-search-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 11px 40px 11px 38px;
  font-size: .88rem;
  font-family: 'Sora', sans-serif;
  color: var(--black);
  background: var(--off);
  outline: none;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.uc-search-input:focus {
  border-color: var(--black);
  background: var(--white);
}
.uc-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted2);
  font-size: .95rem;
  padding: 2px;
  line-height: 1;
}
.uc-search-clear:hover { color: var(--black); }

.uc-filter-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.uc-filter-chip {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  font-family: 'Sora', sans-serif;
}
.uc-filter-chip:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--white);
}
.uc-filter-chip.active {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.uc-filter-reset {
  background: var(--black);
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: opacity .15s;
  white-space: nowrap;
}
.uc-filter-reset:hover { opacity: .8; }

/* CARD GRID */
.uc-list-section { padding: 52px 60px 80px; }
.uc-list-inner   { max-width: 1200px; margin: 0 auto; }

.uc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.uc-card-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  position: relative;
  overflow: hidden;

  /* Entrance state */
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  .48s ease,
    transform .48s ease,
    border-color .22s,
    box-shadow .22s;
}
.uc-card-item.uc-entered {
  opacity: 1;
  transform: translateY(0);
}

/* Top accent bar */
.uc-card-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.uc-card-item.uc-entered:hover {
  border-color: var(--black);
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.uc-card-item.uc-entered:hover::before { transform: scaleX(1); }

.uc-card-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), background .2s;
}
.uc-card-item.uc-entered:hover .uc-card-icon-wrap {
  background: #1a1a1a;
  transform: scale(1.12);
}
.uc-card-icon-wrap i {
  font-size: 1.3rem;
  color: #fff;
}

.uc-card-body { flex: 1; }
.uc-card-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 6px;
}
.uc-card-industry {
  display: inline-block;
  font-size: .6rem;
  font-weight: 600;
  color: var(--muted2);
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 10px;
}
.uc-card-problem {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.uc-card-arrow {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s, color .15s;
}
.uc-card-item:hover .uc-card-arrow {
  gap: 8px;
  color: var(--black);
}

/* Hidden state — overrides display:flex on cards */
.uc-hidden { display: none !important; }

/* EMPTY STATE */
.uc-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted2);
}
.uc-empty i { font-size: 2.5rem; display: block; margin-bottom: 14px; opacity: .3; }
.uc-empty p { font-size: .95rem; margin-bottom: 20px; }
.uc-empty button {
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
}


/* HOW IT WORKS */
.uc-howworks-section { background: var(--off); padding: 80px 60px; }
.uc-howworks-inner { max-width: 900px; margin: 0 auto; }
.uc-howworks-body { font-size: .95rem; color: var(--muted); line-height: 1.9; margin-top: 20px; }

/* WHO FOR */
.uc-whofor-strip { background: var(--black); padding: 52px 60px; }
.uc-whofor-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 24px; align-items: flex-start; }
.uc-whofor-label { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 10px; white-space: nowrap; }
.uc-whofor-text { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.85; margin: 0; }

/* BENEFITS NARRATIVE */
.uc-benefits-narrative { background: var(--off); border-top: 1px solid var(--border); padding: 40px 60px; }
.uc-benefits-narrative-inner { max-width: 900px; margin: 0 auto; }
.uc-benefits-narrative p { font-size: .92rem; color: var(--muted); line-height: 1.85; margin: 0; }

/* IMPLEMENTATION NOTE */
.uc-impl-note { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 60px; }
.uc-impl-note-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 18px; align-items: flex-start; }
.uc-impl-note-icon { width: 40px; height: 40px; min-width: 40px; background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.uc-impl-note-icon i { font-size: 1rem; color: var(--muted2); }
.uc-impl-note-label { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted2); margin-bottom: 6px; }
.uc-impl-note-text { font-size: .88rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* FAQ */
.uc-faq-section { background: var(--white); padding: 80px 60px; }
.uc-faq-inner { max-width: 900px; margin: 0 auto; }
.uc-faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; }
.uc-faq-item { padding: 24px 28px; border-bottom: 1px solid var(--border); transition: background .15s; }
.uc-faq-item:last-child { border-bottom: none; }
.uc-faq-item:hover { background: var(--off); }
.uc-faq-q { font-size: .92rem; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.4; }
.uc-faq-a { font-size: .85rem; color: var(--muted); line-height: 1.75; }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s, transform .5s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .uc-steps-grid   { grid-template-columns: repeat(3, 1fr); }
  .uc-card-grid    { grid-template-columns: repeat(2, 1fr); }
  .uc-related-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-filter-bar   { padding: 16px 32px; }
  .uc-results-bar  { padding: 12px 32px; }
  .uc-list-section { padding: 40px 32px 60px; }
}
@media (max-width: 768px) {
  .uc-hero, .uc-list-hero { padding: calc(72px + 40px) 24px 60px; }
  .uc-stats-bar { padding: 24px; }
  .uc-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .uc-problem-section { padding: 52px 24px; }
  .uc-problem-body { padding-left: 22px; }
  .uc-problem-foot { padding-left: 22px; }
  .uc-problem-text { font-size: 1rem; }
  .uc-solution-section, .uc-flow-section, .uc-benefits-section,
  .uc-cta, .uc-related, .uc-list-section { padding: 60px 24px; }
  .uc-solution-inner { grid-template-columns: 1fr; gap: 36px; }
  .uc-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-list-grid { grid-template-columns: 1fr; }
  .uc-related-grid { grid-template-columns: 1fr; }
  .uc-benefits-table thead th, .uc-benefits-table tbody td { padding: 12px 14px; font-size: .8rem; }
  .uc-hero-h1, .uc-list-h1 { letter-spacing: -.01em; }
  .uc-howworks-section, .uc-benefits-narrative, .uc-faq-section { padding: 52px 24px; }
  .uc-whofor-strip, .uc-impl-note { padding: 36px 24px; }
  .uc-faq-item { padding: 18px 20px; }
}
@media (max-width: 480px) {
  .uc-steps-grid  { grid-template-columns: 1fr; }
  .uc-card-grid   { grid-template-columns: 1fr; }
  .uc-benefits-table { font-size: .75rem; }
  .uc-cta-actions { flex-direction: column; }
  .uc-cta-actions a { text-align: center; }
  .uc-filter-bar  { padding: 14px 16px; top: 56px; }
  .uc-search-wrap { width: 100%; }
  .uc-results-bar { padding: 10px 16px; }
  .uc-list-section { padding: 32px 16px 48px; }
}
