/* ============================================================
   redirects_hub.css — Redirects Hub page styles
   All classes prefixed: rh-
   ============================================================ */

/* ---- Custom properties ---- */
:root {
  --rh-bg: #001327;
  --rh-surface: #051e35;
  --rh-surface-raised: #0a2a47;
  --rh-border: #0f3a5e;
  --rh-accent: #39FF12;
  --rh-accent-dim: rgba(57, 255, 18, 0.08);
  --rh-accent-glow: rgba(57, 255, 18, 0.15);
  --rh-text-primary: #F9FAFB;
  --rh-text-secondary: #9CA3AF;
  --rh-text-muted: #6B7280;
  --rh-danger: #EF4444;
  --rh-warning: #F59E0B;
  --rh-success: #39FF12;
}

/* ---- Base reset for this page ---- */
/* Clear fixed #cs-navigation (logo ~48px + margins + nav link padding ≈ 62–70px) */
.rh-header-spacer {
  padding-top: 72px;
  margin: 0;
}

.rh-breadcrumb-row {
  padding-top: 0.75rem;
}

.rh-breadcrumb-row .article-breadcrumb {
  margin-bottom: 1rem;
}

/* ---- Layout helpers ---- */
.rh-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.rh-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ---- Fade-in animation ---- */
.rh-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rh-animate.rh-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Section labels ---- */
.rh-section-label {
  display: inline-block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rh-accent);
  border-left: 3px solid var(--rh-accent);
  padding-left: 8px;
  margin-bottom: 16px;
}

/* ---- Section headings ---- */
.rh-section-h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rh-text-primary);
  margin-top: 8px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.rh-section-subtitle {
  font-size: 1rem;
  color: var(--rh-text-secondary);
  margin-bottom: 48px;
  max-width: 640px;
}

/* ---- Buttons ---- */
.rh-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 150ms ease, background-color 150ms ease, color 150ms ease;
  border: 2px solid transparent;
}

.rh-btn--primary {
  background-color: var(--rh-accent);
  color: #001327;
  border-color: var(--rh-accent);
}

.rh-btn--primary:hover {
  opacity: 0.85;
}

.rh-btn--outline {
  background-color: transparent;
  color: var(--rh-accent);
  border-color: var(--rh-accent);
}

.rh-btn--outline:hover {
  background-color: var(--rh-accent-dim);
}

/* ---- Status/code pills ---- */
.rh-status-pill,
.rh-code-pill {
  display: inline-block;
  width: fit-content;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.rh-status-pill--green,
.rh-code-pill--green {
  color: var(--rh-success);
  background-color: rgba(57, 255, 18, 0.1);
  border-color: rgba(57, 255, 18, 0.25);
}

.rh-status-pill--amber,
.rh-code-pill--amber {
  color: var(--rh-warning);
  background-color: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
}

.rh-status-pill--red,
.rh-code-pill--red {
  color: var(--rh-danger);
  background-color: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
}

/* ============================================================
   STICKY JUMP NAV
   ============================================================ */
.rh-jump-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: rgba(0, 19, 39, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rh-border);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
  pointer-events: none;
}

.rh-jump-nav.rh-jump-nav--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.rh-jump-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.rh-jump-nav__inner::-webkit-scrollbar {
  display: none;
}

.rh-jump-nav__link {
  display: inline-block;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rh-text-secondary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
  flex-shrink: 0;
}

.rh-jump-nav__link:hover {
  color: var(--rh-text-primary);
}

.rh-jump-nav__link.rh-jump-nav__link--active {
  color: var(--rh-accent);
  border-bottom-color: var(--rh-accent);
}

/* ============================================================
   HERO
   ============================================================ */
.rh-hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--rh-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rh-hero__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.rh-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

/* Hero left */
.rh-hero__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rh-hero__h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--rh-text-primary);
  margin: 0;
}

.rh-hero__intro {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--rh-text-secondary);
  margin: 0;
  max-width: 580px;
}

.rh-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rh-hero__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Hero right */
.rh-hero__right {
  display: flex;
  justify-content: flex-end;
}

