.services-page {
  overflow-x: hidden;
}

.services-page .desktop-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.services-hero {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(66px, 8vw, 116px) 0 clamp(82px, 9vw, 132px);
}

.services-hero-copy {
  position: sticky;
  top: 138px;
}

.services-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 88px);
}

.services-hero-intro {
  max-width: 670px;
  margin-bottom: 30px;
  font-size: clamp(17px, 1.55vw, 21px);
}

.services-skip-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.route-run {
  min-width: 0;
  padding: clamp(22px, 3.6vw, 42px);
  background: var(--surface);
  border: var(--line);
  border-radius: 30px 30px 0 30px;
  box-shadow: 10px 10px 0 var(--ink);
}

.route-run-heading {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  justify-content: space-between;
}

.route-run-heading .card-kicker {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.route-run-heading h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.4vw, 48px);
}

.route-counter {
  display: grid;
  flex: 0 0 auto;
  gap: 2px;
  justify-items: end;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-counter strong {
  font-size: 29px;
  line-height: 1;
}

.route-instruction {
  max-width: 700px;
  margin: 18px 0 16px;
  color: #5e5851;
  font-size: 13px;
}

.route-progress {
  position: relative;
  height: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #ded7cc;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
}

.route-progress-fill {
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
}

.route-arena-wrap {
  position: relative;
}

.route-arena {
  position: relative;
  display: block;
  width: 100%;
  height: 430px;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: var(--line);
  border-radius: 18px 18px 0 18px;
  cursor: pointer;
  text-align: left;
}

.route-arena:hover {
  background: #f8f3ea;
}

.route-run[data-state="ready"] .route-arena,
.route-run[data-state="complete"] .route-arena {
  cursor: default;
}

.route-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(23, 22, 22, 0.08) 24% 24.35%, transparent 24.35% 49%, rgba(23, 22, 22, 0.08) 49% 49.35%, transparent 49.35% 74%, rgba(23, 22, 22, 0.08) 74% 74.35%, transparent 74.35%),
    linear-gradient(var(--surface) 0 61%, var(--paper) 61% 100%);
}

.route-dots {
  position: absolute;
  top: 30px;
  right: 34px;
  width: 86px;
  height: 44px;
  opacity: 0.24;
  background-image: radial-gradient(var(--ink) 1.5px, transparent 1.5px);
  background-size: 11px 11px;
}

