:root {
  --bg: #f7f3e7;
  --surface: #fffdf8;
  --surface-strong: #fff7d8;
  --text: #142012;
  --muted: #5d655c;
  --brand: #f3c221;
  --brand-deep: #d8a80f;
  --olive: #163300;
  --olive-soft: #234d09;
  --line: rgba(20, 32, 18, 0.12);
  --shadow: 0 22px 60px rgba(22, 51, 0, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 194, 33, 0.24), transparent 30%),
    linear-gradient(180deg, #fff8df 0%, #f7f3e7 34%, #f5f0e4 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 760px);
  margin: 0 auto;
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--olive);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 251, 240, 0.78);
  border-bottom: 1px solid rgba(20, 32, 18, 0.08);
}

.site-header .shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
}

.brand img {
  width: 104px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.25rem 0;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--olive);
}

.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 3px 10px rgba(243, 194, 33, 0.35);
}

.header-actions,
.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #192208;
  box-shadow: 0 14px 28px rgba(243, 194, 33, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.66);
  color: var(--olive);
  border-color: rgba(22, 51, 0, 0.16);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.license-landing-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 82px));
  overflow: hidden;
  color: #fff;
  background: #142012;
}

.license-landing-hero__media,
.license-landing-hero__shade {
  position: absolute;
  inset: 0;
}

.license-landing-hero__media {
  background-image: url("../images/splash.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.license-landing-hero__shade {
  background: linear-gradient(90deg, rgba(12, 24, 7, 0.92) 0%, rgba(12, 24, 7, 0.72) 44%, rgba(12, 24, 7, 0.25) 100%), linear-gradient(180deg, rgba(12, 24, 7, 0.28), rgba(12, 24, 7, 0.56));
}

.license-landing-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 6rem 0 5.5rem;
}

.license-landing-hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: "Comfortaa", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.02;
  color: #fff;
}

.license-landing-hero .hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.license-landing-hero .eyebrow {
  color: #f3c221;
}

.btn--on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.license-landing-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.license-landing-hero__signals span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olive);
  margin: 5px auto;
  border-radius: 999px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 4.5rem 0 4rem;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 10%, rgba(22, 51, 0, 0.12), transparent 26%),
    radial-gradient(circle at 20% 0%, rgba(243, 194, 33, 0.3), transparent 30%);
}

.hero-grid,
.section-grid,
.split,
.contact-layout,
.spotlight {
  position: relative;
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-grid--portal {
  align-items: start;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split h2,
.spotlight h2,
.contact-layout h2 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #11210c;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.65rem);
}

.section-heading h2,
.split h2,
.spotlight h2,
.contact-layout h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.hero-text,
.page-hero p,
.section-heading p,
.split p,
.spotlight p,
.contact-layout p,
.feature-card p,
.pricing-card p,
.mini-grid p,
.process-grid p,
.contact-card span,
.contact-card a,
.footer-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow,
.pricing-card__eyebrow,
.stack-card__label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--olive-soft);
}

.hero-points,
.check-list,
.pricing-card ul,
.footer-grid ul,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points,
.check-list {
  display: grid;
  gap: 0.9rem;
}

.hero-points li,
.check-list li,
.pricing-card li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text);
}

.hero-points li::before,
.check-list li::before,
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--olive));
  box-shadow: 0 0 0 4px rgba(243, 194, 33, 0.15);
}

.hero-card,
.media-panel,
.spotlight-panel,
.contact-card,
.info-panel,
.pricing-card,
.feature-card,
.stack-card,
.cta-panel,
.process-grid article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card,
.media-panel {
  padding: 1rem;
}

.hero-card img,
.media-panel img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
}

.hero-metrics,
.mini-grid,
.process-grid,
.card-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.hero-metrics {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics article,
.mini-grid article {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 236, 0.95);
  border: 1px solid rgba(22, 51, 0, 0.09);
}

.hero-metrics strong,
.stack-card strong,
.feature-card h3,
.pricing-card h2,
.mini-grid h3,
.process-grid h3,
.contact-card h3,
.footer-grid h3,
.info-panel h3 {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.hero-metrics span,
.stack-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.section {
  padding: 4.5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 248, 223, 0.72), rgba(255, 255, 255, 0.4));
}

.section--accent {
  background:
    radial-gradient(circle at top right, rgba(243, 194, 33, 0.26), transparent 24%),
    linear-gradient(180deg, rgba(22, 51, 0, 0.06), rgba(22, 51, 0, 0.02));
}

.section-grid,
.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

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

.split--reverse > :first-child {
  order: 2;
}

