:root {
  --navy: #0b1220;
  --slate: #1e293b;
  --muted: #647488;
  --cool: #aab6c4;
  --paper: #f6f6f1;
  --gold: #d7b56d;
  --white: #ffffff;
  --border: rgba(11, 18, 32, 0.14);
  --shadow: 0 20px 60px rgba(11, 18, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--navy);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: 5.25rem;
  max-width: 920px;
}

h2 {
  font-size: 3.35rem;
  max-width: 780px;
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.shell {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
  width: 100%;
}

.site-header {
  backdrop-filter: blur(16px);
  background: rgba(246, 246, 241, 0.94);
  border-bottom: 1px solid rgba(11, 18, 32, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 84px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: 292px;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: 22px;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav > ul {
  align-items: center;
  display: flex;
  gap: 22px;
}

.primary-nav li {
  position: relative;
}

.primary-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > ul > li > a {
  display: inline-flex;
  padding: 26px 0;
}

.primary-nav .sub-menu {
  background: var(--paper);
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(11, 18, 32, 0.14);
  display: grid;
  gap: 2px;
  left: 50%;
  min-width: 260px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 8px);
  transform: translateX(-50%) translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 20;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.primary-nav .sub-menu a {
  border-radius: 6px;
  color: var(--navy);
  display: block;
  padding: 0.62rem 0.7rem;
  white-space: nowrap;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu a:focus-visible {
  background: rgba(215, 181, 109, 0.18);
}

.nav-menu {
  position: relative;
}

.nav-menu > a {
  display: inline-flex;
  padding: 26px 0;
}

.nav-dropdown {
  background: var(--paper);
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(11, 18, 32, 0.14);
  display: grid;
  gap: 2px;
  left: 50%;
  min-width: 260px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 8px);
  transform: translateX(-50%) translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 20;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  border-radius: 6px;
  color: var(--navy);
  padding: 0.62rem 0.7rem;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(215, 181, 109, 0.18);
}

.button,
button {
  align-items: center;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.1rem;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
button:hover {
  background: #c9a351;
  border-color: #c9a351;
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
}

.button-ghost {
  background: rgba(246, 246, 241, 0.04);
  border-color: rgba(246, 246, 241, 0.74);
  color: var(--paper);
}

.button-ghost:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--navy);
}

.eyebrow {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Revised hero v1 start */
.hero {
  background:
    linear-gradient(rgba(246, 246, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 246, 241, 0.035) 1px, transparent 1px),
    linear-gradient(110deg, rgba(11, 18, 32, 0.99), rgba(11, 18, 32, 0.93));
  background-size: 80px 80px, 80px 80px, auto;
  color: var(--paper);
}

.hero-inner {
  max-width: 1320px;
  padding-bottom: 56px;
  padding-top: 64px;
}

.hero-layout {
  align-items: stretch;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(440px, 0.95fr) minmax(460px, 1.25fr);
}

.hero-content {
  min-width: 0;
}

.hero h1 {
  font-size: 3.45rem;
  line-height: 0.98;
  max-width: 720px;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  color: rgba(246, 246, 241, 0.84);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 26px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  color: rgba(246, 246, 241, 0.66);
  font-size: 0.98rem;
  line-height: 1.45;
  margin-top: 18px;
  max-width: 620px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-badge {
  align-items: center;
  background: rgba(246, 246, 241, 0.055);
  border: 1px solid rgba(246, 246, 241, 0.16);
  border-radius: 999px;
  color: rgba(246, 246, 241, 0.86);
  display: inline-flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 9px;
  min-height: 38px;
  padding: 0.58rem 0.82rem;
}

.proof-badge::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 7px;
  width: 7px;
}

.proof-badge strong {
  font: inherit;
}

.hero-map-report {
  background: #f8f7ef;
  border: 1px solid rgba(246, 246, 241, 0.24);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  color: var(--navy);
  overflow: hidden;
}

.hero-map-art-wrap {
  align-self: stretch;
  background: rgba(246, 246, 241, 0.94);
  border: 1px solid rgba(246, 246, 241, 0.86);
  border-radius: 24px;
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.34), 0 0 44px rgba(215, 181, 109, 0.13);
  justify-self: end;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: 7px;
  width: min(100%, 790px);
}

.hero-map-art {
  border-radius: 18px;
  display: block;
  height: 100%;
  margin-left: auto;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
}
/* Revised hero v1 end */

@media (min-width: 1200px) {
  .hero-layout {
    grid-template-columns: minmax(520px, 0.95fr) minmax(540px, 1.18fr);
  }

  .hero h1 {
    font-size: 4.05rem;
  }
}

.report-window-bar {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid rgba(11, 18, 32, 0.12);
  display: flex;
  gap: 7px;
  padding: 10px 14px;
}

.report-window-bar span {
  background: rgba(11, 18, 32, 0.18);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.report-window-bar strong {
  color: var(--slate);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.8rem;
  margin-left: auto;
}

.hero-mini-map,
.hero-location-map {
  aspect-ratio: 1.44 / 1;
  overflow: hidden;
  position: relative;
}

.hero-mini-map svg,
.hero-location-map svg {
  height: 100%;
  position: absolute;
  width: 100%;
}

.hero-location-map {
  background: #eef0e8;
}

.hero-rank-grid {
  display: grid;
  gap: 6%;
  grid-template-columns: repeat(5, 1fr);
  inset: 12% 7% 12% 7%;
  position: absolute;
}

.hero-rank-grid span {
  align-items: center;
  animation: rank-pop 420ms ease both;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.2);
  color: #fff;
  display: flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  min-height: 36px;
}

.hero-rank-grid span:nth-child(2n) {
  animation-delay: 80ms;
}

.hero-rank-grid span:nth-child(3n) {
  animation-delay: 150ms;
}

.hero-rank-grid span:nth-child(5n) {
  animation-delay: 220ms;
}

@keyframes rank-pop {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.report-summary {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr auto;
  padding: 14px;
}

.report-summary div {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: 8px;
  padding: 10px;
}

.report-summary span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
}

.report-summary strong {
  color: var(--navy);
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.88rem;
}

.report-summary .rating-card {
  min-width: 86px;
  text-align: center;
}

.report-summary .rating-card strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.business-map-pin {
  align-items: center;
  background: var(--navy);
  border: 4px solid #fff;
  border-radius: 999px 999px 999px 0;
  box-shadow: 0 18px 38px rgba(11, 18, 32, 0.26);
  display: flex;
  height: 52px;
  justify-content: center;
  left: 48%;
  position: absolute;
  top: 40%;
  transform: rotate(-45deg);
  width: 52px;
}

.business-map-pin span {
  background: var(--gold);
  border-radius: 999px;
  height: 16px;
  width: 16px;
}

.business-callout {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(11, 18, 32, 0.16);
  left: 48%;
  padding: 12px 14px;
  position: absolute;
  top: 25%;
  transform: translateX(-12%);
  width: 210px;
}

.business-callout strong,
.review-float strong {
  color: var(--navy);
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.98rem;
}

.business-callout span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  line-height: 1.25;
  margin-top: 3px;
}

.review-float {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: 0 16px 38px rgba(11, 18, 32, 0.18);
  display: grid;
  gap: 2px;
  grid-template-columns: auto 1fr;
  min-width: 178px;
  padding: 12px 14px;
  position: absolute;
  right: 22px;
}

.review-float strong {
  color: var(--gold);
  font-size: 1.5rem;
  grid-row: span 2;
}

.review-float .stars {
  color: var(--gold);
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.review-float small {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: 104px 0;
}

.page-hero {
  background:
    linear-gradient(rgba(246, 246, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 246, 241, 0.05) 1px, transparent 1px),
    linear-gradient(110deg, rgba(11, 18, 32, 0.99), rgba(11, 18, 32, 0.93));
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--paper);
  padding: 92px 0 108px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(246, 246, 241, 0.78);
  font-size: 1.3rem;
  margin-top: 24px;
  max-width: 760px;
}

.dark {
  background: var(--navy);
  color: var(--paper);
}

.dark p,
.dark li {
  color: rgba(246, 246, 241, 0.78);
}

.two-col {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.lead {
  color: var(--slate);
  font-size: 1.32rem;
  font-weight: 600;
}

.copy-block {
  display: grid;
  gap: 20px;
}

.problem-section {
  background:
    linear-gradient(rgba(11, 18, 32, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, #f6f6f1 0%, #eef1ec 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.problem-intro {
  align-items: start;
}

.problem-heading {
  position: sticky;
  top: 112px;
}

.problem-path-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(11, 18, 32, 0.08);
  display: grid;
  gap: 22px;
  padding: 28px;
}

.problem-path-card > p:last-child {
  color: var(--slate);
}

.buyer-path {
  display: grid;
  gap: 10px;
  position: relative;
}

.buyer-path::before {
  background: rgba(11, 18, 32, 0.12);
  bottom: 26px;
  content: "";
  left: 20px;
  position: absolute;
  top: 26px;
  width: 2px;
}

.buyer-path div {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  min-height: 58px;
  padding: 12px 14px;
  position: relative;
}

.buyer-path span {
  align-items: center;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  display: flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  position: relative;
  width: 34px;
  z-index: 1;
}

.buyer-path strong {
  font-family: Inter, Arial, sans-serif;
}

.buyer-path .lost-step {
  background: var(--navy);
  border-color: rgba(215, 181, 109, 0.42);
  color: var(--paper);
}

.buyer-path .lost-step strong {
  color: var(--paper);
}

.problem-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  padding: 22px;
  position: relative;
}

.problem-card::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 28px;
  width: 42px;
}

.problem-card h3 {
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--slate);
}

