:root {
  --erp-orange: #ff6a00;
  --erp-orange-dark: #e85d00;
  --erp-black: #15171a;
  --erp-ink: #262b33;
  --erp-muted: #6c727f;
  --erp-line: #eceff3;
  --erp-bg: #fff8f3;
  --erp-card: #ffffff;
  --erp-radius: 24px;
  --erp-shadow: 0 18px 50px rgba(21, 23, 26, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--erp-ink);
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.text-orange {
  color: var(--erp-orange);
}

.fw-heavy {
  font-weight: 950;
}

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

.section-soft {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 106, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--erp-orange);
  font-size: 1.25rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--erp-orange);
}

.section-title {
  color: var(--erp-black);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 18px;
}

.section-desc {
  color: var(--erp-muted);
  font-size: 1.24rem;
  max-width: 780px;
}

.btn-erp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--erp-orange), var(--erp-orange-dark));
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.28);
  font-weight: 800;
  padding: 14px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-erp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.34);
}

.btn-erp-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(21, 23, 26, 0.12);
  border-radius: 999px;
  color: var(--erp-black);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  padding: 13px 22px;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-erp-outline:hover {
  color: var(--erp-orange);
  border-color: rgba(255, 106, 0, 0.35);
  transform: translateY(-2px);
}

.navbar-erp {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(236, 239, 243, 0.78);
  transition: box-shadow 0.2s ease, padding 0.2s ease;
}

.navbar-erp.is-scrolled {
  padding: 10px 0;
  box-shadow: 0 12px 34px rgba(21, 23, 26, 0.08);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--erp-black);
}

.brand-logo img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
}

.brand-logo span {
  display: block;
  font-size: 1.15rem;
  line-height: 1.15;
}

.brand-logo small {
  display: block;
  color: var(--erp-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.navbar-erp .nav-link {
  color: #3e434b;
  font-weight: 800;
  padding: 10px 14px;
}

.navbar-erp .nav-link:hover,
.navbar-erp .nav-link.active {
  color: var(--erp-orange);
}

.hero {
  position: relative;
  padding: 132px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 106, 0, 0.15), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #fff8f3 52%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 23, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 26, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--erp-orange);
  background: #fff;
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.08);
  font-weight: 900;
  padding: 8px 14px;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--erp-black);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-subtitle {
  color: #4f5661;
  font-size: clamp(1.2rem, 2vw, 1.42rem);
  max-width: 680px;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333943;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  padding: 8px 12px;
}

.hero-carousel-wrap {
  position: relative;
}

.hero-carousel-card {
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--erp-shadow);
}

.hero-carousel-card img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-slide-panel {
  min-height: 430px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), transparent 48%),
    #15171a;
  color: #fff;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.mini-dashboard .tile {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.mini-dashboard strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.mini-dashboard span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 46px;
  height: 46px;
  top: auto;
  bottom: 18px;
  border-radius: 50%;
  background: rgba(21, 23, 26, 0.78);
  opacity: 1;
}

.carousel-control-prev {
  left: 18px;
}

.carousel-control-next {
  left: 74px;
  right: auto;
}

.pain-intro {
  border-left: 5px solid var(--erp-orange);
  background: #fff;
  border-radius: 0 22px 22px 0;
  box-shadow: 0 16px 36px rgba(21, 23, 26, 0.06);
  padding: 26px;
}

.pain-card,
.feature-card,
.why-card,
.process-card {
  height: 100%;
  border: 1px solid var(--erp-line);
  border-radius: var(--erp-radius);
  background: var(--erp-card);
  box-shadow: 0 16px 40px rgba(21, 23, 26, 0.055);
  padding: 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pain-card:hover,
.feature-card:hover,
.why-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.28);
  box-shadow: 0 22px 56px rgba(21, 23, 26, 0.1);
}

.pain-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: var(--erp-black);
  font-weight: 900;
  margin-bottom: 18px;
}

.card-title-erp {
  color: var(--erp-black);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 12px;
}

