:root {
  --bg: #090d18;
  --surface: #111a2b;
  --surface-2: #18233a;
  --text: #e9eefb;
  --text-dim: #9fb0cc;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #ffc329;
  --blue: #185dff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.01em;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 1100;
  background: linear-gradient(90deg, #ffc329, #185dff);
  box-shadow: 0 2px 10px rgba(24, 93, 255, 0.5);
}

.scroll-accent-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.accent-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(54px);
  opacity: 0.22;
  will-change: transform;
  transition: transform 0.35s ease-out;
}

.orb-blue {
  top: 14%;
  right: 7%;
  background: radial-gradient(circle, rgba(24, 93, 255, 0.95), rgba(24, 93, 255, 0));
}

.orb-gold {
  bottom: 10%;
  left: 6%;
  background: radial-gradient(circle, rgba(255, 195, 41, 0.95), rgba(255, 195, 41, 0));
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(800px 500px at 85% -10%, rgba(24, 93, 255, 0.2), transparent 70%),
    radial-gradient(700px 400px at -10% 25%, rgba(255, 195, 41, 0.12), transparent 70%),
    linear-gradient(180deg, #090d18, #0b1020 45%, #080d19);
}

.glass-nav {
  background: rgba(9, 13, 24, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.logo-only {
  height: 46px;
  width: auto;
  border-radius: 10px;
  padding: 3px;
}

.nav-toggle {
  border: 1px solid var(--line);
}

.nav-toggle .navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: var(--text-dim) !important;
}

.nav-link:hover {
  color: #fff !important;
}

.quick-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 1020;
  background: rgba(9, 13, 24, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.quick-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  scrollbar-width: thin;
}

.quick-link {
  flex: 0 0 auto;
  text-decoration: none;
  color: #bbcae6;
  border: 1px solid rgba(24, 93, 255, 0.4);
  background: rgba(24, 93, 255, 0.1);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.quick-link:hover,
.quick-link.active {
  color: #111;
  background: #ffc329;
  border-color: #ffc329;
}

.scroll-stepper {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1035;
  width: 56px;
  padding: 0.55rem 0.3rem;
  border: 1px solid rgba(24, 93, 255, 0.45);
  border-radius: 18px;
  background: rgba(9, 13, 24, 0.7);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}

.stepper-progress {
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.stepper-progress span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #185dff, #ffc329);
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: #111a2d;
  z-index: 1;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.step-dot span {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  color: #e4ecff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.step-dot:hover,
.step-dot.active {
  transform: scale(1.2);
  border-color: #ffc329;
  background: #ffc329;
  box-shadow: 0 0 0 4px rgba(255, 195, 41, 0.2), 0 0 16px rgba(255, 195, 41, 0.42);
}

.step-dot:hover span,
.step-dot.active span {
  opacity: 1;
}

.hero {
  padding: 9rem 0 5rem;
}

.hero-chip {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid rgba(24, 93, 255, 0.45);
  color: #dbe7ff;
  background: rgba(24, 93, 255, 0.15);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 195, 41, 0.2);
}

h1 {
  margin-top: 1.2rem;
  line-height: 1.08;
  font-size: clamp(2rem, 5vw, 4rem);
  text-wrap: balance;
  color: #ffffff;
}

.hero-accent-word {
  color: #ffc329;
}

.lead-copy {
  color: var(--text-dim);
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-metrics {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

.dashboard-frame {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  background:
    radial-gradient(240px 140px at 100% 0%, rgba(24, 93, 255, 0.2), transparent 70%),
    linear-gradient(145deg, #111a2c, #0f182a);
  box-shadow: 0 24px 48px rgba(4, 8, 16, 0.58);
}

.hero-contact-card {
  border: 1px solid rgba(24, 93, 255, 0.42);
  border-radius: 20px;
  padding: 0.95rem;
  background:
    radial-gradient(240px 120px at 100% 0%, rgba(24, 93, 255, 0.22), transparent 72%),
    linear-gradient(145deg, #111a2c, #0f182a);
  box-shadow: 0 24px 48px rgba(4, 8, 16, 0.58);
}

.hero-contact-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.55rem;
}

.hero-contact-chip {
  border: 1px solid rgba(255, 195, 41, 0.58);
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  color: #ffe8aa;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-contact-note {
  color: #9bb6df;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-contact-card h3 {
  margin: 0.65rem 0 0.7rem;
  font-size: 1.18rem;
}

.hero-top-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hero-google-field {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.32rem 0.5rem 0.42rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-google-field:focus-within {
  border-color: rgba(65, 139, 255, 0.88);
  box-shadow: 0 0 0 2px rgba(65, 139, 255, 0.18);
}

.hero-google-field.full {
  grid-column: span 2;
}

.hero-google-field label {
  display: block;
  color: #9db8e2;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.hero-google-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #eef5ff;
  font-size: 0.82rem;
}

.hero-google-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #eef5ff;
  font-size: 0.82rem;
  appearance: none;
  padding-right: 1.2rem;
  color-scheme: dark;
}

.hero-google-field select option {
  background: #0f1a2e;
  color: #eaf2ff;
}

.hero-google-field select:invalid {
  color: #7d98c3;
}

.hero-google-field input::placeholder {
  color: #7d98c3;
}

.hero-contact-btn {
  grid-column: span 2;
  border: 1px solid rgba(255, 195, 41, 0.7);
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(255, 195, 41, 0.26), rgba(255, 195, 41, 0.08));
  color: #ffe8aa;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.58rem;
}

.hero-form-status {
  grid-column: span 2;
  min-height: 17px;
  color: #9cb5df;
  font-size: 0.72rem;
}

.hero-form-status.success {
  color: #71e8a6;
}

.hero-form-status.error {
  color: #ff9ea2;
}

.hero-top-form.was-validated .hero-google-field input:invalid {
  color: #ffd3d7;
}

.product-visual-section {
  padding-top: 2.4rem;
  padding-bottom: 1.6rem;
}

.product-visual-card {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(24, 93, 255, 0.45);
  border-radius: 22px;
  padding: 0.5rem;
  background:
    radial-gradient(300px 180px at 100% 0%, rgba(24, 93, 255, 0.18), transparent 70%),
    radial-gradient(240px 140px at 0% 100%, rgba(255, 195, 41, 0.12), transparent 70%),
    linear-gradient(145deg, #0d1527, #0f1a30);
  box-shadow: 0 24px 46px rgba(4, 8, 16, 0.58);
}

.product-visual-image {
  width: 100%;
  display: block;
  border-radius: 16px;
  animation: floatY 3.8s ease-in-out infinite;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.dash-badge {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4ecff;
  background: rgba(24, 93, 255, 0.2);
  border: 1px solid #185dff;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-weight: 700;
  position: relative;
}

.dash-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffc329;
  display: inline-block;
  margin-right: 0.45rem;
  box-shadow: 0 0 0 0 rgba(255, 195, 41, 0.4);
  animation: pulse-live 1.8s infinite;
}

.dash-pill {
  font-size: 0.75rem;
  color: #111;
  background: #ffc329;
  border-radius: 999px;
  padding: 0.24rem 0.55rem;
  font-weight: 700;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.dash-card {
  border: 1px solid rgba(24, 93, 255, 0.35);
  border-radius: 14px;
  background: rgba(15, 26, 46, 0.88);
  padding: 0.75rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.dash-card.flash-up {
  border-color: #185dff;
  box-shadow: 0 0 0 2px rgba(24, 93, 255, 0.2);
}

.dash-card.flash-down {
  border-color: #ffc329;
  box-shadow: 0 0 0 2px rgba(255, 195, 41, 0.2);
}

.dash-card small {
  color: #9fb2d4;
  display: block;
  margin-bottom: 0.3rem;
}

.dash-card strong {
  display: block;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1;
}

.trend {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.3rem;
  display: inline-block;
}

.trend.up {
  color: #ffc329;
}

.trend.down {
  color: #8db4ff;
}

.trend i {
  margin-left: 0.18rem;
}

.chart-card {
  grid-column: span 2;
}

.bars {
  margin-top: 0.5rem;
  height: 78px;
  display: flex;
  gap: 0.4rem;
  align-items: flex-end;
}

.bars span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #185dff, #ffc329);
  animation: barFloat 3s ease-in-out infinite;
}

.bars span:nth-child(2) { animation-delay: 0.15s; }
.bars span:nth-child(3) { animation-delay: 0.3s; }
.bars span:nth-child(4) { animation-delay: 0.45s; }
.bars span:nth-child(5) { animation-delay: 0.6s; }
.bars span:nth-child(6) { animation-delay: 0.75s; }

.list-card ul {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.list-card li {
  font-size: 0.8rem;
  color: #cfd9ef;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.list-card i {
  color: #ffc329;
}

.kpi-section {
  padding: 0 0 2.2rem;
}

.metric-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  position: relative;
  overflow: hidden;
}

.metric-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(24, 93, 255, 0.8), rgba(255, 195, 41, 0.8), transparent);
}

.metric-item strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
}

.metric-item span {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.challenge-section {
  padding-top: 1.1rem;
}

.challenge-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  background:
    radial-gradient(180px 110px at 0% 0%, rgba(255, 195, 41, 0.08), transparent 70%),
    linear-gradient(155deg, #121b2f, #101a2d);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.challenge-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 195, 41, 0.85), rgba(24, 93, 255, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
  border-color: #ffc329;
  box-shadow: 0 14px 32px rgba(4, 8, 16, 0.45);
}

.challenge-card:hover::after {
  opacity: 1;
}

.challenge-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.55rem;
  color: #fff;
}

.challenge-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.58;
}

.solution-section {
  padding-top: 0;
}

.solution-layout {
  align-items: stretch;
}

.solution-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(24, 93, 255, 0.16), transparent 65%),
    radial-gradient(320px 180px at 0% 100%, rgba(255, 195, 41, 0.12), transparent 65%),
    linear-gradient(145deg, #101b2f, #0f182b);
  box-shadow: 0 18px 40px rgba(4, 8, 16, 0.5);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.solution-item {
  border: 1px solid rgba(24, 93, 255, 0.4);
  border-radius: 14px;
  padding: 0.85rem;
  background: rgba(12, 22, 40, 0.82);
  color: #e8efff;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 64px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.solution-item i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f1220;
  background: #ffc329;
  flex-shrink: 0;
}

.solution-item:hover {
  transform: translateY(-3px);
  border-color: #ffc329;
  box-shadow: 0 10px 24px rgba(255, 195, 41, 0.16);
}

.sales-module-section {
  padding-top: 1.1rem;
}

.sales-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-card {
  border: 1px solid rgba(24, 93, 255, 0.45);
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(155deg, #111a2d, #101a2e);
  position: relative;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 195, 41, 0.9), rgba(24, 93, 255, 0.9), transparent);
}

.step-no {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffc329;
  color: #111;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.process-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
}

.process-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.sales-feature-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.05rem;
  background:
    radial-gradient(200px 110px at 100% 0%, rgba(24, 93, 255, 0.12), transparent 70%),
    linear-gradient(155deg, #111a2e, #0f182b);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sales-feature-card:hover {
  transform: translateY(-4px);
  border-color: #ffc329;
  box-shadow: 0 12px 26px rgba(255, 195, 41, 0.14);
}

.sales-feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.sales-feature-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.56;
}

.inv-proc-section {
  padding-top: 1rem;
}

.inv-proc-panel {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  background:
    radial-gradient(260px 140px at 100% 0%, rgba(24, 93, 255, 0.14), transparent 70%),
    radial-gradient(200px 120px at 0% 100%, rgba(255, 195, 41, 0.1), transparent 70%),
    linear-gradient(155deg, #111a2d, #0f182b);
  box-shadow: 0 14px 34px rgba(4, 8, 16, 0.45);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.panel-head i {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffc329;
  color: #101217;
  font-size: 1rem;
}

.panel-head h3 {
  margin: 0;
  font-size: 1.08rem;
}

.panel-points {
  display: grid;
  gap: 0.75rem;
}

.panel-point {
  border: 1px solid rgba(24, 93, 255, 0.38);
  border-radius: 14px;
  padding: 0.8rem 0.85rem;
  background: rgba(12, 22, 40, 0.75);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.panel-point:hover {
  border-color: #ffc329;
  transform: translateY(-2px);
}

.panel-point h4 {
  margin: 0 0 0.35rem;
  font-size: 0.93rem;
  color: #f2f6ff;
}

.panel-point p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.89rem;
  line-height: 1.55;
}

.accounting-section {
  padding-top: 1rem;
}

.accounting-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.25rem;
  background:
    radial-gradient(420px 220px at 0% 0%, rgba(24, 93, 255, 0.14), transparent 70%),
    radial-gradient(330px 190px at 100% 100%, rgba(255, 195, 41, 0.12), transparent 70%),
    linear-gradient(150deg, #101a2e, #0e1729);
  box-shadow: 0 16px 38px rgba(4, 8, 16, 0.5);
}

.accounting-flow {
  height: 100%;
  border: 1px solid rgba(24, 93, 255, 0.45);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(12, 22, 40, 0.78);
}

.accounting-flow h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.accounting-flow ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.accounting-flow li {
  border: 1px solid rgba(255, 195, 41, 0.35);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  color: #e8efff;
  background: rgba(255, 195, 41, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.accounting-card {
  height: 100%;
  border: 1px solid rgba(24, 93, 255, 0.38);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(12, 22, 40, 0.76);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.accounting-card:hover {
  transform: translateY(-3px);
  border-color: #ffc329;
}

.accounting-card h3 {
  font-size: 0.96rem;
  margin-bottom: 0.45rem;
}

.accounting-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.56;
}

.accounting-card.full {
  border-color: rgba(255, 195, 41, 0.45);
}

.reports-analytics-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.report-category-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(24, 93, 255, 0.12), transparent 70%),
    linear-gradient(155deg, #111a2d, #0f182b);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.report-category-card:hover {
  transform: translateY(-4px);
  border-color: #ffc329;
  box-shadow: 0 12px 28px rgba(255, 195, 41, 0.12);
}

.report-category-card h3 {
  font-size: 1.03rem;
  margin-bottom: 0.7rem;
}

.report-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.report-list li {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.report-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffc329;
  box-shadow: 0 0 0 5px rgba(255, 195, 41, 0.14);
}

.why-choose-section {
  padding-top: 4.4rem;
}

.reason-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  background:
    radial-gradient(200px 120px at 0% 0%, rgba(255, 195, 41, 0.1), transparent 70%),
    linear-gradient(155deg, #111a2d, #0f182b);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.reason-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 195, 41, 0.88), rgba(24, 93, 255, 0.78), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  border-color: #ffc329;
  box-shadow: 0 12px 28px rgba(255, 195, 41, 0.14);
}

.reason-card:hover::after {
  opacity: 1;
}

.reason-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: #f5f8ff;
  margin-bottom: 0.45rem;
}

.reason-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.56;
}

.advantage-section {
  padding-top: 1rem;
}

.adv-table-wrap {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.5rem;
  background:
    radial-gradient(360px 180px at 100% 0%, rgba(24, 93, 255, 0.15), transparent 70%),
    radial-gradient(260px 140px at 0% 100%, rgba(255, 195, 41, 0.1), transparent 70%),
    linear-gradient(145deg, #101a2d, #0f182b);
  box-shadow: 0 14px 34px rgba(4, 8, 16, 0.48);
}

.advantage-table {
  margin-bottom: 0;
  color: #eaf0ff;
  --bs-table-bg: transparent;
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.advantage-table thead th {
  color: #f7f9ff;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom-width: 1px;
  background: rgba(255, 255, 255, 0.03);
}

.advantage-table td,
.advantage-table th {
  padding: 0.82rem 0.85rem;
}

.advantage-table tbody td:first-child {
  color: #f4f7ff;
  font-weight: 700;
}

.good,
.bad {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.good {
  color: #b8ffd9;
}

.bad {
  color: #ffd28c;
}

.good i {
  color: #67e8a5;
}

.bad i {
  color: #ffc329;
}

@media (max-width: 767.98px) {
  .advantage-table {
    min-width: 760px;
  }
}

.btn-contrast-blue,
.btn-contrast-gold,
.btn-outline-contrast {
  border-radius: 12px;
  font-weight: 700;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-contrast-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(24, 93, 255, 0.34);
}

.btn-contrast-blue:hover {
  background: #0f4de0;
  color: #fff;
  transform: translateY(-2px);
}

.btn-contrast-gold {
  background: var(--gold);
  color: #171717;
  box-shadow: 0 10px 24px rgba(255, 195, 41, 0.28);
}

.btn-contrast-gold:hover {
  background: #ffcf57;
  color: #111;
  transform: translateY(-2px);
}

.btn-outline-contrast {
  background: transparent;
  border-color: rgba(255, 195, 41, 0.6);
  color: #ffd774;
}

.btn-outline-contrast:hover {
  background: rgba(255, 195, 41, 0.12);
  color: #fff1c5;
}

.section-block {
  padding: 5rem 0;
}

.alt-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.85rem;
  color: #ffc329;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.36rem;
  width: 62%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc329, #185dff);
}

.section-head p {
  color: var(--text-dim);
  max-width: 54ch;
}

.module-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  background: linear-gradient(155deg, var(--surface), var(--surface-2));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(24, 93, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(24, 93, 255, 0.8), rgba(255, 195, 41, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 93, 255, 0.7);
  box-shadow: 0 12px 30px rgba(24, 93, 255, 0.15);
}

.module-card:hover::after {
  opacity: 1;
}

.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.module-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(24, 93, 255, 0.32), rgba(24, 93, 255, 0.12));
  border: 1px solid rgba(24, 93, 255, 0.55);
  color: #dfe8ff;
}

.module-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffe39a;
  border: 1px solid #ffc329;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  background: rgba(255, 195, 41, 0.12);
}

.module-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.module-card ul {
  margin: 0;
  padding-left: 0;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
  list-style: none;
}

.module-card li {
  margin-bottom: 0.5rem;
  padding-left: 1.1rem;
  position: relative;
}

.module-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 195, 41, 0.16);
}

