:root {
  --navy-950: #07101f;
  --navy-900: #0b1426;
  --navy-850: #101b30;
  --navy-800: #16233a;
  --navy-700: #243550;
  --gold-500: #c99b43;
  --gold-400: #d8ae5b;
  --gold-200: #f0dba9;
  --gold-100: #faf2df;
  --ink: #152238;
  --muted: #5f6b7c;
  --line: #dfe4eb;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --success: #4d8b6e;
  --shadow-sm: 0 8px 30px rgb(11 20 38 / 0.07);
  --shadow-lg: 0 28px 80px rgb(5 13 27 / 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 72px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: 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: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 86px;
  color: #fff;
  transition: background-color 200ms ease, box-shadow 200ms ease, height 200ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgb(7 16 31 / 0.94);
  box-shadow: 0 10px 35px rgb(0 0 0 / 0.18);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(216 174 91 / 0.6);
  border-radius: 10px;
  background: linear-gradient(145deg, rgb(216 174 91 / 0.18), rgb(216 174 91 / 0.03));
  color: var(--gold-400);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.045em;
}

.brand-copy span {
  margin-top: 4px;
  color: rgb(255 255 255 / 0.6);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a {
  position: relative;
  color: rgb(255 255 255 / 0.78);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-panel)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold-400);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: #fff;
}

.main-nav > a:not(.nav-panel):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-panel {
  padding: 10px 16px;
  border: 1px solid rgb(216 174 91 / 0.56);
  border-radius: 8px;
  color: var(--gold-200);
}

.main-nav .nav-panel:hover {
  background: var(--gold-400);
  color: var(--navy-950);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 9px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle svg {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgb(201 155 67 / 0.08), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 52%, #0d1c35);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 160px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgb(216 174 91 / 0.12);
  box-shadow: 0 0 100px rgb(201 155 67 / 0.04) inset;
}

.hero-glow-two {
  right: 90px;
  bottom: -220px;
  width: 410px;
  height: 410px;
  border: 1px solid rgb(255 255 255 / 0.06);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  align-items: center;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 74px;
  padding-top: 96px;
  padding-bottom: 54px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-200);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--gold-400);
}