.problem-source {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  margin-top: 14px;
}

.problem-source a {
  color: var(--navy);
  font-weight: 700;
  text-decoration-color: rgba(11, 18, 32, 0.35);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
  max-width: 820px;
}

.section-heading p:not(.eyebrow) {
  color: rgba(246, 246, 241, 0.78);
  font-size: 1.18rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-section {
  background:
    linear-gradient(rgba(246, 246, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 246, 241, 0.032) 1px, transparent 1px),
    var(--navy);
  background-size: 72px 72px, 72px 72px, auto;
}

.services-intro {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  margin-bottom: 34px;
}

.services-intro .section-heading {
  margin-bottom: 0;
}

.system-equation {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.system-equation span,
.system-equation strong {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  min-height: 34px;
  padding: 0.42rem 0.68rem;
}

.system-equation span {
  background: rgba(246, 246, 241, 0.07);
  border: 1px solid rgba(246, 246, 241, 0.14);
  color: rgba(246, 246, 241, 0.84);
}

.system-equation strong {
  background: var(--gold);
  color: var(--navy);
}

.system-stack-card {
  background: rgba(246, 246, 241, 0.94);
  border: 1px solid rgba(215, 181, 109, 0.3);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  color: var(--navy);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.system-stack-card div {
  display: grid;
  gap: 4px;
  grid-template-columns: auto 1fr;
  padding: 18px;
}

.system-stack-card div + div {
  border-top: 1px solid rgba(11, 18, 32, 0.12);
}

.system-stack-card span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  padding-top: 0.12rem;
  width: 34px;
}

.system-stack-card strong {
  font-family: Inter, Arial, sans-serif;
}

.system-stack-card p {
  color: var(--muted);
  grid-column: 2;
  line-height: 1.35;
}

.system-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.system-card,
.packages article {
  border-radius: 8px;
  padding: 24px;
}

.system-card {
  background: rgba(246, 246, 241, 0.06);
  border: 1px solid rgba(246, 246, 241, 0.14);
  display: grid;
  gap: 14px;
  min-height: 280px;
  position: relative;
}

.system-card::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 3px;
  width: 44px;
}

.system-card h3 {
  font-size: 1.12rem;
}

.system-card p {
  color: rgba(246, 246, 241, 0.76);
}

.system-card div {
  align-content: end;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.system-card span {
  background: rgba(246, 246, 241, 0.07);
  border: 1px solid rgba(246, 246, 241, 0.12);
  border-radius: 999px;
  color: rgba(246, 246, 241, 0.82);
  font-size: 0.78rem;
  line-height: 1.2;
  padding: 0.3rem 0.52rem;
}

.map-section {
  background: #fff;
}

.map-layout {
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.check-list li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  color: var(--gold);
  content: "-";
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  left: 0;
  position: absolute;
}

.check-list.light li::before {
  color: var(--gold);
}

.rank-map-card {
  background: #f8f7ef;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.rank-map-header {
  align-items: center;
  background: var(--navy);
  color: var(--paper);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 16px 18px;
}

.rank-map-header span,
.rank-map-meta span {
  color: rgba(246, 246, 241, 0.68);
  display: block;
  font-size: 0.84rem;
}

.rank-map-header strong {
  color: var(--gold);
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
}

.rank-map-meta {
  display: flex;
  gap: 10px;
}

.rank-map-meta span {
  border: 1px solid rgba(246, 246, 241, 0.18);
  border-radius: 999px;
  padding: 0.26rem 0.55rem;
}

.shreveport-rank-map {
  aspect-ratio: 1672 / 941;
  background: #eef0e8;
  overflow: hidden;
  position: relative;
}

.rank-map-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.shreveport-rank-map::after {
  background: rgba(246, 246, 241, 0.24);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.river {
  fill: none;
  stroke: #9ec9df;
  stroke-linecap: round;
  stroke-width: 30;
}

.highway,
.road {
  fill: none;
  stroke-linecap: round;
}

.highway.major {
  stroke: #d8b35d;
  stroke-width: 10;
}

.road {
  stroke: #c7cfc8;
  stroke-width: 6;
}

.road.minor {
  stroke: #d8ddd7;
  stroke-width: 4;
}

.map-label {
  fill: #5a6674;
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.map-label.city {
  fill: #152238;
  font-size: 24px;
  font-weight: 800;
}

.river-label {
  fill: #35728f;
  font-size: 16px;
}

.business-pin {
  fill: var(--navy);
  stroke: var(--gold);
  stroke-width: 5;
}

.business-label {
  fill: var(--navy);
  font-size: 16px;
}

.rank-grid-overlay {
  display: grid;
  gap: 4.6%;
  grid-template-columns: repeat(7, 1fr);
  inset: 12% 6% 13% 6%;
  position: absolute;
  z-index: 1;
}

.rank-grid-overlay span {
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.2);
  color: #fff;
  display: flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: center;
  min-height: 34px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  transition:
    background-color 520ms ease,
    box-shadow 520ms ease,
    color 520ms ease,
    transform 520ms ease;
}

.rank-grid-overlay span.is-changing {
  animation: rank-chip-improve 520ms ease both;
}

.rank-good {
  background: #1f8f58;
  box-shadow: 0 12px 26px rgba(31, 143, 88, 0.32);
}

.rank-mid {
  background: #d7b56d;
}

.rank-warn {
  background: #c8792f;
}

.rank-bad {
  background: #9f3434;
  font-size: 0.74rem;
}

.rank-pin {
  background: var(--navy);
  outline: 3px solid var(--gold);
}

.rank-expansion-pulse {
  aspect-ratio: 1;
  border: 2px solid rgba(31, 143, 88, 0);
  border-radius: 999px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 51%;
  transform: translate(-50%, -50%) scale(0.12);
  width: 68%;
  z-index: 1;
}

.rank-expansion-pulse.is-active {
  animation: rank-expansion-wave 1800ms ease-out both;
}

.rank-map-status {
  align-items: center;
  background: rgba(11, 18, 32, 0.04);
  border-top: 1px solid rgba(11, 18, 32, 0.1);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 18px;
}

.rank-map-status strong {
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
}

.rank-map-status span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
  text-align: right;
}

@keyframes rank-expansion-wave {
  0% {
    border-color: rgba(31, 143, 88, 0.34);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12);
  }

  18% {
    opacity: 1;
  }

  100% {
    border-color: rgba(31, 143, 88, 0);
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes rank-chip-improve {
  0% {
    transform: translateY(2px) scale(0.94);
  }

  60% {
    transform: translateY(-2px) scale(1.05);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.rank-map-legend {
  align-items: center;
  border-top: 1px solid rgba(11, 18, 32, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 18px 16px;
}

.rank-map-legend span {
  align-items: center;
  color: var(--slate);
  display: inline-flex;
  font-size: 0.84rem;
  gap: 6px;
}

.rank-map-legend i {
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.rank-map-legend .good {
  background: #1f8f58;
}

.rank-map-legend .mid {
  background: #d7b56d;
}

.rank-map-legend .warn {
  background: #c8792f;
}

.rank-map-legend .bad {
  background: #9f3434;
}

.process-section {
  background:
    linear-gradient(rgba(11, 18, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto;
  overflow: hidden;
}

.process-heading {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-bottom: 62px;
}

.process-heading .section-heading {
  margin-bottom: 0;
}

.process-heading .section-heading p:not(.eyebrow) {
  color: var(--slate);
}

.signal-stack {
  background: var(--navy);
  border: 1px solid rgba(215, 181, 109, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 18, 32, 0.16);
  color: var(--paper);
  display: grid;
  gap: 8px;
  padding: 18px;
  position: relative;
}

.signal-stack::before {
  color: var(--gold);
  content: "Signal stack";
  font-family: Inter, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.signal-stack span {
  align-items: center;
  background: rgba(246, 246, 241, 0.07);
  border: 1px solid rgba(246, 246, 241, 0.12);
  border-radius: 6px;
  display: flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: space-between;
  min-height: 38px;
  padding: 0.52rem 0.72rem;
}

.signal-stack span::after {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 7px;
  opacity: 0.9;
  width: 7px;
  animation: signal-stack-pulse 7.5s ease-in-out infinite;
}

.signal-stack span:nth-child(1)::after {
  animation-delay: 0s;
}

.signal-stack span:nth-child(2)::after {
  animation-delay: 1.1s;
}

.signal-stack span:nth-child(3)::after {
  animation-delay: 2.2s;
}

.signal-stack span:nth-child(4)::after {
  animation-delay: 3.3s;
}

.signal-stack span:nth-child(5)::after {
  animation-delay: 4.4s;
}

.timeline {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 18px;
  position: relative;
}

.timeline::before {
  background: rgba(11, 18, 32, 0.16);
  content: "";
  height: 3px;
  left: 7%;
  opacity: 0.9;
  position: absolute;
  right: 7%;
  top: 48px;
}

.timeline::after {
  animation: process-rail-fill 7.5s ease-in-out infinite;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  content: "";
  height: 3px;
  left: 7%;
  position: absolute;
  top: 48px;
  transform-origin: left center;
  width: 86%;
}

.timeline article,
.process-principles div,
.proof-row {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.06);
  padding: 24px;
}

.timeline article {
  animation: process-card-focus 7.5s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.76);
  min-height: 250px;
  padding-top: 70px;
  position: relative;
}

.timeline article:nth-child(1) {
  animation-delay: 0s;
}

.timeline article:nth-child(2) {
  animation-delay: 1.2s;
}

.timeline article:nth-child(3) {
  animation-delay: 2.4s;
}

.timeline article:nth-child(4) {
  animation-delay: 3.6s;
}

.timeline article:nth-child(even) {
  margin-top: 54px;
}

.timeline span {
  align-items: center;
  background: var(--navy);
  border: 3px solid var(--paper);
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--gold), 0 16px 34px rgba(11, 18, 32, 0.16);
  color: var(--gold);
  display: flex;
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  left: 24px;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  width: 44px;
}

.timeline h3 {
  margin-bottom: 10px;
}

.timeline article:nth-child(4)::after {
  border: 2px solid rgba(215, 181, 109, 0.8);
  border-left-color: transparent;
  border-radius: 999px;
  content: "";
  height: 42px;
  position: absolute;
  right: 22px;
  top: 18px;
  width: 42px;
}

.timeline article:nth-child(4)::before {
  border-right: 7px solid transparent;
  border-top: 9px solid var(--gold);
  content: "";
  position: absolute;
  right: 25px;
  top: 49px;
  transform: rotate(-34deg);
}

.timeline-loop {
  animation: process-repeat-pulse 7.5s ease-in-out infinite;
  align-items: center;
  background: var(--navy);
  border: 1px solid rgba(215, 181, 109, 0.5);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  position: absolute;
  right: 0;
  top: 31px;
}

@keyframes signal-stack-pulse {
  0%,
  18%,
  100% {
    box-shadow: none;
    opacity: 0.52;
    transform: scale(1);
  }

  7% {
    box-shadow: 0 0 0 7px rgba(215, 181, 109, 0.13);
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes process-rail-fill {
  0% {
    transform: scaleX(0);
  }

  62%,
  100% {
    transform: scaleX(1);
  }
}

@keyframes process-card-focus {
  0%,
  24%,
  100% {
    border-color: var(--border);
    box-shadow: 0 12px 32px rgba(11, 18, 32, 0.06);
    transform: translateY(0);
  }

  9% {
    border-color: rgba(215, 181, 109, 0.66);
    box-shadow: 0 18px 44px rgba(11, 18, 32, 0.12);
    transform: translateY(-4px);
  }
}

@keyframes process-repeat-pulse {
  0%,
  54%,
  100% {
    box-shadow: none;
  }

  66% {
    box-shadow: 0 0 0 8px rgba(215, 181, 109, 0.14);
  }
}

.process-principles {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.process-principles div {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  padding: 20px;
}

.process-principles strong {
  display: block;
  font-family: Inter, Arial, sans-serif;
  margin-bottom: 8px;
}

.process-principles span {
  color: var(--muted);
}

.proof-section {
  background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.98), rgba(30, 41, 59, 0.96));
  color: var(--paper);
}

.proof-layout {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.proof-layout h2 {
  color: var(--paper);
}

.proof-layout p:not(.eyebrow) {
  color: rgba(246, 246, 241, 0.76);
  font-size: 1.14rem;
  margin-top: 22px;
  max-width: 620px;
}

.proof-note {
  background: rgba(246, 246, 241, 0.07);
  border: 1px solid rgba(246, 246, 241, 0.13);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  margin-top: 28px;
  max-width: 560px;
  padding: 18px;
}

.proof-note strong {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
}

.proof-note span {
  color: rgba(246, 246, 241, 0.72);
}

.proof-note a {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.proof-dashboard {
  background: var(--paper);
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  color: var(--navy);
  overflow: hidden;
}

.proof-dashboard-header {
  align-items: center;
  background: #0f1b2d;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}

.proof-dashboard-header span,
.proof-dashboard-header small {
  color: rgba(246, 246, 241, 0.66);
  display: block;
  font-size: 0.82rem;
}

.proof-dashboard-header small {
  border: 1px solid rgba(246, 246, 241, 0.24);
  border-radius: 999px;
  line-height: 1.25;
  max-width: 210px;
  padding: 0.28rem 0.52rem;
  text-align: right;
}

.proof-dashboard-header strong {
  color: var(--gold);
  display: block;
  font-family: Inter, Arial, sans-serif;
  margin-top: 2px;
}

.proof-metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 18px;
}

.proof-metrics article {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  padding: 16px;
}

.proof-metrics span,
.proof-bars span,
.proof-next-action span {
  color: var(--muted);
  font-size: 0.84rem;
}

.proof-metrics strong {
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.65rem;
}

.proof-metrics i {
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(31, 143, 88, 0.42) 45% 55%, transparent 56%),
    linear-gradient(90deg, rgba(31, 143, 88, 0.08), rgba(31, 143, 88, 0.2));
  border-radius: 999px;
  display: block;
  height: 8px;
}

.proof-bars {
  border-top: 1px solid rgba(11, 18, 32, 0.1);
  display: grid;
  gap: 16px;
  padding: 18px;
}

.proof-bars div {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
}

.proof-bars i {
  background: rgba(11, 18, 32, 0.08);
  border-radius: 999px;
  display: block;
  grid-column: 1 / -1;
  height: 9px;
  overflow: hidden;
}

.proof-bars b {
  background: linear-gradient(90deg, #1f8f58, var(--gold));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.proof-next-action {
  background: rgba(215, 181, 109, 0.14);
  border-top: 1px solid rgba(11, 18, 32, 0.1);
  display: grid;
  gap: 5px;
  padding: 18px 20px 20px;
}

.proof-next-action strong {
  font-family: Inter, Arial, sans-serif;
  line-height: 1.35;
}

.packages article {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.06);
  display: grid;
  gap: 16px;
}

.packages-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, #eef1ec 100%);
}

.packages-heading {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 360px;
  margin-bottom: 42px;
}

.packages-heading .section-heading {
  margin-bottom: 0;
}

.packages-heading .section-heading p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.14rem;
}

.package-route-card {
  background: var(--navy);
  border: 1px solid rgba(215, 181, 109, 0.3);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 18, 32, 0.18);
  color: var(--paper);
  display: grid;
  gap: 14px;
  padding: 22px;
}

.package-route-card strong {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.05rem;
}

.package-route-card span {
  color: rgba(246, 246, 241, 0.76);
  font-size: 0.98rem;
  line-height: 1.45;
}

.packages .featured {
  background: var(--navy);
  color: var(--paper);
}

.packages .featured p {
  color: rgba(246, 246, 241, 0.76);
}

.packages article {
  align-content: start;
  min-height: 320px;
  position: relative;
}

.packages article::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 3px;
  width: 46px;
}

.packages .featured::before {
  width: 76px;
}

.package-tier,
.package-label {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.packages ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
}

.packages li {
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.35;
  padding-left: 18px;
  position: relative;
}

.packages li::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 6px;
}

.packages .featured li {
  color: rgba(246, 246, 241, 0.78);
}

.packages a {
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.packages .featured a {
  color: var(--gold);
}

.package-link {
  align-self: end;
  margin-top: 6px;
  text-decoration-color: rgba(11, 18, 32, 0.35);
}

.packages .featured .package-link {
  text-decoration-color: rgba(215, 181, 109, 0.6);
}

.schedule-call-panel {
  align-items: center;
  background: var(--navy);
  border: 1px solid rgba(215, 181, 109, 0.28);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(11, 18, 32, 0.18);
  color: var(--paper);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 20px;
  padding: 28px;
}

.schedule-call-panel h3 {
  font-size: 1.55rem;
  margin-top: 8px;
  max-width: 680px;
}

.schedule-call-panel p:not(.eyebrow) {
  color: rgba(246, 246, 241, 0.76);
  margin-top: 10px;
  max-width: 720px;
}

.schedule-call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.button-ghost-dark {
  background: transparent;
  border-color: rgba(246, 246, 241, 0.5);
  color: var(--paper);
}

.button-ghost-dark:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--navy);
}

.service-directory {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-directory article,
.process-page-grid article,
.package-page-grid article {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.06);
  display: grid;
  gap: 16px;
  padding: 28px;
}

.service-directory span,
.process-page-grid span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.service-directory h2,
.process-page-grid h2,
.package-page-grid h2 {
  font-size: 1.8rem;
}

.package-decision-section {
  background: linear-gradient(180deg, var(--paper) 0%, #eef1ec 100%);
}

.package-hero-note {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 181, 109, 0.36);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 8px;
  margin-top: 30px;
  max-width: 850px;
  padding: 20px 22px;
}

.package-hero-note strong {
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.08rem;
}

.package-hero-note span {
  color: rgba(246, 246, 241, 0.78);
}

.package-note {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.45;
}

.package-note.light {
  color: rgba(246, 246, 241, 0.74);
}

.package-price {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  margin-top: -4px;
}

.packages .package-price {
  margin: 2px 0 4px;
}

.website-offer {
  background:
    linear-gradient(135deg, rgba(215, 181, 109, 0.2), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(215, 181, 109, 0.62);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(11, 18, 32, 0.1);
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  position: relative;
}

.website-offer::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 16px;
  position: absolute;
  top: -2px;
  width: 58px;
}

.website-offer span {
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.website-offer strong {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.website-offer s {
  color: var(--slate);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 4px;
}

.website-offer b {
  background: var(--gold);
  border-radius: 999px;
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.42rem 0.72rem;
  text-transform: uppercase;
}

.website-offer p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.35;
}

.website-offer.compact {
  margin: 2px 0 6px;
  padding: 12px 14px;
}

.website-offer.compact strong {
  gap: 8px;
}

.website-offer.compact s {
  font-size: 1.08rem;
}

.website-offer.compact b {
  font-size: 0.95rem;
}

.package-page-grid article.featured .website-offer,
.packages .featured .website-offer {
  background:
    linear-gradient(135deg, rgba(215, 181, 109, 0.24), rgba(246, 246, 241, 0.08));
  border-color: rgba(215, 181, 109, 0.68);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.package-page-grid article.featured .website-offer span,
.package-page-grid article.featured .website-offer s,
.packages .featured .website-offer span,
.packages .featured .website-offer s {
  color: var(--paper);
}

.package-page-grid article.featured .website-offer p,
.packages .featured .website-offer p {
  color: rgba(246, 246, 241, 0.78);
}

.pricing-disclaimer {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 181, 109, 0.42);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(11, 18, 32, 0.08);
  margin-top: 22px;
  padding: 20px 22px;
}

.pricing-disclaimer strong {
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.02rem;
}

.pricing-disclaimer p {
  color: var(--slate);
  margin-top: 8px;
}

.markets-section {
  background: linear-gradient(180deg, var(--paper) 0%, #eef1ec 100%);
}

.market-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.market-card-grid article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(11, 18, 32, 0.08);
  display: grid;
  gap: 14px;
  padding: 28px;
}

.market-card-grid span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.market-card-grid h3 {
  font-size: 1.45rem;
}

.market-card-grid p {
  color: var(--slate);
}

.market-card-grid a {
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.package-comparison-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 181, 109, 0.18), transparent 30%),
    linear-gradient(180deg, #fbfaf3 0%, #eef1ec 100%);
  border-top: 1px solid rgba(215, 181, 109, 0.25);
}

.section-heading.compact {
  max-width: 780px;
}

.package-compare-table {
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 26px 74px rgba(11, 18, 32, 0.12);
  margin-top: 28px;
  overflow: hidden;
}

.package-compare-table > div {
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(11, 18, 32, 0.1);
  display: grid;
  grid-template-columns: 0.72fr repeat(3, minmax(0, 1fr));
}

.package-compare-table > div:nth-child(even):not(.table-head) {
  background: rgba(246, 246, 241, 0.92);
}

.package-compare-table > div:first-child {
  border-top: 0;
}

.package-compare-table span {
  border-left: 1px solid rgba(11, 18, 32, 0.09);
  color: var(--slate);
  line-height: 1.35;
  padding: 16px;
}

.package-compare-table > div:not(.table-head) span:nth-child(3) {
  background: rgba(215, 181, 109, 0.12);
  color: var(--navy);
}

.package-compare-table span:first-child {
  border-left: 0;
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  position: relative;
}

.package-compare-table > div:not(.table-head) span:first-child::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 9px;
  width: 24px;
}

.package-compare-table .table-head {
  background:
    linear-gradient(135deg, var(--navy), #122843);
}

.package-compare-table .table-head span {
  border-color: rgba(246, 246, 241, 0.16);
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  padding: 20px 16px;
}

.package-compare-table .table-head span:nth-child(3) {
  background: rgba(215, 181, 109, 0.18);
  box-shadow: inset 0 4px 0 var(--gold);
}

.package-compare-table .table-head strong {
  display: block;
  font-size: 1rem;
}

.package-compare-table .table-head small {
  color: rgba(246, 246, 241, 0.68);
  display: block;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 4px;
}

.package-expectations {
  background: var(--paper);
}

.package-fit-section {
  background:
    linear-gradient(rgba(11, 18, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto;
}

.package-fit-panel {
  background: var(--navy);
  border: 1px solid rgba(215, 181, 109, 0.34);
  border-radius: 8px;
  box-shadow: 0 28px 84px rgba(11, 18, 32, 0.18);
  color: var(--paper);
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  padding: 38px;
  position: relative;
}

.package-fit-panel::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 38px;
  position: absolute;
  top: -3px;
  width: 96px;
}

.package-fit-panel h2 {
  color: var(--paper);
}

.package-fit-panel p {
  color: rgba(246, 246, 241, 0.74);
}

.package-fit-panel .lead {
  color: var(--paper);
  font-size: 1.12rem;
}

.package-fit-panel > div:last-child {
  display: grid;
  gap: 18px;
}

.package-fit-panel .button {
  width: fit-content;
}

.expectation-grid {
  display: grid;
  gap: 14px;
}

.expectation-grid article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}

.expectation-grid h3 {
  font-size: 1.04rem;
}

.expectation-grid p {
  color: var(--slate);
  margin-top: 8px;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.faq-grid article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}

.faq-grid h3 {
  font-size: 1.08rem;
}

.faq-grid p {
  color: var(--slate);
  margin-top: 8px;
}

.service-directory a,
.process-page-grid a {
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.service-support-section {
  background:
    linear-gradient(135deg, rgba(215, 181, 109, 0.18), transparent 34%),
    linear-gradient(180deg, #fbfaf3 0%, var(--paper) 100%);
  border-bottom: 1px solid rgba(11, 18, 32, 0.1);
  border-top: 1px solid rgba(215, 181, 109, 0.36);
  color: var(--navy);
}

.service-support-panel {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(215, 181, 109, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 18, 32, 0.08);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  padding: 34px;
  position: relative;
}

.service-support-panel::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 34px;
  position: absolute;
  top: -3px;
  width: 88px;
}

.service-support-panel h2 {
  color: var(--navy);
}

.service-support-panel p {
  color: var(--slate);
}

.service-support-panel .lead {
  color: var(--navy);
}

.service-support-panel > .support-chip-grid {
  background: var(--navy);
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  grid-column: 1 / -1;
  padding: 16px;
}

.services-overview-section {
  background: linear-gradient(180deg, var(--paper) 0%, #eef1ec 100%);
}

.service-system-panel {
  display: grid;
  gap: 34px;
}

.service-system-panel > div:first-child {
  max-width: 780px;
}

.service-system-panel h2 {
  margin-top: 8px;
}

.service-system-panel p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.16rem;
  margin-top: 18px;
}

.service-lever-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-lever-grid a {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(11, 18, 32, 0.07);
  color: var(--navy);
  display: grid;
  gap: 12px;
  min-height: 280px;
  padding: 24px;
  text-decoration: none;
}

.service-lever-grid span,
.service-detail-grid span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-lever-grid strong {
  font-family: Inter, Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.12;
}

.service-lever-grid p {
  color: var(--slate);
}

.support-chip-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.support-chip-grid span {
  background: rgba(246, 246, 241, 0.08);
  border: 1px solid rgba(215, 181, 109, 0.24);
  border-radius: 8px;
  color: rgba(246, 246, 241, 0.88);
  display: grid;
  gap: 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.22;
  min-height: 88px;
  padding: 12px;
}

.support-chip-grid b {
  color: var(--gold);
  font-size: 0.72rem;
}

.service-hero-inner {
  display: grid;
  gap: 38px;
  justify-items: center;
  text-align: center;
}

.service-hero-copy {
  max-width: 880px;
}

.service-hero-copy h1 {
  margin-left: auto;
  margin-right: auto;
}

.service-hero-copy p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
}

.service-hero-copy .hero-actions {
  justify-content: center;
}

.service-signal-panel {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
  width: min(100%, 960px);
}

.service-signal-panel div {
  background: rgba(246, 246, 241, 0.08);
  border: 1px solid rgba(246, 246, 241, 0.11);
  border-radius: 8px;
  color: rgba(246, 246, 241, 0.82);
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 18px;
}

.service-signal-panel span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.service-signal-panel strong {
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

.service-signal-panel p {
  color: rgba(246, 246, 241, 0.72);
  line-height: 1.35;
}

.service-page-layout {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: 320px minmax(0, 1fr);
}

.service-page-aside {
  background: var(--navy);
  border: 1px solid rgba(215, 181, 109, 0.28);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 12px;
  padding: 22px;
  position: sticky;
  top: 110px;
}

.service-page-aside span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-page-aside strong {
  font-family: Inter, Arial, sans-serif;
  line-height: 1.35;
}

.service-page-aside a {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.service-fit-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-fit-card small {
  background: rgba(246, 246, 241, 0.08);
  border: 1px solid rgba(246, 246, 241, 0.12);
  border-radius: 999px;
  color: rgba(246, 246, 241, 0.76);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.26rem 0.5rem;
}

.service-page-content {
  display: grid;
  gap: 22px;
}

.service-page-content h2 {
  font-size: 2.25rem;
  margin-top: 12px;
}

.service-page-content h2:first-child {
  margin-top: 0;
}

.service-detail-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-grid article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  padding: 20px;
}

.service-detail-grid h3 {
  margin-bottom: 8px;
}

.service-detail-grid p {
  color: var(--muted);
}

.service-callout {
  background: rgba(215, 181, 109, 0.16);
  border: 1px solid rgba(215, 181, 109, 0.3);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 18px;
}

.service-callout strong {
  font-family: Inter, Arial, sans-serif;
}

.service-callout span {
  color: var(--slate);
}

.process-page-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-study-hero {
  padding-bottom: 88px;
}

.case-index-hero h1 {
  max-width: 980px;
}

.case-index-hero p:not(.eyebrow) {
  max-width: 820px;
}

.case-index-section {
  background:
    linear-gradient(rgba(11, 18, 32, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, #eef1ec 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.case-feature-card {
  align-items: stretch;
  background:
    linear-gradient(rgba(246, 246, 241, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 246, 241, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), #132743);
  background-size: 58px 58px, 58px 58px, auto;
  border: 1px solid rgba(215, 181, 109, 0.26);
  border-radius: 8px;
  box-shadow: 0 28px 82px rgba(11, 18, 32, 0.18);
  color: var(--paper);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  padding: 38px;
}

.case-feature-copy {
  display: grid;
  gap: 18px;
}

.case-feature-copy h2 {
  color: var(--paper);
  font-size: 2.8rem;
}

.case-feature-copy p:not(.eyebrow) {
  color: rgba(246, 246, 241, 0.78);
  font-size: 1.15rem;
  max-width: 760px;
}

.case-feature-copy .button {
  width: fit-content;
}

.case-feature-stats {
  display: grid;
  gap: 12px;
}

.case-feature-stats article {
  background: rgba(246, 246, 241, 0.08);
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.case-feature-stats span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-feature-stats strong {
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 2.15rem;
  line-height: 1;
}

.case-feature-stats small {
  color: rgba(246, 246, 241, 0.7);
  font-size: 0.9rem;
}

.case-proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.case-proof-grid article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(11, 18, 32, 0.08);
  display: grid;
  gap: 12px;
  padding: 24px;
}

.case-proof-grid span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-proof-grid h2 {
  font-size: 1.45rem;
}

.case-proof-grid p {
  color: var(--slate);
}

.case-proof-grid a {
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.case-cro-grid article {
  min-height: 220px;
}

.case-cro-grid article::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 4px;
  width: 46px;
}

.case-index-cta p {
  font-size: 1.12rem;
}

.case-study-hero-grid {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
}

.case-study-hero h1 {
  font-size: 4.35rem;
}

.case-stat-panel {
  background: rgba(246, 246, 241, 0.07);
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.case-stat-panel article {
  display: grid;
  gap: 6px;
  padding: 20px;
}

.case-stat-panel article + article {
  border-top: 1px solid rgba(246, 246, 241, 0.12);
}

.case-stat-panel span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-stat-panel strong {
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

.case-snapshot-section {
  background: linear-gradient(180deg, var(--paper) 0%, #eef1ec 100%);
}

.case-snapshot-grid {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.case-snapshot-list {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 18, 32, 0.08);
  display: grid;
  margin: 0;
  overflow: hidden;
}

.case-snapshot-list div {
  display: grid;
  gap: 16px;
  grid-template-columns: 170px 1fr;
  padding: 16px 18px;
}

.case-snapshot-list div + div {
  border-top: 1px solid rgba(11, 18, 32, 0.1);
}

.case-snapshot-list dt {
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.case-snapshot-list dd {
  font-family: Inter, Arial, sans-serif;
  font-weight: 700;
  margin: 0;
}

.case-business-section {
  background:
    linear-gradient(rgba(246, 246, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 246, 241, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), #132743);
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--paper);
}

.case-business-panel {
  align-items: stretch;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.case-business-copy {
  display: grid;
  gap: 16px;
}

.case-business-copy h2 {
  color: var(--paper);
}

.case-business-copy .lead {
  color: rgba(246, 246, 241, 0.78);
}

.case-business-cards {
  display: grid;
  gap: 14px;
}

.case-business-cards article {
  background: rgba(246, 246, 241, 0.08);
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  padding: 20px;
}

.case-business-cards span,
.case-impact-stat-grid span,
.case-meaning-grid span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-business-cards strong {
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.25rem;
}

.case-business-cards p {
  color: rgba(246, 246, 241, 0.74);
}

.case-testimonial-feature {
  background: linear-gradient(180deg, #fbfaf3 0%, var(--paper) 100%);
  padding-top: 86px;
}

.case-testimonial-grid {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.case-testimonial-grid > div:first-child {
  display: grid;
  gap: 16px;
}

.case-testimonial-grid > div:first-child p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.12rem;
}

.case-proof-section {
  background:
    linear-gradient(rgba(11, 18, 32, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.02) 1px, transparent 1px),
    #fff;
  background-size: 72px 72px, 72px 72px, auto;
}

.case-proof-section .section-heading p:not(.eyebrow) {
  color: var(--slate);
}

.case-grid-comparison {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-image-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 18, 32, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(11, 18, 32, 0.14);
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 16px;
}

.case-image-card-header {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 4px 2px 0;
}

.case-image-card-header span {
  color: var(--muted);
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-image-card-header strong {
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.2rem;
  margin-top: 4px;
}

.case-image-card-header b {
  border-radius: 999px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  padding: 0.32rem 0.55rem;
  white-space: nowrap;
}

.case-image-card.before .case-image-card-header b {
  background: rgba(160, 54, 54, 0.12);
  color: #7a2727;
}

.case-image-card.after .case-image-card-header b {
  background: rgba(31, 143, 88, 0.12);
  color: #14633b;
}

.case-image-card img {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(11, 18, 32, 0.12);
  object-fit: cover;
  width: 100%;
}

.case-image-card p {
  color: var(--slate);
}

.case-zoom-image {
  max-height: 340px;
  object-fit: contain;
}

.case-proof-note {
  align-items: center;
  background: var(--navy);
  border: 1px solid rgba(215, 181, 109, 0.3);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr;
  margin-top: 20px;
  padding: 18px;
}

.case-proof-note strong {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
}

.case-proof-note span {
  color: rgba(246, 246, 241, 0.78);
}

.case-strategy-section {
  background: linear-gradient(180deg, var(--paper) 0%, #eef1ec 100%);
}

.case-strategy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-strategy-grid a {
  min-height: 230px;
  position: relative;
}

.case-strategy-grid a::after {
  background: var(--gold);
  border-radius: 999px;
  bottom: 20px;
  content: "";
  height: 4px;
  left: 24px;
  opacity: 0.72;
  position: absolute;
  width: 48px;
}

.case-results-section {
  background: var(--paper);
}

.case-result-callout {
  background: rgba(215, 181, 109, 0.16);
  border: 1px solid rgba(215, 181, 109, 0.3);
  border-radius: 8px;
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  margin-top: 22px;
  padding: 18px;
}

.case-results-table {
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(11, 18, 32, 0.1);
  overflow: hidden;
}

.case-results-table > div {
  background: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(11, 18, 32, 0.1);
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
}

.case-results-table > div:first-child {
  border-top: 0;
}

.case-results-table span {
  border-left: 1px solid rgba(11, 18, 32, 0.09);
  color: var(--slate);
  line-height: 1.3;
  padding: 15px;
}

.case-results-table span:first-child {
  border-left: 0;
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.case-results-table .table-head {
  background: linear-gradient(135deg, var(--navy), #122843);
}

.case-results-table .table-head span {
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.case-impact-section {
  background:
    linear-gradient(rgba(246, 246, 241, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 246, 241, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), #13243a);
  background-size: 72px 72px, 72px 72px, auto;
}

.case-impact-feature {
  padding: 94px 0;
}

.case-impact-panel {
  background: rgba(246, 246, 241, 0.045);
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 8px;
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: 36px;
  position: relative;
}

.case-impact-panel::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 36px;
  position: absolute;
  top: -3px;
  width: 98px;
}

.case-impact-copy {
  display: grid;
  gap: 16px;
}

.case-impact-copy h2 {
  color: var(--paper);
}

.case-impact-copy p:not(.eyebrow) {
  color: rgba(246, 246, 241, 0.76);
}

.case-impact-stat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-impact-stat-grid article {
  background: rgba(246, 246, 241, 0.08);
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  min-height: 150px;
  padding: 18px;
}

.case-impact-stat-grid strong {
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.case-impact-stat-grid p {
  color: rgba(246, 246, 241, 0.72);
  font-size: 0.94rem;
}

.case-impact-disclaimer {
  grid-column: 1 / -1;
}

.case-disclaimer {
  background: rgba(246, 246, 241, 0.07);
  border: 1px solid rgba(215, 181, 109, 0.26);
  border-radius: 8px;
  color: rgba(246, 246, 241, 0.82);
  font-size: 0.96rem;
  padding: 16px;
}

.case-meaning-section {
  background:
    linear-gradient(135deg, rgba(215, 181, 109, 0.14), transparent 36%),
    linear-gradient(180deg, #fbfaf3 0%, var(--paper) 100%);
}

.case-meaning-panel {
  display: grid;
  gap: 32px;
}

.case-meaning-panel > div:first-child {
  max-width: 860px;
}

.case-meaning-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-meaning-grid article {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(11, 18, 32, 0.08);
  display: grid;
  gap: 10px;
  padding: 24px;
}

.case-meaning-grid strong {
  font-family: Inter, Arial, sans-serif;
  font-size: 1.14rem;
  line-height: 1.2;
}

.case-meaning-grid p {
  color: var(--slate);
}

.case-testimonial-section {
  background: linear-gradient(180deg, #fbfaf3 0%, var(--paper) 100%);
}

.case-testimonial {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 26px 74px rgba(11, 18, 32, 0.12);
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 38px;
  position: relative;
}

.case-testimonial::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 38px;
  position: absolute;
  top: -3px;
  width: 96px;
}

.case-testimonial p {
  color: var(--slate);
  font-size: 1.15rem;
}

.case-testimonial cite {
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
}

.process-page-grid article:first-child {
  grid-column: 1 / -1;
}

.process-roadmap-section {
  background:
    linear-gradient(rgba(11, 18, 32, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, #eef1ec 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.process-roadmap-intro {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.process-roadmap-intro p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.16rem;
  max-width: 820px;
}

.process-roadmap-grid article {
  align-content: start;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(11, 18, 32, 0.11);
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.process-roadmap-grid article::before {
  background: var(--gold);
  content: "";
  height: 4px;
  left: 0;
  opacity: 0.72;
  position: absolute;
  top: 0;
  width: 72px;
}

.process-roadmap-grid article span {
  align-items: center;
  background: rgba(215, 181, 109, 0.18);
  border: 1px solid rgba(215, 181, 109, 0.42);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.process-roadmap-grid article:first-child {
  align-items: start;
  background:
    linear-gradient(rgba(246, 246, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 246, 241, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), #132743);
  background-size: 54px 54px, 54px 54px, auto;
  color: var(--paper);
  grid-template-columns: auto minmax(0, 1fr);
  min-height: auto;
  padding: 34px;
}

.process-roadmap-grid article:first-child::before {
  width: 120px;
}

.process-roadmap-grid article:first-child span {
  background: var(--gold);
  color: var(--navy);
  grid-row: 1 / span 3;
}

.process-roadmap-grid article:first-child h2 {
  color: var(--paper);
}

.process-roadmap-grid article:first-child p {
  color: rgba(246, 246, 241, 0.78);
  max-width: 820px;
}

.process-roadmap-grid article:first-child a {
  color: var(--gold);
}

.process-roadmap-grid article a {
  align-self: end;
  width: fit-content;
}

.process-monthly-section {
  background:
    linear-gradient(rgba(246, 246, 241, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 246, 241, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), #13243a);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--paper);
}

.process-monthly-panel {
  align-items: start;
  background: rgba(246, 246, 241, 0.035);
  border: 1px solid rgba(215, 181, 109, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  padding: 38px;
  position: relative;
}

.process-monthly-panel::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 38px;
  position: absolute;
  top: -3px;
  width: 96px;
}

.process-monthly-panel h2 {
  color: var(--paper);
}

.monthly-work-grid {
  gap: 16px;
}

.monthly-work-grid article {
  background: rgba(246, 246, 241, 0.07);
  border-color: rgba(215, 181, 109, 0.22);
  box-shadow: none;
  display: grid;
  gap: 8px;
  padding: 20px 20px 20px 60px;
  position: relative;
}

.monthly-work-grid article span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  left: 20px;
  position: absolute;
  top: 20px;
}

.monthly-work-grid h3 {
  color: var(--paper);
}

.monthly-work-grid p {
  color: rgba(246, 246, 241, 0.75);
}

.client-role-section {
  background:
    linear-gradient(135deg, rgba(215, 181, 109, 0.18), transparent 38%),
    linear-gradient(180deg, #fbfaf3 0%, var(--paper) 100%);
  border-bottom: 1px solid rgba(11, 18, 32, 0.1);
  border-top: 1px solid rgba(215, 181, 109, 0.34);
  color: var(--navy);
}

.client-role-panel {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(215, 181, 109, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 18, 32, 0.08);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  padding: 34px;
  position: relative;
}

.client-role-panel::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 34px;
  position: absolute;
  top: -3px;
  width: 88px;
}

.client-role-panel h2 {
  color: var(--navy);
}

.client-role-panel p {
  color: var(--slate);
}

.client-role-panel .lead {
  color: var(--navy);
}

.role-chip-grid {
  background: var(--navy);
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 16px;
}

.role-chip-grid span {
  background: rgba(246, 246, 241, 0.08);
  border: 1px solid rgba(215, 181, 109, 0.24);
  border-radius: 8px;
  color: rgba(246, 246, 241, 0.88);
  display: grid;
  gap: 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.22;
  min-height: 88px;
  padding: 12px;
}

.role-chip-grid b {
  color: var(--gold);
  font-size: 0.72rem;
}

.package-page-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-page-grid article.featured {
  background: var(--navy);
  color: var(--paper);
}

.package-page-grid article.featured p,
.package-page-grid article.featured li {
  color: rgba(246, 246, 241, 0.78);
}

.cta-band .button,
.service-directory .button {
  width: fit-content;
}

.package-page-grid .button {
  align-self: end;
  min-height: 54px;
  width: 100%;
}

.cta-band .two-col {
  align-items: center;
}

.cta-band .two-col > div:last-child {
  display: grid;
  gap: 22px;
}

.audit-layout {
  align-items: start;
}

.audit-form {
  background: var(--white);
  border: 1px solid rgba(246, 246, 241, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  color: var(--navy);
  display: grid;
  gap: 14px;
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: var(--slate);
  display: grid;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 6px;
}

input,
select {
  border: 1px solid rgba(11, 18, 32, 0.18);
  border-radius: 6px;
  color: var(--navy);
  font: inherit;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  width: 100%;
}

.site-footer {
  background: var(--navy);
  color: var(--paper);
  padding: 60px 0 34px;
}

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 0.95fr;
}

.footer-grid img {
  margin-bottom: 18px;
  max-width: 260px;
}

.footer-grid p {
  color: rgba(246, 246, 241, 0.72);
}

.footer-grid a {
  color: var(--paper);
  display: block;
  margin-top: 8px;
  text-decoration: none;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-grid .button {
  color: var(--navy);
  display: inline-flex;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .primary-nav {
    display: none;
  }

  .card-grid.three,
  .problem-grid,
  .process-principles,
  .timeline,
  .process-heading,
  .packages-heading,
  .package-fit-panel,
  .schedule-call-panel,
  .proof-layout,
  .services-intro,
  .service-lever-grid,
  .case-feature-card,
  .case-proof-grid,
  .case-study-hero-grid,
  .case-snapshot-grid,
  .case-business-panel,
  .case-impact-panel,
  .case-impact-stat-grid,
  .case-meaning-grid,
  .case-grid-comparison,
  .case-strategy-grid,
  .case-testimonial-grid,
  .service-support-panel,
  .client-role-panel,
  .service-signal-panel,
  .service-page-layout,
  .two-col,
  .footer-grid,
  .hero-layout,
  .market-card-grid,
  .service-directory,
  .process-page-grid,
  .package-page-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-page-grid article:first-child {
    grid-column: auto;
  }

  .process-roadmap-grid article:first-child {
    grid-template-columns: 1fr;
  }

  .process-roadmap-grid article:first-child span {
    grid-row: auto;
  }

  .service-page-aside {
    position: static;
  }

  .system-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-support-panel > .support-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .role-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-heading {
    gap: 28px;
    margin-bottom: 44px;
  }

  .case-study-hero h1 {
    font-size: 3.6rem;
  }

  .case-stat-panel {
    max-width: 640px;
  }

  .case-feature-card {
    padding: 30px;
  }

  .case-feature-copy h2 {
    font-size: 2.35rem;
  }

  .signal-stack {
    max-width: 520px;
  }

  .packages-heading {
    gap: 24px;
    margin-bottom: 32px;
  }

  .package-route-card {
    max-width: 560px;
  }

  .schedule-call-panel {
    align-items: start;
  }

  .schedule-call-actions {
    justify-content: flex-start;
  }

  .proof-layout {
    gap: 36px;
  }

  .proof-dashboard {
    max-width: 680px;
  }

  .timeline {
    gap: 16px;
    padding-left: 26px;
    padding-top: 0;
  }

  .timeline::before {
    bottom: 0;
    height: auto;
    left: 21px;
    right: auto;
    top: 0;
    width: 3px;
  }

  .timeline::after {
    display: none;
  }

  .timeline article,
  .timeline article:nth-child(even) {
    margin-top: 0;
    min-height: auto;
    padding: 24px 24px 24px 64px;
  }

  .timeline span {
    left: 0;
    top: 24px;
    transform: translateX(-50%);
  }

  .timeline-loop {
    justify-self: start;
    margin-left: 26px;
    position: static;
  }

  .problem-heading {
    position: static;
  }

  .hero-proof {
    margin-top: 22px;
  }

  .hero-map-art-wrap {
    align-self: start;
    justify-self: start;
    margin-top: 8px;
    width: 100%;
  }

  .hero-map-art {
    height: auto;
    object-fit: initial;
  }

  h1 {
    font-size: 4rem;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.65rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .shell {
    padding: 0 18px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-link img {
    width: 204px;
  }

  .header-inner > .button {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 56px;
    padding-top: 64px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .case-study-hero h1 {
    font-size: 2.65rem;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .schedule-call-actions .button,
  .package-route-card .button {
    width: 100%;
  }

  .proof-badge {
    width: 100%;
  }

  .case-image-card-header {
    display: grid;
  }

  .case-proof-note {
    grid-template-columns: 1fr;
  }

  .case-testimonial {
    padding: 26px;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-layout {
    gap: 34px;
  }

  .hero-rank-grid span {
    border-width: 1px;
    font-size: 0.68rem;
    min-height: 28px;
  }

  .report-summary {
    grid-template-columns: 1fr;
  }

  .system-card-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-support-panel {
    padding: 24px;
  }

  .process-monthly-panel,
  .client-role-panel {
    padding: 24px;
  }

  .package-fit-panel {
    padding: 28px;
  }

  .package-compare-table {
    border-radius: 8px;
    overflow-x: auto;
  }

  .package-compare-table > div {
    min-width: 860px;
  }

  .case-results-table {
    overflow-x: auto;
  }

  .case-results-table > div {
    min-width: 720px;
  }

  .case-snapshot-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-lever-grid a {
    min-height: auto;
  }

  .service-support-panel > .support-chip-grid {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .role-chip-grid {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: auto;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .proof-dashboard-header {
    align-items: flex-start;
    display: grid;
    gap: 8px;
  }

  .business-callout {
    left: 36%;
    top: 21%;
    width: 180px;
  }

  .review-float {
    bottom: 12px;
    right: 12px;
  }

  .section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 64px 0 72px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .rank-map-status {
    align-items: flex-start;
    display: grid;
  }

  .rank-map-status span {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rank-grid-overlay span,
  .signal-stack span::after,
  .timeline::after,
  .timeline article,
  .timeline-loop,
  .rank-expansion-pulse {
    animation: none;
    transition: none;
  }
}
