/* ---------------------------------------------------------------- tokens */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #f1f5f9;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --text: #0f172a;
  --text-2: #334155;
  --muted: #64748b;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #eff6ff;
  --ok: #047857;
  --ok-soft: #ecfdf5;
  --danger: #b91c1c;
  --danger-soft: #fef2f2;

  --radius: 12px;
  --radius-sm: 8px;
  --wrap: 1200px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow: 0 4px 16px rgba(15, 23, 42, .07);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .10);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(28px, 4.2vw, 42px); }
h2 { font-size: clamp(22px, 2.6vw, 28px); }
h3 { font-size: 17px; }
p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap.narrow { max-width: 820px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { left: 8px; }

/* -------------------------------------------------------------- primitives */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }

.btn-ghost { background: var(--surface); border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--muted); color: var(--text); }

.btn-lg { padding: 13px 24px; font-size: 16px; }
.btn-block { width: 100%; }

.input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 15px;
}
.input::placeholder { color: #94a3b8; }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37, 99, 235, .15); }
.input-sm { padding: 8px 11px; font-size: 14px; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 5px;
  background: var(--surface-3);
  color: var(--muted);
}
.tag-ok { background: var(--ok-soft); color: var(--ok); }

.pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
}
.chip:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.chip.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.chip.is-active .pill { background: rgba(255, 255, 255, .22); color: #fff; }

.chip-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }

/* ------------------------------------------------------------------ header */

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; font-size: 18px; }
.brand:hover { text-decoration: none; color: var(--text); }
.brand-mark {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  background: linear-gradient(135deg, #3b82f6, #2563eb 60%, #4f46e5);
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 66px; }

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav > a:not(.btn) {
  padding: 8px 12px; border-radius: var(--radius-sm);
  color: var(--text-2); font-size: 15px; font-weight: 500;
}
.site-nav > a:not(.btn):hover { background: var(--surface-2); color: var(--text); text-decoration: none; }

.nav-burger { display: none; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

/* -------------------------------------------------------------------- hero */

.hero {
  background:
    radial-gradient(760px 320px at 8% -20%, rgba(37, 99, 235, .10), transparent 70%),
    radial-gradient(680px 300px at 95% -10%, rgba(79, 70, 229, .09), transparent 65%),
    var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding-block: 56px 60px;
}
.hero-in { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .9fr); gap: 40px; align-items: start; }

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
}

.hero h1 { margin-bottom: 16px; }
.lede { font-size: 18px; color: var(--text-2); max-width: 62ch; margin-bottom: 26px; }

.hero-search { display: flex; gap: 10px; margin-bottom: 22px; max-width: 620px; }
.hero-search .input { flex: 1; }

.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 26px; margin: 0; padding: 0; color: var(--muted); font-size: 14px; }
.trust strong { display: block; font-size: 22px; color: var(--text); letter-spacing: -0.02em; }

/* --- hero network diagram: hub + the six busiest platforms as nodes ------- */

.hero-visual { position: relative; width: min(100%, 440px); aspect-ratio: 1; margin-inline: auto; }

.hv-links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hv-links line { stroke: url(#hvline); stroke-width: .7; stroke-linecap: round; }

.hv-hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 138px; height: 138px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  text-align: center;
}
.hv-hub-mark { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, #3b82f6, #2563eb 60%, #4f46e5); }
.hv-hub strong { font-size: 25px; letter-spacing: -0.03em; line-height: 1; }
.hv-hub-label { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.hv-nodes { list-style: none; margin: 0; padding: 0; }
.hv-node { position: absolute; transform: translate(-50%, -50%); }
.hv-node a {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 7px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow);
  animation: hv-float 6.5s ease-in-out infinite;
}
.hv-node a:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); text-decoration: none; animation-play-state: paused; transform: translateY(-3px); }
.hv-node .pico { width: 30px; height: 30px; border-radius: 9px; }
.hv-node .pico svg { width: 18px; height: 18px; }
.hv-node .pico-letter { font-size: 12px; }
.hv-node-text { display: flex; flex-direction: column; min-width: 0; }
.hv-node-text strong { font-size: 14px; line-height: 1.15; color: var(--text); }
.hv-node-text > span { font-size: 11px; color: var(--muted); white-space: nowrap; }

.hv-n1 { left: 50%; top: 14%; }
.hv-n2 { left: 81%; top: 32%; }
.hv-n3 { left: 81%; top: 68%; }
.hv-n4 { left: 50%; top: 86%; }
.hv-n5 { left: 19%; top: 68%; }
.hv-n6 { left: 19%; top: 32%; }
.hv-n2 a { animation-delay: -1.1s; }
.hv-n3 a { animation-delay: -2.2s; }
.hv-n4 a { animation-delay: -3.3s; }
.hv-n5 a { animation-delay: -4.4s; }
.hv-n6 a { animation-delay: -5.5s; }

@keyframes hv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------------------------------------------------------------- sections */