.split--reverse > :last-child {
  order: 1;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

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

.feature-card {
  overflow: hidden;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card__body,
.pricing-card,
.contact-card,
.info-panel,
.cta-panel,
.process-grid article {
  padding: 1.5rem;
}

.spotlight {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.spotlight-panel {
  padding: 1.25rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.stack-card {
  padding: 1.2rem 1.25rem;
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

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

.contact-layout {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(22, 51, 0, 0.15);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.95rem 1rem;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(243, 194, 33, 0.45);
  border-color: rgba(243, 194, 33, 0.72);
}

.form-note {
  margin: 0;
  font-size: 0.94rem;
}

.form-note a {
  color: var(--olive);
  text-decoration: underline;
}

.contact-card {
  align-self: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list strong {
  color: var(--olive);
}

.contact-list a {
  color: var(--text);
  text-decoration: underline;
}

.map-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--olive);
  font-weight: 700;
}

.page-hero--portal {
  padding-bottom: 3rem;
}

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

.pricing-card {
  position: relative;
}

.pricing-card--featured {
  background: linear-gradient(180deg, rgba(255, 249, 225, 0.98), rgba(255, 255, 255, 0.9));
  transform: translateY(-0.35rem);
}

.pricing-badge {
  display: inline-flex;
  margin-top: 1.2rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(243, 194, 33, 0.2);
  color: var(--olive);
}

.info-panel {
  align-self: start;
}

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

.process-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--olive));
  color: #fff;
  font-weight: 800;
}

.inline-actions--center {
  justify-content: center;
}

.site-footer {
  padding: 2.5rem 0 1.25rem;
  background: #13200d;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: start;
}

.footer-grid img {
  margin-bottom: 1rem;
}

.footer-grid h3 {
  color: #fff;
}

.footer-grid ul {
  display: grid;
  gap: 0.7rem;
}

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

.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
  .hero-grid,
  .spotlight,
  .section-grid,
  .split,
  .contact-layout,
  .pricing-grid,
  .card-grid,
  .process-grid,
  .mini-grid--wide,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header .shell {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "actions actions";
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
    grid-area: toggle;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

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

  .section-heading h2,
  .split h2,
  .spotlight h2,
  .contact-layout h2 {
    font-size: 1.8rem;
  }

  .btn,
  .header-actions,
  .hero-actions,
  .inline-actions {
    width: 100%;
  }
}

/* ERP landing redesign */
.erp-header {
  background: rgba(255, 255, 255, 0.9);
}

.erp-hero {
  position: relative;
  min-height: min(680px, calc(100vh - 120px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111d0d;
  color: #fff;
}

.erp-hero__image,
.erp-hero__overlay {
  position: absolute;
  inset: 0;
}

.erp-hero__image {
  background-image: url("../images/splash.png");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.05);
}

.erp-hero__overlay {
  background:
    linear-gradient(90deg, rgba(13, 29, 9, 0.93) 0%, rgba(13, 29, 9, 0.78) 45%, rgba(13, 29, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(13, 29, 9, 0.16), rgba(13, 29, 9, 0.42));
}

.erp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 5rem 0;
}

.erp-eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #d8a80f;
}

.erp-hero h1,
.erp-section h2,
.erp-client-access h2 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
  color: #11210c;
}

.erp-hero h1 {
  font-size: 4.8rem;
  color: #fff;
}

.erp-hero__text {
  max-width: 680px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.65;
}

.erp-actions,
.erp-chips,
.erp-use-cases,
.erp-capability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.erp-actions {
  margin-top: 1.8rem;
}

.erp-btn--dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.erp-chips {
  margin-top: 2rem;
}

.erp-chips span,
.erp-use-cases span,
.erp-capability-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(22, 51, 0, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: #142012;
  font-weight: 700;
}

.erp-chips span {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.93);
  border-color: rgba(255, 255, 255, 0.24);
}

.erp-section {
  padding: 4.8rem 0;
  background: #f7f8f5;
}

.erp-section:nth-of-type(odd) {
  background: #fff;
}

.erp-heading {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

.erp-heading--left {
  margin-left: 0;
  text-align: left;
}

.erp-section h2,
.erp-client-access h2 {
  font-size: 2.8rem;
}

.erp-heading p,
.erp-split p,
.erp-mobile-layout p,
.erp-client-access p,
.erp-section--contact p {
  color: #5d655c;
  line-height: 1.68;
}

.erp-module-grid,
.erp-kpi-grid,
.erp-timeline {
  display: grid;
  gap: 1rem;
}

.erp-module-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.erp-module,
.erp-kpi-grid article,
.erp-timeline article,
.erp-flow {
  background: #fff;
  border: 1px solid rgba(20, 32, 18, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 32, 18, 0.08);
}

.erp-module {
  padding: 1.35rem;
}

.erp-module__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #f3c221;
  color: #163300;
}

