:root {
  --navy: #0b3038;
  --navy-2: #103c44;
  --steel: #187f79;
  --steel-2: #2ba897;
  --gold: #e6ad38;
  --gold-dark: #8a6518;
  --warm-white: #f4faf8;
  --paper: #ffffff;
  --white: #ffffff;
  --charcoal: #173a3f;
  --muted: #5f7072;
  --border: #d7e7e3;
  --green: #1f8f7f;
  --teal-soft: #e7f6f2;
  --teal-mist: #f5faf8;
  --gold-soft: #fff8e7;
  --shadow: 0 20px 50px rgba(11, 48, 56, 0.14);
  --radius: 8px;
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  color: var(--white);
  font-size: 54px;
  font-weight: 800;
}

h2 {
  font-size: 38px;
  font-weight: 800;
}

h3 {
  font-size: 21px;
  font-weight: 800;
}

p {
  color: var(--muted);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(43, 168, 151, 0.48);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  padding: 88px 0;
}

.top-bar {
  background: var(--navy);
  color: var(--white);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 40px));
  min-height: 38px;
  margin: 0 auto;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.top-bar p {
  color: rgba(255, 255, 255, 0.86);
}

.top-bar a {
  flex-shrink: 0;
  color: #f2c86a;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(215, 231, 227, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 250px;
  height: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #2d4a4f;
  font-size: 14px;
  font-weight: 800;
}

.nav-links > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 10px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-item:focus-within > a {
  background: var(--teal-mist);
  color: var(--navy);
}

.nav-links a[aria-current="page"]:not(.nav-cta) {
  background: var(--teal-soft);
  color: var(--navy);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  display: none;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #2d4a4f;
  font-size: 14px;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: block;
}

.nav-links .nav-cta {
  margin-left: 6px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 48, 56, 0.18);
}

.nav-links .nav-cta:hover {
  background: var(--navy-2);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(700px, calc(100svh - 220px));
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/erp-advisory-hero.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 48, 56, 0.97) 0%, rgba(11, 48, 56, 0.86) 38%, rgba(11, 48, 56, 0.34) 78%, rgba(11, 48, 56, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 48, 56, 0.18), rgba(11, 48, 56, 0.18));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 62px;
}

.hero-brand {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  border-left: 4px solid var(--gold);
  padding-left: 14px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.hero-lede,
.hero-support {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  overflow-wrap: break-word;
}

.hero-lede {
  margin-top: 22px;
  font-size: 19px;
}

.hero-support {
  margin-top: 14px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.button-primary:hover {
  background: #efbd55;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.17);
}

.navy-button {
  margin-top: 24px;
  background: var(--navy);
  color: var(--white);
}

.navy-button:hover {
  background: var(--navy-2);
}

.trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin-top: 24px;
}

.trust-bullets span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 18px;
}

.large-copy {
  margin-top: 18px;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 58px;
}

.problem-section,
.services,
.industries,
.contact {
  background: var(--white);
}

.outcomes-section,
.service-area,
.resource-library {
  background: var(--warm-white);
}

.problem-grid,
.service-grid,
.principle-grid,
.platform-groups,
.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid article,
.service-card,
.check-panel,
.platform-groups article,
.industry-grid article,
.offer-grid article,
.principle-grid article,
.resource-list a,
.content-card,
.contact-form,
.page-card,
.outcome-card,
.response-card,
.resource-article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(11, 48, 56, 0.08);
}

