:root {
  --navy: #12213b;
  --navy-2: #0b172b;
  --red: #d84335;
  --red-dark: #ba3328;
  --blue: #2463a6;
  --text: #2e3541;
  --muted: #68707d;
  --line: #e3d9cc;
  --soft: #f7f1e8;
  --paper: #fffaf3;
  --cream: #f3eadf;
  --shadow: 0 24px 70px rgba(18, 33, 59, 0.12);
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --serif: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid rgba(227, 217, 204, 0.9);
  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 760;
}

.main-nav a {
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
}

.nav-button {
  padding: 12px 20px;
  background: var(--red);
  color: #fff !important;
  border-radius: 3px;
}

.nav-button:hover,
.nav-button:focus-visible {
  background: var(--red-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--navy);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.99), rgba(247, 241, 232, 0.82) 42%, rgba(247, 241, 232, 0.12)),
    var(--soft);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(24px, 5.4vw, 78px);
}

.kicker {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  letter-spacing: 0;
  line-height: 1.1;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(42px, 4.1vw, 64px);
  font-weight: 760;
}

h2 {
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 760;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 630px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 34px 0 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 760;
  line-height: 1.1;
  box-shadow: 0 10px 22px rgba(18, 33, 59, 0.07);
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 250, 243, 0.92);
  color: var(--navy);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--navy);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 250, 243, 0.92);
  color: var(--navy);
  font-size: 13px;
  font-weight: 760;
}

.hero-image-wrap {
  position: relative;
  min-height: 620px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center center;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(18, 33, 59, 0.48));
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  right: clamp(20px, 4vw, 54px);
  bottom: 42px;
  z-index: 2;
  max-width: 360px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 20px;
}

.hero-badge span {
  color: var(--muted);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff7ec;
}

.signal-row span {
  padding: 18px 18px;
  border-right: 1px solid var(--line);
  color: #313846;
  font-size: 14px;
  font-weight: 760;
  text-align: center;
}

.signal-row span:last-child {
  border-right: 0;
}

.intro-section,
.difference-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  padding: 70px clamp(24px, 6vw, 86px);
  scroll-margin-top: 110px;
}

.intro-heading h2,
.section-title h2,
.difference-panel h2,
.consultation-section h2 {
  margin-bottom: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.numbers-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(24px, 6vw, 86px) 78px;
  gap: 18px;
}

.numbers-section article {
  padding: 28px 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 3px;
}

.numbers-section strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.numbers-section span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.pathfinder-section {
  padding: 76px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.86), transparent 44%),
    linear-gradient(180deg, #fffaf3 0%, #f6eee4 100%);
  scroll-margin-top: 110px;
}

.pathfinder-shell {
  position: relative;
  max-width: 1120px;
  min-height: 680px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(128, 150, 138, 0.32);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.96), rgba(255, 250, 243, 0.9) 58%, rgba(247, 241, 232, 0.78)),
    #fffaf3;
  box-shadow: 0 24px 68px rgba(18, 33, 59, 0.08);
  isolation: isolate;
}

.pathfinder-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0, rgba(128, 150, 138, 0.08) 50%, transparent 100%),
    radial-gradient(circle at 18% 28%, rgba(216, 67, 53, 0.055), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(36, 99, 166, 0.05), transparent 25%);
  pointer-events: none;
  z-index: -1;
}

.pathfinder-progress-row {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 18px 28px 0;
}

.pathfinder-progress {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #53665f;
  font-size: 13px;
}

.pathfinder-step-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pathfinder-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(128, 150, 138, 0.28);
}

.pathfinder-step-dot.is-active {
  width: 20px;
  background: #88b8a7;
}

.pathfinder-step-dot.is-complete {
  background: rgba(136, 184, 167, 0.72);
}

.pathfinder-control {
  border: 0;
  background: transparent;
  color: #526c61;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pathfinder-start-over {
  justify-self: end;
}

.pathfinder-control:hover,
.pathfinder-control:focus-visible {
  color: var(--red);
}

.pathfinder-stage {
  min-height: 600px;
}