.section { padding-block: 62px; }
.section-alt { background: var(--surface-2); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 30px; max-width: 70ch; }
.section-head h2 { margin-bottom: 8px; }
.section-head p { color: var(--muted); margin: 0; }
.section-more { margin: 22px 0 0; font-weight: 600; }

.platform-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px;
}
.platform-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.platform-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); text-decoration: none; }
.platform-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.platform-name { font-weight: 650; font-size: 16px; color: var(--text); }
.platform-meta { font-size: 12.5px; color: var(--muted); }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.steps li { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step-n {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; margin-bottom: 12px;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark);
  font-weight: 700; font-size: 15px;
}
.steps p { margin: 0; color: var(--muted); font-size: 15px; }

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary { padding: 16px 20px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { margin: 0; font-size: 16px; font-weight: 600; }
.faq summary::after { content: '+'; font-size: 20px; color: var(--muted); flex: none; }
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 20px 18px; margin: 0; color: var(--text-2); }

.cta { padding-block: 56px; }
.cta-in {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding: 34px 38px;
  border-radius: 16px;
  background: linear-gradient(120deg, #1e40af, #2563eb 55%, #4f46e5);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-in h2 { margin-bottom: 6px; color: #fff; }
.cta-in p { margin: 0; color: rgba(255, 255, 255, .85); }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-actions .btn-primary { background: #fff; color: var(--accent-dark); }
.cta-actions .btn-primary:hover { background: #eff6ff; color: var(--accent-dark); }
.cta-actions .btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff; }
.cta-actions .btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ------------------------------------------------------------- breadcrumbs */

.breadcrumb { border-bottom: 1px solid var(--line); background: var(--surface-2); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 12px 0; font-size: 13.5px; }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: var(--line-strong); }
.breadcrumb span[aria-current] { color: var(--muted); }

/* ----------------------------------------------------------------- catalog */

.catalog { display: grid; grid-template-columns: 286px minmax(0, 1fr); gap: 32px; padding-block: 32px 64px; align-items: start; }

.sidebar { position: sticky; top: 86px; max-height: calc(100vh - 110px); display: flex; flex-direction: column; gap: 12px; }
.sidebar-title { font-size: 13px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin: 0; }

.cat-nav { overflow-y: auto; padding-right: 4px; scrollbar-width: thin; }
.cat-all, .cat-nav li a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 7px 10px; border-radius: var(--radius-sm);
  color: var(--text-2); font-size: 14px;
}
.cat-all:hover, .cat-nav li a:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
.cat-all.is-active, .cat-nav li a.is-active { background: var(--accent-soft); color: var(--accent-dark); font-weight: 600; }

.cat-nav details { margin-top: 4px; }
.cat-nav summary {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 8px 10px; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--text); list-style: none;
}
.cat-nav summary::-webkit-details-marker { display: none; }
.cat-nav summary:hover { background: var(--surface-2); }
.cat-nav ul { list-style: none; margin: 2px 0 6px; padding-left: 10px; border-left: 2px solid var(--line); }

.catalog-main { min-width: 0; }
.page-head { margin-bottom: 22px; }
.page-head h1 { font-size: clamp(24px, 3.2vw, 34px); }
.intro { color: var(--text-2); max-width: 78ch; margin: 0; }

.controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 24px 0 14px; }
.search-form { display: flex; gap: 8px; flex: 1 1 340px; max-width: 560px; }
.sort { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.sort-label { font-size: 13px; color: var(--muted); margin-right: 2px; }
.sort .chip { padding: 6px 12px; font-size: 13.5px; }

.result-meta { font-size: 14px; color: var(--muted); margin: 0 0 12px; }
.result-meta strong { color: var(--text); }

/* ------------------------------------------------------------------- table */

.table-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: opacity .12s;
}
.table-card.is-loading { opacity: .5; }

table.services { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 15px; }
table.services thead th {
  position: sticky;
  top: 66px;
  z-index: 2;
  background: var(--surface-2);
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  padding: 12px 18px;
  /* A sticky cell drops its border, so paint the rule with a shadow instead. */
  box-shadow: inset 0 -1px 0 var(--line);
  white-space: nowrap;
}
table.services thead th:first-child { border-top-left-radius: var(--radius); }
table.services thead th:last-child { border-top-right-radius: var(--radius); }
table.services tbody tr:last-child td:first-child { border-bottom-left-radius: var(--radius); }
table.services tbody tr:last-child td:last-child { border-bottom-right-radius: var(--radius); }
table.services td { padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.services tbody tr:last-child td { border-bottom: 0; }
table.services tbody tr:hover { background: var(--surface-2); }

.c-id { width: 84px; color: var(--muted); font-variant-numeric: tabular-nums; font-size: 14px; }
.c-rate { width: 150px; font-weight: 700; color: var(--ok); font-variant-numeric: tabular-nums; white-space: nowrap; }
.c-num { width: 124px; text-align: right; color: var(--text-2); font-variant-numeric: tabular-nums; font-size: 14px; }
th.c-num { text-align: right; }

.svc-name { display: block; color: var(--text); }
.svc-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 5px; }
.svc-cat { font-size: 13px; color: var(--muted); }
.svc-cat:hover { color: var(--accent); }