.card-text-erp {
  color: var(--erp-muted);
  font-size: 1.16rem;
  margin-bottom: 0;
}

.solution-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.flow-item {
  position: relative;
  border: 1px solid rgba(255, 106, 0, 0.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(21, 23, 26, 0.055);
  padding: 24px 14px;
  text-align: center;
}

.flow-item:not(:last-child)::after {
  content: "\F138";
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--erp-orange);
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
}

.flow-icon,
.feature-icon,
.why-icon,
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  color: var(--erp-orange);
  background: rgba(255, 106, 0, 0.1);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.flow-item strong {
  display: block;
  color: var(--erp-black);
  font-weight: 900;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: -34px;
  top: -34px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.08);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(21, 23, 26, 0.09);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(21, 23, 26, 0.045);
  color: #343a43;
  font-weight: 850;
  padding: 12px 17px;
}

.industry-pill i {
  color: var(--erp-orange);
}

.why-card {
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.08), transparent 42%),
    #fff;
}

.process-card {
  position: relative;
}

.process-step {
  color: #fff;
  background: var(--erp-orange);
  font-size: 1.1rem;
  font-weight: 900;
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #15171a 0%, #252932 58%, #ff6a00 160%);
  box-shadow: var(--erp-shadow);
  color: #fff;
  padding: 58px;
}

.cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -110px;
  border: 34px solid rgba(255, 106, 0, 0.24);
  border-radius: 50%;
}

.cta h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  line-height: 1.22;
  margin-bottom: 18px;
}

.cta p,
.cta .cta-actions {
  position: relative;
  z-index: 1;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin-bottom: 28px;
}

.feature-hero .hero-subtitle {
  max-width: 760px;
}

.hero-helper {
  color: var(--erp-muted);
  font-size: 1.14rem;
  margin: 18px 0 0;
}

.feature-hero-panel {
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 106, 0, 0.14), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #fff8f3 100%);
  box-shadow: var(--erp-shadow);
  padding: 30px;
}

.feature-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.feature-hero-top span {
  color: var(--erp-muted);
  font-weight: 800;
}

.feature-hero-top strong {
  color: var(--erp-orange);
  background: #fff;
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
}

.feature-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-hero-grid div {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(21, 23, 26, 0.055);
  color: var(--erp-black);
  font-weight: 900;
}

.feature-hero-grid i {
  color: var(--erp-orange);
  font-size: 1.55rem;
}

.feature-hero-note {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  border-radius: 22px;
  color: #fff;
  background: var(--erp-black);
  padding: 18px;
}

.feature-hero-note i {
  color: var(--erp-orange);
  font-size: 1.25rem;
  line-height: 1.4;
}

.feature-flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-flow-item {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--erp-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(21, 23, 26, 0.055);
  padding: 24px;
}

.feature-flow-item:not(:last-child)::after {
  content: "\F138";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--erp-orange);
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
}

.feature-flow-item h3 {
  color: var(--erp-black);
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.feature-flow-item p {
  color: var(--erp-muted);
  font-size: 1.14rem;
  margin-bottom: 0;
}

.feature-module-list {
  display: grid;
  gap: 28px;
}

.feature-module {
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--erp-shadow);
  padding: 34px;
}

.feature-module-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.feature-module-number {
  display: inline-flex;
  color: var(--erp-orange);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.feature-module h3 {
  color: var(--erp-black);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 950;
  line-height: 1.25;
  margin-bottom: 8px;
}

.feature-module-head p,
.feature-module-intro {
  color: var(--erp-muted);
  font-size: 1.16rem;
  margin-bottom: 0;
}

.feature-module-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--erp-orange), var(--erp-orange-dark));
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.24);
  font-size: 2rem;
}

.feature-module-intro {
  max-width: 980px;
  margin-bottom: 24px;
}

