:root {
  --ink: #071a3d;
  --ink-soft: #5d6b82;
  --paper: #f8faff;
  --surface: #ffffff;
  --line: #e1e8f4;
  --forest: #0b2147;
  --forest-2: #173f7a;
  --coral: #2563eb;
  --coral-dark: #1d4ed8;
  --lime: #cfe0ff;
  --mint: #eef4ff;
  --sand: #f1f5fb;
  --shadow: 0 22px 65px rgba(20, 57, 120, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.36);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(225, 232, 244, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.announcement-bar {
  color: #dbe7ff;
  background: var(--forest);
  font-size: 0.82rem;
  font-weight: 620;
}

.announcement-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
}

.announcement-inner > span::before {
  margin-right: 10px;
  color: #7aa7ff;
  content: "✦";
}

.announcement-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 820;
  letter-spacing: -0.045em;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: var(--coral);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: #fff;
}

.brand-mark::before {
  width: 7px;
  height: 18px;
  left: 8px;
  bottom: 6px;
}

.brand-mark::after {
  width: 7px;
  height: 12px;
  right: 8px;
  bottom: 6px;
}

.brand-dot {
  color: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:not(.button) {
  position: relative;
  padding-block: 7px;
}

.nav-links a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-dark {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

.button-dark:hover {
  background: var(--coral-dark);
}

.button-light {
  border-color: var(--line);
  background: var(--surface);
}

.button-light:hover {
  border-color: var(--ink);
}

.button-arrow::after {
  content: "→";
  font-size: 1.1em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--forest-2);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--coral);
}

.display,
h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.25rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

p {
  margin-top: 0;
}

.lede {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.muted {
  color: var(--ink-soft);
}

.section {
  padding-block: clamp(80px, 10vw, 136px);
}

.section-tight {
  padding-block: clamp(54px, 7vw, 86px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 52px;
}

.section-heading > * {
  max-width: 690px;
}

.section-heading p {
  max-width: 520px;
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 9vw, 122px) 82px;
  background-color: #fbfdff;
  background-image:
    linear-gradient(rgba(59, 104, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 104, 184, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero::before {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 900px;
  height: 620px;
  content: "";
  background: radial-gradient(circle, rgba(74, 126, 255, 0.12) 0, rgba(74, 126, 255, 0.035) 45%, transparent 72%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  max-width: 1040px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy .eyebrow {
  padding: 7px 14px;
  border: 1px solid #d8e4f7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px rgba(28, 72, 150, 0.06);
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero-copy .eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.hero-copy h1 {
  display: grid;
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(3.65rem, 7vw, 6.5rem);
  line-height: 0.98;
}

.hero-accent {
  color: var(--coral);
}

.hero-copy .lede {
  max-width: 790px;
  margin-bottom: 32px;
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin-top: 42px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.micro-proof strong {
  flex-basis: 100%;
  color: #8793a8;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.micro-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.micro-proof span::before {
  display: none;
}

.system-map {
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.map-label {
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest-2);
  font-size: 0.78rem;
  font-weight: 740;
}

.map-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #64aa7b;
  box-shadow: 0 0 0 4px #e4f3e8;
}

.map-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.map-flow::before {
  position: absolute;
  top: 25px;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: var(--line);
}

.map-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdff;
  text-align: left;
}

.map-icon {
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  color: var(--coral-dark);
  background: var(--mint);
  font-size: 1.25rem;
  font-weight: 850;
}

.map-card:nth-child(3) .map-icon {
  background: var(--sand);
}

.map-card:nth-child(4) .map-icon {
  background: #fbe4de;
}

.map-card strong,
.map-card small {
  display: block;
}

.map-card small {
  color: var(--ink-soft);
}

.map-done {
  display: none;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 0.78rem;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  min-height: 116px;
  align-items: center;
}

.trust-item {
  padding: 22px 28px;
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-kicker {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-value {
  margin: 2px 0 0;
  color: var(--forest);
  font-size: 1.35rem;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 100px);
}

.sticky-copy {
  align-self: start;
}

.pain-list {
  display: grid;
  gap: 14px;
}

.pain-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
}

.pain-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--coral-dark);
  background: #fbe4de;
  font-size: 0.82rem;
  font-weight: 850;
}

.pain-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.dark-section {
  color: #fff;
  background: var(--forest);
}

.dark-section .eyebrow,
.dark-section .lede,
.dark-section .muted,
.dark-section .section-heading p {
  color: #cddbd4;
}

.dark-section .eyebrow::before {
  background: var(--lime);
}

.solution-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.solution-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.solution-card:nth-child(1),
.solution-card:nth-child(4) {
  grid-column: span 7;
}

.solution-card:nth-child(2),
.solution-card:nth-child(3) {
  grid-column: span 5;
}

.solution-card:nth-child(2) {
  color: var(--ink);
  background: var(--lime);
}

.solution-card:nth-child(3) {
  color: var(--ink);
  background: var(--sand);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  font-weight: 900;
}

.solution-card p {
  max-width: 520px;
  margin-bottom: 0;
  opacity: 0.78;
}

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

.service-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card .card-icon {
  margin-bottom: 38px;
  background: var(--mint);
}

.service-card:nth-child(2n) .card-icon {
  background: var(--sand);
}

.service-card p {
  color: var(--ink-soft);
}

.service-card .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-2);
  font-weight: 780;
}

.text-link::after {
  content: "↗";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translate(2px, -2px);
}

.outcomes {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.outcome-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.outcome-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
}

.outcome-check {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  font-weight: 900;
}

.outcome-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.quote-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.stars {
  margin-bottom: 25px;
  color: var(--coral);
  font-size: 0.93rem;
  letter-spacing: 0.14em;
}

.quote-card blockquote {
  margin: 0 0 30px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.quote-person {
  margin-top: auto;
}

.quote-person strong,
.quote-person span {
  display: block;
}

.quote-person span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  border-top: 1px solid var(--line);
  counter-increment: process;
}

.process-card::before {
  display: block;
  margin-bottom: 80px;
  color: var(--coral);
  content: "0" counter(process);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--forest);
}

.process-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.case-card {
  position: relative;
  display: flex;
  min-height: 410px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--forest);
}

