/**
 * EatsPrices — premium static / trust pages
 * About, How It Works, Verification, Accuracy Policy, Community, Contact
 */

body.static-page {
  background: var(--page);
}

body.static-page .site-footer {
  margin-top: 0;
}

/* ── Breadcrumb ── */
.sp-breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.sp-breadcrumb__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-6, 24px);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}

.sp-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease, 150ms ease);
}

.sp-breadcrumb a:hover {
  color: var(--brand-600);
}

.sp-breadcrumb__sep {
  color: var(--border-strong);
  font-size: 11px;
}

.sp-breadcrumb__current {
  color: var(--text);
  font-weight: 600;
}

/* ── Hero — editorial split layout (no pattern tiles) ── */
.sp-hero {
  position: relative;
  overflow: hidden;
  background: var(--page);
  border-bottom: 1px solid var(--border);
}

.sp-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sp-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.sp-hero__glow--brand {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -35%;
  left: -12%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.22) 0%, transparent 70%);
}

.sp-hero__glow--accent {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  bottom: -40%;
  right: -8%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16) 0%, transparent 70%);
}

.sp-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--sp-6, 24px) clamp(36px, 5vw, 56px);
}

.sp-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}

.sp-hero__grid--solo {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.sp-hero__content {
  min-width: 0;
}

.sp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin: 0 0 var(--sp-4, 16px);
  padding-left: 14px;
  position: relative;
}

.sp-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand-500), var(--accent-500));
}

.sp-hero__title {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 var(--sp-4, 16px);
  color: var(--text);
}

.sp-hero__title span {
  color: var(--brand-600);
}

.sp-hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 var(--sp-5, 20px);
  max-width: 540px;
}

.sp-hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2, 8px);
}

.sp-hero__meta li {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  padding: 6px 12px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

/* Highlight panel — glass card on the right */
.sp-hero__panel {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 320px;
}

.sp-hero__panel-inner {
  position: relative;
  z-index: 1;
  padding: var(--sp-8, 32px) var(--sp-6, 24px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r);
  box-shadow:
    0 1px 2px rgba(28, 27, 26, 0.04),
    0 8px 32px rgba(79, 70, 229, 0.08),
    0 24px 48px rgba(28, 27, 26, 0.06);
}

.sp-hero__panel-value {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 var(--sp-2, 8px);
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--accent-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sp-hero__panel-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 var(--sp-2, 8px);
  line-height: 1.35;
}

.sp-hero__panel-detail {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.sp-hero__panel-ring {
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--r) + 8px);
  background: linear-gradient(135deg, var(--brand-200), var(--accent-200));
  opacity: 0.45;
  z-index: 0;
}

@media (max-width: 768px) {
  .sp-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6, 24px);
  }

  .sp-hero__panel {
    justify-self: stretch;
    max-width: none;
  }

  .sp-hero__panel-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--sp-2, 8px) var(--sp-4, 16px);
    padding: var(--sp-5, 20px) var(--sp-5, 20px);
  }

  .sp-hero__panel-value {
    font-size: 2rem;
    margin: 0;
  }

  .sp-hero__panel-label {
    flex: 1;
    min-width: 140px;
    margin: 0;
  }

  .sp-hero__panel-detail {
    width: 100%;
  }
}

/* ── Main layout ── */
.sp-main {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--sp-8, 32px) var(--sp-6, 24px) var(--sp-12, 48px);
}

.sp-main--wide {
  max-width: 1100px;
}

/* Legacy wrappers — keep working */
.page-wrap,
.page-wrap-wide {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--sp-8, 32px) var(--sp-6, 24px) var(--sp-12, 48px);
}

.page-wrap-wide {
  max-width: 1100px;
}

/* ── Section typography ── */
.sp-section-eyebrow,
.page-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: var(--sp-2, 8px);
}

.page-section {
  margin-bottom: var(--sp-12, 48px);
}

.page-section h2 {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 var(--sp-4, 16px);
  line-height: 1.2;
}

.page-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin: var(--sp-6, 24px) 0 var(--sp-3, 12px);
}

.page-section p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0 0 var(--sp-4, 16px);
}

.page-section a {
  color: var(--brand-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Stats strip / trust grid ── */
.stats-strip,
.trust-grid,
.sp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4, 16px);
  margin-bottom: var(--sp-10, 40px);
}