.module-tagline {
  display: inline-flex;
  color: var(--erp-orange);
  background: rgba(255, 106, 0, 0.1);
  border-radius: 999px;
  font-weight: 900;
  padding: 8px 14px;
  margin-bottom: 22px;
}

.module-box {
  height: 100%;
  border: 1px solid var(--erp-line);
  border-radius: 24px;
  background: #fbfcfd;
  padding: 24px;
}

.module-box-orange {
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.08), transparent 42%),
    #fff;
}

.module-box h4 {
  color: var(--erp-black);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.module-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-box li {
  position: relative;
  color: #424954;
  padding-left: 22px;
}

.module-box li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--erp-orange);
}

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

.module-chip-list span {
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 999px;
  color: #343a43;
  background: #fff;
  font-weight: 800;
  padding: 8px 12px;
}

.module-note {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  border-left: 5px solid var(--erp-orange);
  border-radius: 0 22px 22px 0;
  background: #fff8f3;
  padding: 20px 22px;
}

.module-note i {
  color: var(--erp-orange);
  font-size: 1.4rem;
  line-height: 1.4;
}

.module-note p {
  color: #454b55;
  margin-bottom: 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--erp-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--erp-shadow);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--erp-line);
  padding: 18px 22px;
  vertical-align: top;
}

.comparison-table thead th {
  color: #fff;
  background: var(--erp-black);
  font-weight: 900;
}

.comparison-table tbody th {
  color: var(--erp-black);
  font-weight: 900;
}

.comparison-table tbody td {
  color: #515863;
}

.comparison-table tbody td:last-child {
  color: var(--erp-black);
  font-weight: 800;
}

.comparison-table tbody td:last-child i {
  color: var(--erp-orange);
  margin-right: 8px;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.intro-advice-card {
  height: 100%;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 106, 0, 0.32), transparent 28%),
    linear-gradient(135deg, #15171a 0%, #2a2f38 100%);
  box-shadow: var(--erp-shadow);
  padding: 34px;
}

.intro-advice-card strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 950;
  line-height: 1.35;
  margin-bottom: 12px;
}

.intro-advice-card p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 22px;
}

.process-hero .hero-subtitle {
  max-width: 760px;
}

.process-hero-title-accent {
  display: inline-block;
  color: var(--erp-orange);
  font-size: 1.18em;
}

.process-hero-panel {
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 106, 0, 0.18), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #fff8f3 100%);
  box-shadow: var(--erp-shadow);
  padding: 30px;
}

.process-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.process-hero-top span {
  color: var(--erp-muted);
  font-weight: 800;
}

.process-hero-top strong {
  color: #fff;
  background: var(--erp-black);
  border-radius: 999px;
  padding: 8px 14px;
}

.process-hero-track {
  display: grid;
  gap: 12px;
}

.process-hero-track div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(21, 23, 26, 0.055);
  padding: 16px;
}

.process-hero-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: var(--erp-orange);
  font-weight: 900;
}

.process-hero-track strong {
  color: var(--erp-black);
  font-weight: 900;
}

.process-hero-track small {
  color: var(--erp-muted);
  font-weight: 800;
}

.belief-card,
.process-route-card,
.process-scope-card,
.process-prep-card,
.process-key-card {
  height: 100%;
  border: 1px solid var(--erp-line);
  border-radius: var(--erp-radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(21, 23, 26, 0.055);
  padding: 26px;
}

.belief-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.08), transparent 46%),
    #fff;
}

.belief-card i {
  color: var(--erp-orange);
  font-size: 2rem;
}

.belief-card strong {
  display: block;
  color: var(--erp-black);
  font-size: 1.35rem;
  font-weight: 950;
}

.belief-card span {
  color: var(--erp-muted);
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 30px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 42px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.12), rgba(255, 106, 0, 0.72), rgba(255, 106, 0, 0.12));
}

.process-step-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
}

.process-step-marker {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.process-step-marker span,
.process-step-marker i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-step-marker span {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  color: #fff;
  background: var(--erp-orange);
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.28);
  font-weight: 950;
}