.pathfinder-screen {
  min-height: 600px;
  animation: finder-screen-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pathfinder-screen.is-leaving {
  animation: finder-screen-out 0.18s ease both;
}

.pathfinder-orbit-screen {
  display: grid;
  place-items: center;
}

.pathfinder-orbit-stage {
  position: relative;
  width: min(100%, 1040px);
  min-height: 590px;
}

.pathfinder-orbit-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pathfinder-orbit-nodes {
  position: absolute;
  inset: 0;
}

.pathfinder-orbit-ring {
  fill: none;
  stroke: rgba(136, 184, 167, 0.18);
  stroke-width: 1.4;
}

.pathfinder-orbit-line {
  stroke: rgba(136, 184, 167, 0.17);
  stroke-width: 1.3;
  stroke-dasharray: 5 8;
}

.pathfinder-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: min(350px, 68vw);
  min-height: 280px;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 30px;
  border: 1px solid rgba(128, 150, 138, 0.32);
  background: rgba(255, 252, 248, 0.86);
  text-align: center;
  box-shadow: 0 30px 80px rgba(18, 33, 59, 0.05);
}

.pathfinder-compass,
.pathfinder-result-mark {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(114, 153, 139, 0.46);
  border-radius: 50%;
  background: rgba(136, 184, 167, 0.12);
  color: #53786b;
  font-weight: 800;
}

.pathfinder-compass::before {
  width: 22px;
  height: 22px;
  border: 3px solid #6c9889;
  transform: rotate(45deg);
  content: "";
}

.pathfinder-eyebrow,
.pathfinder-context {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 13px;
  color: #526c61;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathfinder-context {
  padding: 7px 16px;
  border: 1px solid rgba(128, 150, 138, 0.32);
  border-radius: 999px;
  background: rgba(136, 184, 167, 0.13);
}

.pathfinder-orbit-center h2,
.pathfinder-result-card h2,
.consultation-choice-screen h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 620;
  line-height: 1.12;
}

.pathfinder-intro {
  max-width: 420px;
  margin: 16px auto 0;
  color: #60716b;
  font-size: 17px;
  line-height: 1.55;
}

.pathfinder-orbit-node {
  position: absolute;
  top: var(--node-y);
  left: var(--node-x);
  z-index: 4;
  display: flex;
  width: 218px;
  min-height: 58px;
  transform: translate(-50%, -50%);
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(128, 150, 138, 0.34);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.88);
  color: #2f403a;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 22px 55px rgba(18, 33, 59, 0.07);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.pathfinder-orbit-node:hover,
.pathfinder-orbit-node:focus-visible,
.pathfinder-orbit-node.is-selected {
  border-color: rgba(216, 67, 53, 0.45);
  background: #fff9f2;
  color: var(--navy);
}

.pathfinder-node-dot {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(128, 150, 138, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.pathfinder-node-dot::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78a796;
  content: "";
}

.pathfinder-orbit-node:hover .pathfinder-node-dot::after,
.pathfinder-orbit-node.is-selected .pathfinder-node-dot::after {
  background: var(--red);
}

.is-floating {
  animation: finder-float var(--float-duration, 5s) ease-in-out var(--float-delay, 0s) infinite;
}

.is-floating:hover,
.is-floating:focus-visible,
.is-floating.is-selected {
  animation-play-state: paused;
}

.pathfinder-result-card,
.consultation-choice-screen {
  width: min(780px, calc(100% - 40px));
  margin: 34px auto 60px;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(128, 150, 138, 0.35);
  background: rgba(255, 252, 248, 0.92);
  text-align: center;
  box-shadow: 0 30px 80px rgba(18, 33, 59, 0.08);
}

.pathfinder-result-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pathfinder-result-card p {
  max-width: 560px;
  margin: 18px auto 0;
  color: #60716b;
  font-size: 17px;
}

.pathfinder-result-based {
  display: block;
  margin-top: 18px;
  color: #7a8884;
  font-size: 12px;
}

.pathfinder-result-actions {
  display: grid;
  width: min(100%, 520px);
  gap: 12px;
  margin-top: 34px;
}

.pathfinder-primary-button,
.pathfinder-secondary-button {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 3px;
  font-weight: 800;
  cursor: pointer;
}

.pathfinder-primary-button {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
}

.pathfinder-primary-button:hover,
.pathfinder-primary-button:focus-visible {
  background: var(--red-dark);
}

.pathfinder-secondary-button {
  border: 1px solid rgba(128, 150, 138, 0.36);
  background: #fffdf9;
  color: var(--navy);
}

.pathfinder-secondary-button:hover,
.pathfinder-secondary-button:focus-visible {
  border-color: var(--red);
}

.consultation-choice-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.consultation-choice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(128, 150, 138, 0.28);
  background: #fffdf9;
}