.route-waypoint {
  position: absolute;
  padding: 4px 8px;
  border: 1.5px solid var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.waypoint-one {
  top: 108px;
  left: 6%;
  background: var(--yellow);
}

.waypoint-two {
  top: 78px;
  right: 8%;
  background: var(--blue);
}

.route-stage-label {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  display: grid;
  max-width: calc(100% - 170px);
  gap: 2px;
}

.route-stage-index {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.route-stage-label strong {
  font-size: clamp(21px, 2.8vw, 34px);
  line-height: 1.1;
}

.route-ground {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 50px;
  left: 0;
  height: 18px;
  background: var(--ink);
}

.route-ground::after {
  position: absolute;
  top: 26px;
  right: 0;
  left: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 22px, transparent 22px 40px);
  content: "";
}

.route-character {
  --runner-y: 0px;
  position: absolute;
  z-index: 7;
  bottom: 67px;
  left: clamp(48px, 12%, 116px);
  display: block;
  width: 70px;
  height: 108px;
  transform: translate3d(0, var(--runner-y), 0);
  transform-origin: center bottom;
}

.route-character-mark {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 17px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
}

.route-character-body {
  position: absolute;
  top: 34px;
  left: 22px;
  width: 28px;
  height: 43px;
  background: var(--ink);
  border-radius: 5px 5px 2px 2px;
  transform: skew(-4deg);
}

.route-character-body::before,
.route-character-body::after {
  position: absolute;
  top: 8px;
  width: 30px;
  height: 7px;
  background: var(--ink);
  content: "";
}

.route-character-body::before {
  right: 18px;
  transform: rotate(-30deg);
  transform-origin: right center;
}

.route-character-body::after {
  left: 18px;
  transform: rotate(29deg);
  transform-origin: left center;
}

.route-character-leg {
  position: absolute;
  top: 71px;
  width: 9px;
  height: 28px;
  background: var(--ink);
  transform-origin: top center;
}

.leg-one {
  left: 25px;
  transform: rotate(18deg);
}

.leg-two {
  left: 39px;
  transform: rotate(-18deg);
}

.route-character small {
  position: absolute;
  bottom: -21px;
  left: 10px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.route-character.is-jumping .leg-one {
  transform: rotate(-28deg);
}

.route-character.is-jumping .leg-two {
  transform: rotate(32deg);
}

.route-character.is-assisted .route-character-mark {
  background: var(--yellow);
}

.route-obstacle {
  --obstacle-x: 110%;
  position: absolute;
  z-index: 5;
  bottom: 67px;
  left: 0;
  display: block;
  width: 76px;
  height: 102px;
  background: var(--ink);
  border: 3px solid var(--ink);
  transform: translate3d(var(--obstacle-x), 0, 0);
}

.route-obstacle::before {
  position: absolute;
  top: 13px;
  right: 12px;
  bottom: 13px;
  left: 12px;
  border: 3px solid var(--paper);
  content: "";
}

.route-obstacle::after {
  position: absolute;
  top: -17px;
  left: 28px;
  width: 16px;
  height: 18px;
  background: var(--coral);
  border: 2px solid var(--ink);
  content: "";
}

.obstacle-tag {
  position: absolute;
  right: -7px;
  bottom: calc(100% + 28px);
  display: block;
  width: max-content;
  max-width: min(210px, 44vw);
  padding: 7px 9px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
  text-align: right;
}

.route-assist {
  position: absolute;
  z-index: 6;
  bottom: 67px;
  left: clamp(80px, 18%, 170px);
  display: block;
  width: 126px;
  height: 62px;
  opacity: 0;
  transform: translateY(18px);
}

.route-assist span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 118px;
  height: 22px;
  background: var(--coral);
  border: 2px solid var(--ink);
  transform: rotate(-24deg);
  transform-origin: right bottom;
}

.route-assist span::after {
  position: absolute;
  top: -28px;
  right: -3px;
  padding: 3px 6px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  content: "ASIDU";
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(24deg);
}

.route-run.is-assisted .route-assist {
  opacity: 1;
  transform: translateY(0);
}

.route-run[data-state="complete"] .route-stage-label strong {
  color: var(--coral);
}

.run-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.run-controls button {
  cursor: pointer;
}

.run-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.run-jump {
  gap: 10px;
}

.run-jump kbd {
  padding: 2px 7px;
  background: white;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: var(--ink);
  font-family: inherit;
  font-size: 9px;
  letter-spacing: 0.05em;
}

.run-reset {
  min-height: 44px;
  margin-left: auto;
  padding: 8px 2px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.route-feedback {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  min-height: 118px;
  margin-top: 16px;
  padding: 18px;
  background: var(--green);
  border: var(--line);
}

.route-feedback-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.route-feedback strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.25;
}

.route-feedback p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.route-fallback {
  display: none;
  margin-top: 18px;
}

.route-fallback-intro {
  font-size: 13px;
}

.route-fallback ol {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: var(--line);
  list-style: none;
}

.route-fallback li {
  display: grid;
  grid-template-columns: 44px minmax(130px, 0.7fr) 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1.5px solid var(--ink);
}

.route-fallback li > span,
.route-fallback li > strong {
  font-size: 12px;
}

.route-fallback li p {
  margin: 0;
  font-size: 12px;
}

.service-principles {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  background: var(--ink);
  border: var(--line);
  color: white;
}

.service-principles article {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid #5b5856;
}

.service-principles article:last-child {
  border-right: 0;
}

.service-principles article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
}

.service-principles strong {
  display: block;
  font-size: clamp(21px, 2vw, 29px);
}

.service-principles p {
  margin: 8px 0 0;
  color: #c8c3bd;
  font-size: 12px;
}

.journey-intro {
  padding-bottom: 70px;
}

.phase-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--line);
  border-left: var(--line);
}

.phase-index a {
  display: grid;
  min-height: 170px;
  padding: 20px;
  border-right: var(--line);
  border-bottom: var(--line);
  text-decoration: none;
}

.phase-index a:hover,
.phase-index a:focus-visible {
  background: var(--coral);
}

.phase-index a > span {
  font-size: 11px;
  font-weight: 900;
}

.phase-index strong {
  align-self: end;
  font-size: clamp(20px, 2.2vw, 31px);
}

.phase-index small {
  font-size: 11px;
  font-weight: 750;
}

.service-phase {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(38px, 7vw, 105px);
  padding-right: clamp(24px, 5vw, 72px);
  padding-left: clamp(24px, 5vw, 72px);
  border: var(--line);
  border-radius: 34px 34px 0 34px;
}

.phase-decide {
  background: var(--coral);
}