.process-step-marker i {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 16px;
  color: var(--erp-orange);
  background: #fff;
  font-size: 1.25rem;
}

.process-step-content {
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--erp-shadow);
  padding: 34px;
}

.process-step-head span,
.process-route-number {
  display: inline-flex;
  color: var(--erp-orange);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.process-step-head h3 {
  color: var(--erp-black);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 950;
  line-height: 1.25;
  margin-bottom: 8px;
}

.process-step-head p,
.process-step-intro,
.process-route-card p,
.process-scope-card p,
.process-key-card p {
  color: var(--erp-muted);
  font-size: 1.16rem;
}

.process-step-intro {
  max-width: 980px;
  margin-bottom: 24px;
}

.process-list-box {
  height: 100%;
  border: 1px solid var(--erp-line);
  border-radius: 24px;
  background: #fbfcfd;
  padding: 24px;
}

.process-list-box-soft {
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.08), transparent 42%),
    #fff;
}

.process-list-box h4,
.process-prep-card h3 {
  color: var(--erp-black);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.process-check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-check-list li {
  position: relative;
  color: #424954;
  padding-left: 24px;
}

.process-check-list li::before {
  content: "\F26A";
  position: absolute;
  top: 0.05em;
  left: 0;
  color: var(--erp-orange);
  font-family: "bootstrap-icons";
}

.process-route-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.process-route-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.28);
  box-shadow: 0 22px 56px rgba(21, 23, 26, 0.1);
}

.process-route-card h3,
.process-scope-card h3,
.process-key-card h3 {
  color: var(--erp-black);
  font-size: 1.24rem;
  font-weight: 950;
  line-height: 1.4;
  margin-bottom: 10px;
}

.process-route-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.process-route-modules span {
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 999px;
  color: #343a43;
  background: #fff8f3;
  font-weight: 800;
  padding: 8px 12px;
}

.process-scope-card {
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.08), transparent 42%),
    #fff;
}

.process-scope-card strong {
  display: block;
  color: var(--erp-orange);
  font-weight: 900;
  margin-top: 18px;
  margin-bottom: 6px;
}

.process-scope-card span {
  color: #424954;
}

.process-prep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-key-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: var(--erp-black);
  font-weight: 950;
  margin-bottom: 18px;
}

.faq-hero-panel {
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 106, 0, 0.18), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #fff8f3 100%);
  box-shadow: var(--erp-shadow);
  padding: 30px;
}

.faq-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.faq-hero-top span {
  color: var(--erp-muted);
  font-weight: 800;
}

.faq-hero-top strong {
  color: #fff;
  background: var(--erp-black);
  border-radius: 999px;
  padding: 8px 14px;
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-hero-grid div {
  min-height: 132px;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(21, 23, 26, 0.055);
  padding: 20px;
}

.faq-hero-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--erp-orange);
  background: rgba(255, 106, 0, 0.1);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.faq-hero-grid span {
  display: block;
  color: var(--erp-black);
  font-weight: 900;
  line-height: 1.45;
}

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

.faq-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) 1fr;
  gap: 24px;
  border: 1px solid var(--erp-line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.055), transparent 38%),
    #fff;
  box-shadow: 0 16px 40px rgba(21, 23, 26, 0.055);
  padding: 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.28);
  box-shadow: 0 22px 56px rgba(21, 23, 26, 0.1);
}

.faq-question span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: var(--erp-orange);
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.24);
  font-weight: 950;
  margin-bottom: 16px;
}

.faq-question h3 {
  color: var(--erp-black);
  font-size: clamp(1.24rem, 2.2vw, 1.65rem);
  font-weight: 950;
  line-height: 1.36;
  margin-bottom: 0;
}

.faq-answer {
  border-left: 4px solid rgba(255, 106, 0, 0.22);
  padding-left: 24px;
}