.case-card:first-child {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--forest-2);
  box-shadow:
    0 18px 44px rgba(4, 19, 45, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.case-card::before,
.case-card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.case-card::before {
  top: 32px;
  right: 30px;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.05);
}

.case-card::after {
  top: 90px;
  right: 88px;
  width: 40px;
  height: 40px;
  background: var(--lime);
}

.case-card:nth-child(2) {
  color: var(--ink);
  background: var(--sand);
}

.case-card:nth-child(2)::before {
  border-color: rgba(20, 33, 28, 0.3);
  box-shadow: 0 0 0 28px rgba(20, 33, 28, 0.04);
}

.case-card:nth-child(2)::after {
  background: var(--coral);
}

.case-card:nth-child(3) {
  color: var(--ink);
  background: var(--mint);
}

.case-card:nth-child(3)::before {
  border-color: rgba(20, 33, 28, 0.3);
  box-shadow: 0 0 0 28px rgba(20, 33, 28, 0.04);
}

.case-tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.75;
}

.case-card h3 {
  max-width: 280px;
  font-size: 1.55rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 100px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 730;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 650px;
  padding: 0 52px 22px 0;
  color: var(--ink-soft);
}

.cta-panel {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  place-items: center;
  padding: clamp(60px, 9vw, 110px) 30px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--forest);
  text-align: center;
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.cta-panel::before {
  top: -220px;
  left: -80px;
  width: 500px;
  height: 500px;
}

.cta-panel::after {
  right: -100px;
  bottom: -290px;
  width: 600px;
  height: 600px;
}

.cta-panel-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-panel h2 {
  margin-bottom: 18px;
}

.cta-panel p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #cddbd4;
  font-size: 1.12rem;
}

.site-footer {
  padding-block: 72px 28px;
  color: #d9e4de;
  background: #0e2b22;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 50px;
  padding-bottom: 58px;
}