.phase-apply {
  background: var(--yellow);
}

.phase-arrive {
  background: var(--blue);
}

.phase-advance {
  background: var(--green);
}

.phase-heading {
  position: sticky;
  top: 128px;
  align-self: start;
}

.phase-number {
  margin-bottom: 50px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.phase-word {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.phase-heading h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.phase-heading > p:last-child {
  margin: 0;
  font-size: 15px;
}

.phase-services {
  border-top: var(--line);
}

.phase-services article {
  display: grid;
  grid-template-columns: 42px minmax(180px, 0.6fr) minmax(200px, 1fr);
  gap: 18px;
  padding: 30px 0;
  border-bottom: var(--line);
}

.phase-services article > span {
  font-size: 11px;
  font-weight: 900;
}

.phase-services h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 27px);
}

.phase-services p {
  margin: 0;
  font-size: 14px;
}

.phase-output {
  margin-top: 32px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
  border: var(--line);
  box-shadow: 7px 7px 0 var(--ink);
}

.output-label {
  margin-bottom: 34px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phase-output h3 {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: clamp(25px, 3vw, 39px);
}

.phase-output ul {
  display: grid;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.phase-output li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 750;
}

.phase-output li::before {
  content: "→";
}

.boundary-note {
  margin: 0;
  padding-top: 20px;
  border-top: 1.5px solid var(--ink);
  color: #5d5750;
  font-size: 11px;
}

.hurdle-section {
  width: min(calc(100% - 32px), var(--max));
  padding-right: clamp(24px, 5vw, 72px);
  padding-left: clamp(24px, 5vw, 72px);
  background: var(--ink);
  border-radius: 34px 34px 0 34px;
  color: white;
}

.hurdle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #5b5856;
  border-left: 1px solid #5b5856;
  list-style: none;
}

.hurdle-grid li {
  position: relative;
  min-height: 330px;
  padding: 24px;
  border-right: 1px solid #5b5856;
  border-bottom: 1px solid #5b5856;
}

.hurdle-grid li > span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
}

.hurdle-grid h3 {
  margin: 74px 0 16px;
  font-size: clamp(20px, 2.1vw, 28px);
}

.hurdle-grid p {
  color: #c8c3bd;
  font-size: 12px;
}

.hurdle-grid small {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(44px, 8vw, 118px);
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro > p:last-child {
  margin-bottom: 0;
  font-size: 15px;
}

.process-steps {
  margin: 0;
  padding: 0;
  border-top: var(--line);
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: var(--line);
}

.process-steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--coral);
  border: var(--line);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.process-steps h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.3vw, 31px);
}

.process-steps p {
  max-width: 650px;
  margin: 0;
  font-size: 14px;
}

.boundaries-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 94px);
  padding-right: clamp(24px, 5vw, 72px);
  padding-left: clamp(24px, 5vw, 72px);
  background: var(--surface);
  border: var(--line);
}

.boundaries-heading h2 {
  margin-bottom: 0;
}

.boundary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--line);
  border-left: var(--line);
}

.boundary-columns article {
  padding: clamp(24px, 3vw, 38px);
  border-right: var(--line);
  border-bottom: var(--line);
}

.boundary-columns article > p {
  margin-bottom: 58px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.boundary-do {
  background: var(--green);
}

.boundary-dont {
  background: var(--coral);
}

.boundary-columns ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-columns li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
}

.boundary-do li::before,
.boundary-dont li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.boundary-do li::before {
  content: "+";
}

.boundary-dont li::before {
  content: "×";
}

.budget-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(36px, 6vw, 88px);
  padding-right: clamp(24px, 5vw, 72px);
  padding-left: clamp(24px, 5vw, 72px);
  background: var(--surface);
  border: var(--line);
  border-radius: 34px 34px 0 34px;
}

.budget-intro h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.budget-intro > p:last-of-type {
  max-width: 580px;
  font-size: 15px;
}

.budget-factors {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: var(--line);
  list-style: none;
}