.faq-answer p {
  color: #4f5661;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-answer p:first-child {
  color: var(--erp-black);
  font-weight: 900;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-contact-card {
  height: 100%;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 106, 0, 0.32), transparent 28%),
    linear-gradient(135deg, #15171a 0%, #2a2f38 100%);
  box-shadow: var(--erp-shadow);
  padding: 34px;
}

.faq-contact-card strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 950;
  line-height: 1.35;
  margin-bottom: 12px;
}

.faq-contact-card p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 22px;
}

.cta-helper {
  margin-top: 16px;
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 106, 0, 0.12);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 106, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fff8f3 100%);
  color: #4f5661;
  padding: 48px 0 24px;
}

.site-footer::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -150px;
  border: 34px solid rgba(255, 106, 0, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.footer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(21, 23, 26, 0.07);
  padding: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--erp-black);
  font-weight: 950;
}

.footer-logo img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.16);
}

.footer-logo span {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.footer-logo small {
  display: block;
  color: var(--erp-orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-top: 5px;
}

.footer-brand p {
  max-width: 620px;
  color: #4f5661;
  font-size: 1.16rem;
  margin: 0;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tags span {
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 999px;
  color: #343a43;
  background: #fff;
  font-weight: 850;
  padding: 8px 12px;
}

.footer-company-card {
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 106, 0, 0.34), transparent 32%),
    linear-gradient(135deg, #15171a 0%, #2a2f38 100%);
  box-shadow: 0 18px 42px rgba(21, 23, 26, 0.12);
  padding: 28px;
}

.footer-card-kicker {
  display: inline-flex;
  color: #fff;
  background: rgba(255, 106, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.footer-company-card h2 {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
  margin-bottom: 18px;
}

.footer-company-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-company-card li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-company-card i {
  flex: 0 0 auto;
  color: var(--erp-orange);
  font-size: 1.1rem;
  line-height: 1.7;
}

.footer-company-card a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-company-card a:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #7a808a;
  font-size: 0.95rem;
  padding-top: 18px;
}

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

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

@media (max-width: 991.98px) {
  .hero {
    padding-top: 112px;
  }

  .hero-carousel-card img,
  .hero-slide-panel {
    min-height: 330px;
  }

  .solution-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-prep-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .flow-item:not(:last-child)::after,
  .feature-flow-item:not(:last-child)::after {
    display: none;
  }
}

@media (min-width: 1200px) {
  .title-nowrap-xl {
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 68px 0;
  }

  .brand-logo span {
    font-size: 1rem;
  }

  .hero {
    padding: 104px 0 62px;
  }

  .hero-points span {
    width: 100%;
  }

  .solution-flow {
    grid-template-columns: 1fr;
  }

  .mini-dashboard {
    grid-template-columns: 1fr;
  }

  .feature-hero-panel,
  .feature-module,
  .intro-advice-card,
  .faq-hero-panel,
  .faq-card,
  .faq-contact-card,
  .process-hero-panel,
  .process-step-content {
    padding: 24px;
    border-radius: 26px;
  }

  .feature-hero-top,
  .feature-module-head,
  .faq-hero-top,
  .module-note,
  .process-hero-top {
    flex-direction: column;
  }

  .feature-hero-grid,
  .feature-flow-list,
  .faq-hero-grid,
  .process-prep-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-answer {
    border-left: 0;
    border-top: 4px solid rgba(255, 106, 0, 0.22);
    padding-top: 20px;
    padding-left: 0;
  }

  .process-hero-track div {
    grid-template-columns: auto 1fr;
  }

  .process-hero-track small {
    grid-column: 2;
  }

  .footer-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .footer-logo img {
    width: 54px;
    height: 54px;
  }

  .footer-logo span {
    font-size: 1.22rem;
  }

  .footer-company-card {
    padding: 24px;
    border-radius: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step-card {
    grid-template-columns: 1fr;
  }

  .process-step-marker {
    display: flex;
    justify-content: flex-start;
  }

  .cta {
    padding: 34px 24px;
    border-radius: 26px;
  }
}