/* ---- URL Routing card ---- */
.rh-routing-card {
  background-color: var(--rh-surface);
  border-radius: 8px;
  border-left: 3px solid var(--rh-accent);
  padding: 20px 24px;
  width: 100%;
  max-width: 400px;
}

.rh-routing-card__header {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rh-border);
}

.rh-routing-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--rh-border);
}

.rh-routing-row--last {
  border-bottom: none;
}

.rh-routing-row__urls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.rh-routing-row__urls--chain {
  flex-wrap: wrap;
}

.rh-routing-row__meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rh-url {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.78rem;
}

.rh-url--strikethrough {
  text-decoration: line-through;
}

.rh-url--muted {
  color: var(--rh-text-muted);
}

.rh-url-pill {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.rh-url-pill--green {
  color: var(--rh-accent);
  border-color: rgba(57, 255, 18, 0.3);
  background-color: rgba(57, 255, 18, 0.06);
}

.rh-url-pill--amber {
  color: var(--rh-warning);
  border-color: rgba(245, 158, 11, 0.3);
  background-color: rgba(245, 158, 11, 0.06);
}

.rh-url-pill--red {
  color: var(--rh-danger);
  border-color: rgba(239, 68, 68, 0.3);
  background-color: rgba(239, 68, 68, 0.06);
}

/* Routing arrows */
.rh-routing-arrow {
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
}

.rh-routing-arrow--green {
  color: var(--rh-accent);
  animation: rh-arrow-pulse 2s ease-in-out infinite;
}

.rh-routing-arrow--amber {
  color: var(--rh-warning);
}

.rh-routing-arrow--red {
  color: var(--rh-danger);
}

.rh-routing-arrow--dashed {
  letter-spacing: -2px;
  font-family: 'Courier New', Courier, monospace;
}

.rh-warn-icon {
  font-size: 0.7rem;
}

@keyframes rh-arrow-pulse {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}

/* ============================================================
   IMPACT BAR
   ============================================================ */
.rh-impact-bar {
  background-color: var(--rh-surface);
  padding: 48px 0;
}

.rh-impact-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}

.rh-impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  flex: 1;
}

.rh-impact-stat:not(:last-child) {
  border-right: 1px solid var(--rh-border);
}

.rh-impact-stat__number {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--rh-accent);
  line-height: 1;
  margin-bottom: 10px;
}

.rh-impact-stat__label {
  font-size: 0.81rem;
  color: var(--rh-text-muted);
  max-width: 160px;
  line-height: 1.4;
}

/* ============================================================
   COMMON MISTAKES
   ============================================================ */
.rh-mistakes {
  background-color: var(--rh-bg);
}

.rh-mistakes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rh-mistake-card {
  background-color: var(--rh-surface);
  border-radius: 8px;
  border-top: 2px solid var(--rh-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background-color 150ms ease;
}

.rh-mistake-card:hover {
  background-color: var(--rh-surface-raised);
}

.rh-mistake-card--amber {
  border-top-color: var(--rh-warning);
}

.rh-mistake-card--red {
  border-top-color: var(--rh-danger);
}

.rh-mistake-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rh-text-primary);
  margin: 0;
}

.rh-mistake-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--rh-text-secondary);
  margin: 0;
  flex: 1;
}

.rh-mistake-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rh-accent);
  text-decoration: none;
  transition: opacity 150ms ease;
}

.rh-mistake-card__link:hover {
  opacity: 0.75;
}

/* ============================================================
   FREE TOOL SECTION
   ============================================================ */
.rh-tool-section {
  background: linear-gradient(to bottom, var(--rh-bg), var(--rh-surface));
  overflow: hidden;
}

.rh-tool-section__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: start;
}

.rh-tool-section__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.rh-tool-section__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--rh-text-secondary);
  margin: 0;
}

.rh-tool-section__checklist-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rh-text-primary);
  margin: 0;
}

/* Checklist */
.rh-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rh-checklist__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--rh-text-secondary);
}

.rh-checklist__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--rh-accent);
  background-color: var(--rh-accent-dim);
  flex-shrink: 0;
  position: relative;
}

.rh-checklist__icon::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 5px;
  height: 8px;
  border: 2px solid var(--rh-accent);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Tool mockup */