.module-summary {
  color: #c3d1ea;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.chip-card {
  border: 1px solid #ffc329;
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(255, 195, 41, 0.1);
  color: #ffe29a;
  font-weight: 600;
  text-align: center;
  min-height: 100%;
}

.contact-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  background:
    radial-gradient(450px 260px at 100% 0%, rgba(24, 93, 255, 0.18), transparent 65%),
    radial-gradient(380px 220px at 0% 100%, rgba(255, 195, 41, 0.12), transparent 65%),
    linear-gradient(145deg, #101a2d, #0f1728);
  box-shadow: 0 18px 44px rgba(4, 8, 16, 0.6);
}

.contact-wrap p {
  color: var(--text-dim);
}

.contact-points {
  display: grid;
  gap: 0.65rem;
}

.point-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #d5e0f3;
  font-size: 0.93rem;
}

.point-item i {
  color: var(--gold);
  margin-top: 2px;
}

.form-label {
  margin-bottom: 0.35rem;
  color: #c5d2ea;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.form-control {
  background: #0f1a2e;
  border: 1px solid rgba(24, 93, 255, 0.45);
  color: #f2f6ff;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
}

.form-control::placeholder {
  color: #91a2c0;
}

.form-control:focus {
  background: #0f1a2e;
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 195, 41, 0.2);
}