.problem-grid article,
.principle-grid article,
.content-card,
.page-card,
.outcome-card,
.resource-article {
  padding: 24px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.proof-strip div {
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid var(--border);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 18px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
}

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

.outcome-card {
  border-top: 4px solid var(--steel);
}

.outcome-card:nth-child(2) {
  border-top-color: var(--gold);
}

.outcome-card:nth-child(3) {
  border-top-color: var(--green);
}

.outcome-tag,
.package-label,
.resource-number {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--teal-soft);
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.outcome-card h3 {
  margin-bottom: 16px;
}

.outcome-details {
  display: grid;
  gap: 14px;
}

.outcome-details dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.outcome-details dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.section-note {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.problem-grid h3,
.principle-grid h3 {
  margin-bottom: 10px;
}

.clarity-section,
.platforms,
.offers,
.about,
.page-section.alt {
  background: var(--warm-white);
}

.check-panel {
  padding: 30px;
  background: var(--white);
}

.check-panel h3 {
  margin-bottom: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #244247;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.service-grid.detailed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 28px;
}

.icon-block {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
}

.service-card h3,
.industry-grid h3,
.offer-grid h3,
.content-card h3 {
  margin-bottom: 12px;
}

.service-card p + p {
  margin-top: 10px;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  color: #27484d;
  font-size: 14px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.service-card a,
.offer-grid a {
  margin-top: auto;
  color: var(--steel);
  font-weight: 800;
}

.method,
.resources,
.final-cta {
  background: var(--navy);
}

.method h2,
.method h3,
.method .section-heading p:not(.eyebrow),
.resources h2,
.final-cta h2 {
  color: var(--white);
}

.method .eyebrow,
.resources .eyebrow,
.final-cta .eyebrow {
  color: #9fe8dc;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.timeline li {
  min-height: 270px;
  padding: 24px;
  background: var(--navy-2);
}

.timeline span,
.resource-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--teal-soft);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.timeline h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.platform-intro {
  align-items: end;
  margin-bottom: 32px;
}

.platform-intro p:last-child {
  font-size: 17px;
}

.platform-groups article {
  padding: 24px;
}

.platform-groups article:nth-child(4) {
  grid-column: span 3;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--teal-mist);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

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

.industry-grid article {
  min-height: 230px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(11, 48, 56, 0.05), rgba(43, 168, 151, 0.12)),
    var(--paper);
}

.visual-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.call-section {
  background: var(--paper);
}

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

.offer-grid article {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 24px;
  border-top: 4px solid var(--gold);
}

.offer-grid article:nth-child(even) {
  border-top-color: var(--steel);
}

.offer-grid p + p {
  margin-top: 12px;
}

.offer-meta {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.deliverable-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  color: #2e4a4f;
  font-size: 14px;
}

.deliverable-list li {
  position: relative;
  padding-left: 18px;
}

.deliverable-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
  content: "";
}

.service-area-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 52px;
}

.service-area-map {
  padding: 28px;
  border-left: 5px solid var(--gold);
  background: var(--white);
}

.service-area-map h3 {
  margin-bottom: 16px;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-list span {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.principles {
  background: var(--white);
}

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

.resource-list a {
  min-height: 235px;
  padding: 24px;
  background: var(--white);
}

.resource-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.18;
}

.final-cta {
  padding: 74px 0;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  border-left: 5px solid var(--gold);
  padding-left: 28px;
}

.final-cta p {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 5px solid var(--page-accent, var(--gold));
  --page-accent: var(--gold);
  --page-hero-image: url("assets/page-heroes/clarity-dashboard-hero.jpg");
  --page-hero-position: center right;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11, 48, 56, 0.98) 0%, rgba(11, 48, 56, 0.9) 40%, rgba(11, 48, 56, 0.48) 78%, rgba(11, 48, 56, 0.24) 100%),
    var(--page-hero-image);
  background-position: center center, var(--page-hero-position);
  background-size: cover, cover;
  content: "";
  transform: scale(1.01);
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 5px;
  background: linear-gradient(90deg, var(--page-accent), rgba(255, 255, 255, 0));
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p {
  max-width: 780px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.page-hero .hero-brand {
  border-left-color: var(--page-accent);
}

.page-services {
  --page-accent: var(--steel);
  --page-hero-image: url("assets/page-heroes/services-hero.jpg");
}

.page-assessment {
  --page-accent: var(--steel-2);
  --page-hero-image: url("assets/page-heroes/erp-assessment-hero.jpg");
}

.page-selection {
  --page-accent: var(--gold);
  --page-hero-image: url("assets/page-heroes/erp-selection-hero.jpg");
}

.page-implementation {
  --page-accent: var(--steel);
  --page-hero-image: url("assets/page-heroes/implementation-support-hero.jpg");
}

.page-migration {
  --page-accent: var(--steel-2);
  --page-hero-image: url("assets/page-heroes/data-migration-hero.jpg");
}

.page-integrations {
  --page-accent: var(--gold);
  --page-hero-image: url("assets/page-heroes/erp-integrations-hero.jpg");
}

.page-optimization {
  --page-accent: var(--steel);
  --page-hero-image: url("assets/page-heroes/erp-optimization-hero.jpg");
}

.page-platforms {
  --page-accent: var(--steel-2);
  --page-hero-image: url("assets/page-heroes/platforms-hero.jpg");
}

.page-netsuite {
  --page-accent: var(--steel);
  --page-hero-image: url("assets/page-heroes/netsuite-consulting-hero.jpg");
}

.page-dynamics {
  --page-accent: var(--gold);
  --page-hero-image: url("assets/page-heroes/microsoft-dynamics-consulting-hero.jpg");
}

.page-industries {
  --page-accent: var(--steel-2);
  --page-hero-image: url("assets/page-heroes/industries-hero.jpg");
}

.page-resources {
  --page-accent: var(--gold);
  --page-hero-image: url("assets/page-heroes/resources-hero.jpg");
}

.page-about {
  --page-accent: var(--steel-2);
  --page-hero-image: url("assets/page-heroes/about-hero.jpg");
}

.page-contact {
  --page-accent: var(--steel-2);
  --page-hero-image: url("assets/page-heroes/contact-hero.jpg");
}

.page-section {
  padding: 76px 0;
  background: var(--white);
}

.page-section h2 {
  margin-bottom: 28px;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-card ul,
.page-card ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.content-card li,
.page-card li {
  position: relative;
  padding-left: 18px;
  color: #27484d;
}

.content-card li::before,
.page-card li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 58px;
}

.contact-layout > div > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 18px;
  font-size: 18px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--warm-white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-confidence {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.response-card {
  padding: 22px;
  border-left: 4px solid var(--green);
  box-shadow: none;
}

.response-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

.response-card a {
  color: var(--steel);
  font-weight: 800;
}

.response-card p {
  margin-top: 8px;
}

.contact-confidence h3 {
  margin-bottom: 18px;
}

.next-steps {
  display: grid;
  gap: 12px;
  counter-reset: next-step;
}

.next-steps li {
  position: relative;
  padding-left: 38px;
  color: #304e53;
  counter-increment: next-step;
}

.next-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  content: counter(next-step);
  font-size: 12px;
  font-weight: 800;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--steel);
  outline: 3px solid rgba(43, 168, 151, 0.18);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--green);
  font-weight: 700;
}