.stats-strip-item,
.trust-block,
.sp-stat-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-6, 24px) var(--sp-5, 20px);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.trust-block:hover,
.sp-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}

.stats-strip-val,
.trust-val {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stats-strip-val span,
.trust-val span {
  color: var(--brand-600);
}

.stats-strip-lbl,
.trust-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.trust-icon {
  font-size: 1.75rem;
  margin-bottom: var(--sp-3, 12px);
  display: block;
}

/* ── Mission / quote band ── */
.mission-block,
.sp-quote-band {
  background: linear-gradient(135deg, var(--brand-700) 0%, #2d2a5e 55%, #1a2744 100%);
  border-radius: var(--r);
  padding: clamp(32px, 5vw, 56px);
  color: #fff;
  margin-bottom: var(--sp-10, 40px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mission-block::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 160px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  font-family: Georgia, serif;
}

.mission-quote {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: var(--sp-4, 16px);
  position: relative;
  max-width: 680px;
}

.mission-quote em {
  color: var(--accent-500);
  font-style: normal;
}

.mission-attribution {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Feature / value / tool cards ── */
.feature-grid,
.values-grid,
.tool-grid,
.conduct-grid,
.commitment-cards,
.sp-card-grid {
  display: grid;
  gap: var(--sp-5, 20px);
  margin-top: var(--sp-6, 24px);
}

.feature-grid,
.tool-grid {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid {
  grid-template-columns: repeat(2, 1fr);
}

.conduct-grid {
  grid-template-columns: repeat(3, 1fr);
}

.conduct-card.cc-respect { background: var(--brand-50); border-color: var(--brand-200); }
.conduct-card.cc-accurate { background: var(--ok-50); border-color: var(--ok-100); }
.conduct-card.cc-helpful { background: var(--accent-50); border-color: var(--accent-200); }
.conduct-card.cc-transparent { background: var(--accent-50); border-color: var(--accent-100); }
.conduct-card.cc-patient { background: #fefce8; border-color: #fde68a; }
.conduct-card.cc-humble { background: var(--brand-50); border-color: var(--brand-100); }

.tier-table thead tr {
  background: linear-gradient(135deg, var(--brand-700), #2d2a5e);
}

.tier-table th {
  color: #fff;
  background: transparent;
}

.commitment-cards {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.value-card,
.tool-card,
.conduct-card,
.commitment-card,
.sp-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-5, 20px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.feature-card:hover,
.value-card:hover,
.tool-card:hover,
.conduct-card:hover,
.commitment-card:hover,
.sp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}

.feature-icon,
.tool-emoji,
.conduct-icon {
  font-size: 1.75rem;
  margin-bottom: var(--sp-3, 12px);
  display: block;
}

.feature-title,
.value-title,
.tool-name,
.conduct-title,
.commitment-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-desc,
.value-desc,
.tool-desc,
.conduct-desc,
.commitment-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

.value-card {
  display: flex;
  gap: var(--sp-4, 16px);
  align-items: flex-start;
}

.value-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: var(--brand-50);
}

.tool-link {
  display: inline-block;
  margin-top: var(--sp-3, 12px);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-600);
  text-decoration: none;
}

.tool-link:hover {
  text-decoration: underline;
}

.commitment-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.commitment-card-top {
  padding: var(--sp-5, 20px);
  flex: 1;
}

.commitment-card-footer {
  padding: var(--sp-3, 12px) var(--sp-5, 20px);
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

.commitment-card-footer-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--ok-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.commitment-card-icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3, 12px);
  display: block;
}

/* ── Method / process steps ── */
.method-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4, 16px);
  margin-top: var(--sp-6, 24px);
}

.method-step {
  display: flex;
  gap: var(--sp-5, 20px);
  padding: var(--sp-5, 20px);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.method-step:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-md);
}

.method-step-num {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--brand-600);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.method-step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* How-it-works vertical flow */
.hiw-flow {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5, 20px);
  margin: var(--sp-8, 32px) 0;
  position: relative;
}

.hiw-flow::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-500), var(--accent-500), var(--ok-500));
  z-index: 0;
}

.hiw-step {
  display: flex;
  gap: var(--sp-5, 20px);
  position: relative;
  z-index: 1;
}