.form-note {
  color: #8fa2c4;
  font-size: 0.8rem;
}

.form-status {
  color: var(--text-dim);
}

.form-status.success {
  color: #89f3ba;
}

.form-status.error {
  color: #ff8b8b;
}

#leadThanksModal .modal-content {
  border: 1px solid rgba(24, 93, 255, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(260px 140px at 100% 0%, rgba(24, 93, 255, 0.18), transparent 70%),
    linear-gradient(145deg, #101a2d, #0f1728);
  color: #e7efff;
}

#leadThanksModal .modal-header,
#leadThanksModal .modal-footer {
  border-color: rgba(255, 255, 255, 0.1);
}

#leadThanksModal .modal-title {
  color: #ffc329;
  font-size: 1.05rem;
}

#leadThanksModal .btn-close {
  filter: invert(1) grayscale(100%);
}

#contact .contact-google-form .contact-google-field {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.86rem 0.78rem 0.4rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact .contact-google-form .contact-google-field:focus-within {
  border-color: rgba(65, 139, 255, 0.88);
  box-shadow: 0 0 0 2px rgba(65, 139, 255, 0.18);
}

#contact .contact-google-form .contact-google-field label {
  position: absolute;
  left: 0.68rem;
  top: 0.74rem;
  color: #89a5d2;
  font-size: 0.8rem;
  pointer-events: none;
  transition: transform 0.18s ease, color 0.18s ease, font-size 0.18s ease, top 0.18s ease;
  background: #12203a;
  padding: 0 0.26rem;
}

