:root {
  --blue: #027fb3;
  --blue-deep: #0f5f81;
  --green: #20bf6b;
  --ink: #12384a;
  --muted: #526b77;
  --line: #dce4e8;
  --surface: #f3f8fa;
  --white: #fff;
  --shadow: 0 22px 60px rgba(11, 65, 88, 0.14);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --font: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

:where(section[id], h1[id], h2[id]) { scroll-margin-top: 90px; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 14%, rgba(2, 127, 179, 0.08), transparent 29rem),
    radial-gradient(circle at 92% 23%, rgba(32, 191, 107, 0.08), transparent 26rem),
    #f7f9fa;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(18, 56, 74, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 56, 74, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

img, video, svg { display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 3px solid rgba(2, 127, 179, 0.4); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 13px 24px;
  border-bottom: 1px solid transparent;
  background: rgba(247, 249, 250, 0.76);
  backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { border-color: rgba(18, 56, 74, 0.08); box-shadow: 0 8px 30px rgba(18, 56, 74, 0.06); }
.header-inner, .section-shell, .footer-inner { width: min(1120px, calc(100% - 44px)); margin-inline: auto; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 156px; height: auto; }
.brand { display: inline-flex; min-height: 44px; align-items: center; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  color: white;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(32, 191, 107, 0.2);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.button:hover { background: #1bad61; box-shadow: 0 14px 28px rgba(32, 191, 107, 0.28); transform: translateY(-2px); }
.button svg, .sticky-cta svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button--small { min-height: 40px; padding-inline: 16px; font-size: 13px; }

.hero-section { padding: 22px 22px 70px; }
.hero-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
}
.accent-bar { height: 9px; background: linear-gradient(90deg, var(--blue) 0 72%, var(--green) 72%); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 38px;
  align-items: center;
  padding: 68px 44px 44px;
  background: linear-gradient(150deg, #fff 0%, #f0f9fc 58%, #eaf9f1 100%);
}
.campaign-label { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.campaign-label span { width: 27px; height: 4px; border-radius: 999px; background: var(--green); }
.hero-copy h1 { margin: 28px 0 18px; max-width: 630px; font-size: clamp(42px, 4.2vw, 58px); line-height: 0.99; letter-spacing: -0.05em; }
.hero-copy h1 span { display: block; margin-top: 7px; font-weight: 500; }
.hero-lead { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.66; }
.hero-lead strong { color: var(--ink); }
.offer-block { margin-top: 27px; }
.price-label { margin: 0; font-size: 12px; }
.price-label strong { display: block; margin-top: 3px; color: var(--blue); font-size: 30px; line-height: 1.1; }
.hero-actions { display: flex; align-items: center; gap: 15px; margin-top: 14px; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; color: var(--blue); font-size: 13px; font-weight: 800; text-underline-offset: 4px; }
.text-link:hover { color: var(--blue-deep); }

.module-panel { padding: 18px; border-radius: 22px; background: #edf3f5; box-shadow: inset 0 0 0 1px rgba(2, 127, 179, 0.08); }
.module-panel h2 { margin: 0 2px 11px; color: var(--blue); font-size: 14px; font-weight: 500; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.module-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.module-card:hover, .module-card:focus-visible { box-shadow: 0 10px 24px rgba(18, 56, 74, 0.16); transform: translateY(-3px); }
.module-front, .module-hover { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.module-front { align-items: center; padding: 12px; transform: translateY(0); }
.module-hover { align-items: flex-start; padding: 14%; color: white; text-align: left; transform: translateY(100%); }
.module-card:hover .module-front, .module-card:focus-visible .module-front { transform: translateY(-100%); }
.module-card:hover .module-hover, .module-card:focus-visible .module-hover { transform: translateY(0); }
.module-icon { display: grid; width: 58%; aspect-ratio: 1; place-items: center; margin-bottom: 9px; border-radius: 22%; color: white; }
.module-icon svg { width: 45%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.module-front strong, .module-hover strong { font-size: 11px; font-weight: 500; line-height: 1.25; }
.module-hover strong { color: white; font-size: 12px; line-height: 1.3; }
.module-hover span { margin-top: 8px; color: rgba(255,255,255,.92); font-size: 10px; font-weight: 700; line-height: 1.4; text-decoration: underline; text-underline-offset: 3px; }
.accounting { background: rgba(15,95,129,.15); }.accounting .module-icon, .accounting .module-hover { background: #0f5f81; }
.sales { background: rgba(46,179,236,.15); }.sales .module-icon, .sales .module-hover { background: #2eb3ec; }
.procurement { background: rgba(83,185,87,.15); }.procurement .module-icon, .procurement .module-hover { background: #53b957; }
.inventory { background: rgba(245,118,43,.15); }.inventory .module-icon, .inventory .module-hover { background: #f5762b; }
.hr { background: rgba(207,52,116,.15); }.hr .module-icon, .hr .module-hover { background: #cf3474; }
.production { background: rgba(154,125,227,.15); }.production .module-icon, .production .module-hover { background: #9a7de3; }
.approval { background: rgba(131,50,148,.15); }.approval .module-icon, .approval .module-hover { background: #833294; }
.integration { background: rgba(85,129,173,.15); }.integration .module-icon, .integration .module-hover { background: #5581ad; }
.customize { background: linear-gradient(135deg, rgba(2,127,179,.15), rgba(32,191,107,.15)); }.customize .module-icon, .customize .module-hover { background: linear-gradient(135deg, #027fb3, #20bf6b); }
.module-note { margin: 13px 3px 1px; color: var(--muted); font-size: 10px; font-weight: 600; line-height: 1.45; text-align: center; }
.price-note { margin: 0; padding: 13px 44px 15px; color: #7b8c94; background: white; font-size: 10px; text-align: center; }

.section { padding: 90px 0; }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading--left { margin-inline: 0; text-align: left; }
.eyebrow { display: inline-block; margin-bottom: 13px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.section-heading h2, .closing-shell h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.06; letter-spacing: -0.04em; }
.section-heading p { max-width: 680px; margin: 17px auto 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-heading--left p { margin-left: 0; }

.video-section { padding-top: 30px; }
.customer-story-heading { max-width: 900px; }
.customer-story-heading .eyebrow { font-weight: 400; }
.customer-brand-lockup {
  display: flex;
  width: min(820px, 100%);
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 10px auto 30px;
  padding: 20px 26px;
  border: 1px solid rgba(18, 56, 74, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 14px 42px rgba(18, 56, 74, .08);
  backdrop-filter: blur(12px);
}
.customer-logo { width: auto; max-width: 100%; object-fit: contain; }
.customer-logo--indopelita { width: 280px; height: 76px; }
.customer-ecosystem {
  display: flex;
  min-width: 0;
  align-items: center;
  padding-left: 30px;
  border-left: 1px solid rgba(18, 56, 74, .13);
}
.customer-ecosystem-logos { display: flex; align-items: center; gap: 24px; }
.customer-logo--pertamina { width: 142px; height: 34px; }
.customer-logo--danantara { width: 160px; height: 35px; }
.customer-story-heading h2 span { display: block; font-weight: 500; }
.video-frame { position: relative; max-width: 980px; margin: 0 auto; padding: 10px; border: 1px solid rgba(2,127,179,.12); border-radius: 25px; background: rgba(255,255,255,.72); box-shadow: 0 25px 80px rgba(18,56,74,.16); }
.video-frame video { position: relative; z-index: 1; width: 100%; aspect-ratio: 16/9; border-radius: 17px; background: #102f3e; object-fit: cover; }
.video-glow { position: absolute; inset: 12% 9% -9%; z-index: -1; border-radius: 50%; background: linear-gradient(90deg, rgba(2,127,179,.26), rgba(32,191,107,.2)); filter: blur(55px); }

.feature-showcase-section {
  overflow: hidden;
  padding: 84px 0 0;
  background: #fafafa;
}

.feature-showcase-section .section-heading { margin-bottom: 46px; }

.feature-showcase-root {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 728px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: 40px 0;
  color: #1e293b;
  background: #fafafa;
}

.feature-showcase-row {
  position: relative;
  display: flex;
  margin-bottom: 24px;
  white-space: nowrap;
}

.feature-showcase-row:last-child { margin-bottom: 0; }

.feature-showcase-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.feature-showcase-row.row-odd .feature-showcase-track {
  animation: feature-scroll-left 75s linear infinite;
}

.feature-showcase-row.row-even .feature-showcase-track {
  animation: feature-scroll-right 75s linear infinite;
}

.feature-showcase-row:hover .feature-showcase-track,
.feature-showcase-row:focus-within .feature-showcase-track {
  animation-play-state: paused;
}

@keyframes feature-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes feature-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.feature-card-container {
  display: block;
  width: 200px;
  height: 200px;
  flex: 0 0 200px;
  margin: 0 12px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: inherit;
  text-decoration: none;
  perspective: 1000px;
}

.feature-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .02);
  border-radius: 20px;
  background: color-mix(in srgb, var(--feature-color) 15%, #fff);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
  transition: box-shadow .4s cubic-bezier(.4, 0, .2, 1), transform .4s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.feature-card-container:hover .feature-card,
.feature-card-container:focus-visible .feature-card {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  transform: translateY(-8px);
}

.feature-card-front,
.feature-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 24px;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.feature-card-front { align-items: center; transform: translateY(0); }
.feature-card-hover { align-items: flex-start; color: white; background: var(--feature-color); transform: translateY(100%); }

.feature-card-container:hover .feature-card-front,
.feature-card-container:focus-visible .feature-card-front { transform: translateY(-100%); }

.feature-card-container:hover .feature-card-hover,
.feature-card-container:focus-visible .feature-card-hover { transform: translateY(0); }

.feature-card-icon-circle {
  display: flex;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 24px;
  color: white;
  background: var(--feature-color);
}

.feature-card-icon-circle svg,
.feature-card-icon-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.feature-card-icon-circle svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-title {
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
}

.feature-card-hover-title {
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  white-space: normal;
}

.feature-card-hover-desc {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.industry-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(32,191,107,.08), transparent 40%),
    linear-gradient(rgba(18,56,74,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,56,74,.025) 1px, transparent 1px),
    white;
  background-size: auto, 30px 30px, 30px 30px, auto;
}
.industry-section .section-heading { margin-bottom: 30px; }
.industry-wall {
  position: relative;
  display: grid;
  height: 430px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  overflow: hidden;
  padding: 2px 10px;
  mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
}
.industry-wall--mobile { display: none; }
.industry-lane, .industry-sequence { margin: 0; padding: 0; list-style: none; }
.industry-sequence[aria-hidden="true"] .industry-card { pointer-events: none; }
.industry-lane { display: flex; min-width: 0; flex-direction: column; animation: industry-lane-up 18s linear infinite; }
.industry-lane--down { animation-name: industry-lane-down; animation-duration: 20s; }
.industry-lane--late { animation-delay: -5s; }
.industry-lane:hover, .industry-lane:focus-within { animation-play-state: paused; }
.industry-sequence { display: grid; flex: none; gap: 16px; padding: 8px 0; }
.industry-card {
  --industry-color: var(--blue);
  position: relative;
  display: grid;
  min-height: 191px;
  grid-template-columns: 54px minmax(0,1fr);
  align-content: center;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--industry-color) 20%, white);
  border-radius: 19px 16px 21px 15px;
  background: color-mix(in srgb, var(--industry-color) 8%, white);
  box-shadow: 0 12px 32px rgba(18,56,74,.08);
  text-decoration: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.industry-card::after { position: absolute; inset: 6px; border: 1px dashed color-mix(in srgb, var(--industry-color) 18%, transparent); border-radius: 14px; content: ""; pointer-events: none; }
.industry-card:hover, .industry-card:focus-visible { z-index: 2; border-color: color-mix(in srgb, var(--industry-color) 48%, white); box-shadow: 0 20px 42px rgba(18,56,74,.14); transform: translateY(-3px); }
.industry-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 16px 13px 17px 12px; color: white; background: var(--industry-color); box-shadow: 0 10px 24px color-mix(in srgb, var(--industry-color) 22%, transparent); }
.industry-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.industry-copy { min-width: 0; }
.industry-copy strong { display: block; color: var(--ink); font-size: 17px; line-height: 1.25; letter-spacing: -.015em; }
.industry-copy > span { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; font-weight: 650; line-height: 1.5; }
.industry-cta { grid-column: 1 / -1; margin-top: 2px; color: var(--industry-color); font-size: 11px; font-weight: 800; opacity: 0; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease; }
.industry-card:hover .industry-cta, .industry-card:focus-visible .industry-cta { opacity: 1; transform: translateY(0); }
.industry-card--retail { --industry-color: #2eb3ec; }
.industry-card--manufacturing { --industry-color: #8f75dc; }
.industry-card--construction { --industry-color: #ee7432; }
.industry-card--services { --industry-color: #cf3474; }
.industry-card--mining { --industry-color: #0f6a8f; }
.industry-card--education { --industry-color: #54b857; }
@keyframes industry-lane-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes industry-lane-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.capabilities-section {
  overflow: hidden;
  padding-block: 64px 76px;
  background:
    linear-gradient(rgba(18,56,74,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,56,74,.022) 1px, transparent 1px),
    white;
  background-size: 30px 30px;
}
.capabilities-section .section-heading { margin-bottom: 28px; }
.capabilities-section .section-heading h2 { font-size: clamp(32px, 3.5vw, 46px); }
.capabilities-section .section-heading p { margin-top: 12px; font-size: 14px; line-height: 1.55; }
.erp-process-map { position: relative; display: grid; grid-template-columns: minmax(0,1.3fr) 72px minmax(280px,1.05fr) 72px minmax(0,.85fr); gap: 12px; min-height: 382px; align-items: stretch; overflow: hidden; padding: 18px; border: 1px solid rgba(2,127,179,.18); border-radius: 28px; background: rgba(255,255,255,.94); box-shadow: 0 26px 70px rgba(18,56,74,.13); }
.erp-process-map::before { position: absolute; inset: 0; background: radial-gradient(circle at 62% 48%, rgba(32,191,107,.09), transparent 24%), linear-gradient(rgba(18,56,74,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(18,56,74,.035) 1px, transparent 1px); background-size: auto, 22px 22px, 22px 22px; content: ""; pointer-events: none; }
.erp-process-map > * { position: relative; z-index: 1; }
.erp-zone { height: 100%; padding: 15px; border: 1px solid rgba(2,127,179,.16); border-radius: 20px 17px 22px 16px; background: rgba(249,253,254,.93); box-shadow: 0 10px 28px rgba(18,56,74,.07); }
.erp-zone::after { position: absolute; inset: 5px -4px -5px 4px; z-index: -1; border: 1px dashed rgba(2,127,179,.14); border-radius: inherit; content: ""; transform: rotate(-.35deg); }
.erp-zone-kicker { display: block; margin-bottom: 2px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.erp-zone h3 { margin: 0 0 13px; color: var(--ink); font-size: 19px; letter-spacing: -.02em; }
.erp-compact-modules { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.erp-compact-module { --module-color: var(--blue); display: flex; min-width: 0; min-height: 86px; align-items: center; gap: 9px; padding: 10px; border: 1px solid color-mix(in srgb, var(--module-color) 22%, white); border-radius: 13px 11px 14px 10px; background: rgba(255,255,255,.94); box-shadow: 0 7px 18px rgba(18,56,74,.055); transition: transform .22s ease, box-shadow .22s ease; }
.erp-compact-module:nth-child(even) { transform: rotate(.35deg); }
.erp-compact-module:nth-child(odd) { transform: rotate(-.25deg); }
.erp-compact-module:hover { box-shadow: 0 12px 26px rgba(18,56,74,.11); transform: translateY(-2px) rotate(0); }
.erp-process-card--sales { --module-color: #2eb3ec; }
.erp-process-card--procurement { --module-color: #54b857; }
.erp-process-card--operations { --module-color: #8f75dc; }
.erp-process-card--inventory { --module-color: #ee7432; }
.erp-process-card--hr { --module-color: #cf3474; }
.erp-process-card--finance { --module-color: #0f6a8f; }
.erp-compact-icon { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 10px; color: white; background: var(--module-color); }
.erp-compact-icon svg, .erp-compact-insights svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.erp-compact-module strong { display: block; overflow: hidden; color: var(--ink); font-size: 12px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.erp-compact-module div > span { display: block; margin-top: 5px; color: var(--muted); font-size: 8px; font-weight: 650; line-height: 1.3; }
.erp-zone--core { text-align: left; }
.erp-zone--core h3 { margin-bottom: 13px; }
.erp-compact-core { position: relative; display: flex; width: 120px; height: 120px; flex-direction: column; align-items: center; justify-content: center; border: 7px solid white; border-radius: 50%; background: linear-gradient(145deg, #f6fbfd, #fff 58%, #eefaf4); box-shadow: 0 0 0 1px rgba(2,127,179,.22), 0 16px 30px rgba(2,127,179,.16); }
.erp-compact-core::before, .erp-compact-core::after { position: absolute; border: 1px dashed rgba(2,127,179,.2); border-radius: 50%; content: ""; }
.erp-compact-core::before { inset: -13px; }
.erp-compact-core::after { inset: -22px; animation: erp-orbit-spin 24s linear infinite; }
@keyframes erp-orbit-spin { to { transform: rotate(360deg); } }
.erp-compact-core { margin-inline: auto; }
.erp-compact-core img { width: 96px; height: auto; }
.erp-core-controls { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; margin-top: 18px; }
.erp-core-controls span { padding: 5px 7px; border: 1px solid rgba(32,191,107,.2); border-radius: 8px; color: #18774a; background: #ecf9f2; font-size: 7px; font-weight: 800; white-space: nowrap; }
.erp-core-control--integration { color: white !important; background: var(--green) !important; box-shadow: 0 6px 14px rgba(32,191,107,.2); }
.erp-integration-branch { position: relative; width: 2px; height: 18px; margin: 3px auto 5px; background: repeating-linear-gradient(180deg, rgba(32,191,107,.65) 0 4px, transparent 4px 7px); }
.erp-integration-branch::after { position: absolute; left: 50%; bottom: -2px; width: 7px; height: 7px; border-right: 2px solid var(--green); border-bottom: 2px solid var(--green); content: ""; transform: translateX(-50%) rotate(45deg); }
.erp-integration-branch i { position: absolute; left: 50%; top: 0; width: 5px; height: 5px; border: 1px solid white; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 1px rgba(32,191,107,.28); animation: erp-integration-dot 2.4s linear infinite; }
.erp-integration-branch i:nth-child(2) { animation-delay: -.8s; }
.erp-integration-branch i:nth-child(3) { animation-delay: -1.6s; }
@keyframes erp-integration-dot { from { top: 0; transform: translate(-50%,-50%); } to { top: 100%; transform: translate(-50%,-50%); } }
.erp-integration-logos { display: grid; width: 100%; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 4px; padding: 7px; border: 1px dashed rgba(32,191,107,.48); border-radius: 11px 9px 12px 8px; background: rgba(237,250,243,.62); }
.erp-integration-logo { display: grid; min-width: 0; height: 33px; place-items: center; padding: 5px; border: 1px solid rgba(18,56,74,.1); border-radius: 7px; background: white; box-shadow: 0 4px 10px rgba(18,56,74,.045); }
.erp-integration-logo img { display: block; width: 100%; max-width: 42px; height: 21px; object-fit: contain; }
.erp-integration-logo--marketplace img { max-width: 25px; height: 23px; }
.erp-integration-logo--service { display: flex; gap: 3px; color: var(--blue); }
.erp-integration-logo--service svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.erp-integration-logo--service b, .erp-integration-logo--more { color: var(--muted); font-size: 6px; font-weight: 800; line-height: 1; }
.erp-zone--insight { display: flex; flex-direction: column; }
.erp-compact-insights { display: grid; gap: 10px; }
.erp-compact-insights article { display: flex; min-height: 72px; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid rgba(2,127,179,.13); border-radius: 13px 11px 15px 10px; background: white; box-shadow: 0 8px 20px rgba(18,56,74,.06); }
.erp-compact-insights svg { width: 36px; height: 36px; flex: 0 0 36px; padding: 8px; border-radius: 10px; color: white; background: var(--blue); }
.erp-compact-insight--ai svg { background: linear-gradient(145deg, var(--blue), var(--green)); }
.erp-compact-insights strong { display: block; color: var(--ink); font-size: 12px; }
.erp-compact-insights span { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; }
.erp-flow-connector { display: flex; min-width: 0; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.erp-flow-label { color: var(--muted); font-size: 8px; font-weight: 700; line-height: 1.35; text-align: center; }
.erp-flow-line { position: relative; display: block; width: 100%; height: 2px; background: repeating-linear-gradient(90deg, rgba(2,127,179,.45) 0 6px, transparent 6px 12px); }
.erp-flow-line::before { position: absolute; right: -1px; top: 50%; width: 12px; height: 12px; border-top: 2px solid var(--blue); border-right: 2px solid var(--blue); content: ""; transform: translateY(-50%) rotate(45deg); }
.erp-flow-line i { position: absolute; left: 0; top: 50%; width: 7px; height: 7px; border: 2px solid white; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 1px rgba(32,191,107,.3); animation: erp-dot-travel 3.2s linear infinite; }
.erp-flow-line i:nth-child(2) { animation-delay: -1.05s; }
.erp-flow-line i:nth-child(3) { animation-delay: -2.1s; }
@keyframes erp-dot-travel { from { left: 0; transform: translate(-50%,-50%); } to { left: 100%; transform: translate(-50%,-50%); } }

.faq-section { background: #f5f8f9; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 74px; align-items: start; }
.faq-item { border-bottom: 1px solid rgba(18,56,74,.16); }
.faq-item button { display: flex; width: 100%; min-height: 74px; align-items: center; justify-content: space-between; gap: 25px; padding: 20px 0; border: 0; color: var(--ink); background: transparent; font: 700 17px/1.4 var(--font); text-align: left; cursor: pointer; }
.faq-mark { position: relative; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; background: rgba(2,127,179,.09); }
.faq-mark::before, .faq-mark::after { position: absolute; left: 50%; top: 50%; width: 13px; height: 2px; background: var(--blue); content: ""; transform: translate(-50%, -50%); transition: transform .22s ease; }
.faq-mark::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] .faq-mark::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-item button[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-item button[aria-expanded="true"] + .faq-answer > p { padding: 0 48px 22px 0; }

.closing-section { padding: 90px 22px; background: white; }
.closing-shell { position: relative; width: min(1120px, 100%); margin: 0 auto; overflow: hidden; padding: 70px 60px; border-radius: 26px; color: white; background: linear-gradient(125deg, #0f5f81 0%, #027fb3 55%, #20a961 130%); box-shadow: 0 25px 70px rgba(2,127,179,.23); text-align: center; }
.closing-shell::before { position: absolute; inset: -80% 62% 15% -15%; border-radius: 50%; background: rgba(255,255,255,.1); content: ""; }
.closing-shell > * { position: relative; }
.eyebrow--light { color: rgba(255,255,255,.78); }
.closing-shell h2 { max-width: 760px; margin-inline: auto; }
.closing-shell p { max-width: 700px; margin: 18px auto 30px; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.7; }
.button--light { color: var(--ink); background: white; box-shadow: none; }
.button--light:hover { color: var(--ink); background: #edf9f2; }

.site-footer { padding: 36px 0 52px; background: white; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; color: #738790; font-size: 12px; }
.footer-inner img { width: 146px; height: auto; }
.footer-inner p { margin: 0; text-align: center; }

.sticky-cta { position: fixed; left: 18px; right: 18px; bottom: 16px; z-index: 35; display: none; min-height: 52px; align-items: center; justify-content: center; gap: 10px; border-radius: 8px; color: white; background: var(--green); box-shadow: 0 18px 42px rgba(18,56,74,.26); font-size: 14px; font-weight: 800; text-decoration: none; opacity: 0; pointer-events: none; transform: translateY(24px); transition: opacity .25s ease, transform .25s ease; }
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal--delay { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .18s; }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 42px 28px 30px; }
  .hero-copy h1 { max-width: 720px; font-size: 42px; }
  .module-panel { max-width: 520px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .industry-wall { gap: 12px; }
  .industry-card { min-height: 191px; grid-template-columns: 44px minmax(0,1fr); gap: 10px; padding: 20px; }
  .industry-icon { width: 44px; height: 44px; }
  .industry-icon svg { width: 23px; height: 23px; }
  .industry-copy strong { font-size: 14px; }
  .industry-copy > span { font-size: 9px; }
  .erp-process-map { grid-template-columns: minmax(0,1.3fr) 44px minmax(245px,1fr) 44px minmax(0,.85fr); gap: 8px; padding: 12px; }
  .erp-zone { padding: 12px; }
  .erp-compact-module { min-height: 82px; padding: 8px; }
  .erp-compact-icon { width: 30px; height: 30px; flex-basis: 30px; }
  .erp-compact-module strong { font-size: 10px; }
  .erp-compact-module div > span { font-size: 7px; }
  .erp-flow-label { font-size: 7px; }
  .erp-compact-core { width: 108px; height: 108px; }
  .erp-compact-core img { width: 86px; }
  .erp-core-controls { margin-top: 15px; }
  .erp-core-controls span { font-size: 7px; }
  .erp-compact-insights article { padding: 8px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 820px) {
  .capabilities-section { padding-block: 54px 70px; }
  .capabilities-section .section-heading { margin-bottom: 24px; }
  .capabilities-section .section-heading h2 { font-size: 31px; }
  .erp-process-map { grid-template-columns: 1fr; gap: 0; min-height: 0; padding: 10px; border-radius: 22px; }
  .erp-zone { padding: 13px; }
  .erp-compact-module { min-height: 76px; }
  .erp-compact-module strong { font-size: 11px; }
  .erp-compact-module div > span { font-size: 7.5px; }
  .erp-flow-connector { min-height: 74px; flex-direction: row; gap: 14px; }
  .erp-flow-label { width: 92px; font-size: 8px; text-align: right; }
  .erp-flow-line { width: 2px; height: 58px; background: repeating-linear-gradient(180deg, rgba(2,127,179,.45) 0 6px, transparent 6px 12px); }
  .erp-flow-line::before { left: 50%; right: auto; top: auto; bottom: -1px; transform: translateX(-50%) rotate(135deg); }
  .erp-flow-line i { left: 50%; top: 0; animation-name: erp-dot-travel-mobile; }
  .erp-zone--core { min-height: 330px; }
  .erp-compact-core { width: 120px; height: 120px; }
  .erp-compact-core img { width: 96px; }
  .erp-core-controls span { font-size: 8px; }
  .erp-compact-insights { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 7px; }
  .erp-compact-insights article { min-height: 104px; flex-direction: column; align-items: flex-start; }
  @keyframes erp-dot-travel-mobile { from { top: 0; transform: translate(-50%,-50%); } to { top: 100%; transform: translate(-50%,-50%); } }
}

@media (max-width: 767px) {
  .site-header { padding-inline: 16px; }
  .header-inner, .section-shell, .footer-inner { width: min(100% - 32px, 1120px); }
  .brand img { width: 132px; }
  .button--small span { display: none; }
  .button--small { width: 44px; min-width: 44px; min-height: 44px; padding: 0; }
  .hero-section { padding: 12px 12px 56px; }
  .hero-grid { gap: 30px; padding: 36px 24px 26px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-lead { font-size: 15px; }
  .section { padding: 68px 0; }
  .feature-showcase-section { padding-top: 68px; }
  .feature-showcase-root { min-height: 704px; padding-block: 28px; }
  .section-heading { margin-bottom: 32px; }
  .industry-section { padding-block: 68px; }
  .industry-section .section-heading { margin-bottom: 24px; }
  .industry-wall--desktop { display: none; }
  .industry-wall--mobile { display: grid; height: 470px; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; padding-inline: 0; }
  .industry-wall--mobile .industry-lane { animation-duration: 25s; }
  .industry-wall--mobile .industry-lane--down { animation-duration: 27s; }
  .industry-wall--mobile .industry-sequence { gap: 10px; padding-block: 5px; }
  .industry-wall--mobile .industry-card { min-height: 146px; grid-template-columns: 40px minmax(0,1fr); gap: 9px; padding: 17px 14px; }
  .industry-wall--mobile .industry-icon { width: 40px; height: 40px; border-radius: 12px; }
  .industry-wall--mobile .industry-icon svg { width: 21px; height: 21px; }
  .industry-wall--mobile .industry-copy strong { font-size: 13px; }
  .industry-wall--mobile .industry-copy > span { font-size: 9px; }
  .industry-wall--mobile .industry-cta { font-size: 9px; opacity: 1; transform: none; }
  .industry-mobile-summary { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .industry-mobile-summary span { display: grid; min-height: 90px; place-items: center; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: white; font-size: 12px; font-weight: 700; text-align: center; }
  .customer-brand-lockup { flex-direction: column; gap: 16px; padding: 18px; }
  .customer-logo--indopelita { width: 244px; height: 66px; }
  .customer-ecosystem { width: 100%; align-items: center; padding: 16px 0 0; border-top: 1px solid rgba(18, 56, 74, .13); border-left: 0; }
  .customer-ecosystem-logos { width: 100%; justify-content: center; gap: 18px; }
  .customer-logo--pertamina { width: 118px; height: 29px; }
  .customer-logo--danantara { width: 138px; height: 30px; }
  .closing-section { padding: 64px 12px; }
  .closing-shell { padding: 52px 24px; }
  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: 88px; }
}

@media (max-width: 520px) {
  .hero-copy h1 { font-size: 32px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-wrap: wrap; }
  .price-note { padding-inline: 22px; line-height: 1.5; }
  .erp-compact-module { min-height: 82px; }
  .video-frame { padding: 6px; border-radius: 18px; }
  .video-frame video { border-radius: 13px; }
  .faq-item button { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .feature-showcase-root { gap: 24px; overflow-x: auto; scroll-snap-type: x proximity; }
  .feature-showcase-row { width: max-content; margin-bottom: 0; }
  .feature-showcase-track { animation: none !important; transform: none !important; }
  .feature-card-container { scroll-snap-align: start; }
  .erp-flow-line i, .erp-compact-core::after { animation: none !important; }
  .industry-wall { height: auto; grid-template-columns: repeat(3, minmax(0,1fr)); overflow: visible; mask-image: none; }
  .industry-wall--desktop { display: grid; }
  .industry-wall--mobile { display: none; }
  .industry-lane { display: contents; animation: none !important; }
  .industry-sequence { display: contents; }
  .industry-sequence[aria-hidden="true"] { display: none; }
  .industry-card { min-height: 170px; }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .industry-wall--desktop { display: none; }
  .industry-wall--mobile { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .industry-wall--mobile .industry-lane { display: contents; }
  .industry-wall--mobile .industry-card { min-height: 146px; }
}

@media (max-width: 359px) {
  .erp-compact-modules { grid-template-columns: 1fr; }
  .erp-compact-module { min-height: 68px; }
}