.erp-module__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.erp-module h3,
.erp-flow h3 {
  margin: 0 0 0.55rem;
  color: #142012;
}

.erp-module p {
  margin: 0;
  color: #5d655c;
  line-height: 1.58;
}

.erp-section--contrast {
  padding-top: 2.4rem;
  background: #142012;
  color: #fff;
}

.erp-section--contrast h2,
.erp-section--contrast h3 {
  color: #fff;
}

#flux {
  padding-top: 0.35rem;
}

#flux .erp-heading {
  margin-bottom: 0.8rem;
}

#flux .erp-eyebrow {
  margin-top: 0;
}
.erp-section--contrast .erp-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.erp-flow-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.2rem;
  align-items: stretch;
  margin: 0.85rem 0 1.05rem;
  padding: 1.25rem;
  border: 1px solid rgba(243, 194, 33, 0.36);
  border-left: 4px solid #f3c221;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.erp-flow-intro__copy {
  display: grid;
  gap: 0.55rem;
}

.erp-flow-intro__label {
  color: #f3c221;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.erp-flow-intro h3 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
}

.erp-flow-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
}

.erp-flow-intro__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.erp-flow-intro__points span {
  display: grid;
  gap: 0.25rem;
  min-height: 86px;
  padding: 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #142012;
}

.erp-flow-intro__points strong {
  color: #142012;
  font-size: 0.95rem;
}

.erp-flow-intro__points small {
  color: #5d655c;
  line-height: 1.42;
}
.erp-flow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.25rem;
}

.erp-flow {
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid rgba(243, 194, 33, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.erp-section--contrast .erp-flow h3 {
  color: #142012;
}

.erp-flow__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.erp-flow__header h3 {
  margin: 0;
}

.erp-flow__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(243, 194, 33, 0.22);
  color: #5b4700;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.erp-flow p {
  margin: 0 0 1rem;
  color: #4f5a4e;
  line-height: 1.58;
}

.erp-flow__route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.erp-flow__route span {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.6rem;
  background: #f6f8f4;
  border: 1px solid rgba(20, 32, 18, 0.12);
  color: #142012;
  text-align: center;
  font-weight: 750;
}

.erp-flow__route span::after {
  content: "";
  position: absolute;
  right: -0.38rem;
  top: 50%;
  width: 0.38rem;
  height: 2px;
  background: #f3c221;
  transform: translateY(-50%);
}

.erp-flow__route span:nth-child(3n)::after,
.erp-flow__route span:last-child::after {
  display: none;
}

.erp-flow__details {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.erp-flow__details li {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding-left: 1rem;
  color: #4f5a4e;
  line-height: 1.5;
}

.erp-flow__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 4px;
  height: calc(100% - 0.3rem);
  border-radius: 999px;
  background: #f3c221;
}

.erp-flow__details strong {
  color: #142012;
  font-size: 0.95rem;
}

.erp-flow__details span {
  color: #5d655c;
}

.erp-flow__outcome {
  display: grid;
  gap: 0.2rem;
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  background: #142012;
  color: #fff;
}

.erp-flow__outcome strong {
  color: #f3c221;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.erp-flow__outcome span {
  color: rgba(255, 255, 255, 0.84);
}
.erp-split,
.erp-mobile-layout,
.erp-client-access__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

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

.erp-kpi-grid article {
  padding: 1.1rem;
}

.erp-kpi-grid strong {
  display: block;
  font-size: 1.7rem;
  color: #163300;
}

.erp-kpi-grid span {
  color: #5d655c;
}

.erp-section--soft {
  background: linear-gradient(180deg, #ffffff 0%, #eef5f0 100%);
}

.erp-phone {
  width: min(320px, 100%);
  aspect-ratio: 9 / 16;
  justify-self: center;
  padding: 0.9rem;
  border-radius: 28px;
  background: #142012;
  box-shadow: 0 28px 70px rgba(20, 32, 18, 0.22);
}

.erp-phone__screen {
  height: 100%;
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f5f8f2);
  color: #142012;
}

.erp-phone__bar {
  display: block;
  width: 58px;
  height: 5px;
  margin: 0 auto 1.3rem;
  border-radius: 999px;
  background: rgba(20, 32, 18, 0.25);
}

.erp-phone__screen strong,
.erp-phone__screen small {
  display: block;
}

.erp-phone__screen strong {
  font-size: 1.25rem;
}

.erp-phone__screen small {
  margin-top: 0.2rem;
  color: #5d655c;
}

.erp-phone__line {
  height: 82px;
  margin-top: 1.2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(243, 194, 33, 0.28), rgba(34, 142, 121, 0.22));
}