#contact .contact-google-form .form-control,
#contact .contact-google-form .form-select {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #eef5ff;
  border-radius: 0;
  padding: 0.16rem 0;
  font-size: 0.86rem;
}

#contact .contact-google-form .form-control::placeholder {
  color: transparent;
}

#contact .contact-google-form .form-control:focus,
#contact .contact-google-form .form-select:focus {
  background: transparent;
  box-shadow: none;
}

#contact .contact-google-form .form-select {
  color-scheme: dark;
}

#contact .contact-google-form .form-select option {
  background: #0f1a2e;
  color: #eaf2ff;
}

#contact .contact-google-form .form-select option:disabled {
  color: #92a8ce;
}

#contact .contact-google-form textarea.form-control {
  min-height: 108px;
  resize: vertical;
}

#contact .contact-google-form .contact-google-field input:focus + label,
#contact .contact-google-form .contact-google-field input:not(:placeholder-shown) + label,
#contact .contact-google-form .contact-google-field textarea:focus + label,
#contact .contact-google-form .contact-google-field textarea:not(:placeholder-shown) + label,
#contact .contact-google-form .contact-google-field select:focus + label,
#contact .contact-google-form .contact-google-field select:valid + label {
  top: -0.46rem;
  font-size: 0.64rem;
  color: #9fc3ff;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(520px 250px at 100% 100%, rgba(24, 93, 255, 0.14), transparent 65%),
    linear-gradient(180deg, #0a0f1d, #080d18);
}

.footer-logo {
  width: auto;
  height: 56px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: block;
}

.footer-title {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.footer-copy {
  color: var(--text-dim);
  max-width: 32ch;
}

.footer-head {
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #f2f6ff;
  margin-bottom: 0.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #8ea1c4;
  font-size: 0.86rem;
}

.to-top-btn {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid #ffc329;
  border-radius: 50%;
  background: rgba(16, 26, 45, 0.9);
  color: #ffc329;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1030;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top-btn:hover {
  background: #ffc329;
  color: #111;
}

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

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

@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(255, 195, 41, 0.42); }
  70% { box-shadow: 0 0 0 8px rgba(255, 195, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 195, 41, 0); }
}

@keyframes barFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Experience layer: make each section feel distinct */
#challenge {
  background:
    radial-gradient(520px 180px at 0% 0%, rgba(255, 195, 41, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 60%);
}

.challenge-section .row {
  counter-reset: issue;
}

.challenge-card {
  padding-top: 2rem;
}

.challenge-card::before {
  counter-increment: issue;
  content: counter(issue, decimal-leading-zero);
  position: absolute;
  top: 0.72rem;
  left: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #ffd774;
}