.hiw-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--brand-500);
  color: var(--brand-600);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--page);
}

.hiw-step-body {
  flex: 1;
  padding: var(--sp-4, 16px) var(--sp-5, 20px);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.hiw-step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.hiw-step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.hiw-step-tag,
.sp-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  margin-top: var(--sp-2, 8px);
}

.tag-automated { background: var(--brand-50); color: var(--brand-700); }
.tag-manual { background: var(--ok-50); color: var(--ok-700); }
.tag-community { background: var(--accent-50); color: var(--accent-700); }

/* ── Accuracy meter ── */
.accuracy-meter {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-6, 24px);
  margin: var(--sp-6, 24px) 0;
  box-shadow: var(--shadow-sm);
}

.accuracy-meter h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 var(--sp-5, 20px);
  color: var(--text);
}

.acc-bar-wrap {
  margin-bottom: var(--sp-4, 16px);
}

.acc-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.acc-bar-name {
  font-weight: 600;
  color: var(--text);
}

.acc-bar-val {
  color: var(--brand-600);
  font-weight: 700;
}

.acc-bar-track {
  height: 10px;
  background: var(--surface-alt);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.acc-bar-fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
}

/* ── Verification layers accordion ── */
.vl-wrap { margin: var(--sp-6, 24px) 0; }

.vl-layers {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3, 12px);
}

.vl-layer {
  border-radius: var(--r);
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.vl-layer-header {
  padding: var(--sp-4, 16px) var(--sp-5, 20px);
  display: flex;
  align-items: center;
  gap: var(--sp-4, 16px);
  cursor: pointer;
  background: var(--surface);
  transition: background var(--ease);
  user-select: none;
  flex-wrap: wrap;
  border: none;
  width: 100%;
  font-family: inherit;
  text-align: left;
}

.vl-layer-header:hover,
.vl-layer-header.is-open {
  background: var(--brand-50);
}

.vl-layer-num {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.vl-layer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.vl-layer-type {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.type-auto { background: var(--brand-50); color: var(--brand-700); }
.type-manual { background: var(--ok-50); color: var(--ok-700); }
.type-both { background: var(--accent-50); color: var(--accent-700); }

.vl-layer-arrow {
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.vl-layer-header.is-open .vl-layer-arrow {
  transform: rotate(180deg);
}

.vl-layer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 var(--sp-5, 20px);
}

.vl-layer-body.is-open {
  max-height: 600px;
  padding: 0 var(--sp-5, 20px) var(--sp-5, 20px) calc(var(--sp-5, 20px) + 52px);
}

.vl-layer-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 0 var(--sp-3, 12px);
}

.vl-criteria {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vl-criterion {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}

.vl-criterion::before {
  content: "✓";
  color: var(--ok-600);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Tables ── */
.disq-table,
.tier-table,
.sp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: var(--sp-6, 24px) 0;
}

.disq-table th,
.tier-table th,
.sp-table th {
  background: var(--surface-alt);
  padding: var(--sp-3, 12px) var(--sp-4, 16px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.disq-table td,
.tier-table td,
.sp-table td {
  padding: var(--sp-3, 12px) var(--sp-4, 16px);
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: top;
}

.disq-table tr:last-child td,
.tier-table tr:last-child td {
  border-bottom: none;
}

.disq-table tr:hover td,
.tier-table tr:hover td {
  background: var(--surface-alt);
}

.disq-table th {
  background: #fef2f2;
  color: #dc2626;
}

.tier-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.tier-high { background: var(--ok-50); color: var(--ok-700); }
.tier-medium { background: var(--accent-50); color: var(--accent-700); }
.tier-variable { background: var(--brand-50); color: var(--brand-700); }
.tier-low { background: #fef2f2; color: #dc2626; }

/* ── Timeline ── */
.timeline {
  display: flex;
  gap: 0;
  margin: var(--sp-8, 32px) 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500), var(--ok-500));
  z-index: 0;
}

.tl-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tl-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--brand-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3, 12px);
  font-size: 1rem;
  box-shadow: 0 0 0 6px var(--page);
}

.tl-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.tl-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── SLA cards ── */
.sla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4, 16px);
  margin: var(--sp-6, 24px) 0;
}