.erp-phone__line--short {
  height: 54px;
  width: 72%;
}

.erp-phone__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.erp-phone__actions span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #163300;
  color: #fff;
  font-weight: 700;
}

.erp-note {
  padding-left: 0.9rem;
  border-left: 3px solid #f3c221;
}

.erp-use-cases,
.erp-capability-grid {
  margin-top: 1.4rem;
}

.erp-capability-grid {
  justify-content: center;
}

.erp-section--timeline {
  background: #fff;
}

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

.erp-timeline article {
  padding: 1rem;
}

.erp-timeline span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: #d8a80f;
  font-weight: 800;
}

.erp-timeline strong {
  display: block;
  color: #142012;
}

.erp-client-access {
  padding: 3.2rem 0;
  background: #142012;
  color: #fff;
}

.erp-client-access h2 {
  color: #fff;
}

.erp-client-access p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.erp-client-access .btn {
  justify-self: end;
}

.erp-section--contact {
  background: #f7f8f5;
}
.erp-hero__content,
.erp-heading,
.erp-module,
.erp-kpi-grid article,
.erp-flow,
.erp-timeline article,
.erp-client-access__inner,
.contact-layout > *,
.contact-form,
.contact-card {
  min-width: 0;
}

.erp-hero__text,
.erp-heading h2,
.erp-heading p,
.erp-section p,
.erp-module p,
.contact-card,
.contact-form {
  overflow-wrap: break-word;
}

@media (max-width: 1080px) {
  .erp-module-grid,
  .erp-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .erp-header .shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 0.75rem;
  }

  .erp-header .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .erp-header .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .erp-header .site-nav,
  .erp-header .header-actions {
    display: none;
    width: 100%;
  }

  .erp-header .site-nav {
    grid-area: nav;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.75rem 0 0.2rem;
    border-top: 1px solid rgba(13, 29, 9, 0.1);
  }

  .erp-header .site-nav a {
    padding: 0.55rem 0;
  }

  .erp-header .header-actions {
    grid-area: actions;
    justify-content: stretch;
  }

  .erp-header .site-nav.is-open,
  .erp-header .header-actions.is-open {
    display: flex;
  }

  .erp-header .header-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .erp-hero h1 {
    font-size: 3.1rem;
  }

  .erp-hero__content {
    padding: 4rem 0;
  }

  .erp-split,
  .erp-mobile-layout,
  .erp-client-access__inner,
  .erp-module-grid,
  .erp-kpi-grid,
  .erp-timeline {
    grid-template-columns: 1fr;
  }

  .erp-client-access .btn {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  html,
  body {
    overflow-x: hidden;
  }

  .erp-section {
    padding: 3.4rem 0;
  }

  .erp-header .shell {
    position: relative;
    padding-right: 3.5rem;
  }

  .erp-header .nav-toggle {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: fixed;
    top: 19px;
    right: auto;
    left: min(calc(100vw - 3.75rem), 330px);
    width: 44px;
    height: 44px;
    justify-self: end;
    z-index: 100;
    border: 1px solid rgba(22, 51, 0, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
  }

  .erp-header .nav-toggle span:not(.sr-only) {
    width: 22px;
    margin: 0;
  }

  .erp-hero__image {
    background-position: center;
  }

  .erp-hero__overlay {
    background:
      linear-gradient(90deg, rgba(13, 29, 9, 0.94) 0%, rgba(13, 29, 9, 0.82) 64%, rgba(13, 29, 9, 0.36) 100%),
      linear-gradient(180deg, rgba(13, 29, 9, 0.2), rgba(13, 29, 9, 0.48));
  }

  .erp-hero__content {
    width: min(calc(100vw - 1.25rem), var(--shell));
    padding: 3.4rem 0.45rem;
  }

  .erp-hero h1 {
    font-size: 2.35rem;
  }

  .erp-hero__text {
    max-width: min(21rem, calc(100vw - 2rem));
    font-size: 0.94rem;
    line-height: 1.58;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .erp-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .erp-actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .erp-chips {
    gap: 0.55rem;
  }

  .erp-chips span {
    min-height: 34px;
    padding: 0.5rem 0.75rem;
  }

  .erp-heading {
    align-items: flex-start;
    text-align: left;
  }

  .erp-heading p {
    max-width: min(21rem, calc(100vw - 2rem));
  }

  .erp-section h2,
  .erp-client-access h2 {
    max-width: min(21rem, calc(100vw - 2rem));
    font-size: 1.42rem;
    line-height: 1.2;
  }

  .erp-flow__route {
    grid-template-columns: 1fr;
  }
}