#solution {
  background:
    radial-gradient(520px 200px at 100% 10%, rgba(24, 93, 255, 0.08), transparent 75%);
}

.solution-item {
  position: relative;
  overflow: hidden;
}

.solution-item::after {
  content: "";
  position: absolute;
  inset: auto -30% -35% auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 195, 41, 0.18), transparent 72%);
  pointer-events: none;
}

#sales-module {
  background:
    linear-gradient(180deg, rgba(24, 93, 255, 0.03), transparent 26%),
    linear-gradient(0deg, rgba(255, 195, 41, 0.02), transparent 30%);
}

.process-card:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 20px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #ffc329, #185dff);
}

.sales-feature-card {
  border-left: 3px solid rgba(255, 195, 41, 0.55);
}

#inventory-procurement {
  background:
    radial-gradient(440px 160px at 0% 100%, rgba(24, 93, 255, 0.09), transparent 72%);
}

.inv-proc-panel {
  border-image: linear-gradient(160deg, rgba(255, 195, 41, 0.65), rgba(24, 93, 255, 0.45)) 1;
}

#accounting-finance {
  background:
    linear-gradient(180deg, rgba(255, 195, 41, 0.02), transparent 25%),
    radial-gradient(560px 180px at 100% 0%, rgba(24, 93, 255, 0.08), transparent 72%);
}

.accounting-flow ol {
  position: relative;
}

.accounting-flow ol::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, #ffc329, rgba(24, 93, 255, 0.8));
  opacity: 0.45;
}

.accounting-flow li {
  position: relative;
  padding-left: 2rem;
}

.accounting-flow li::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.78rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffc329;
}

#reports {
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(24, 93, 255, 0.07), transparent 74%);
}

.report-category-card:nth-child(odd) {
  transform: translateY(3px);
}

#why-choose-us {
  background:
    linear-gradient(180deg, transparent, rgba(255, 195, 41, 0.02) 30%, transparent 80%);
}

.reason-card strong {
  font-size: 1.08rem;
  color: #fff;
}

#competitive-advantage {
  background:
    radial-gradient(600px 210px at 100% 10%, rgba(24, 93, 255, 0.08), transparent 74%);
}

.advantage-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.018);
}

/* Strong section differentiation pass */
#challenge .challenge-card {
  border-radius: 6px 16px 16px 16px;
  border-left: 4px solid #ffc329;
  background:
    linear-gradient(180deg, rgba(255, 195, 41, 0.08), transparent 45%),
    linear-gradient(165deg, #131d33, #0f1729);
}

#challenge .challenge-card:nth-child(odd),
#challenge .col-md-6:nth-child(odd) .challenge-card {
  transform: rotate(-0.35deg);
}

#challenge .col-md-6:nth-child(even) .challenge-card {
  transform: rotate(0.35deg);
}

#solution .solution-desktop {
  border: 1px solid rgba(24, 93, 255, 0.45);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1222, #0d1730);
  box-shadow: 0 24px 50px rgba(4, 8, 16, 0.62);
}

#solution .desktop-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#solution .desktop-chrome .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#solution .desktop-chrome .dot.red { background: #ff6b6b; }
#solution .desktop-chrome .dot.amber { background: #ffc329; }
#solution .desktop-chrome .dot.green { background: #66dd9a; }

#solution .desktop-title {
  margin-left: 0.4rem;
  color: #d4e2ff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#solution .desktop-body {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 500px;
  contain: layout paint;
}

#solution .desktop-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  background: rgba(9, 16, 29, 0.86);
  display: grid;
  align-content: start;
  gap: 0.42rem;
}

#solution .desktop-sidebar small {
  color: #92abd5;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

#solution .desk-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  color: #dce8ff;
  text-align: left;
  padding: 0.45rem 0.52rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

#solution .desk-item:hover {
  border-color: rgba(255, 195, 41, 0.45);
  transform: translateX(2px);
}

#solution .desk-item.active {
  border-color: rgba(255, 195, 41, 0.68);
  background: rgba(255, 195, 41, 0.12);
  color: #ffeab2;
}

#solution .desktop-editor {
  padding: 0.65rem 0.75rem;
  background: #0b1426;
  overflow: hidden;
}

#solution .user-workspace {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto auto;
  gap: 0.85rem;
}

#solution .workspace-header {
  min-height: 94px;
}

#solution .workspace-header h3 {
  margin: 0.32rem 0 0;
  color: #f3f7ff;
  font-size: 1.15rem;
}

#solution .workspace-header p {
  margin: 0.35rem 0 0;
  color: #a8c0e8;
  font-size: 0.86rem;
}

#solution .workspace-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 195, 41, 0.55);
  border-radius: 999px;
  color: #ffe6a2;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.58rem;
  background: rgba(255, 195, 41, 0.13);
}

#solution .workspace-cards {
  display: grid;
  gap: 0.55rem;
  min-height: 186px;
}

#solution .workspace-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.72rem 0.74rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

#solution .workspace-card i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 93, 255, 0.2);
  color: #a9c8ff;
  font-size: 0.95rem;
}

#solution .workspace-card strong {
  color: #edf4ff;
  font-size: 0.86rem;
}

#solution .workspace-card p {
  margin: 0.18rem 0 0;
  color: #9cb5df;
  font-size: 0.78rem;
}

#solution .workspace-card.active {
  border-color: rgba(255, 195, 41, 0.7);
  background: linear-gradient(120deg, rgba(255, 195, 41, 0.14), rgba(24, 93, 255, 0.12));
}

#solution .workspace-card.active i {
  background: rgba(255, 195, 41, 0.2);
  color: #ffe3a0;
}

#solution .workspace-journey {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(7, 13, 24, 0.7);
  padding: 0.55rem 0.62rem;
  color: #bdd0f0;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  min-height: 44px;
}

#solution .workspace-journey i {
  color: #ffc329;
  font-size: 0.74rem;
}