.consultation-choice h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.consultation-choice p {
  margin: 0;
  color: #60716b;
  font-size: 14px;
}

.embed-panel {
  max-width: 1120px;
  margin: 36px auto 0;
  scroll-margin-top: 120px;
}

.embed-panel[hidden] {
  display: none !important;
}

.embed-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.embed-panel-head h3 {
  margin: 0 0 5px;
  color: #3f4a45;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.embed-panel-head p {
  margin: 0;
  color: #60716b;
}

.embed-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.embed-open-tab,
.embed-choose-another {
  border: 0;
  background: transparent;
  color: #526c61;
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.embed-open-tab:hover,
.embed-open-tab:focus-visible,
.embed-choose-another:hover,
.embed-choose-another:focus-visible {
  color: var(--red);
}

.embed-stage {
  position: relative;
  min-height: 900px;
  overflow: visible;
  border: 1px solid rgba(128, 150, 138, 0.22);
  background: transparent;
  box-shadow: none;
}

.embed-stage iframe {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
  background: transparent;
}

.embed-panel.is-flow .embed-stage,
.embed-panel.has-dynamic-height .embed-stage,
.embed-panel.has-dynamic-height .embed-stage iframe {
  min-height: 0;
}

.embed-panel.is-flow .embed-stage iframe {
  min-height: 0;
  height: 1px;
  overflow: hidden;
}

.embed-panel.is-waiting-height .embed-stage {
  min-height: 420px;
  overflow: hidden;
}

.embed-panel.is-waiting-height .embed-stage iframe {
  min-height: 420px;
}

.embed-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: #fffdf9;
  color: #60716b;
  font-weight: 700;
}

.embed-loading[hidden] {
  display: none;
}

.embed-spinner {
  width: 38px;
  height: 38px;
  border: 4px solid rgba(136, 184, 167, 0.25);
  border-top-color: #88b8a7;
  border-radius: 50%;
  animation: finder-spin 0.8s linear infinite;
}

@keyframes finder-screen-in {
  from { opacity: 0; transform: translateY(12px) scale(0.985); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes finder-screen-out {
  to { opacity: 0; transform: translateY(-8px) scale(0.99); filter: blur(3px); }
}

@keyframes finder-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(-3px); }
  50% { transform: translate(-50%, -50%) translateY(5px); }
}

@keyframes finder-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .is-floating,
  .pathfinder-screen,
  .pathfinder-screen.is-leaving,
  .embed-spinner {
    animation: none !important;
  }
}

.services-section,
.reviews-section {
  padding: 78px clamp(24px, 6vw, 86px);
  scroll-margin-top: 110px;
}