.site-footer .brand {
  margin-bottom: 18px;
  color: #fff;
}

.footer-intro {
  max-width: 360px;
  color: #aabdb4;
}

.footer-title {
  margin: 4px 0 18px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: #aabdb4;
  font-size: 0.93rem;
}

.footer-links a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-row a {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding-inline: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 780;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #839b90;
  font-size: 0.82rem;
}

.page-hero {
  padding-block: clamp(78px, 10vw, 130px);
  border-bottom: 1px solid var(--line);
}

.page-hero .lede {
  max-width: 760px;
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
}

.page-hero-actions {
  margin-top: 30px;
}

.mini-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.mini-stat {
  padding: 24px;
  background: var(--surface);
}

.mini-stat strong,
.mini-stat span {
  display: block;
}

.mini-stat strong {
  margin-bottom: 4px;
  font-size: 1.14rem;
}

.mini-stat span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.service-detail {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.service-detail .card-icon {
  flex: 0 0 auto;
  margin: 0;
  background: var(--mint);
}

.service-detail > p {
  color: var(--ink-soft);
}

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

.check-list li {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 720;
}

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

.additional-item {
  position: relative;
  display: flex;
  min-height: 230px;
  overflow: hidden;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.additional-item::before {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(221, 234, 152, 0.1);
}

.additional-item:nth-child(3n + 2)::before {
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(239, 104, 75, 0.1);
}

.additional-item:nth-child(3n + 3)::before {
  background: var(--sand);
  box-shadow: 0 0 0 7px rgba(242, 234, 220, 0.1);
}

.additional-item:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-3px);
}

.additional-item h3 {
  margin-top: auto;
  margin-bottom: 12px;
  color: #fff;
}

.additional-item p {
  margin-bottom: 0;
  color: #cddbd4;
  font-size: 0.94rem;
}

.about-split,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.statement-card {
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--forest);
}

.statement-card p {
  color: #cddbd4;
  font-size: 1.08rem;
}

.statement-card p:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
}

.feature-row::before {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  content: "✓";
  font-weight: 900;
}

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

.team-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.team-portrait {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--mint);
}

.team-card:nth-child(2) .team-portrait {
  background: var(--sand);
}

.team-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

.team-content {
  padding: 30px;
}

.team-pronunciation {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.team-content p {
  color: var(--ink-soft);
}

.contact-note {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--mint);
}

.contact-note + .contact-note {
  margin-top: 14px;
  background: var(--sand);
}

.direct-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.direct-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 760;
}

.direct-link span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.contact-form {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.84rem;
  font-weight: 760;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fcfcf9;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 4px rgba(28, 89, 69, 0.1);
}