#solution .dashboard-screen {
  border: 1px solid rgba(24, 93, 255, 0.35);
  border-radius: 12px;
  background:
    radial-gradient(280px 90px at 100% 0%, rgba(255, 195, 41, 0.15), transparent 70%),
    linear-gradient(165deg, rgba(10, 18, 32, 0.95), rgba(11, 20, 38, 0.95));
  padding: 0.72rem;
  min-height: 232px;
}

#solution .dashboard-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

#solution .dash-chip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.48rem 0.55rem;
}

#solution .dash-chip span {
  display: block;
  color: #9eb8e3;
  font-size: 0.68rem;
}

#solution .dash-chip strong {
  color: #f4f8ff;
  font-size: 0.96rem;
}

#solution .chart-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(8, 14, 26, 0.75);
  padding: 0.55rem;
}

#solution .chart-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
}

#solution .chart-title-row strong {
  color: #dbe9ff;
  font-size: 0.78rem;
}

#solution #chartBadge {
  border-radius: 999px;
  border: 1px solid rgba(113, 232, 166, 0.6);
  color: #71e8a6;
  font-size: 0.68rem;
  padding: 0.12rem 0.46rem;
  background: rgba(113, 232, 166, 0.12);
}

#solution .bar-chart {
  height: 108px;
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.35rem;
  align-items: end;
}

#solution .chart-stage {
  min-height: 162px;
}

#solution .chart-stage.bars-mode .bar-chart {
  display: grid;
}

#solution .bar-chart span {
  display: block;
  height: var(--h);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 195, 41, 0.95), rgba(24, 93, 255, 0.95));
  box-shadow: 0 4px 12px rgba(24, 93, 255, 0.28);
  transition: height 0.42s ease;
}

#solution .bar-chart.animate span {
  height: var(--target, 0%);
  transition-delay: var(--delay, 0ms);
}

#solution .trend-line {
  display: none;
  width: 100%;
  height: 142px;
  margin-top: 0.12rem;
  border-radius: 8px;
  background:
    linear-gradient(to bottom, rgba(158, 195, 255, 0.08), rgba(158, 195, 255, 0.01)),
    repeating-linear-gradient(to right, transparent 0 12%, rgba(255, 255, 255, 0.05) 12% 12.6%);
}

#solution .chart-stage.line-mode .trend-line {
  display: block;
}

#solution .trend-line polyline {
  fill: none;
  stroke: #9ec3ff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#solution .trend-line polyline.drawing {
  transition: stroke-dashoffset 0.9s ease;
}

#solution .pie-chart {
  display: none;
  grid-template-columns: 142px 1fr;
  gap: 0.75rem;
  align-items: center;
  min-height: 142px;
}

#solution .chart-stage.pie-mode .pie-chart {
  display: grid;
}

#solution .pie-visual {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 16px rgba(6, 12, 22, 0.56);
  transform: scale(0.86);
  opacity: 0;
}

#solution .pie-visual.animate {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#solution .pie-legend {
  display: grid;
  gap: 0.4rem;
}

#solution .pie-legend span {
  color: #d9e6ff;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

#solution .pie-legend span i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: var(--dot);
}

#sales-module .sales-process-grid {
  position: relative;
  padding: 0.2rem 0;
}

#sales-module .sales-vertical-layout {
  display: grid;
  grid-template-columns: minmax(460px, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.25rem;
  align-items: start;
}

#sales-module .sales-stepper-shell {
  position: sticky;
  top: 112px;
  border: 1px solid rgba(24, 93, 255, 0.4);
  border-radius: 0;
  background: rgba(9, 15, 27, 0.9);
  padding: 1.15rem 0.95rem 1.15rem 2.25rem;
  display: grid;
  gap: 0.72rem;
}

#sales-module .sales-stepper-line {
  position: absolute;
  left: 16px;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: rgba(255, 255, 255, 0.14);
}

#sales-module .sales-stepper-line span {
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #ffc329, #185dff);
  transition: height 0.22s linear;
}

#sales-module .sales-step-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 0.95rem 0.95rem;
  min-height: 112px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

#sales-module .sales-step-item.active {
  border-color: rgba(255, 195, 41, 0.72);
  background: linear-gradient(120deg, rgba(255, 195, 41, 0.14), rgba(24, 93, 255, 0.08));
  transform: translateX(2px);
}

#sales-module .sales-step-item .step-index {
  display: inline-block;
  color: #ffe4a0;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  margin-bottom: 0.34rem;
}

#sales-module .sales-step-item h3 {
  margin: 0;
  font-size: 1.02rem;
}

#sales-module .sales-step-item p {
  margin: 0.45rem 0 0;
  color: #a9bfdf;
  font-size: 0.88rem;
  line-height: 1.55;
}

#sales-module .sales-side-image-wrap {
  position: sticky;
  top: 112px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 620px;
}

#sales-module .sales-side-image {
  width: 118%;
  max-width: 760px;
  max-height: 760px;
  object-fit: contain;
  display: block;
  animation: salesImageFloat 4.8s ease-in-out infinite;
}

@keyframes salesImageFloat {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 8px 14px rgba(24, 93, 255, 0.1));
  }
  50% {
    transform: translateY(-12px) scale(1.015);
    filter: drop-shadow(0 16px 24px rgba(24, 93, 255, 0.2));
  }
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 8px 14px rgba(24, 93, 255, 0.1));
  }
}

#sales-module .sales-process-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255, 195, 41, 0.7), rgba(24, 93, 255, 0.7));
  opacity: 0.5;
}

#sales-module .process-card {
  border-radius: 999px;
  text-align: center;
  border: 1px solid rgba(255, 195, 41, 0.65);
  background: rgba(9, 15, 27, 0.92);
  z-index: 1;
}

#sales-module .process-card::after,
#sales-module .process-card:not(:last-child)::before {
  display: none;
}

#sales-module .step-no {
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

#sales-module .sales-feature-card {
  border: none;
  border-left: 3px solid rgba(24, 93, 255, 0.75);
  border-radius: 0;
  background: rgba(13, 23, 41, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

#sales-module .sales-feature-card:nth-child(odd),
#sales-module .col-md-6:nth-child(odd) .sales-feature-card {
  border-left-color: #ffc329;
}