.sla-card {
  border-radius: var(--r);
  padding: var(--sp-6, 24px);
  text-align: center;
  border: 0.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.sla-critical { background: #fef2f2; border-color: #fecaca; }
.sla-standard { background: var(--accent-50); border-color: var(--accent-200); }
.sla-minor { background: var(--ok-50); border-color: var(--ok-100); }

.sla-time {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.sla-critical .sla-time { color: #dc2626; }
.sla-standard .sla-time { color: var(--accent-700); }
.sla-minor .sla-time { color: var(--ok-700); }

.sla-type {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.sla-desc {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── Factor accordion ── */
.factor-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3, 12px);
  margin: var(--sp-6, 24px) 0;
}

.factor-item {
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.factor-header {
  padding: var(--sp-4, 16px) var(--sp-5, 20px);
  display: flex;
  align-items: center;
  gap: var(--sp-3, 12px);
  cursor: pointer;
  background: var(--surface);
  user-select: none;
  transition: background var(--ease);
  flex-wrap: wrap;
  border: none;
  width: 100%;
  font-family: inherit;
  text-align: left;
}

.factor-header:hover,
.factor-header.is-open {
  background: var(--surface-alt);
}

.factor-header-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.factor-header-impact {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.impact-high { background: #fef2f2; color: #dc2626; }
.impact-medium { background: var(--accent-50); color: var(--accent-700); }
.impact-low { background: var(--ok-50); color: var(--ok-700); }

.factor-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.25s ease;
  padding: 0 var(--sp-5, 20px);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

.factor-body.is-open {
  max-height: 240px;
  padding: 0 var(--sp-5, 20px) var(--sp-4, 16px);
}

/* ── Rights strip ── */
.rights-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: var(--sp-6, 24px) 0;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.rights-item {
  padding: var(--sp-6, 24px);
  border-right: 1px solid var(--border);
  text-align: center;
}

.rights-item:last-child {
  border-right: none;
}

.rights-icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3, 12px);
  display: block;
}

.rights-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.rights-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Do / don't columns ── */
.do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5, 20px);
  margin-top: var(--sp-6, 24px);
}

.do-col,
.dont-col {
  padding: var(--sp-5, 20px);
  border-radius: var(--r);
  border: 0.5px solid var(--border);
}

.do-col {
  background: var(--ok-50);
  border-color: var(--ok-100);
}

.dont-col {
  background: #fef2f2;
  border-color: #fecaca;
}

.do-col h3,
.dont-col h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 var(--sp-4, 16px);
}

.do-list,
.dont-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.do-list li,
.dont-list li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
  padding-left: 1.25rem;
  position: relative;
}

.do-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok-600);
  font-weight: 700;
}

.dont-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

.conduct-card {
  border-left: 3px solid var(--brand-500);
}

/* ── Strike system ── */
.strike-system {
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: var(--sp-6, 24px) 0;
  box-shadow: var(--shadow-sm);
}

.strike-header {
  background: var(--band-dark);
  color: var(--on-dark);
  padding: var(--sp-4, 16px) var(--sp-5, 20px);
  font-size: 15px;
  font-weight: 700;
}

.strike-row {
  display: flex;
  align-items: center;
  gap: var(--sp-5, 20px);
  padding: var(--sp-5, 20px) var(--sp-6, 24px);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.strike-row:last-child {
  border-bottom: none;
}

.strike-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 4px;
}

.strike-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-active { background: #dc2626; }
.dot-empty { background: var(--border); }

.strike-action-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.strike-action-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.consequence-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.c-warning { background: #fefce8; color: #854d0e; }
.c-temp { background: var(--accent-50); color: var(--accent-700); }
.c-perm { background: #fef2f2; color: #dc2626; }

.report-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4, 16px);
  margin: var(--sp-6, 24px) 0;
}

.report-step {
  text-align: center;
  padding: var(--sp-5, 20px);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}

.report-step-icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-2, 8px);
  display: block;
}

.report-step-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.report-step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

/* ── FAQ (unified) ── */
.faq-list,
.vp-faq-list,
.pap-faq-list,
.cg-faq-list,
.sp-faq {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3, 12px);
  margin-top: var(--sp-6, 24px);
}