.eyebrow-dark {
  color: #8a682a;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 70px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 em,
.section h2 em,
.contact h2 em {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary,
.button-gold {
  background: var(--gold-400);
  color: var(--navy-950);
  box-shadow: 0 12px 28px rgb(201 155 67 / 0.2);
}

.button-primary:hover,
.button-gold:hover {
  background: #e2bc70;
  box-shadow: 0 16px 32px rgb(201 155 67 / 0.28);
}

.button-ghost,
.button-outline-light {
  border-color: rgb(255 255 255 / 0.22);
  color: #fff;
}

.button-ghost:hover,
.button-outline-light:hover {
  border-color: rgb(255 255 255 / 0.42);
  background: rgb(255 255 255 / 0.07);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 34px 0 0;
  padding: 0;
  color: rgb(255 255 255 / 0.65);
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
}

.hero-visual {
  position: relative;
  padding: 32px 0 32px 26px;
}

.visual-shell {
  position: relative;
  z-index: 2;
  padding: 26px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.04));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.visual-topbar > div,
.chart-copy {
  display: flex;
  flex-direction: column;
}

.visual-label,
.chart-copy span {
  color: rgb(255 255 255 / 0.48);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visual-topbar strong {
  margin-top: 3px;
  font-size: 20px;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgb(77 139 110 / 0.18);
  color: #a9d7c0;
  font-size: 10px;
  font-weight: 700;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #78ba99;
  box-shadow: 0 0 0 4px rgb(120 186 153 / 0.12);
}

.chart-card {
  overflow: hidden;
  padding: 20px 18px 8px;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: var(--radius-md);
  background: rgb(2 8 18 / 0.32);
}

.chart-copy strong {
  margin-top: 3px;
  font-size: 14px;
}

.chart {
  width: 100%;
  height: 154px;
  margin-top: 10px;
  overflow: visible;
}

.grid-line {
  stroke: rgb(255 255 255 / 0.08);
  stroke-width: 1;
}

.chart-fill {
  fill: url(#chartFill);
  stroke: none;
}

.chart-line {
  stroke: var(--gold-400);
  stroke-width: 3;
}

.status-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.status-list > div {
  display: grid;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgb(255 255 255 / 0.055);
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
}

.status-list > div > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.status-list strong {
  font-size: 12px;
}

.status-list small {
  color: rgb(255 255 255 / 0.44);
  font-size: 10px;
}

.status-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: rgb(216 174 91 / 0.12);
  color: var(--gold-400);
}

.status-icon svg {
  width: 17px;
}

.status-done {
  color: #a9d7c0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.float-card {
  position: absolute;
  z-index: 3;
  right: -22px;
  bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgb(216 174 91 / 0.22);
  border-radius: 14px;
  background: #101d32;
  box-shadow: 0 18px 40px rgb(0 0 0 / 0.28);
}

.float-card svg {
  width: 28px;
  color: var(--gold-400);
}

.float-card span {
  display: flex;
  flex-direction: column;
}

.float-card strong {
  font-size: 12px;
}

.float-card small {
  color: rgb(255 255 255 / 0.5);
  font-size: 10px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.trust-grid p {
  max-width: 140px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.trust-grid > span {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.trust-grid strong {
  color: #697487;
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: 116px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 72px;
}

.section h2,
.contact h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.2vw, 57px);
  color: var(--ink);
}

.section h2 em {
  color: #9b742c;
}

.section-heading > p,
.audience-copy > p,
.about-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 370px;
  padding: 34px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 0 0 rgb(0 0 0 / 0);
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.service-card:hover {
  border-color: #cdd4dd;
  box-shadow: var(--shadow-sm);
}

.service-featured {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: #fff;
}

.service-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #cfd5df;
  font-family: Georgia, serif;
  font-size: 34px;
}

.service-featured .service-number {
  color: rgb(255 255 255 / 0.18);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 13px;
  background: var(--gold-100);
  color: #9b742c;
}

.service-icon svg {
  width: 25px;
}

.service-featured .service-icon {
  background: rgb(216 174 91 / 0.13);
  color: var(--gold-400);
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-featured p {
  color: rgb(255 255 255 / 0.63);
}

.service-card a {
  position: absolute;
  bottom: 30px;
  color: #8b6828;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-featured a {
  color: var(--gold-400);
}

.service-card a span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 180ms ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.audience {
  background: var(--surface-soft);
}

.audience-grid,
.about-grid,
.contact-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 92px;
}

.audience-copy > p {
  margin-top: 26px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 30px;
  color: #8b6828;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.audience-list {
  border-top: 1px solid #d4dae3;
}

.audience-list article {
  display: grid;
  padding: 27px 4px;
  border-bottom: 1px solid #d4dae3;
  grid-template-columns: 62px 1fr;
  gap: 16px;
}

.audience-list article > span {
  color: #aeb6c2;
  font-family: Georgia, serif;
  font-size: 24px;
}

.audience-list h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.audience-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process {
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
}

.process-heading {
  max-width: 780px;
}

.process h2,
.contact h2 {
  color: #fff;
}

.process-grid {
  position: relative;
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.process-grid::before {
  position: absolute;
  top: 54px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(216 174 91 / 0.5), transparent);
  content: "";
}

.process-card {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-index {
  color: rgb(255 255 255 / 0.15);
  font-family: Georgia, serif;
  font-size: 44px;
}

.process-dot {
  width: 12px;
  height: 12px;
  margin: 9px auto 27px;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 7px rgb(216 174 91 / 0.12);
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.process-card p {
  max-width: 310px;
  margin: 0 auto;
  color: rgb(255 255 255 / 0.56);
  font-size: 14px;
}

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

.about-visual {
  position: relative;
  min-height: 480px;
}

.about-panel {
  position: absolute;
  border-radius: var(--radius-md);
}

.about-panel-back {
  inset: 34px 52px 0 0;
  border: 1px solid #d8dee7;
  background:
    linear-gradient(130deg, transparent 62%, rgb(201 155 67 / 0.14)),
    repeating-linear-gradient(90deg, transparent 0 49px, rgb(17 31 53 / 0.035) 50px),
    var(--surface-soft);
}

.about-panel-main {
  right: 0;
  bottom: 40px;
  display: flex;
  width: 76%;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.about-monogram {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgb(216 174 91 / 0.5);
  border-radius: 16px;
  color: var(--gold-400);
  font-size: 23px;
  font-weight: 800;
}

.about-panel-main p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.4;
}

.about-badge {
  position: absolute;
  bottom: 10px;
  left: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border: 1px solid #e3e7ed;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.about-badge svg {
  width: 20px;
  color: #9b742c;
}

.about-copy > p {
  margin-top: 25px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: #9b742c;
}

.news {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}

.news::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgb(201 155 67 / 0.12);
  border-radius: 50%;
  content: "";
}

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

.news-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.news-updated {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 18px;
  color: #6d7786;
  font-size: 13px;
  font-weight: 700;
}

.news-updated i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgb(77 139 110 / 0.12);
}

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

.news-card {
  display: flex;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 0 0 rgb(0 0 0 / 0);
  flex-direction: column;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.news-card:hover {
  border-color: #cbd2dc;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.news-card[data-news-source="business-insider"] {
  border-top: 3px solid var(--navy-800);
}

.news-card[data-news-source="infor"] {
  border-top: 3px solid var(--gold-500);
}

.news-card[data-news-source="skwp"] {
  border-top: 3px solid var(--success);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.news-source {
  color: #8b6828;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.news-meta time {
  color: #7a8492;
  font-size: 12px;
  font-weight: 650;
}

.news-card h3 {
  margin: 32px 0 14px;
  color: var(--ink);
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.news-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 28px;
  color: #8b6828;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.news-card > a span {
  font-size: 16px;
  transition: transform 180ms ease;
}

.news-card > a:hover span {
  transform: translate(2px, -2px);
}

.news-note {
  margin: 22px 0 0;
  color: #77818e;
  font-size: 12px;
}

.erp-link {
  padding: 0 0 116px;
  background: #fff;
}

.erp-link-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 78% 20%, rgb(216 174 91 / 0.1), transparent 27%),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
  color: #fff;
  grid-template-columns: 0.78fr 1.22fr;
}

.erp-brand-zone {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgb(255 255 255 / 0.09);
  background:
    linear-gradient(rgb(255 255 255 / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.03) 1px, transparent 1px),
    rgb(3 10 22 / 0.32);
  background-size: 42px 42px;
}

.erp-brand-zone::before,
.erp-brand-zone::after {
  position: absolute;
  border: 1px solid rgb(216 174 91 / 0.13);
  border-radius: 50%;
  content: "";
}

.erp-brand-zone::before {
  width: 300px;
  height: 300px;
}

.erp-brand-zone::after {
  width: 210px;
  height: 210px;
}

.erp-wordmark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.erp-wordmark strong {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.erp-wordmark strong span {
  padding: 0 0.04em;
  color: var(--gold-400);
  font-weight: 400;
}

.erp-wordmark small {
  margin-top: 14px;
  color: rgb(255 255 255 / 0.48);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.erp-link-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 54px 58px;
}

.erp-link-copy h2 {
  max-width: 630px;
  color: #fff;
  font-size: clamp(34px, 3.8vw, 50px);
}

.erp-link-copy h2 em {
  color: var(--gold-400);
}

.erp-link-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 23px 0 0;
  color: rgb(255 255 255 / 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.erp-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.erp-capabilities li {
  padding: 7px 11px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
  color: rgb(255 255 255 / 0.68);
  font-size: 11px;
  font-weight: 700;
}

.erp-link-copy .button {
  margin-top: 31px;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 80% 10%, rgb(216 174 91 / 0.09), transparent 28%),
    var(--navy-950);
  color: #fff;
}

.contact::before {
  position: absolute;
  right: -170px;
  bottom: -270px;
  width: 560px;
  height: 560px;
  border: 1px solid rgb(216 174 91 / 0.1);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1.15fr 0.85fr;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 0.63);
  font-size: 17px;
}

.contact-card {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 26px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 0.055);
  font-style: normal;
  backdrop-filter: blur(16px);
}

.contact-card > div {
  display: grid;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  grid-template-columns: 44px 1fr;
  gap: 13px;
}

.contact-card > div:last-child {
  border-bottom: 0;
}

.contact-card > div > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: rgb(216 174 91 / 0.12);
  color: var(--gold-400);
}