#inventory-procurement .inv-proc-panel {
  border-radius: 24px;
}

#inventory-procurement .panel-points {
  gap: 0.2rem;
}

#inventory-procurement .panel-point {
  background: transparent;
  border: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 0;
  padding: 0.72rem 0.1rem;
}

#inventory-procurement .panel-point:hover {
  transform: none;
  border-bottom-color: #ffc329;
}

#accounting-finance .accounting-wrap {
  border-radius: 26px;
  border-color: rgba(24, 93, 255, 0.42);
}

#accounting-finance .accounting-card {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(24, 93, 255, 0.16), rgba(24, 93, 255, 0.03));
}

#reports .report-category-card {
  border-radius: 0 18px 18px 18px;
  border-left: 4px solid #185dff;
  background:
    linear-gradient(180deg, rgba(24, 93, 255, 0.1), transparent 42%),
    linear-gradient(160deg, #111b30, #10192b);
}

#reports .col-lg-4:nth-child(2) .report-category-card {
  border-left-color: #ffc329;
  background:
    linear-gradient(180deg, rgba(255, 195, 41, 0.12), transparent 42%),
    linear-gradient(160deg, #111b30, #10192b);
}

#why-choose-us .reason-card {
  border-radius: 14px;
  padding-top: 1.5rem;
  border: 1px solid rgba(24, 93, 255, 0.52);
}

#why-choose-us .col-md-6 {
  counter-increment: reason;
}

#why-choose-us .row {
  counter-reset: reason;
}

#why-choose-us .reason-card::before {
  content: "0" counter(reason);
  position: absolute;
  top: 0.35rem;
  right: 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: rgba(255, 195, 41, 0.6);
}

#competitive-advantage .adv-table-wrap {
  border-radius: 10px;
}

#competitive-advantage .advantage-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Accounting and Finance premium upgrade */
#accounting-finance .accounting-wrap {
  border-radius: 28px;
  border: 1px solid rgba(24, 93, 255, 0.5);
  box-shadow: 0 18px 44px rgba(4, 8, 16, 0.6);
}

.finance-command {
  height: 100%;
  border: 1px solid rgba(24, 93, 255, 0.35);
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(9, 16, 29, 0.9), rgba(15, 25, 44, 0.78));
  position: relative;
  overflow: hidden;
}

.finance-command::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(24, 93, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.finance-top-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.finance-kpi {
  border: 1px solid rgba(255, 195, 41, 0.38);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 195, 41, 0.08);
}

.finance-kpi small {
  display: block;
  color: #e7d7ab;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.finance-kpi strong {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  text-shadow: 0 0 16px rgba(24, 93, 255, 0.35);
  animation: financePulse 2.8s ease-in-out infinite;
}

.finance-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

#accounting-finance .accounting-card {
  min-height: 100%;
  border: 1px solid rgba(24, 93, 255, 0.45);
  border-radius: 12px;
  background: rgba(11, 21, 39, 0.75);
}

#accounting-finance .accounting-card.full {
  border-color: rgba(255, 195, 41, 0.6);
  background: linear-gradient(145deg, rgba(255, 195, 41, 0.08), rgba(24, 93, 255, 0.08));
}

.compliance-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.rail-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(24, 93, 255, 0.42);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  color: #dce7ff;
  background: rgba(24, 93, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.rail-chip i {
  color: #ffc329;
}

.ledger-stream {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.ledger-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.52rem 0.72rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  animation: ledgerSlide 0.7s ease both;
}

.ledger-item:nth-child(2) { animation-delay: 0.08s; }
.ledger-item:nth-child(3) { animation-delay: 0.16s; }

.ledger-item:last-child {
  border-bottom: none;
}

.ledger-item span {
  color: #b6c8ea;
  font-size: 0.83rem;
}

.ledger-item strong {
  color: #ffd774;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

@keyframes financePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.82; }
}

@keyframes ledgerSlide {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Accounting refinement: executive ledger board look */
#accounting-finance .accounting-flow {
  border: 1px solid rgba(255, 195, 41, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 195, 41, 0.08), transparent 44%),
    rgba(8, 15, 29, 0.92);
}

#accounting-finance .accounting-flow h3 {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
  color: #ffe8a8;
}

#accounting-finance .accounting-flow li {
  border-radius: 8px;
  border: 1px solid rgba(24, 93, 255, 0.45);
  background: rgba(24, 93, 255, 0.12);
  font-weight: 600;
  font-size: 0.84rem;
}

#accounting-finance .finance-command {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%),
    linear-gradient(145deg, #0b1324, #0e1930);
}

#accounting-finance .finance-top-row {
  gap: 0.45rem;
}

#accounting-finance .finance-kpi {
  border-radius: 10px;
  border: 1px solid rgba(24, 93, 255, 0.55);
  background: rgba(10, 20, 37, 0.85);
  position: relative;
}

#accounting-finance .finance-kpi::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(24, 93, 255, 0.9), rgba(255, 195, 41, 0.9));
}

#accounting-finance .finance-kpi small {
  color: #9fbae9;
}

#accounting-finance .finance-body-grid {
  gap: 0.45rem;
}

#accounting-finance .accounting-card {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 16, 30, 0.82);
  padding: 0.72rem 0.8rem;
}

#accounting-finance .accounting-card:hover {
  transform: none;
  border-color: rgba(255, 195, 41, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255, 195, 41, 0.2);
}

#accounting-finance .acct-head {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  margin-bottom: 0.35rem;
}

#accounting-finance .acct-head i {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 93, 255, 0.18);
  color: #ffc329;
  font-size: 0.8rem;
}

#accounting-finance .acct-head h3 {
  margin: 0;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #dce9ff;
}

#accounting-finance .accounting-card p {
  font-size: 0.82rem;
  line-height: 1.45;
}