.form-privacy {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

.form-privacy a {
  color: var(--steel);
  font-weight: 800;
}

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

.resource-index a {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 48, 56, 0.08);
}

.resource-index h2 {
  margin-bottom: 10px;
  font-size: 21px;
}

.resource-index strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--steel);
  font-size: 14px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 48px;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 26px);
}

.article-aside h2 {
  margin-bottom: 14px;
}

.article-meta {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.resource-article + .resource-article {
  margin-top: 18px;
}

.resource-article h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.resource-article h3 {
  margin: 24px 0 10px;
}

.resource-article .check-list {
  margin-top: 18px;
}

.resource-callout {
  margin-top: 22px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
}

.resource-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

.legal-page {
  max-width: 860px;
}

.legal-page > p {
  margin-bottom: 30px;
}

.legal-section + .legal-section {
  margin-top: 30px;
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section a {
  color: var(--steel);
  font-weight: 800;
}

.footer {
  padding: 48px 0 28px;
  background: #081f24;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
}

.footer .brand-logo {
  width: 280px;
  padding: 8px;
  background: var(--white);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 15px;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer a + a {
  margin-top: 7px;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.footer-legal-links a + a {
  margin-top: 0;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .brand-logo {
    width: 210px;
  }

  .nav-links {
    gap: 2px;
    font-size: 13px;
  }

  .nav-links > a,
  .nav-item > a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .problem-grid,
  .service-grid.detailed,
  .principle-grid,
  .industry-grid,
  .resource-list,
  .page-card-grid,
  .outcomes-grid,
  .resource-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

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

  .platform-groups article:nth-child(4) {
    grid-column: span 2;
  }

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

@media (max-width: 880px) {
  :root {
    --header-height: 84px;
  }

  .container,
  .hero-inner,
  .nav,
  .top-bar-inner,
  .page-hero-inner {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .section-pad,
  .page-section {
    padding: 64px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  .top-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
    gap: 4px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links > a,
  .nav-item > a {
    display: flex;
    min-height: 44px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 6px 12px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 2px solid var(--border);
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown a {
    padding: 7px 10px;
    font-weight: 700;
  }

  .hero {
    min-height: min(650px, calc(100svh - 190px));
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 48, 56, 0.97) 0%, rgba(11, 48, 56, 0.86) 58%, rgba(11, 48, 56, 0.46) 100%),
      linear-gradient(0deg, rgba(11, 48, 56, 0.2), rgba(11, 48, 56, 0.2));
  }

  .hero-inner {
    padding: 46px 0 54px;
  }

  .hero h1,
  .page-hero h1,
  .hero-lede,
  .hero-support,
  .top-bar p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-lede {
    font-size: 17px;
  }

  .split,
  .page-layout,
  .contact-layout,
  .final-cta-inner,
  .service-area-inner,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .final-cta-inner {
    align-items: start;
  }

  .check-list.two-col {
    grid-template-columns: 1fr;
  }

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

  .page-hero-inner {
    padding: 70px 0;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 19px;
  }

  .brand-logo {
    width: 200px;
  }

  .hero {
    min-height: min(640px, calc(100svh - 190px));
  }

  .hero-brand {
    font-size: 17px;
  }

  .hero-support,
  .trust-bullets {
    display: none;
  }

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

  .problem-grid,
  .service-grid.detailed,
  .timeline,
  .platform-groups,
  .industry-grid,
  .offer-grid,
  .principle-grid,
  .resource-list,
  .page-card-grid,
  .contact-form,
  .outcomes-grid,
  .resource-index,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .proof-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .platform-groups article:nth-child(4) {
    grid-column: auto;
  }

  .contact-form {
    padding: 20px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-height: 640px) {
  .hero {
    min-height: min(520px, calc(100svh - 150px));
  }

  .hero-inner {
    padding-top: 36px;
    padding-bottom: 42px;
  }
}

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

/* 2026 Maitero premium finance-product skin */
:root {
  --navy: #041616;
  --navy-2: #062426;
  --steel: #008f72;
  --steel-2: #00b889;
  --gold: #d7aa3f;
  --gold-dark: #8b6619;
  --warm-white: #f8faf5;
  --paper: #ffffff;
  --white: #ffffff;
  --charcoal: #142725;
  --muted: #5e6f6a;
  --border: #dce8e2;
  --green: #00b889;
  --teal-soft: #ecfff8;
  --teal-mist: #f5fbf7;
  --gold-soft: #fff8e4;
  --shadow: 0 22px 55px rgba(4, 22, 22, 0.13);
  --radius: 8px;
  --header-height: 68px;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, #f8faf5 760px),
    var(--warm-white);
  color: var(--charcoal);
}

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  color: var(--white);
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 4.1rem);
  font-weight: 900;
}

h3 {
  font-weight: 900;
}

.top-bar {
  background: var(--navy);
}

.top-bar-inner {
  min-height: 34px;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.top-bar p {
  color: rgba(255, 255, 255, 0.88);
}

.top-bar a {
  color: var(--steel-2);
}

.site-header {
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(220, 232, 226, 0.96);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: var(--header-height);
}

.brand-logo {
  width: min(190px, 48vw);
  border-radius: var(--radius);
}

.nav-links {
  gap: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.nav-links > a,
.nav-item > a {
  min-height: 38px;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  border-radius: 0;
}

.nav-links a:hover,
.nav-item:focus-within > a,
.nav-links a[aria-current="page"]:not(.nav-cta) {
  background: transparent;
  border-color: var(--steel-2);
  color: var(--steel);
}

.dropdown {
  border-color: rgba(220, 232, 226, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dropdown a {
  border-bottom: 0;
  border-radius: var(--radius);
}

.nav-links .nav-cta {
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(4, 22, 22, 0.16);
}

.nav-links .nav-cta:hover {
  background: var(--steel);
  color: var(--white);
}

.hero {
  min-height: 700px;
  background: var(--navy);
}

.hero-media {
  background-image: url("assets/motion/home-flow.webp");
  background-position: center;
  background-size: cover;
  transform: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 22, 22, 0.96) 0%, rgba(4, 22, 22, 0.78) 46%, rgba(4, 22, 22, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 22, 22, 0.08), rgba(4, 22, 22, 0.22));
}

.hero-inner {
  padding: 88px 0;
}

.hero-brand {
  border-left: 0;
  padding-left: 0;
  color: var(--steel-2);
  font-size: 18px;
  font-weight: 900;
}

.hero-lede,
.hero-support {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-lede {
  font-size: 21px;
}

.button {
  border-radius: 999px;
  font-weight: 900;
}

.button-primary {
  background: var(--steel-2);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(0, 184, 137, 0.22);
}

.button-primary:hover {
  background: #11cca0;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.navy-button {
  background: var(--steel-2);
  color: var(--navy);
}

.trust-bullets span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.section-pad {
  padding: 96px 0;
}

.eyebrow {
  color: var(--steel);
  font-weight: 900;
}

.problem-section,
.services,
.industries,
.contact,
.call-section,
.principles,
.page-section {
  background: var(--white);
}

.clarity-section,
.platforms,
.offers,
.about,
.outcomes-section,
.service-area,
.resource-library,
.page-section.alt {
  background: var(--warm-white);
}

.problem-grid,
.service-grid,
.principle-grid,
.platform-groups,
.page-card-grid,
.industry-grid,
.offer-grid,
.resource-list,
.outcomes-grid,
.resource-index {
  gap: 16px;
}

.problem-grid article,
.service-card,
.check-panel,
.platform-groups article,
.industry-grid article,
.offer-grid article,
.principle-grid article,
.resource-list a,
.content-card,
.contact-form,
.page-card,
.outcome-card,
.response-card,
.resource-article,
.article-aside,
.faq-list details {
  border: 1px solid rgba(220, 232, 226, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(4, 22, 22, 0.06);
}

.service-card,
.offer-grid article {
  border-top: 0;
}

.service-card::before,
.offer-grid article::before,
.content-card::before,
.page-card::before,
.resource-article::before {
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--steel-2), var(--gold));
  content: "";
}

.icon-block,
.visual-chip {
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--steel-2);
}

.check-list li::before,
.service-card li::before,
.deliverable-list li::before,
.content-card li::before,
.page-card li::before,
.next-steps li::before {
  background: var(--steel-2);
}

.service-card a,
.offer-grid a,
.resource-list strong,
.contact-points span,
.response-card strong,
.resource-callout strong,
.legal-section a,
.form-privacy a {
  color: var(--steel);
}

.proof-strip {
  border: 0;
  border-radius: 0;
  background: var(--navy);
}

.proof-strip div {
  border-color: rgba(255, 255, 255, 0.12);
}

.proof-strip strong {
  color: var(--steel-2);
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.method,
.resources,
.final-cta {
  background: var(--navy);
}

.timeline {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.timeline li {
  background: rgba(255, 255, 255, 0.06);
}

.timeline span,
.resource-list span,
.outcome-tag,
.package-label,
.resource-number,
.badge-list span {
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--steel);
}

.page-hero {
  min-height: 520px;
  border-bottom: 0;
  background: var(--navy);
  --motion-hero: url("assets/motion/home-flow.webp");
}

.page-hero::before {
  background-image:
    linear-gradient(90deg, rgba(4, 22, 22, 0.96) 0%, rgba(4, 22, 22, 0.74) 48%, rgba(4, 22, 22, 0.16) 100%),
    var(--motion-hero);
  background-position: center center, center;
  background-size: cover, cover;
  transform: none;
}

.page-hero::after {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.page-hero-inner {
  padding: 110px 0;
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(3.1rem, 6.4vw, 6.1rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero .hero-brand {
  color: var(--steel-2);
}

.page-services,
.page-assessment,
.page-selection,
.page-integrations,
.page-optimization {
  --motion-hero: url("assets/motion/services-flow.webp");
}

.page-implementation,
.page-migration {
  --motion-hero: url("assets/motion/process-flow.webp");
}

.page-platforms,
.page-netsuite,
.page-dynamics {
  --motion-hero: url("assets/motion/platforms-flow.webp");
}

.page-industries {
  --motion-hero: url("assets/motion/about-flow.webp");
}

.page-resources {
  --motion-hero: url("assets/motion/consultation-flow.webp");
}

.page-about {
  --motion-hero: url("assets/motion/about-flow.webp");
}

.page-contact {
  --motion-hero: url("assets/motion/contact-flow.webp");
}

.contact-section,
.contact-layout {
  background: var(--white);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: var(--radius);
  background: #fbfffd;
}

.final-cta {
  padding: 88px 0;
}

.final-cta-inner {
  border-left-color: var(--steel-2);
}

.footer {
  background: var(--navy);
}

.footer .brand-logo {
  width: min(245px, 70vw);
  padding: 0.65rem;
  background: var(--white);
}

.footer h2 {
  color: var(--steel-2);
}

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

.footer a:hover {
  color: var(--steel-2);
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.floating-assistant {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: calc(100vw - 32px);
  font-family: "Inter", system-ui, sans-serif;
}

.assistant-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.assistant-button {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.assistant-toggle:focus-visible + .assistant-button {
  outline: 3px solid rgba(0, 184, 137, 0.42);
  outline-offset: 3px;
}

.assistant-status {
  width: 12px;
  height: 12px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--steel-2);
  box-shadow: 0 0 0 7px rgba(0, 184, 137, 0.16);
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(372px, calc(100vw - 36px));
  max-height: min(72vh, 620px);
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(220, 232, 226, 0.98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(4, 22, 22, 0.23);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.assistant-toggle:checked ~ .assistant-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.assistant-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.assistant-panel-head p {
  margin: 0;
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.assistant-panel-head label {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.assistant-panel h2 {
  margin: 7px 0 14px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.16;
}

.assistant-panel details {
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfffd;
}

.assistant-panel details + details {
  margin-top: 8px;
}

.assistant-panel summary {
  color: var(--navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.assistant-panel details p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.assistant-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--steel-2);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 1120px) {
  h1 {
    font-size: clamp(3rem, 7vw, 5.4rem);
  }

  .nav-links {
    gap: 6px;
  }

  .brand-logo {
    width: 168px;
  }
}

@media (max-width: 880px) {
  .nav-links > a,
  .nav-item > a {
    border-bottom: 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner,
  .page-hero-inner {
    width: min(100% - 40px, 1180px);
  }

  .hero h1,
  .page-hero h1 {
    text-align: left;
  }

  .hero-lede,
  .hero-support {
    text-align: left;
  }
}

@media (max-width: 640px) {
  h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .top-bar-inner {
    min-height: 60px;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }

  .hero {
    min-height: 690px;
  }

  .hero-overlay,
  .page-hero::before {
    background-image:
      linear-gradient(180deg, rgba(4, 22, 22, 0.96), rgba(4, 22, 22, 0.64)),
      var(--motion-hero, url("assets/motion/home-flow.webp"));
  }

  .hero-inner {
    padding: 74px 0;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: auto;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .page-hero {
    min-height: 470px;
  }

  .page-hero-inner {
    padding: 78px 0;
  }

  .floating-assistant {
    right: 16px;
    bottom: 16px;
  }

  .assistant-button {
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
  }

  .assistant-button-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .assistant-status {
    margin: 0;
  }

  .assistant-panel {
    bottom: 68px;
    width: min(342px, calc(100vw - 32px));
    max-height: min(68vh, 560px);
    padding: 14px;
  }
}

/* Final compact pass: reduce oversized hero, section, card, and assistant proportions. */
:root {
  --shadow: 0 16px 38px rgba(4, 22, 22, 0.1);
  --header-height: 64px;
}

body {
  font-size: 15.5px;
  line-height: 1.58;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 4.5vw, 4.4rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.75rem, 2.35vw, 2.75rem);
  line-height: 1.04;
}

.brand-logo {
  width: min(154px, 44vw);
  max-height: 48px;
  object-fit: contain;
}

.nav-links {
  gap: 8px;
  font-size: 13px;
}

.nav-links > a,
.nav-item > a {
  min-height: 34px;
  padding: 7px 1px;
}

.nav-links .nav-cta {
  padding: 8px 14px;
}

.hero {
  min-height: min(560px, calc(100svh - 130px));
}

.hero-inner {
  padding: 50px 0 56px;
}

.hero-brand {
  font-size: 15px;
}

.hero-lede {
  max-width: 620px;
  font-size: 16.5px;
}

.hero-support {
  max-width: 600px;
  font-size: 14.5px;
}

.button {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
}

.trust-bullets {
  gap: 8px;
}

.trust-bullets span {
  min-height: 31px;
  padding: 6px 10px;
  font-size: 12px;
}

.section-pad {
  padding: 62px 0;
}

.page-section {
  padding: 54px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  max-width: 700px;
  font-size: 16px;
}

.split,
.contact-layout,
.service-area-inner,
.article-layout {
  gap: 38px;
}

.problem-grid,
.service-grid,
.principle-grid,
.platform-groups,
.page-card-grid,
.industry-grid,
.offer-grid,
.resource-list,
.outcomes-grid,
.resource-index {
  gap: 18px;
}

.problem-grid article,
.principle-grid article,
.content-card,
.page-card,
.outcome-card,
.resource-article,
.check-panel,
.platform-groups article,
.industry-grid article,
.offer-grid article,
.resource-list a,
.response-card,
.article-aside,
.faq-list details {
  padding: 20px;
  box-shadow: 0 10px 28px rgba(4, 22, 22, 0.055);
}

.service-card {
  min-height: 0;
  padding: 22px;
}

.service-card::before,
.offer-grid article::before,
.content-card::before,
.page-card::before,
.resource-article::before {
  width: 42px;
  height: 2px;
  margin-bottom: 15px;
}

.icon-block {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
}

.service-card ul,
.check-list,
.content-card ul,
.page-card ul,
.next-steps {
  gap: 8px;
}

.service-card ul {
  margin: 14px 0 18px;
  font-size: 13px;
}

.proof-strip div {
  min-height: 94px;
  padding: 18px;
}

.proof-strip strong {
  font-size: 16px;
}

.timeline li {
  min-height: 205px;
  padding: 18px;
}

.page-hero {
  min-height: 220px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.48fr);
  align-items: end;
  gap: 8px 48px;
  padding: 32px 0 34px;
}

.page-hero h1 {
  max-width: 720px;
  font-size: clamp(1.9rem, 2.9vw, 3rem);
  line-height: 1.04;
}

.page-hero p {
  max-width: 640px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.page-hero .hero-brand {
  grid-column: 1;
  margin-bottom: 10px;
  font-size: 12px;
}

.page-hero h1 {
  grid-column: 1;
}

.page-hero h1 + p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 500px;
  margin: 0 0 4px;
}

.page-hero + .section-pad,
.page-hero + .page-section {
  padding-top: 46px;
}

.final-cta {
  padding: 56px 0;
}

.final-cta-inner {
  gap: 24px;
  padding-left: 22px;
}

.contact-layout > div > p:not(.eyebrow) {
  max-width: 540px;
  font-size: 16px;
}

.contact-points {
  gap: 8px;
  margin-top: 22px;
}

.contact-points span {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
}

.contact-confidence {
  margin-top: 24px;
}

.contact-form {
  gap: 14px;
  padding: 22px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 42px;
  padding: 9px 11px;
}

.contact-form textarea {
  min-height: 108px;
}

.resource-list a,
.resource-index a {
  min-height: 180px;
}

.footer {
  padding: 42px 0 24px;
}

.footer .brand-logo {
  width: min(210px, 66vw);
  max-height: none;
}

.floating-assistant {
  right: 16px;
  bottom: 16px;
}

.assistant-button {
  min-height: 48px;
  padding: 0 15px;
  font-size: 13px;
}

.assistant-status {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 6px rgba(0, 184, 137, 0.14);
}

.assistant-panel {
  bottom: 62px;
  width: min(340px, calc(100vw - 32px));
  padding: 15px;
}

.assistant-panel h2 {
  font-size: 18px;
}

.assistant-panel details {
  padding: 10px;
}

@media (max-width: 1120px) {
  h1 {
    font-size: clamp(2.55rem, 5.2vw, 4.2rem);
  }
}

@media (max-width: 880px) {
  .hero {
    min-height: 520px;
  }

  .hero-inner,
  .page-hero-inner {
    width: min(100% - 36px, 1180px);
  }

  .section-pad,
  .page-section {
    padding: 52px 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .top-bar-inner {
    min-height: 32px;
    flex-direction: row;
    justify-content: center;
    padding: 6px 0;
  }

  .top-bar p {
    display: none;
  }

  .hero {
    min-height: 490px;
  }

  .hero-inner {
    padding: 42px 0 48px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .page-hero {
    min-height: 205px;
  }

  .page-hero-inner {
    display: block;
    padding: 26px 0 28px;
  }

  .page-hero .hero-brand {
    margin-bottom: 8px;
  }

  .page-hero h1 {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  .page-hero p {
    font-size: 14px;
  }

  .page-hero h1 + p {
    max-width: 100%;
    margin-top: 8px;
  }

  .page-hero + .section-pad,
  .page-hero + .page-section {
    padding-top: 38px;
  }

  .problem-grid article,
  .principle-grid article,
  .content-card,
  .page-card,
  .outcome-card,
  .resource-article,
  .check-panel,
  .platform-groups article,
  .industry-grid article,
  .offer-grid article,
  .resource-list a,
  .response-card,
  .article-aside,
  .faq-list details,
  .service-card,
  .contact-form {
    padding: 18px;
  }

  .assistant-button {
    width: 50px;
    height: 50px;
    min-height: 50px;
  }

  .assistant-panel {
    bottom: 62px;
    width: min(330px, calc(100vw - 32px));
    max-height: min(64vh, 520px);
  }
}

/* Homepage hero alignment pass for index.html. */
.home-hero {
  min-height: min(440px, calc(100svh - 115px));
}

.home-hero .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  grid-template-areas:
    "brand lede"
    "title support"
    "title actions"
    "title trust";
  align-items: start;
  gap: 10px 54px;
  padding: 38px 0 40px;
}

.home-hero .hero-brand {
  grid-area: brand;
  margin-bottom: 0;
  font-size: 12px;
}

.home-hero h1 {
  grid-area: title;
  max-width: 650px;
  font-size: clamp(2.3rem, 3.65vw, 3.65rem);
  line-height: 1.03;
}

.home-hero .hero-lede {
  grid-area: lede;
  max-width: 520px;
  margin: 0;
  font-size: 16px;
  line-height: 1.46;
}

.home-hero .hero-support {
  grid-area: support;
  max-width: 520px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
}

.home-hero .hero-actions {
  grid-area: actions;
  margin-top: 8px;
}

.home-hero .trust-bullets {
  grid-area: trust;
  max-width: 520px;
  margin-top: 4px;
  gap: 6px;
}

.home-hero + .section-pad {
  padding-top: 46px;
}

@media (max-width: 880px) {
  .home-hero {
    min-height: 440px;
  }

  .home-hero .hero-inner {
    display: block;
    padding: 36px 0 40px;
  }

  .home-hero h1 {
    max-width: 620px;
  }

  .home-hero .hero-lede {
    margin-top: 14px;
  }

  .home-hero .hero-support {
    margin-top: 10px;
  }

  .home-hero .hero-actions {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: 395px;
  }

  .home-hero .hero-inner {
    padding: 30px 0 34px;
  }

  .home-hero .hero-brand {
    margin-bottom: 8px;
  }

  .home-hero h1 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .home-hero .hero-lede {
    font-size: 14.5px;
  }

  .home-hero .hero-support,
  .home-hero .trust-bullets {
    display: none;
  }

  .home-hero + .section-pad {
    padding-top: 38px;
  }
}

/* Maitero structured launch system */
.utility-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.utility-links a {
  color: var(--steel-2);
}

.nav {
  gap: 18px;
}

.nav-links {
  gap: 9px;
  font-size: 13px;
}

.mega-menu {
  left: 50%;
  right: auto;
  min-width: min(920px, calc(100vw - 64px));
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
  padding: 18px;
  transform: translateX(-50%);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  display: grid;
}

.mega-services {
  grid-template-columns: repeat(3, minmax(190px, 1fr));
}

.mega-platforms {
  min-width: min(620px, calc(100vw - 64px));
  grid-template-columns: repeat(2, minmax(190px, 1fr));
}

.mega-menu strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-menu a {
  padding: 7px 8px;
  font-size: 13px;
  line-height: 1.25;
}

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

.proof-section {
  padding: 18px 0;
  background: var(--navy);
}

.section-pad.alt {
  background: var(--warm-white);
}

.platform-groups .page-card:nth-child(4) {
  grid-column: auto;
}

.routing-grid .page-card {
  min-height: 210px;
}

.stacked-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.stacked-links a,
.inline-link,
.page-card a,
.content-card a,
.resource-article a {
  color: var(--steel);
  font-weight: 900;
}

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

.mini-grid > div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--teal-mist);
}

.mini-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
}

.process-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.process-tabs button {
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
}

.process-tabs button[aria-selected="true"] {
  border-color: var(--steel-2);
  background: var(--navy);
  color: var(--white);
}

.process-panel {
  display: none;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(4, 22, 22, 0.06);
}

.process-panel.is-active {
  display: block;
}

.process-panel > p {
  max-width: 840px;
  margin-top: 10px;
}

.process-panel > a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--steel);
  font-weight: 900;
}

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

.lifecycle li {
  min-height: 185px;
}

.page-card,
.content-card,
.resource-article {
  display: flex;
  flex-direction: column;
}

.page-card a,
.content-card a {
  margin-top: auto;
  padding-top: 16px;
}

.outcomes-grid {
  align-items: stretch;
}

.article-meta span {
  display: block;
}

.alias-page {
  display: grid;
  min-height: 100svh;
  place-content: center;
  gap: 18px;
  padding: 32px;
  background: var(--warm-white);
  text-align: center;
}

.alias-page h1 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
}

.alias-page .brand-logo {
  margin: 0 auto;
}

.assistant-intro {
  margin: -4px 0 12px;
  font-size: 13px;
}

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

.assistant-choice-grid button {
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--teal-mist);
  color: var(--navy);
  padding: 8px 9px;
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
}

.assistant-choice-grid button:hover {
  border-color: var(--steel-2);
  background: var(--teal-soft);
}

.assistant-result {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfffd;
}

.assistant-result strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.assistant-result p {
  margin-top: 7px;
  font-size: 13px;
}

.assistant-result-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.assistant-result-links a {
  color: var(--steel);
  font-size: 12.5px;
  font-weight: 900;
}

.system-footer-grid {
  grid-template-columns: 1.25fr repeat(6, minmax(0, 1fr));
}

.footer-note {
  margin-top: 10px;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 6px;
    font-size: 12.5px;
  }

  .nav-links .nav-cta {
    padding: 8px 12px;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    left: 16px;
    right: 16px;
    display: none;
    max-height: calc(100svh - 90px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links > a,
  .nav-item > a {
    display: flex;
    min-height: 42px;
    border-bottom: 0;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .nav-item {
    width: 100%;
  }

  .mega-menu,
  .mega-services,
  .mega-platforms,
  .dropdown {
    position: static;
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr;
    margin: 0 0 8px 12px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 2px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .mega-menu strong {
    margin: 12px 0 4px;
  }

  .system-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mini-grid,
  .lifecycle,
  .system-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .utility-links a:first-child {
    display: none;
  }
}