.faq-item,
.vp-faq-item,
.pap-faq-item,
.cg-faq-item,
.sp-faq__item {
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.faq-q,
.vp-faq-q,
.pap-faq-q,
.cg-faq-q,
.sp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3, 12px);
  padding: var(--sp-4, 16px) var(--sp-5, 20px);
  background: var(--surface);
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--ease);
}

.faq-q:hover,
.vp-faq-q:hover,
.pap-faq-q:hover,
.cg-faq-q:hover,
.sp-faq__q:hover {
  background: var(--surface-alt);
}

.faq-q.open,
.faq-q.is-open,
.vp-faq-q.open,
.vp-faq-q.is-open,
.pap-faq-q.open,
.pap-faq-q.is-open,
.cg-faq-q.open,
.cg-faq-q.is-open,
.sp-faq__q.is-open,
.sp-faq__q.open {
  background: var(--brand-50);
  color: var(--brand-700);
}

.faq-a,
.vp-faq-a,
.pap-faq-a,
.cg-faq-a,
.sp-faq__a {
  display: none;
  padding: 0 var(--sp-5, 20px) var(--sp-4, 16px);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.faq-a.open,
.faq-a.is-open,
.vp-faq-a.open,
.vp-faq-a.is-open,
.pap-faq-a.open,
.pap-faq-a.is-open,
.cg-faq-a.open,
.cg-faq-a.is-open,
.sp-faq__a.is-open,
.sp-faq__a.open {
  display: block;
}

.vp-faq-icon,
.pap-faq-icon,
.cg-faq-icon,
.sp-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-q.open .vp-faq-icon,
.faq-q.is-open .vp-faq-icon,
.vp-faq-q.open .vp-faq-icon,
.vp-faq-q.is-open .vp-faq-icon,
.pap-faq-q.open .pap-faq-icon,
.pap-faq-q.is-open .pap-faq-icon,
.cg-faq-q.open .cg-faq-icon,
.cg-faq-q.is-open .cg-faq-icon,
.sp-faq__q.is-open .sp-faq__icon,
.sp-faq__q.open .sp-faq__icon {
  transform: rotate(180deg);
  background: var(--brand-100);
}

/* ── Commitment box ── */
.commitment-box {
  background: var(--ok-50);
  border: 0.5px solid var(--ok-100);
  border-radius: var(--r);
  padding: var(--sp-6, 24px) var(--sp-8, 32px);
  margin-top: var(--sp-6, 24px);
}

.commitment-box h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ok-700);
  margin: 0 0 var(--sp-4, 16px);
}

.commitment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ok-700);
  line-height: 1.6;
}

.commitment-list li::before {
  content: "✓";
  font-weight: 700;
  color: var(--ok-600);
  flex-shrink: 0;
}

/* ── CTA ── */
.page-cta,
.sp-cta {
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--accent-50) 100%);
  border: 0.5px solid var(--brand-200);
  border-radius: var(--r);
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  margin-bottom: var(--sp-10, 40px);
  box-shadow: var(--shadow-sm);
}

.page-cta h2,
.sp-cta h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 var(--sp-3, 12px);
}

.page-cta p,
.sp-cta p {
  font-size: 1rem;
  color: var(--text-2);
  margin: 0 auto var(--sp-6, 24px);
  max-width: 480px;
}

.page-cta-btns,
.sp-cta__btns {
  display: flex;
  gap: var(--sp-3, 12px);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-lg {
  padding: 13px 28px;
  background: var(--accent-600);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--ease), transform var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary-lg:hover {
  background: var(--accent-700);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-lg {
  padding: 13px 28px;
  background: var(--surface);
  color: var(--text);
  border: 0.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-lg:hover {
  border-color: var(--brand-300, var(--brand-200));
  color: var(--brand-700);
}

.legal-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-50);
  color: var(--accent-700);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-6, 24px);
}

.page-divider {
  height: 1px;
  background: var(--border);
  margin: var(--sp-10, 40px) 0;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-10, 40px);
  align-items: start;
  padding: var(--sp-8, 32px) 0 var(--sp-12, 48px);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4, 16px);
  margin-bottom: var(--sp-8, 32px);
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4, 16px);
  padding: var(--sp-5, 20px);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  text-decoration: none;
  color: inherit;
}

.contact-channel:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: var(--brand-50);
}

.cc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.cc-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 6px;
}

.cc-action {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-600);
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
}