#accounting-finance .compliance-rail {
  padding: 0.45rem;
  border: 1px dashed rgba(255, 195, 41, 0.4);
  border-radius: 10px;
  background: rgba(255, 195, 41, 0.05);
}

#accounting-finance .rail-chip {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-color: rgba(255, 195, 41, 0.45);
  background: rgba(255, 195, 41, 0.1);
  color: #ffe8a8;
}

#accounting-finance .ledger-stream {
  border-radius: 8px;
  border: 1px solid rgba(24, 93, 255, 0.45);
  background: rgba(7, 14, 26, 0.88);
}

#accounting-finance .ledger-item {
  border-bottom-color: rgba(24, 93, 255, 0.2);
  padding: 0.62rem 0.75rem;
}

#accounting-finance .ledger-item span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#accounting-finance .ledger-item strong {
  font-size: 0.8rem;
}

/* Refactored accounting structure */
#accounting-finance .accounting-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0.9rem;
}

#accounting-finance .finance-intro {
  border: 1px solid rgba(255, 195, 41, 0.48);
  border-radius: 14px;
  padding: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 195, 41, 0.08), transparent 42%),
    rgba(9, 16, 29, 0.92);
}

#accounting-finance .finance-intro h3 {
  margin: 0 0 0.45rem;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffe8a8;
}

#accounting-finance .finance-intro p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #b9cbee;
}

#accounting-finance .finance-kpi-stack {
  display: grid;
  gap: 0.45rem;
}

#accounting-finance .finance-main {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.85rem;
  background: linear-gradient(145deg, #0b1324, #0e1930);
}

#accounting-finance .flow-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

#accounting-finance .flow-step {
  border: 1px solid rgba(24, 93, 255, 0.48);
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  background: rgba(24, 93, 255, 0.12);
  text-align: center;
}

#accounting-finance .flow-step span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #111;
  background: #ffc329;
  margin-bottom: 0.3rem;
}

#accounting-finance .flow-step p {
  margin: 0;
  color: #dce8ff;
  font-size: 0.74rem;
  line-height: 1.35;
}

#accounting-finance .finance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

#accounting-finance .finance-feature-row {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
  background: rgba(7, 15, 27, 0.8);
}

#accounting-finance .finance-feature-row p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.44;
  color: #b9c8e5;
}

#accounting-finance .voucher-ledger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

#accounting-finance .voucher-panel {
  border: 1px solid rgba(255, 195, 41, 0.58);
  border-radius: 10px;
  padding: 0.75rem;
  background: rgba(255, 195, 41, 0.06);
}

#accounting-finance .voucher-panel p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #ffe7a8;
}

@media (max-width: 767.98px) {
  .scroll-stepper {
    display: none;
  }

  .accent-orb {
    width: 230px;
    height: 230px;
  }

  .quick-nav {
    top: 66px;
  }

  .quick-nav-inner {
    gap: 0.35rem;
    padding-top: 0.38rem;
    padding-bottom: 0.38rem;
  }

  .quick-link {
    font-size: 0.7rem;
    padding: 0.28rem 0.62rem;
  }

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

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

  .chart-card {
    grid-column: auto;
  }

  .contact-wrap {
    padding: 1.2rem;
  }

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

  .hero-google-field.full,
  .hero-contact-btn,
  .hero-form-status {
    grid-column: auto;
  }

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

  .solution-wrap {
    padding: 1.2rem;
  }

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

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

  #solution .desktop-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  #solution .workspace-header,
  #solution .workspace-cards,
  #solution .dashboard-screen,
  #solution .workspace-journey {
    min-height: auto;
  }

  #solution .desktop-sidebar {
    border: none;
  }

  #solution .dashboard-top {
    grid-template-columns: 1fr;
  }

  #solution .bar-chart {
    height: 92px;
  }

  #solution .pie-chart {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }

  #solution .pie-legend {
    width: 100%;
  }

  #solution .workspace-journey {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #solution .workspace-journey i {
    transform: rotate(90deg);
  }

  #sales-module .sales-vertical-layout {
    grid-template-columns: 1fr;
  }

  #sales-module .sales-stepper-shell {
    position: relative;
    top: auto;
  }

  #sales-module .sales-side-image-wrap {
    position: relative;
    top: auto;
    min-height: auto;
  }

  #sales-module .sales-side-image {
    width: 100%;
    max-width: none;
    max-height: 560px;
  }

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

  .finance-top-row {
    grid-template-columns: 1fr;
  }

  .finance-body-grid {
    grid-template-columns: 1fr;
  }

  #accounting-finance .accounting-layout {
    grid-template-columns: 1fr;
  }

  #accounting-finance .flow-strip {
    grid-template-columns: 1fr;
  }

  #accounting-finance .finance-grid,
  #accounting-finance .voucher-ledger-grid {
    grid-template-columns: 1fr;
  }

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

  #sales-module .sales-process-grid::before {
    display: none;
  }

  #challenge .challenge-card,
  #challenge .col-md-6:nth-child(odd) .challenge-card,
  #challenge .col-md-6:nth-child(even) .challenge-card {
    transform: none;
  }

  .process-card:not(:last-child)::before {
    display: none;
  }

  .section-head h2::after {
    width: 78%;
  }

  .to-top-btn {
    right: 14px;
    bottom: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .scroll-stepper {
    left: 8px;
    width: 46px;
  }

  .step-dot span {
    display: none;
  }

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

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

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

  .finance-body-grid {
    grid-template-columns: 1fr 1fr;
  }

  #accounting-finance .accounting-layout {
    grid-template-columns: 1fr;
  }

  #solution .desktop-body {
    grid-template-columns: 220px 1fr;
  }

  #solution .workspace-journey {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #sales-module .sales-vertical-layout {
    grid-template-columns: 1fr;
  }

  #sales-module .sales-stepper-shell {
    position: relative;
    top: auto;
  }

  #sales-module .sales-side-image-wrap {
    position: relative;
    top: auto;
    min-height: auto;
  }

  #sales-module .sales-side-image {
    width: 100%;
    max-width: none;
    max-height: 540px;
  }
}