.contact-icon svg {
  width: 19px;
}

.contact-card small {
  color: rgb(255 255 255 / 0.43);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-card a:hover {
  color: var(--gold-200);
}

.site-contact-form {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 0.055);
  box-shadow: 0 28px 70px rgb(0 0 0 / 0.2);
}

.content-section .site-contact-form {
  border-color: var(--line);
  background: var(--navy-900);
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-contact-form label {
  display: grid;
  gap: 8px;
  color: rgb(255 255 255 / 0.68);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-contact-form input:not([type="checkbox"]),
.site-contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  outline: none;
  background: rgb(5 12 24 / 0.72);
  color: #fff;
  font: inherit;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
}

.site-contact-form input:focus,
.site-contact-form textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgb(216 174 91 / 0.13);
}

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

.contact-honeypot {
  position: absolute !important;
  left: -9999px;
  width: 1px !important;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-contact-form .contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgb(255 255 255 / 0.57);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
}

.contact-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--gold-400);
}

.form-submit {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-weight: 800;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-note {
  min-height: 20px;
  margin: 0;
  color: rgb(255 255 255 / 0.53);
  font-size: 12px;
  text-align: center;
}

.contact-form-note.success { color: #b9e8c7; }
.contact-form-note.error { color: #ffcbc5; }

.site-footer {
  padding: 46px 0 20px;
  background: #050c18;
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 35px;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}

.footer-top nav a {
  color: rgb(255 255 255 / 0.58);
  font-size: 12px;
  font-weight: 650;
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  color: rgb(255 255 255 / 0.36);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 86px;
  background:
    radial-gradient(circle at 78% 20%, rgb(201 155 67 / 0.13), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, #0d1c35);
  color: #fff;
}

.subpage-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  pointer-events: none;
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
  color: rgb(255 255 255 / 0.55);
  font-size: 12px;
}

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

.subpage-hero h1,
.not-found h1 {
  max-width: 900px;
  margin: 18px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.6vw, 78px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.subpage-lead {
  max-width: 760px;
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.subpage-content {
  padding: 92px 0 108px;
  background: var(--surface-soft);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 72px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 68px;
}

.content-section h2,
.aside-card h2,
.page-cta h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.content-section > p {
  max-width: 760px;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-list li::before {
  position: absolute;
  top: 21px;
  left: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-500);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

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

.content-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.content-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.content-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.content-link {
  margin-top: auto;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.content-link span {
  color: var(--gold-500);
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

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

.faq-list summary {
  padding: 22px 58px 22px 24px;
  cursor: pointer;
  font-weight: 750;
}

.faq-list details p {
  margin: -8px 24px 24px;
  color: var(--muted);
}

.content-note {
  padding: 18px 22px;
  border-left: 3px solid var(--gold-500);
  background: var(--gold-100);
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 3px 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  counter-increment: steps;
}

.step-list li::before {
  display: grid;
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  content: counter(steps, decimal-leading-zero);
  font-size: 12px;
  font-weight: 800;
}

.step-list span {
  color: var(--muted);
}

.content-aside {
  position: sticky;
  top: 98px;
}

.aside-card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.aside-card h2 {
  margin-top: 18px;
  font-size: 31px;
}

.aside-card > p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.66);
}

.aside-card .button {
  width: 100%;
  margin-top: 10px;
}

.aside-mail {
  display: block;
  margin-top: 18px;
  color: var(--gold-200);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.aside-links {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.aside-links a {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.aside-links a + a {
  border-top: 1px solid var(--line);
}

.aside-links a:hover {
  color: var(--navy-900);
}

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

.contact-details > * {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 14px;
  line-height: 1.5;
}

.company-data {
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.company-data div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 16px 22px;
}

.company-data div + div {
  border-top: 1px solid var(--line);
}

.company-data dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-data dd {
  margin: 0;
  font-weight: 650;
}

.page-cta {
  padding: 64px 0;
  background: var(--navy-800);
  color: #fff;
}

.page-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.page-cta h2 {
  max-width: 700px;
  margin: 16px 0 0;
}

.news-grid-page {
  grid-template-columns: 1fr;
}

.news-grid-page .news-card,
.news-grid-page .news-card:last-child {
  min-height: 280px;
  grid-column: auto;
}

.not-found {
  display: grid;
  min-height: 78vh;
  place-items: center;
  padding: 150px 0 90px;
  background: var(--navy-900);
  color: #fff;
}

.not-found p:not(.eyebrow) {
  max-width: 620px;
  color: rgb(255 255 255 / 0.68);
  font-size: 18px;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 38px;
  }

  .float-card {
    right: -4px;
  }

  .section-heading,
  .audience-grid,
  .about-grid,
  .contact-grid {
    gap: 52px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 28px 24px;
    background: rgb(7 16 31 / 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 16px 4px;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
    font-size: 17px;
  }

  .main-nav .nav-panel {
    margin-top: 22px;
    padding: 16px;
    text-align: center;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .content-aside {
    position: static;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .page-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 132px;
    padding-bottom: 78px;
  }

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

  .hero-visual {
    max-width: 650px;
    padding-left: 0;
  }

  .trust-grid {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .trust-grid p {
    width: 100%;
    max-width: none;
  }

  .trust-grid > span {
    display: none;
  }

  .section-heading,
  .audience-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

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

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

  .news-card:last-child {
    grid-column: 1 / -1;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .process-grid {
    gap: 28px;
  }

  .about-visual {
    max-width: 620px;
    min-height: 440px;
  }

  .erp-link-card {
    grid-template-columns: 0.68fr 1.32fr;
  }

  .erp-link-copy {
    padding: 44px 38px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .contact-field-row {
    grid-template-columns: 1fr;
  }

  .site-contact-form {
    padding: 24px 18px;
  }

  .brand-copy span {
    display: none;
  }

  .subpage-hero {
    padding: 116px 0 66px;
  }

  .subpage-hero h1,
  .not-found h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .subpage-content {
    padding: 68px 0 78px;
  }

  .content-main {
    gap: 52px;
  }

  .content-cards {
    grid-template-columns: 1fr;
  }

  .content-card {
    min-height: 0;
  }

  .company-data div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .page-cta {
    padding: 52px 0;
  }

  .page-cta .button {
    width: 100%;
  }

  .hero-grid {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

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

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

  .hero-points {
    display: grid;
  }

  .visual-shell {
    padding: 18px;
    border-radius: 22px;
  }

  .visual-topbar strong {
    font-size: 17px;
  }

  .chart {
    height: 128px;
  }

  .float-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: max-content;
    max-width: 90%;
    margin: -12px 0 0 auto;
  }

  .trust-grid {
    gap: 12px 19px;
  }

  .trust-grid strong {
    font-size: 11px;
  }

  .section {
    padding: 86px 0;
  }

  .erp-link {
    padding-bottom: 86px;
  }

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

  .erp-brand-zone {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.09);
  }

  .erp-brand-zone::before {
    width: 260px;
    height: 260px;
  }

  .erp-brand-zone::after {
    width: 175px;
    height: 175px;
  }

  .erp-link-copy {
    padding: 38px 28px;
  }

  .erp-link-copy .button {
    width: 100%;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(35px, 10.5vw, 46px);
  }

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

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

  .news-card,
  .news-card:last-child {
    min-height: 340px;
    grid-column: auto;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .audience-list article {
    grid-template-columns: 45px 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .process-grid::before {
    top: 10%;
    right: auto;
    bottom: 10%;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-panel-back {
    inset: 20px 20px 0 0;
  }

  .about-panel-main {
    width: 86%;
    min-height: 270px;
    padding: 27px;
  }

  .about-panel-main p {
    font-size: 21px;
  }

  .about-badge {
    bottom: 8px;
  }

  .contact {
    padding: 86px 0;
  }

  .contact-grid {
    gap: 45px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .footer-top nav {
    gap: 17px 24px;
  }

  .footer-bottom {
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