.section-title {
  max-width: 780px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-grid article {
  position: relative;
  min-height: 260px;
  padding: 32px 32px 34px;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(216, 67, 53, 0.72);
  border-radius: 3px;
  background: #fffdf9;
  box-shadow: 0 12px 34px rgba(18, 33, 59, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-grid article:hover {
  border-color: rgba(229, 57, 45, 0.28);
  box-shadow: 0 18px 50px rgba(18, 33, 59, 0.1);
  transform: translateY(-3px);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.service-grid p {
  color: var(--muted);
}

.service-grid a {
  position: absolute;
  left: 32px;
  bottom: 28px;
  color: var(--navy);
  font-weight: 760;
  border-bottom: 2px solid rgba(216, 67, 53, 0.42);
}

.difference-section {
  display: block;
  background: var(--cream);
}

.difference-panel {
  max-width: 850px;
  margin-bottom: 26px;
  padding: 42px;
  background: #fffdf9;
  box-shadow: var(--shadow);
}

.difference-panel p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.difference-list article {
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 3px;
  background: #fffdf9;
}

.difference-list p {
  color: var(--muted);
}

.reviews-section {
  background: #f7f1e8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 34px;
  background: #fffdf9;
  box-shadow: 0 14px 35px rgba(18, 33, 59, 0.08);
}

blockquote p {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.42;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.consultation-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 70px clamp(24px, 6vw, 86px);
  background: #fffaf3;
  scroll-margin-top: 110px;
}

.consultation-section > div:first-child {
  max-width: 790px;
}

.consultation-section p:not(.kicker) {
  color: var(--muted);
  font-size: 19px;
  max-width: 760px;
  margin-top: 12px;
  margin-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  gap: 46px;
  padding: 52px clamp(24px, 6vw, 86px) 44px;
  background: var(--navy-2);
  color: #fff;
}

.footer .brand strong {
  color: #fff;
}

.footer .brand-symbol {
  background: var(--red);
}

.footer-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  margin-bottom: 18px;
}

.footer-brand .brand-symbol {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
}

.footer-brand strong {
  margin-bottom: 2px;
}

.footer small,
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer p,
.footer a {
  line-height: 1.65;
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  word-break: break-word;
}

.demo-credit {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 12px;
}

@media (max-width: 980px) {
  .topbar {
    padding: 14px 20px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .nav-button {
    text-align: center;
  }

  .hero-section,
  .intro-section,
  .difference-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-copy {
    padding: 70px 24px 48px;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 500px;
  }

  .signal-row,
  .service-grid,
  .reviews-grid,
  .difference-list,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-row span:nth-child(2n) {
    border-right: 0;
  }

  .numbers-section {
    grid-template-columns: 1fr;
  }

  .consultation-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .pathfinder-section {
    padding: 52px 16px;
  }

  .pathfinder-shell {
    min-height: 0;
  }

  .pathfinder-progress-row {
    padding: 16px 18px 0;
  }

  .pathfinder-orbit-stage {
    min-height: 620px;
  }

  .pathfinder-orbit-node {
    width: 205px;
    font-size: 13px;
  }

  .pathfinder-orbit-center {
    width: min(370px, 78vw);
  }

  .consultation-choice {
    grid-template-columns: 1fr;
  }

  .consultation-choice .pathfinder-primary-button {
    width: 100%;
  }

  .embed-panel-head {
    flex-direction: column;
  }

  .embed-stage,
  .embed-stage iframe {
    min-height: 780px;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-actions,
  .consultation-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .signal-row,
  .service-grid,
  .reviews-grid,
  .difference-list,
  .footer {
    grid-template-columns: 1fr;
  }

  .signal-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 460px;
  }

  .hero-badge {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .pathfinder-progress-row {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 14px 14px 0;
  }

  .pathfinder-control,
  .pathfinder-progress {
    font-size: 12px;
  }

  .pathfinder-orbit-stage,
  .pathfinder-screen,
  .pathfinder-stage {
    min-height: 0;
  }

  .pathfinder-orbit-stage {
    display: grid;
    gap: 20px;
    padding: 20px 16px 30px;
  }

  .pathfinder-orbit-map {
    display: none;
  }

  .pathfinder-orbit-center {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    transform: none;
    padding: 28px 22px;
  }

  .pathfinder-orbit-center h2,
  .pathfinder-result-card h2,
  .consultation-choice-screen h2 {
    font-size: 32px;
  }

  .pathfinder-orbit-nodes {
    position: relative;
    display: grid;
    gap: 10px;
    order: 2;
  }

  .pathfinder-orbit-node {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 56px;
    transform: none;
    animation: none;
  }

  .pathfinder-result-card,
  .consultation-choice-screen {
    width: calc(100% - 24px);
    margin: 20px auto 32px;
    padding: 28px 18px;
  }

  .embed-panel {
    margin-top: 28px;
  }

  .embed-stage,
  .embed-stage iframe {
    min-height: 760px;
  }
}