.badge-fast { background: var(--ok-50); color: var(--ok-700); }
.badge-med { background: var(--accent-50); color: var(--accent-700); }

.contact-form-card {
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  padding: var(--sp-8, 32px);
  border: 0.5px solid var(--border);
  position: sticky;
  top: 88px;
}

.contact-form-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-form-card > p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: var(--sp-6, 24px);
}

.form-group {
  margin-bottom: var(--sp-4, 16px);
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--ease);
  color: var(--text);
  background: var(--surface);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-500);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--accent-600);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--ease);
  margin-top: var(--sp-2, 8px);
}

.form-submit:hover {
  background: var(--accent-700);
}

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--sp-3, 12px);
}

.office-card {
  background: var(--surface-alt);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-5, 20px) var(--sp-6, 24px);
  margin-top: var(--sp-6, 24px);
}

.office-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--sp-3, 12px);
  color: var(--text);
}

.office-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 8px;
}

.office-detail:last-child {
  margin-bottom: 0;
}

.office-detail svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

/* ── Related guides carousel ── */
.sp-related {
  margin-top: var(--sp-12, 48px);
  padding-top: var(--sp-10, 40px);
  border-top: 1px solid var(--border);
}

.sp-related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4, 16px);
  margin-bottom: var(--sp-5, 20px);
}

.sp-related__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.sp-carousel-nav {
  display: flex;
  gap: 8px;
}

.sp-carousel-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  border: 0.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  transition: all var(--ease);
}

.sp-carousel-nav__btn:hover {
  border-color: var(--brand-300, var(--brand-200));
  background: var(--brand-50);
  color: var(--brand-700);
}

.sp-carousel {
  overflow: hidden;
  margin: 0 calc(-1 * var(--sp-2, 8px));
  padding: var(--sp-2, 8px);
}

.sp-carousel__track {
  display: flex;
  gap: var(--sp-4, 16px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.sp-carousel__track::-webkit-scrollbar {
  display: none;
}

.sp-guide-card {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--sp-5, 20px);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.sp-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}

.sp-guide-card__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.sp-guide-card__hook {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  padding-right: 24px;
}

.sp-guide-card__arrow {
  position: absolute;
  top: var(--sp-5, 20px);
  right: var(--sp-5, 20px);
  color: var(--accent-600);
  font-weight: 700;
}

/* Legacy hero aliases */
.page-hero,
.hiw-hero,
.vp-hero,
.pap-hero,
.cg-hero,
.contact-hero {
  display: none;
}

.page-breadcrumb,
.about-breadcrumb {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .stats-strip,
  .trust-grid,
  .sp-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .tool-grid,
  .commitment-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .conduct-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    position: static;
  }

  .rights-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .rights-item:nth-child(2) {
    border-right: none;
  }

  .rights-item:nth-child(1),
  .rights-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .vl-layer-body.is-open {
    padding-left: var(--sp-5, 20px);
  }
}

@media (max-width: 640px) {
  .stats-strip,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid,
  .tool-grid,
  .values-grid,
  .conduct-grid,
  .commitment-cards,
  .do-dont,
  .sla-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
    gap: var(--sp-4, 16px);
  }

  .timeline::before {
    display: none;
  }

  .tl-item {
    display: flex;
    align-items: center;
    gap: var(--sp-4, 16px);
    text-align: left;
  }

  .tl-dot {
    margin: 0;
    flex-shrink: 0;
  }

  .hiw-flow::before {
    display: none;
  }

  .hiw-step {
    flex-direction: column;
  }

  .report-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .rights-strip {
    grid-template-columns: 1fr;
  }

  .rights-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .strike-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tier-table thead {
    display: none;
  }

  .tier-table,
  .tier-table tbody,
  .tier-table tr,
  .tier-table td {
    display: block;
    width: 100%;
  }

  .tier-table tr {
    border: 0.5px solid var(--border);
    border-radius: var(--r);
    margin-bottom: var(--sp-3, 12px);
    overflow: hidden;
  }

  .tier-table td {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .tier-table td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
  }

  .tier-table td:first-child {
    background: var(--brand-50);
    font-weight: 700;
    color: var(--text);
  }

  .tier-table td:first-child::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .report-steps {
    grid-template-columns: 1fr;
  }
}