.field-hint,
.form-disclaimer,
.form-status {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--forest-2);
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 112px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    padding: 28px 20px;
    background: var(--paper);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .nav-links .button {
    margin-top: 12px;
  }

  .hero-grid,
  .problem-grid,
  .outcomes,
  .faq-layout,
  .about-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 800px;
  }

  .system-map {
    width: 100%;
  }

  .map-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .trust-item {
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(2n + 1) {
    border-left: 0;
  }

  .trust-item:first-child {
    grid-column: span 2;
    border-top: 0;
  }

  .card-grid,
  .testimonial-grid,
  .case-grid,
  .additional-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-portrait {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 28px, 1180px);
    --radius-lg: 24px;
  }

  .section {
    padding-block: 72px;
  }

  .announcement-inner {
    min-height: 38px;
  }

  .announcement-inner > span {
    display: none;
  }

  .nav-links {
    top: 108px;
  }

  .section-heading {
    display: block;
    margin-bottom: 36px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-copy h1,
  h1,
  .page-hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .system-map {
    min-height: auto;
    padding: 20px;
  }

  .map-top {
    align-items: flex-start;
    gap: 18px;
  }

  .map-flow {
    grid-template-columns: 1fr;
  }

  .map-card {
    grid-template-columns: 42px 1fr;
  }

  .map-icon {
    width: 42px;
    height: 42px;
  }

  .map-done {
    display: none;
  }

  .trust-inner,
  .card-grid,
  .testimonial-grid,
  .case-grid,
  .process-grid,
  .service-list-grid,
  .additional-grid,
  .team-grid,
  .mini-stat-row,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2n + 1) {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .trust-item:first-child {
    grid-column: auto;
  }

  .solution-board {
    display: grid;
    grid-template-columns: 1fr;
  }

  .solution-card:nth-child(n) {
    grid-column: auto;
  }

  .service-card,
  .quote-card {
    min-height: auto;
  }

  .process-card {
    min-height: auto;
    padding-inline: 8px;
  }

  .process-card::before {
    margin-bottom: 38px;
  }

  .process-card::after {
    display: none;
  }

  .case-card {
    min-height: 360px;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-portrait {
    min-height: 260px;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p:last-child {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Reliable full-viewport navigation for tablets and phones. */
@media (max-width: 980px) {
  .site-header {
    z-index: 1000;
    backdrop-filter: none;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    height: calc(100dvh - 84px);
    overflow-y: auto;
    padding: 18px 24px 32px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 26px 55px rgba(16, 44, 85, 0.12);
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-links a:not(.button) {
    display: flex;
    min-height: 62px;
    align-items: center;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
  }

  .nav-links a:not(.button)::after {
    display: none;
  }

  .nav-links .button {
    width: 100%;
    margin-top: 22px;
  }
}

@media (max-width: 700px) {
  .nav-links {
    top: 74px;
    height: calc(100dvh - 74px);
    padding-inline: 18px;
  }
}

/* Blog previews and long-form insights. */
.blog-preview-section {
  background: #fff;
}

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

.blog-card {
  display: flex;
  min-height: 470px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(21, 58, 110, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover {
  border-color: #c5d3e6;
  box-shadow: 0 22px 48px rgba(21, 58, 110, 0.12);
  transform: translateY(-5px);
}

.blog-visual {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
}

.blog-visual::before,
.blog-visual::after,
.blog-visual span {
  position: absolute;
  content: "";
}

.blog-visual::before {
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.45;
  transform: translate(-50%, -50%);
}

.blog-visual::after {
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.blog-visual span {
  top: 50%;
  left: 50%;
  width: 164px;
  height: 164px;
  border: 22px solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
  transform: translate(-50%, -50%);
}

.blog-visual-blue {
  color: #79aef4;
  background: var(--forest);
}

.blog-visual-yellow {
  color: var(--coral);
  background: var(--sand);
}

.blog-visual-mint {
  color: #159c8c;
  background: #e8f8f5;
}

.blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.blog-meta {
  display: block;
  margin-bottom: 15px;
  color: var(--forest-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.blog-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.blog-card .text-link {
  margin-top: auto;
}

.blog-hero h1 {
  max-width: 1040px;
}

.blog-entry-list {
  display: grid;
  max-width: 980px;
  gap: 28px;
}

.blog-entry {
  scroll-margin-top: 110px;
  padding: clamp(30px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 14px 42px rgba(21, 58, 110, 0.06);
}

.blog-entry:nth-child(2) {
  background: var(--sand);
}

.blog-entry:nth-child(3) {
  background: var(--mint);
}

.blog-entry-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.blog-entry-head .blog-meta {
  margin: 0;
}

.blog-entry-number {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 820;
}

.blog-entry h2 {
  max-width: 800px;
  font-size: clamp(2.15rem, 5vw, 4.15rem);
}

.blog-entry > p,
.article-list {
  max-width: 760px;
}

.article-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding: 13px 16px 13px 45px;
  border: 1px solid rgba(16, 44, 85, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.62);
}

.article-list li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  content: "✓";
  background: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: auto;
  }

  .blog-entry-head {
    align-items: flex-start;
  }
}

/* Cursor-responsive hero depth dots. */
.has-cursor-dots {
  position: relative;
  isolation: isolate;
}

.has-cursor-dots > .container {
  position: relative;
  z-index: 2;
}

.cursor-dot-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.cursor-dot {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.cursor-dot::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  content: "";
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(54, 127, 232, 0.08);
  animation: cursor-dot-float 4.8s ease-in-out infinite alternate;
}

.cursor-dot:nth-child(1) {
  top: 15%;
  left: 5%;
  width: 8px;
  height: 8px;
}

.cursor-dot:nth-child(2) {
  top: 18%;
  right: 7%;
  width: 15px;
  height: 15px;
}

.cursor-dot:nth-child(2)::after,
.cursor-dot:nth-child(6)::after {
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(255, 189, 46, 0.1);
}

.cursor-dot:nth-child(3) {
  bottom: 15%;
  left: 9%;
  width: 13px;
  height: 13px;
}

.cursor-dot:nth-child(3)::after,
.cursor-dot:nth-child(7)::after {
  background: #48d3c3;
  box-shadow: 0 0 0 8px rgba(72, 211, 195, 0.08);
}

.cursor-dot:nth-child(4) {
  top: 49%;
  right: 44%;
  width: 6px;
  height: 6px;
}

.cursor-dot:nth-child(5) {
  right: 4%;
  bottom: 18%;
  width: 9px;
  height: 9px;
}

.cursor-dot:nth-child(6) {
  top: 8%;
  left: 43%;
  width: 6px;
  height: 6px;
}

.cursor-dot:nth-child(7) {
  bottom: 8%;
  left: 62%;
  width: 11px;
  height: 11px;
}

.cursor-dot:nth-child(8) {
  top: 69%;
  left: 3%;
  width: 5px;
  height: 5px;
}

.cursor-dot:nth-child(2n)::after {
  animation-delay: -1.7s;
}

.cursor-dot:nth-child(3n)::after {
  animation-delay: -3.1s;
}

@keyframes cursor-dot-float {
  from {
    opacity: 0.38;
    transform: translateY(-3px) scale(0.92);
  }
  to {
    opacity: 0.78;
    transform: translateY(4px) scale(1.08);
  }
}

@media (max-width: 700px) {
  .cursor-dot-field {
    opacity: 0.65;
  }

  .cursor-dot:nth-child(n + 6) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot {
    transition: none;
  }

  .cursor-dot::after {
    animation: none;
    opacity: 0.48;
  }
}

/* Product Camps-inspired visual direction: energetic, practical, and programmatic. */
:root {
  --ink: #102c55;
  --ink-soft: #6b7588;
  --paper: #fbfcfe;
  --surface: #ffffff;
  --line: #dde3ec;
  --forest: #102f5b;
  --forest-2: #174b91;
  --coral: #367fe8;
  --coral-dark: #2567c9;
  --lime: #ffbd2e;
  --mint: #edf4ff;
  --sand: #fff5d9;
  --shadow: 0 24px 60px rgba(21, 58, 110, 0.14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: min(1180px, calc(100% - 48px));
}

body {
  background: var(--paper);
}

:focus-visible {
  outline-color: rgba(255, 189, 46, 0.7);
}

.announcement-bar {
  display: none;
}

.site-header {
  border-bottom-color: #e8ebf0;
  background: rgba(255, 255, 255, 0.98);
}

.nav-shell {
  min-height: 84px;
}

.brand {
  color: var(--ink);
  font-size: 1.48rem;
  font-weight: 860;
}

.brand-mark {
  border-radius: 9px;
  background: var(--lime);
  box-shadow: 0 8px 18px rgba(255, 189, 46, 0.28);
}

.brand-mark::before,
.brand-mark::after {
  background: var(--ink);
}

.brand-dot {
  color: var(--coral);
}

.nav-links {
  color: #29364b;
  font-weight: 720;
}

.button {
  min-height: 52px;
  border-radius: 10px;
  font-weight: 820;
}

.button-primary,
.button-dark {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 25px rgba(255, 176, 24, 0.25);
}

.button-primary:hover,
.button-dark:hover {
  color: #fff;
  background: var(--coral-dark);
}

.button-light {
  border-color: #ccd4df;
  color: var(--ink);
}

.eyebrow {
  color: var(--forest-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  background: var(--lime);
}

h1,
h2,
h3 {
  font-weight: 830;
  letter-spacing: -0.047em;
}

.hero {
  padding-block: clamp(78px, 9vw, 118px) 88px;
  background:
    radial-gradient(circle at 88% 20%, rgba(54, 127, 232, 0.1), transparent 29%),
    radial-gradient(circle at 6% 83%, rgba(255, 189, 46, 0.13), transparent 24%),
    #fff;
}

.hero::before {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  max-width: none;
  gap: clamp(52px, 7vw, 92px);
}

.hero-copy {
  align-items: flex-start;
  text-align: left;
}

.hero-copy .eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy .eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 0;
  box-shadow: none;
  background: var(--lime);
}

.hero-copy h1 {
  display: block;
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 6vw, 5.75rem);
  line-height: 1.01;
}

.hero-accent {
  display: block;
  color: var(--coral);
}

.hero-note {
  position: relative;
  display: inline-block;
  margin: 0 0 26px;
  color: var(--ink);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.3;
  transform: rotate(-1deg);
}

.hero-note::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 5px;
  border-radius: 99px;
  content: "";
  background: #48d3c3;
  transform: rotate(-1deg);
}

.hero-copy .lede {
  max-width: 610px;
  margin-bottom: 32px;
}

.hero-actions,
.micro-proof {
  justify-content: flex-start;
}

.micro-proof {
  max-width: 610px;
  gap: 10px 22px;
  margin-top: 35px;
}

.micro-proof strong {
  color: #8a94a5;
}

.system-map {
  overflow: hidden;
  padding: 0 0 18px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background: #102f5b;
  box-shadow: 0 30px 70px rgba(16, 47, 91, 0.27);
  transform: rotate(0.4deg);
}

.map-top {
  position: relative;
  min-height: 64px;
  margin: 0;
  padding: 18px 22px 18px 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #163965;
}

.map-top::before {
  position: absolute;
  top: 27px;
  left: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: #ff6767;
  box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #35c96e;
}

.map-label {
  color: #b8c8df;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: none;
}

.map-status {
  color: #a9dcb8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.map-status::before {
  background: #35c96e;
  box-shadow: none;
}

.map-flow {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 14px 22px;
}

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

.map-card {
  grid-template-columns: 104px minmax(0, 1fr) 26px;
  gap: 16px;
  padding: 17px 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  color: #fff;
  background: transparent;
}

.map-card:last-child {
  border-bottom: 0;
}

.map-icon {
  width: 104px;
  height: 34px;
  border-radius: 6px;
  color: #7ed7ca;
  background: rgba(72, 211, 195, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.map-card:nth-child(2) .map-icon {
  color: #8ab6ff;
  background: rgba(54, 127, 232, 0.17);
}

.map-card:nth-child(3) .map-icon {
  color: #ffcf63;
  background: rgba(255, 189, 46, 0.15);
}

.map-card:nth-child(4) .map-icon {
  color: #b5d5ff;
  background: rgba(113, 170, 248, 0.14);
}

.map-card strong {
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.map-card small {
  color: #9fb2cd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.map-done {
  display: grid;
  color: #56d080;
  background: transparent;
}

.trust-strip {
  background: #f7f9fc;
}

.trust-inner {
  min-height: 106px;
}

.trust-kicker {
  color: #8791a2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
}

.trust-value {
  color: var(--ink);
  font-size: 1.22rem;
}

.trust-lead .trust-value {
  color: var(--coral);
  font-size: 2rem;
}

.service-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -14px 0 38px;
}

.service-paths span {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #465268;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 720;
}

.service-paths .is-active {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
}

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

.service-card {
  min-height: 280px;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(22, 59, 112, 0.05);
}

.service-card .card-icon {
  margin-bottom: 58px;
  color: var(--forest-2);
  background: var(--mint);
}

.service-card:nth-child(2n) .card-icon {
  background: var(--sand);
}

.dark-section {
  color: var(--ink);
  background: #f1f6fc;
}

.dark-section .eyebrow,
.dark-section .lede,
.dark-section .muted,
.dark-section .section-heading p {
  color: var(--ink-soft);
}

.solution-card {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 35px rgba(21, 58, 110, 0.06);
}

.solution-card:nth-child(2) {
  background: var(--sand);
}

.solution-card:nth-child(3) {
  background: var(--mint);
}

.additional-item {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 35px rgba(21, 58, 110, 0.06);
}

.additional-item:hover {
  border-color: #c6d4e8;
  background: #fff;
}

.additional-item h3 {
  color: var(--ink);
}

.additional-item p {
  color: var(--ink-soft);
}

.case-card:first-child {
  border-color: transparent;
  background: var(--forest);
}

.case-card:nth-child(3) {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: #2868bd;
  box-shadow: 0 20px 45px rgba(24, 74, 143, 0.2);
}

.case-card:nth-child(3)::before {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.07);
}

.case-card:nth-child(3)::after {
  background: var(--lime);
}

.cta-panel {
  background: var(--forest);
}

.site-footer {
  background: #0b2548;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 10vw, 128px);
  background:
    radial-gradient(circle at 90% 12%, rgba(54, 127, 232, 0.11), transparent 31%),
    radial-gradient(circle at 8% 88%, rgba(255, 189, 46, 0.12), transparent 22%),
    #fff;
}

.page-hero::after {
  position: absolute;
  right: 7vw;
  bottom: -65px;
  width: 190px;
  height: 190px;
  border: 26px solid rgba(54, 127, 232, 0.07);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 940px;
  color: var(--ink);
  font-size: clamp(3.35rem, 7vw, 6.4rem);
  line-height: 1;
}

.mini-stat-row,
.feature-list,
.outcome-list {
  border-radius: 18px;
}

.statement-card {
  background: var(--forest);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(54, 127, 232, 0.11);
}

@media (max-width: 980px) {
  .nav-links {
    top: 84px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .system-map {
    max-width: 760px;
    transform: none;
  }

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

@media (max-width: 700px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 74px;
  }

  .nav-links {
    top: 74px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .map-top {
    align-items: center;
    padding-left: 70px;
  }

  .map-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .map-icon {
    width: 84px;
  }

  .map-done {
    display: none;
  }

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

  .service-paths {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .service-paths span {
    flex: 0 0 auto;
  }
}

/* Sequential lead-to-booking workflow animation. */
.map-flow[data-flow-animation] {
  --flow-cycle: 7.2s;
  isolation: isolate;
}

.map-flow[data-flow-animation] .map-card {
  z-index: 1;
  min-height: 78px;
}

.map-flow[data-flow-animation] .map-card::before {
  position: absolute;
  inset: 7px -10px;
  z-index: -1;
  border: 1px solid rgba(126, 215, 202, 0.2);
  border-radius: 11px;
  content: "";
  background: linear-gradient(90deg, rgba(72, 211, 195, 0.12), rgba(54, 127, 232, 0.04));
  box-shadow: 0 0 26px rgba(72, 211, 195, 0.08);
  opacity: 0;
  transform: translateX(-7px);
}

.map-flow[data-flow-animation] .map-card:nth-child(1) {
  --flow-step: 0;
}

.map-flow[data-flow-animation] .map-card:nth-child(2) {
  --flow-step: 1;
}

.map-flow[data-flow-animation] .map-card:nth-child(3) {
  --flow-step: 2;
}

.map-flow[data-flow-animation] .map-card:nth-child(4) {
  --flow-step: 3;
  border-bottom: 0;
}

.flow-rail {
  position: absolute;
  top: 53px;
  bottom: 53px;
  left: 137px;
  z-index: 0;
  width: 2px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(159, 178, 205, 0.18);
}

.flow-rail::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background: linear-gradient(#48d3c3, #367fe8 58%, #ffbd2e);
  opacity: 0.78;
  transform: scaleY(0);
  transform-origin: top;
}

.flow-pulse {
  position: absolute;
  top: 0;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 2px solid #d8fff9;
  border-radius: 50%;
  background: #48d3c3;
  box-shadow: 0 0 0 5px rgba(72, 211, 195, 0.12), 0 0 18px 5px rgba(72, 211, 195, 0.5);
  opacity: 0;
  transform: translate(-50%, -50%);
}

.map-flow.is-flowing .flow-rail::before {
  animation: flow-fill var(--flow-cycle) linear infinite;
}

.map-flow.is-flowing .flow-pulse {
  animation: flow-travel var(--flow-cycle) cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.map-flow.is-flowing .map-card::before,
.map-flow.is-flowing .map-icon,
.map-flow.is-flowing .map-done {
  animation-delay: calc(var(--flow-step) * 1.8s);
  animation-duration: var(--flow-cycle);
  animation-iteration-count: infinite;
}

.map-flow.is-flowing .map-card::before {
  animation-name: flow-row-active;
}

.map-flow.is-flowing .map-icon {
  animation-name: flow-label-active;
}

.map-flow.is-flowing .map-done {
  animation-name: flow-check-active;
}

@keyframes flow-travel {
  0% {
    top: 0;
    opacity: 0;
  }
  5%,
  88% {
    opacity: 1;
  }
  94%,
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes flow-fill {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  6% {
    opacity: 0.78;
  }
  90% {
    opacity: 0.78;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
  }
}

@keyframes flow-row-active {
  0%,
  8%,
  33%,
  100% {
    opacity: 0;
    transform: translateX(-7px);
  }
  13%,
  27% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flow-label-active {
  0%,
  8%,
  33%,
  100% {
    filter: brightness(1);
    transform: scale(1);
  }
  13%,
  27% {
    filter: brightness(1.35);
    transform: scale(1.045);
  }
}

@keyframes flow-check-active {
  0%,
  8%,
  33%,
  100% {
    opacity: 0.25;
    transform: scale(0.82);
  }
  15%,
  27% {
    opacity: 1;
    text-shadow: 0 0 14px rgba(86, 208, 128, 0.8);
    transform: scale(1.18);
  }
}

@media (max-width: 700px) {
  .flow-rail {
    left: 105px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-flow[data-flow-animation] .flow-rail::before {
    opacity: 0.55;
    transform: scaleY(1);
  }

  .map-flow[data-flow-animation] .flow-pulse {
    display: none;
  }

  .map-flow[data-flow-animation] .map-card::before,
  .map-flow[data-flow-animation] .map-icon,
  .map-flow[data-flow-animation] .map-done {
    animation: none !important;
  }
}

/* WordPress and Elementor integration. */
.nav-menu {
  display: contents;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand-logo,
.brand-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo .custom-logo {
  width: auto;
  max-width: 220px;
  height: 46px;
}

.elementor-page-content {
  min-height: 50vh;
}

.entry-content {
  max-width: 980px;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content img,
.entry-featured-image img {
  width: auto;
  height: auto;
  border-radius: var(--radius);
}

.entry-featured-image {
  margin-bottom: 38px;
}

.blog-card-thumb {
  display: block;
  min-height: 190px;
  overflow: hidden;
  background: var(--mint);
}

.blog-card-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.navigation.pagination,
.post-navigation-wrap {
  margin-top: 42px;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.navigation.pagination .page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}

.page-numbers .current {
  color: #fff;
  border-color: var(--coral);
  background: var(--coral);
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.post-navigation a {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.comment-list {
  display: grid;
  gap: 20px;
  padding: 0;
  list-style: none;
}

.comment-list .comment-body {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.comment-form input:not([type="submit"]),
.comment-form textarea,
.search-form input[type="search"] {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.comment-form .submit,
.search-form input[type="submit"] {
  min-height: 48px;
  padding: 11px 18px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
  cursor: pointer;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 700px) {
  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .brand-logo .custom-logo {
    max-width: 180px;
    height: 40px;
  }
}