.rh-tool-section__right {
  display: flex;
  align-items: flex-start;
  transform: translateX(10%);
}

.rh-tool-mockup {
  background-color: var(--rh-surface);
  border-radius: 8px;
  box-shadow: 0 0 30px var(--rh-accent-glow);
  border: 1px solid var(--rh-border);
  padding: 20px;
  width: 100%;
}

.rh-tool-mockup__bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.rh-tool-mockup__input {
  flex: 1;
  background-color: var(--rh-bg);
  border: 1px solid var(--rh-border);
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--rh-text-muted);
  font-family: 'Courier New', Courier, monospace;
  cursor: default;
}

.rh-tool-mockup__input::placeholder {
  color: var(--rh-text-muted);
}

.rh-tool-mockup__btn {
  background-color: var(--rh-accent);
  color: #001327;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: default;
}

.rh-tool-mockup__table-wrap {
  overflow-x: auto;
  margin-bottom: 16px;
}

.rh-tool-mockup__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.rh-tool-mockup__table thead th {
  padding: 8px 10px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rh-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--rh-border);
}

.rh-tool-mockup__table tbody td {
  padding: 10px 10px;
  color: var(--rh-text-secondary);
  border-bottom: 1px solid rgba(15, 58, 94, 0.5);
  vertical-align: middle;
}

.rh-tool-mockup__table tbody tr:last-child td {
  border-bottom: none;
}

.rh-tool-mockup__url {
  font-family: 'Courier New', Courier, monospace;
  color: var(--rh-text-primary);
}

.rh-tool-mockup__dest {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
}

.rh-tool-mockup__dest--none {
  color: var(--rh-text-muted);
  font-style: italic;
}

.rh-tool-mockup__hops--warn {
  color: var(--rh-danger);
  font-weight: 700;
}

.rh-tool-mockup__summary {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rh-summary-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.rh-summary-badge--red {
  color: var(--rh-danger);
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.rh-summary-badge--green {
  color: var(--rh-success);
  background-color: rgba(57, 255, 18, 0.08);
  border: 1px solid rgba(57, 255, 18, 0.2);
}

/* ============================================================
   GUIDES
   ============================================================ */
.rh-guides {
  background-color: var(--rh-bg);
}

.rh-guides__list {
  display: flex;
  flex-direction: column;
}

.rh-guide-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rh-border);
  border-left: 3px solid transparent;
  padding-left: 12px;
  text-decoration: none;
  color: inherit;
  transition: background-color 150ms ease, border-left-color 150ms ease;
  border-radius: 0 4px 4px 0;
}

.rh-guide-row:hover {
  background-color: var(--rh-surface);
  border-left-color: var(--rh-accent);
}

.rh-guide-row:first-child {
  border-top: 1px solid var(--rh-border);
}

.rh-guide-row__index {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(57, 255, 18, 0.12);
  width: 80px;
  flex-shrink: 0;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.rh-guide-row__content {
  flex: 1;
  min-width: 0;
}

.rh-guide-row__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rh-text-primary);
  margin: 0 0 6px 0;
}

.rh-guide-row__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--rh-text-secondary);
  margin: 0 0 10px 0;
}

.rh-guide-row__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.rh-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: var(--rh-accent-dim);
  color: var(--rh-accent);
  border: 1px solid rgba(57, 255, 18, 0.2);
}

.rh-guide-row__arrow {
  font-size: 1.2rem;
  color: var(--rh-accent);
  flex-shrink: 0;
  margin-right: 8px;
  transition: transform 150ms ease;
}

.rh-guide-row:hover .rh-guide-row__arrow {
  transform: translateX(6px);
}

/* ============================================================
   PROCESS
   ============================================================ */
.rh-process {
  background-color: var(--rh-surface);
}

.rh-process__steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

/* Desktop horizontal connector line */
.rh-process__connector {
  position: absolute;
  top: 32px; /* vertically centred on the 64px circles */
  left: calc(80px / 2);
  right: calc(80px / 2);
  height: 0;
  border-top: 2px dashed rgba(57, 255, 18, 0.3);
  z-index: 0;
  pointer-events: none;
}

/* Mobile vertical connector — hidden on desktop */
.rh-process__connector-mobile {
  display: none;
}