.empty { text-align: center; color: var(--muted); padding: 48px 18px; }

/* -------------------------------------------------------------- pagination */

.pagination { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; align-items: center; }
.page {
  min-width: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
a.page:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.page.is-current { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }
.page-gap { padding: 8px 4px; color: var(--muted); }

.related { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.related h2 { font-size: 19px; margin-bottom: 14px; }

/* ------------------------------------------------------------------ footer */

.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); padding-block: 48px 26px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(150px, 1fr)); gap: 34px; }
.footer-about p { color: var(--muted); font-size: 14px; max-width: 42ch; margin: 12px 0 6px; }
.footer-contact { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-col h2 { font-size: 14px; margin-bottom: 12px; }
.footer-col h2 a { color: var(--text); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--muted); font-size: 13.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-bar {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}

/* ------------------------------------------------- platform badges & bits */

.pico {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: inline-grid; place-items: center;
  background: var(--pico-bg, #64748b);
  color: var(--pico-ink, #fff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), var(--shadow-sm);
}
.pico svg { width: 23px; height: 23px; display: block; }
.pico-letter { font-weight: 800; font-size: 15px; line-height: 1; letter-spacing: -0.02em; }
.pico-sm { width: 24px; height: 24px; border-radius: 7px; }
.pico-sm svg { width: 15px; height: 15px; }
.pico-sm .pico-letter { font-size: 10px; }

.footer-col h2 a { display: inline-flex; align-items: center; gap: 8px; }
.cat-group { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.page-head h1 { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }

/* Copy-to-clipboard on the service ID, since ordering happens by ID. */
.id-copy {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px; margin: -3px -8px;
  border: 1px solid transparent; border-radius: 6px;
  background: none; color: var(--muted);
  font: inherit; font-size: 14px; font-variant-numeric: tabular-nums;
  cursor: pointer;
}
.id-copy:hover { background: var(--surface-3); border-color: var(--line); color: var(--text); }
.id-copy svg { width: 13px; height: 13px; opacity: 0; transition: opacity .15s; }
.id-copy:hover svg, .id-copy:focus-visible svg { opacity: .65; }
.id-copy.is-copied { background: var(--ok-soft); border-color: #a7f3d0; color: var(--ok); }
.id-copy.is-copied svg { opacity: 1; }

.search-field { position: relative; flex: 1; min-width: 0; }
.search-kbd {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  padding: 2px 7px; border: 1px solid var(--line); border-bottom-width: 2px;
  border-radius: 5px; background: var(--surface-2);
  font-size: 12px; color: var(--muted); pointer-events: none;
}
.search-field:focus-within .search-kbd, .search-field.has-value .search-kbd { opacity: 0; }

/* ------------------------------------------------------------- responsive */

@media (max-width: 1000px) {
  .hero-in { grid-template-columns: 1fr; }
  .catalog { grid-template-columns: 1fr; }
  .sidebar { position: static; max-height: none; }
  .cat-nav { max-height: 340px; }

  /* The ring collapses into a plain wrapped list — no lines, no floating. */
  .hero-visual { aspect-ratio: auto; width: 100%; display: flex; flex-wrap: wrap; gap: 10px; }
  .hv-links { display: none; }
  .hv-hub {
    position: static; transform: none; width: auto; height: auto;
    flex-direction: row; gap: 10px; border-radius: 14px; padding: 10px 18px;
  }
  .hv-hub strong { font-size: 20px; }
  .hv-nodes { display: contents; }
  .hv-node { position: static; transform: none; }
  .hv-node a { animation: none; }
  table.services thead th { top: 0; }
}

@media (max-width: 820px) {
  .nav-burger {
    display: flex; flex-direction: column; gap: 4px; justify-content: center;
    width: 40px; height: 40px; padding: 9px 10px; cursor: pointer;
    border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  }
  .site-nav {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
    gap: 2px; padding-bottom: 14px;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .site-nav .btn { justify-content: center; margin-top: 6px; }
  .header-in { flex-wrap: wrap; }
  .hero-search { flex-direction: column; }
}

@media (max-width: 780px) {
  table.services thead { display: none; }
  table.services, table.services tbody, table.services tr, table.services td { display: block; width: 100%; }
  table.services tr { padding: 14px 16px; border-bottom: 1px solid var(--line); }
  table.services tbody tr:last-child { border-bottom: 0; }
  table.services td { border: 0; padding: 3px 0; display: flex; justify-content: space-between; gap: 14px; text-align: right; }
  table.services td::before { content: attr(data-label); color: var(--muted); font-size: 13px; font-weight: 500; flex: none; text-align: left; }
  table.services td.c-name { display: block; text-align: left; padding-bottom: 8px; }
  table.services td.c-name::before { display: none; }
  table.services td.c-id { color: var(--muted); font-size: 13px; }
  .c-id, .c-rate, .c-num { width: auto; }
  .controls { flex-direction: column; align-items: stretch; }
  .cta-in { padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