.budget-factors li {
  padding: 13px 0;
  border-bottom: 1.5px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.budget-factors li::before {
  margin-right: 10px;
  color: var(--coral);
  content: "+";
  font-weight: 950;
}

.budget-calculator {
  min-width: 0;
  padding: clamp(22px, 3.5vw, 40px);
  background: var(--paper);
  border: var(--line);
  box-shadow: 8px 8px 0 var(--ink);
}

.budget-country-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.budget-country-fieldset legend,
.budget-duration-control > label {
  display: block;
  margin-bottom: 14px;
  padding: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.budget-country-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.budget-country-choice {
  position: relative;
  min-width: 0;
}

.budget-country-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.budget-country-choice label {
  position: relative;
  display: grid;
  min-height: 100px;
  padding: 15px 10px;
  place-items: center;
  align-content: center;
  gap: 7px;
  background: var(--surface);
  border: 2px solid var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.budget-country-choice label:hover {
  background: var(--yellow);
}

.budget-country-choice input:checked + label {
  background: var(--coral);
  box-shadow: inset 0 -7px 0 rgba(23, 22, 22, 0.12);
}

.budget-country-choice input:checked + label::after {
  position: absolute;
  top: 7px;
  right: 8px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  content: "";
}

.budget-country-choice input:checked + label::before {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 13px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  transform: rotate(-45deg);
}

.budget-country-choice input:focus-visible + label {
  outline: 4px solid var(--blue);
  outline-offset: 3px;
}

.budget-flag {
  font-size: 24px;
  line-height: 1;
}

.budget-duration-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}

.budget-duration-control > label {
  margin: 0;
}

.budget-select-wrap {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
  font-weight: 850;
}

.budget-select-wrap select {
  min-width: 74px;
  min-height: 46px;
  padding: 8px 28px 8px 12px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.budget-select-wrap select:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 3px;
}

.budget-result {
  display: block;
}

.budget-result-heading {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 900;
}

.budget-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--line);
  border-left: var(--line);
}

.budget-metric {
  display: grid;
  min-width: 0;
  min-height: 210px;
  padding: clamp(18px, 3vw, 28px);
  align-content: space-between;
  gap: 16px;
  background: white;
  border-right: var(--line);
  border-bottom: var(--line);
}

.budget-metric-total {
  background: var(--coral);
}

.budget-metric small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.budget-metric strong {
  overflow-wrap: anywhere;
  font-size: clamp(27px, 3.4vw, 46px);
  line-height: 1;
}

.budget-metric > span:last-child {
  color: #5d5750;
  font-size: 11px;
  font-weight: 750;
}

.budget-status {
  margin: 17px 0 0;
  color: #5d5750;
  font-size: 10px;
}

.budget-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1.5px solid var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.budget-source-row a {
  color: inherit;
  text-underline-offset: 4px;
}

.budget-dedicated-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--ink);
  color: inherit;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.seo-snapshot {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(34px, 6vw, 90px);
  padding-right: clamp(24px, 5vw, 72px);
  padding-left: clamp(24px, 5vw, 72px);
  background: var(--ink);
  border: var(--line);
  border-radius: 34px 34px 0 34px;
  color: white;
}

.seo-rank-card {
  display: grid;
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
  align-content: space-between;
  background: var(--coral);
  border: 2px solid white;
  box-shadow: 8px 8px 0 var(--yellow);
  color: var(--ink);
}

.seo-rank-card p,
.seo-rank-card > span {
  margin: 0;
  font-size: clamp(13px, 0.75vw, 14px);
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.seo-rank-card strong {
  font-size: clamp(72px, 8.5vw, 118px);
  line-height: 0.82;
  letter-spacing: -0.09em;
  white-space: nowrap;
}

.seo-rank-card strong span {
  font-size: 0.35em;
  vertical-align: top;
}

.seo-evidence h2 {
  color: white;
  font-size: clamp(36px, 4.5vw, 64px);
}

.seo-summary {
  max-width: 820px;
  color: #d7d2cc;
  font-size: clamp(16px, 0.95vw, 17px);
  line-height: 1.65;
}

.seo-method {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 0;
  border-top: 1px solid #5b5856;
  border-left: 1px solid #5b5856;
}

.seo-method div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid #5b5856;
  border-bottom: 1px solid #5b5856;
}