.rh-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.rh-process-step__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--rh-accent);
  background-color: var(--rh-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rh-accent);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.rh-process-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rh-text-primary);
  margin: 0 0 8px 0;
}

.rh-process-step__desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--rh-text-secondary);
  margin: 0;
  max-width: 200px;
}

.rh-process__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.rh-faq {
  background-color: var(--rh-bg);
}

.rh-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.rh-accordion {
  margin-top: 8px;
}

.rh-accordion__item {
  border-bottom: 1px solid var(--rh-border);
  transition: border-color 150ms ease;
}

.rh-accordion__item.rh-accordion__item--open {
  border-bottom-color: var(--rh-accent);
}

.rh-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--rh-text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  transition: color 150ms ease;
}

.rh-accordion__trigger:hover {
  color: var(--rh-accent);
}

.rh-accordion__icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--rh-accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 200ms ease;
}

.rh-accordion__item--open .rh-accordion__icon {
  transform: rotate(45deg);
}

.rh-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}

.rh-accordion__body p {
  padding: 0 0 20px 0;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--rh-text-secondary);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.rh-final-cta {
  background: radial-gradient(circle at center, rgba(57, 255, 18, 0.08), #001327);
  padding: 80px 0;
}

.rh-final-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.rh-final-cta__h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rh-text-primary);
  line-height: 1.15;
  margin: 0;
}

.rh-final-cta__desc {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--rh-text-secondary);
  margin: 0;
  max-width: 640px;
}

.rh-final-cta__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.rh-final-cta__text-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rh-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 150ms ease;
}

.rh-final-cta__text-link:hover {
  opacity: 0.75;
}

.rh-final-cta__trust {
  font-size: 0.78rem;
  color: var(--rh-text-muted);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE — 1024px: hero single column
   ============================================================ */
@media (max-width: 1024px) {
  .rh-hero__content {
    grid-template-columns: 1fr;
  }

  .rh-hero__right {
    justify-content: flex-start;
  }

  .rh-routing-card {
    max-width: 100%;
  }

  .rh-hero__h1 {
    font-size: 2.5rem;
  }
}

/* ============================================================
   RESPONSIVE — 768px: impact bar stacks, cards single col
   ============================================================ */
@media (max-width: 768px) {
  .rh-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .rh-final-cta {
    padding: 48px 0;
  }

  .rh-impact-bar {
    padding: 32px 0;
  }

  .rh-impact-bar__inner {
    flex-direction: column;
    gap: 0;
  }

  .rh-impact-stat {
    padding: 24px 0;
    border-right: none !important;
    border-bottom: 1px solid var(--rh-border);
  }

  .rh-impact-stat:last-child {
    border-bottom: none;
  }

  .rh-mistakes__grid {
    grid-template-columns: 1fr;
  }

  .rh-tool-section__grid {
    grid-template-columns: 1fr;
  }

  .rh-tool-section__right {
    transform: none;
  }

  .rh-hero__h1 {
    font-size: 2rem;
  }

  .rh-hero__right {
    display: none;
  }

  .rh-process__steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .rh-process__connector {
    display: none;
  }

  .rh-process__connector-mobile {
    display: block;
    position: absolute;
    left: 31px; /* half of 64px circle */
    top: 32px;
    bottom: 32px;
    width: 0;
    border-left: 2px dashed rgba(57, 255, 18, 0.3);
    z-index: 0;
    pointer-events: none;
  }

  .rh-process-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 16px 0;
    align-items: flex-start;
  }

  .rh-process-step__circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .rh-process-step__desc {
    max-width: none;
  }

  .rh-section-h2 {
    font-size: 1.65rem;
  }

  .rh-final-cta__h2 {
    font-size: 1.75rem;
  }
}

/* ============================================================
   RESPONSIVE — 480px: hide guide index numbers
   ============================================================ */
@media (max-width: 480px) {
  .rh-guide-row__index {
    display: none;
  }

  .rh-hero__h1 {
    font-size: 1.75rem;
  }

  .rh-jump-nav__link {
    padding: 12px 10px;
    font-size: 0.8rem;
  }
}