.seo-method dt {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: clamp(11px, 0.65vw, 12px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-method dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(14px, 0.85vw, 16px);
  font-weight: 750;
  line-height: 1.55;
}

.seo-method a,
.seo-links a {
  color: inherit;
  text-underline-offset: 4px;
}

.seo-caveat {
  margin: 20px 0 0;
  color: #aba6a0;
  font-size: clamp(12px, 0.75vw, 14px);
  line-height: 1.6;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 20px;
  font-size: clamp(13px, 0.8vw, 15px);
  font-weight: 850;
  line-height: 1.5;
}

.service-final-cta {
  margin-top: 20px;
}

@media (max-width: 1180px) {
  .services-hero {
    grid-template-columns: 1fr;
  }

  .services-hero-copy {
    position: static;
    max-width: 900px;
  }

  .route-run {
    width: min(900px, 100%);
  }

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

@media (max-width: 900px) {
  .service-phase,
  .process-section,
  .boundaries-section,
  .budget-section,
  .seo-snapshot {
    grid-template-columns: 1fr;
  }

  .phase-heading,
  .process-intro {
    position: static;
  }

  .phase-services article {
    grid-template-columns: 42px minmax(170px, 0.62fr) minmax(200px, 1fr);
  }

  .boundary-columns {
    width: 100%;
  }

  .budget-intro {
    max-width: 760px;
  }

  .seo-rank-card {
    min-height: 280px;
  }
}

@media (max-width: 780px) {
  .services-hero,
  .service-principles {
    width: min(calc(100% - 24px), var(--max));
  }

  .services-hero {
    padding-top: 54px;
  }

  .services-hero-copy h1 {
    font-size: clamp(43px, 12vw, 68px);
  }

  .route-run {
    border-radius: 22px 22px 0 22px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .route-arena {
    height: 370px;
  }

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

  .service-principles article:nth-child(2) {
    border-right: 0;
  }

  .service-principles article:nth-child(-n + 2) {
    border-bottom: 1px solid #5b5856;
  }

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

  .service-phase,
  .hurdle-section,
  .budget-section,
  .seo-snapshot {
    border-radius: 22px 22px 0 22px;
  }

  .phase-services article {
    grid-template-columns: 36px 1fr;
  }

  .phase-services article p {
    grid-column: 2;
  }

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

  .hurdle-grid li {
    min-height: 280px;
  }

  .boundaries-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .budget-section,
  .seo-snapshot {
    padding-right: 22px;
    padding-left: 22px;
  }

  .budget-country-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .route-run {
    padding: 18px;
  }

  .route-run-heading {
    gap: 16px;
  }

  .route-run-heading h2 {
    font-size: 29px;
  }

  .route-arena {
    height: 330px;
  }

  .route-stage-label {
    top: 20px;
    left: 18px;
    max-width: calc(100% - 110px);
  }

  .route-stage-label strong {
    font-size: 21px;
  }

  .route-waypoint {
    display: none;
  }

  .route-character {
    left: 28px;
    transform: translate3d(0, var(--runner-y), 0) scale(0.9);
  }

  .route-obstacle {
    width: 66px;
    height: 92px;
  }

  .obstacle-tag {
    max-width: 142px;
    font-size: 9px;
  }

  .route-assist {
    left: 78px;
  }

  .run-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .run-controls .button {
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
  }

  .run-reset {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 0;
  }

  .route-feedback {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    min-height: 136px;
    padding: 14px;
  }

  .route-feedback-index {
    width: 34px;
    height: 34px;
  }

  .route-fallback li {
    grid-template-columns: 34px 1fr;
  }

  .route-fallback li p {
    grid-column: 2;
  }

  .service-principles,
  .phase-index,
  .hurdle-grid,
  .boundary-columns {
    grid-template-columns: 1fr;
  }

  .service-principles article {
    border-right: 0;
    border-bottom: 1px solid #5b5856;
  }

  .service-principles article:last-child {
    border-bottom: 0;
  }

  .phase-index a {
    min-height: 128px;
  }

  .service-phase {
    padding-right: 18px;
    padding-left: 18px;
  }

  .phase-number {
    margin-bottom: 30px;
  }

  .phase-services article {
    grid-template-columns: 31px 1fr;
    gap: 12px;
  }

  .phase-output {
    padding: 21px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .hurdle-grid li {
    min-height: 230px;
  }

  .hurdle-grid h3 {
    margin-top: 44px;
  }

  .process-steps li {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .process-steps li > span {
    width: 42px;
    height: 42px;
  }

  .boundary-columns article > p {
    margin-bottom: 38px;
  }

  .budget-calculator {
    padding: 17px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .budget-country-choice label {
    min-height: 88px;
    padding: 12px 8px;
  }

  .budget-duration-control {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .budget-select-wrap {
    justify-content: space-between;
  }

  .budget-result-grid,
  .seo-method {
    grid-template-columns: 1fr;
  }

  .budget-metric {
    min-height: 180px;
  }

  .seo-rank-card {
    min-height: 250px;
    padding: 24px;
    box-shadow: 5px 5px 0 var(--yellow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-arena-wrap,
  .run-controls,
  .route-feedback {
    display: none !important;
  }

  .route-fallback {
    display: block;
  }

  .route-progress {
    display: none;
  }
}
