/* ===========================================
   BLUERP DARK — BLUE + ORANGE THEME
   =========================================== */
:root {
  --blue: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-mid: #2563eb;
  --blue-glow: rgba(59, 130, 246, 0.18);
  --blue-dim: rgba(59, 130, 246, 0.08);
  --orange: #f15322;
  --orange-dark: #ea6000;
  --orange-glow: rgba(249, 115, 22, 0.18);
  --orange-dim: rgba(249, 115, 22, 0.08);
  --green: #22c55e;
  --green-dim:  rgba(34, 197, 94, 0.08);
  /* Dark surfaces */
  --bg-base: #080d1a;
  --bg-surface: #0d1526;
  --bg-card: #111c33;
  --bg-card2: #0f1829;
  --bg-input: #152040;
  --border: rgba(59, 130, 246, 0.15);
  --border-soft: rgba(255, 255, 255, 0.07);
  /* Text */
  --text-white: #f0f4ff;
  --text-body: #94a3b8;
  --text-muted: #7d8fa8;
  /* Fonts */
  --font-head: "Roboto Slab", serif;
  --font-body: "Roboto", sans-serif;
  /* Shadows */
  --sh-blue: 0 8px 32px rgba(59, 130, 246, 0.22);
  --sh-orange: 0 8px 32px rgba(249, 115, 22, 0.22);
  --sh-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --sh-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  /* Fluid type scale — scales with viewport */
  --fs-xs: clamp(0.6875rem, 0.65rem + 0.15vw, 0.75rem);
  --fs-sm: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-base: clamp(0.875rem, 0.82rem + 0.28vw, 1rem);
  --fs-md: clamp(1rem, 0.92rem + 0.4vw, 1.125rem);
  --fs-lg: clamp(1.0625rem, 0.95rem + 0.55vw, 1.25rem);
  --fs-xl: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --fs-2xl: clamp(1.25rem, 1.05rem + 1vw, 1.5rem);
  --fs-3xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --fs-4xl: clamp(1.75rem, 1.3rem + 2.2vw, 2.375rem);
  --fs-hero: clamp(1.75rem, 1.15rem + 2.8vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px
}

.bluerp-page .navbar-nav .nav-link {
  padding: 8px 12px;
  margin: 0 2px;
  font-size: 15px;
  white-space: nowrap
}

.bluerp-page .navbar-nav .nav-link.active:not(.get-quote) {
  background-color: #da5129;
  border-radius: 5px
}

/* Premium brand tagline — between logo and nav */
.bluerp-page .brand-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 18px;
  margin-right: 32px;
  flex-shrink: 0;
  transition: opacity 250ms ease;
}

.bluerp-page .brand-tagline__sep {
  display: block;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.bluerp-page .brand-tagline__text {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  padding-bottom: 6px;
  transition: color 250ms ease;
  font-style: italic;
}

 

 
 

@media (max-width: 1199.98px) {
  .bluerp-page .brand-tagline {
    margin-right: auto;
  }

  .bluerp-page .brand-tagline__text {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .bluerp-page .brand-tagline {
    display: none;
  }
}

@media (max-width: 1399.98px) {
  .bluerp-page .navbar-nav .nav-link {
    padding: 8px 10px;
    font-size: 14px
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-base);
  overflow-x: hidden
}

img {
  max-width: 100%
}

a {
  text-decoration: none
}

ul {
  list-style: none;
  padding: 0;
  margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--text-white);
  font-weight: 800;
  line-height: 1.2
}

/* ── SECTION TITLE ── */
.sec-title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px
}

.sec-title span {
  color: var(--orange)
}

.sec-sub {
  font-size: var(--fs-md);
  color: var(--text-body);
  line-height: 1.8;
  max-width: 600px
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px
}

.sec-tag .td {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block
}

/* ── BUTTONS ── */
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none
}

.btn-blue:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-blue)
}

.btn-blue .bi {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7rem + 0.35vw, 1rem);
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none
}

.btn-orange:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-orange)
}

.btn-orange .bi {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7rem + 0.35vw, 1rem);
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px)
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none
}

.btn-outline-white:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px)
}

/* ── TRUSTED ── */
.trust-strip {
  padding: 26px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-base)
}

.trust-lbl {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: .07em;
  text-transform: uppercase
}

.logo-wrap {
  overflow: hidden;
  flex: 1
}

.logo-track {
  display: flex;
  gap: 0;
  width: max-content
}

.logo-chip {
  padding: 8px 20px;
  border-right: 1px solid var(--border-soft);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s
}

.logo-chip:hover,
.logo-chip a:hover {
  color: var(--orange)
}

@media(min-width:992px) {
  .trust-strip .d-flex {
    width: 100%;
  }

  .logo-wrap {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
  }

  .logo-track {
    width: 100%;
    min-width: 100%;
    justify-content: flex-start;
  }

  .logo-chip {
    flex: 1;
    padding: 8px 16px;
    text-align: center;
    font-size: var(--fs-xs);
  }
}

/* ── WHY CARDS ── */
.why-section {
  padding: 70px 0;
  background: var(--bg-base)
}

/* ── MODULES ── */
.modules-section {
  padding: 70px 0;
  background: var(--bg-base)
}

.ind-tabs-wrap {
  display: inline-flex;
    overflow: hidden;
    margin-bottom: 48px;
}

.ind-tab {
  padding: 11px 20px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-body);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
    font-family: var(--font-body);
    white-space: nowrap;
    border-bottom: 1px solid var(--border-soft);
}

.tab-icon {
  display: none;
  font-size: 15px;
}

.ind-tab.active,
.ind-tab:hover {
  color: #fff;
  border-bottom-color: var(--blue);
}

.ind-tab:first-child {
  border-radius: 0
}

.ind-tab:last-child {
  border-radius: 0
}

/* Icon-only tabs before labeled row clips (esp. BLUERP 7 tabs) */
@media(max-width:1199px) {
  .ind-tabs-wrap {
    flex-wrap: nowrap;
    justify-content: stretch;
    width: 100%;
    gap: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0;
  }

  .ind-tab {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    padding: clamp(9px, 2.4vw, 11px) 0;
  }

  .ind-tab .tab-icon {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
  }

  .ind-tab .tab-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
}

.mod-pane {
  display: none
}

.mod-pane.active {
  display: block;
  animation: fadeUp .4s ease both
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.mod-card {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft)
}

.mod-card-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  opacity: .82
}

.mod-body {
  padding: 36px 32px
}

.feat-lbl {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px
}

.mod-body h3 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white)
}

.mod-body p {
  font-size: var(--fs-md);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 22px
}

.mod-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px
}

.mod-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-white)
}

.mod-feats li i {
  color: var(--green);
  font-size: 12px
}

/* ── VIDEO ── */
.video-section {
  padding: 70px 0;
  background: var(--bg-surface)
}

.video-wrap {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), var(--sh-lg);
  position: relative;
  cursor: pointer;
  background: transparent;
  text-align: left;
}

.video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 78, 216, .7), rgba(8, 13, 26, .6));
  z-index: 1
}

.video-bg-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  filter: brightness(.6)
}

.video-center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px
}

.play-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--blue);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, .15);
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform .3s
}

.play-circle i {
  margin-left: 5px
}

.play-circle:hover {
  transform: scale(1.1)
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .35)
  }

  70% {
    box-shadow: 0 0 0 22px rgba(255, 255, 255, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
  }
}

.vid-title {
  color: #fff;
  font-size: var(--fs-md);
  font-weight: 700;
  font-family: var(--font-head);
  text-align: center
}

.vid-sub {
  color: rgba(255, 255, 255, .78);
  font-size: var(--fs-sm);
  text-align: center
}

.vid-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.vid-modal.open {
  display: flex
}

.vid-inner {
  width: 100%;
  max-width: 900px;
  position: relative
}

.vid-inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  border: none
}

.vid-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  opacity: .75;
  transition: opacity .2s
}

.vid-close:hover {
  opacity: 1
}

/* ── INTEGRATIONS ── */
.integrations-section {
  padding: 70px 0;
  background: var(--bg-base);
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.int-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-body);
  text-align: center;
  transition: all .3s;
  cursor: default;
  max-width: 170px;
}

.int-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--sh-orange);
  background: var(--orange-dim)
}

.int-chip i {
  font-size: 36px
}

/* ── FAQ ── */
.faq-section {
  padding: 70px 0 50px;
  background: var(--bg-base);
  position: relative;
  overflow: hidden
}

.faq-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, .05) 0%, transparent 70%);
  bottom: -150px;
  right: -80px;
  pointer-events: none
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: border-color .3s
}

.faq-item.open {
  border-color: var(--orange)
}

.faq-q-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-q {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-base);
  color: var(--text-white);
  gap: 14px;
  user-select: none;
  transition: background .2s;
  background: transparent;
  border: none;
  text-align: left;
}

.faq-q:hover {
  background: rgba(255, 255, 255, .03)
}

.faq-ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 12px;
  flex-shrink: 0;
  transition: all .3s
}

.faq-item.open .faq-ic {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(45deg)
}

.faq-ans-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, .02);
}

.faq-item.open .faq-ans-wrap {
  grid-template-rows: 1fr;
}

.faq-ans-inner {
  overflow: hidden;
}

.faq-ans-inner p {
  padding: 0 22px 20px;
  font-size: var(--fs-sm);
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}

.vid-modal[hidden] {
  display: none !important;
}

.mod-pane[hidden] {
  display: none !important;
}

ul.int-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.bd-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.faq-ans p {
  font-size: var(--fs-sm);
  color: var(--text-body);
  line-height: 1.8;
  margin: 0
}

/* ── CTA ── */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d1e3d 50%, #0a1628 100%);
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, .12) 0%, transparent 65%);
  top: -180px;
  left: -100px;
  pointer-events: none
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, .1) 0%, transparent 65%);
  bottom: -150px;
  right: -80px;
  pointer-events: none
}

.cta-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), var(--sh-lg);
  position: relative;
  z-index: 2
}

.cta-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  opacity: .82
}

.cta-content {
  position: relative;
  z-index: 2
}

.cta-content h2 {
  font-family: var(--font-head);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px
}

.cta-content p {
  color: rgba(255, 255, 255, .78);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin-bottom: 30px
}

.cta-pills {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  font-size: var(--fs-sm);
  font-weight: 400;
  transition: all .3s
}

.cta-pill i {
  font-size: 15px;
  color: var(--green)
}

.cta-pill:hover {
  border-color: var(--green);
  background: var(--green-dim);
  transform: translateY(-2px)
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.cta-contacts {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .65);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color .2s
}

.cta-link:hover {
  color: #fff
}

.cta-link i {
  color: rgba(255, 255, 255, .35)
}

/* ── FOOTER TRUST ── */
.trust-strip2 {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
  padding: 0px 0 100px;
}

.t2-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px
}

.t2-item:not(:last-child) {
  border-right: 1px solid var(--border-soft)
}

.t2-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0
}

.t2-item h6 {
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 2px
}

.t2-item p {
  font-size: var(--fs-xs);
  color: var(--text-body);
  margin: 0
}

/* ── FOOTER ── */
footer {
  background: #050b17;
  color: rgba(255, 255, 255, .5);
  padding: 64px 0 28px;
  border-top: 1px solid var(--border-soft)
}

.footer-logo {
  font-family: var(--font-head);
  font-size: var(--fs-xl);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.5px;
  text-decoration: none;
  display: block;
  margin-bottom: 14px
}

.footer-logo span {
  color: var(--orange)
}

.footer-tagline {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 235px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .45)
}

.footer-socials {
  display: flex;
  gap: 8px
}

.fsoc {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  font-size: 14px;
  text-decoration: none;
  transition: all .2s
}

.fsoc:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}

.f-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 18px
}

.f-links li {
  margin-bottom: 10px
}

.f-links a {
  color: rgba(255, 255, 255, .45);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color .2s
}

.f-links a:hover {
  color: var(--orange)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--fs-sm)
}

.f-bottom-links {
  display: flex;
  gap: 20px
}

.f-bottom-links a {
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s
}

.f-bottom-links a:hover {
  color: rgba(255, 255, 255, .65)
}

/* ── DIVIDER GLOW ── */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent);
  margin: 0
}

/* ── REVEAL ── */
[data-r] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease
}

[data-r].on {
  opacity: 1;
  transform: none
}

[data-r][data-d="1"] { transition-delay: .1s }
[data-r][data-d="2"] { transition-delay: .2s }
[data-r][data-d="3"] { transition-delay: .3s }
[data-r][data-d="4"] { transition-delay: .4s }
[data-r][data-d="5"] { transition-delay: .5s }

/* ── RESPONSIVE ── */
@media(max-width:991px) {
  .int-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .int-chip {
    max-width: none;
    width: 100%;
  }

  .why-section,
  .modules-section,
  .video-section,
  .delivering-section,
  .integrations-section,
  .cta-section,
  .faq-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .faq-section {
    padding-bottom: 40px;
  }

  .mod-body {
    padding: 28px 24px;
  }

  .video-bg-img {
    height: 360px;
  }
}

@media(max-width:767px) {
  .trust-strip .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .int-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .int-chip {
    max-width: none;
    width: 100%;
    padding: 16px 8px;
  }

  .ind-tabs-wrap {
    flex-wrap: nowrap;
    border-radius: var(--r-md);
    justify-content: stretch;
    width: 100%;
    gap: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0;
  }

  .ind-tab {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    padding: clamp(9px, 2.4vw, 11px) 0;
  }

  .ind-tab .tab-icon {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
  }

  .ind-tab .tab-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .ind-tab:first-child,
  .ind-tab:last-child {
    border-radius: 0
  }

  .trust-lbl {
    display: block;
    white-space: normal;
    line-height: 1.4;
  }

  .logo-wrap {
    width: 100%;
    overflow-x: auto;
  }

  .t2-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-soft)
  }

  .t2-item {
    padding: 12px 0;
  }

  .mod-card-img {
    min-height: 240px;
  }

  .mod-body {
    padding: 24px 18px;
  }

  .mod-feats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .video-bg-img {
    height: 280px;
  }

  .play-circle {
    width: 68px;
    height: 68px;
    font-size: 22px;
    box-shadow: 0 0 0 12px rgba(255, 255, 255, .15);
  }

  .why-card {
    height: auto;
    min-height: 240px;
  }

  .why-card-hover {
    padding: 20px 18px;
    overflow-y: auto;
  }

  .why-card-hover p {
    font-size: var(--fs-sm);
  }

  .bd-modal {
    max-height: min(92vh, 720px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bd-top {
    padding: 24px 20px 20px;
  }

  .bd-body {
    padding: 22px 20px;
  }

  .cta-btns {
    width: 100%;
  }

  .cta-btns .btn-orange,
  .cta-btns .btn-outline-blue,
  .cta-btns .btn-outline-white {
    justify-content: center;
  }
}

.text-blue {
  color: var(--blue) !important;
}

/* ── WHY CARD ── */
.why-card {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.why-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}

.why-card:hover .why-card-bg {
  transform: scale(1.08);
}

.why-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 55, .65) 0%, rgba(10, 25, 55, .85) 100%);
  transition: background .4s ease;
}

.why-card:hover .why-card-overlay {
  background: linear-gradient(180deg, rgba(249, 115, 22, .75) 0%, rgba(10, 25, 55, .92) 100%);
}

.why-card-default {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 22px;
  transition: opacity .35s ease, transform .35s ease;
  text-align: center;
}

.why-card:hover .why-card-default,
.why-card:focus-within .why-card-default {
  opacity: 0;
  transform: translateY(10px);
}

.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, .15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}

.why-card-default h5,
.why-card-default .why-card-title {
  color: #fff;
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.why-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease .05s, transform .35s ease .05s;
}

.why-card:hover .why-card-hover,
.why-card:focus-within .why-card-hover {
  opacity: 1;
  transform: translateY(0);
}

.why-card-title {
  color: #fff;
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.why-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.why-card-hover .h-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, .3);
}

.why-card-hover h5 {
  color: #fff;
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card-hover p {
  color: rgba(255, 255, 255, .9);
  font-size: var(--fs-md);
  line-height: 1.6;
  margin: 0;
}

/* ── DEMO BOOKING MODAL ── */
.bd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 40, 0.82);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.bd-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.bd-modal {
  background: #0a1628;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform .25s ease;
}

.bd-overlay.open .bd-modal {
  transform: translateY(0) scale(1);
}

.bd-top {
  background: #0d1f3c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 32px 24px;
}

.bd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: #f97316;
  margin-bottom: 12px;
}

.bd-badge span {
  width: 6px;
  height: 6px;
  background: #f97316;
  border-radius: 50%;
  display: inline-block;
}

.bd-title {
  color: #fff;
  font-size: var(--fs-xl);
  font-weight: 500;
  margin: 0 0 6px;
}

.bd-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-sm);
  margin: 0;
}

.bd-label {
  color: rgba(255, 255, 255, 0.65);
}

.bd-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: rgba(255, 255, 255, 0.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bd-close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.bd-body {
  padding: 28px 32px;
}

.bd-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.bd-step {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  transition: background .3s;
}

.bd-step.active {
  background: #f97316;
}

.bd-step.done {
  background: #4285f4;
}

.bd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.bd-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bd-field.full {
  grid-column: 1/-1;
}

.bd-label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.4px;
}

.bd-input,
.bd-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 13px;
  color: #fff;
  font-size: var(--fs-sm);
  outline: none;
  width: 100%;
  transition: border-color .2s;
}

.bd-input:focus,
.bd-select:focus {
  border-color: #f97316;
}

.bd-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.bd-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(2);
  cursor: pointer;
}

.bd-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.bd-select option {
  background: #0a1628;
}

.bd-btns {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.bd-btn-back {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.bd-btn-back:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.bd-btn-next {
  flex: 1;
  background: #f97316;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bd-btn-next:hover {
  background: #ea6d0e;
}

.bd-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.bd-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.bd-feat-dot {
  width: 5px;
  height: 5px;
  background: #1d9e75;
  border-radius: 50%;
  flex-shrink: 0;
}

.bd-success {
  text-align: center;
  padding: 8px 0 4px;
}

.bd-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(29, 158, 117, 0.15);
  border: 1px solid rgba(29, 158, 117, 0.3);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #1d9e75;
}

.bd-s-title {
  color: #fff;
  font-size: var(--fs-md);
  font-weight: 600;
  margin: 0 0 8px;
}

.bd-s-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: 0 0 24px;
}

.bd-s-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.bd-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.bd-hidden {
  display: none !important;
}

/* ── ACCESSIBILITY (WCAG 2.2 AA) ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100000;
  padding: 12px 20px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 var(--r-sm) 0;
  text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 0px solid var(--orange);
  outline-offset: 2px;
  box-shadow: 0 0 0 0px #f0f4ff, 0 0 0 0px var(--bg-base);
}

.bd-input:focus-visible,
.bd-select:focus-visible {
  outline: 0px solid var(--orange);
  outline-offset: 0px;
  border-color: #f97316;
}

.ind-tab:focus-visible {
  outline-offset: -2px;
}

.faq-q:focus-visible {
  outline-offset: -2px;
  background: rgba(255, 255, 255, .05);
}

.video-trigger:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.bd-close:focus-visible,
.vid-close:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  color: #fff;
  opacity: 1;
}

.video-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: inherit;
  font: inherit;
  color: inherit;
}

.bd-field-error {
  font-size: 12px;
  color: #f87171;
  margin-top: 4px;
  min-height: 1.2em;
}

.bd-input[aria-invalid="true"],
.bd-select[aria-invalid="true"] {
  border-color: #f87171;
}

.faq-ans p,
.logo-chip,
.t2-item p {
  color: #8b9cb3;
}

.trust-strip .trust-lbl {
  color: #dde8f7;
}

.cta-content p {
  color: rgba(255, 255, 255, .78);
}

.sec-tag {
  color: rgba(249, 115, 22, .95);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mod-pane.active {
    animation: none;
  }

  [data-r] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .play-circle {
    animation: none;
  }

  .why-card:hover .why-card-bg,
  .why-card:focus-within .why-card-bg {
    transform: none;
  }
}

/* ── TIMELINE HERO ── */
.timeline-hero {
  background: #0d1526;
  padding: 100px 0 40px;
}

.timeline-slide {
  display: none;
  align-items: center;
  gap: 60px;
  animation: fadeUp .5s ease;
}

.timeline-slide.active {
  display: flex;
}

.timeline-text {
  flex: 1;
}

.timeline-image {
  flex: 1;
}

.timeline-image img {
  width: 100%;
  border-radius: 20px;
}

.timeline-text h1 {
  color: #fff;
  font-size: var(--fs-hero);
  margin-bottom: 30px;
}

.timeline-text h1 span {
  color: #3b82f6;
}

.timeline-text p {
  color: #aab4c5;
  font-size: var(--fs-md);
  margin-bottom: 40px;
}

/* ── TIMELINE NAV ── */
.timeline-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.tl-seg-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  height: 34px;
  cursor: pointer;
}

.tl-bar-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.tl-bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
}

.tl-seg-wrap.is-done .tl-bar-fill {
  transform: scaleX(1);
  animation: none;
  background: rgba(255, 255, 255, 0.15);
}

.tl-seg-wrap.is-active .tl-bar-fill {
  animation: tlFill 5s linear forwards;
}

@keyframes tlFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.tl-num-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all .3s ease;
  color: rgba(255, 255, 255, 0.35);
  background: #0d1526;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.tl-seg-wrap.is-active .tl-num-badge {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.18);
}

.tl-seg-wrap.is-done .tl-num-badge {
  background: #0d1526;
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.tl-seg-wrap:not(.is-active):not(.is-done):hover .tl-num-badge {
  border-color: rgba(249, 115, 22, 0.5);
  color: rgba(249, 115, 22, 0.8);
}

/* ── DELIVERING SECTION ── */
.delivering-section {
  padding: 70px 0;
  background: #0d1526;
}

.delivering-card {
  text-align: left;
  padding: 32px 24px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: all .3s;
  height: 100%;
  border-left: 1px solid var(--green);
}

.delivering-card:hover {
  border-color: var(--blue) !important;
  transform: translateY(-6px);
  box-shadow: var(--sh-blue);
}

.delivering-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: left;
}

.delivering-icon i {
  font-size: 26px;
  color: var(--green);
}

.delivering-icon img,
.delivering-icon svg {
  max-width: 40px;
  width: 40px;
  height: auto;
  display: block;
  transition: color .3s, filter .3s;
  color: var(--green);
}

.delivering-card:hover .delivering-icon i,
.delivering-card:hover .delivering-icon svg {
  color: var(--blue);
}

.delivering-card h5 {
  font-size: var(--fs-base);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-white);
}

.delivering-card p {
  font-size: var(--fs-sm);
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* ── HERO TAG (used in timeline slides) ── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 16px 7px 10px;
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero-tag .htb {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── BLUERP: FULL-WIDTH HERO SLIDER ── */
.bluerp-page .timeline-hero--bg {
  position: relative;
  padding: 0;
  min-height: clamp(620px, 85vh, 780px);
  background: var(--bg-surface);
  overflow: hidden;
  --hero-overlay-rgb: 8, 13, 26;
  --hero-overlay-accent-rgb: 13, 21, 38;
}

.bluerp-page .timeline-hero--bg .timeline-content {
  position: absolute;
  inset: 0;
}

.bluerp-page .timeline-hero--bg .timeline-slide {
  display: none;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadeUp .5s ease;
}

.bluerp-page .timeline-hero--bg .timeline-slide.active {
  display: block;
}

.bluerp-page .timeline-hero--bg .timeline-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(var(--hero-overlay-rgb), 0.8) 0%,
      rgba(var(--hero-overlay-rgb), 0.35) 16%,
      transparent 28%
    ),
    linear-gradient(
      105deg,
      rgba(var(--hero-overlay-rgb), 0.82) 0%,
      rgba(var(--hero-overlay-rgb), 0.72) 38%,
      rgba(var(--hero-overlay-accent-rgb), 0.28) 62%,
      rgba(59, 130, 246, 0.1) 100%
    );
  pointer-events: none;
}

.bluerp-page .timeline-hero--bg .timeline-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue-mid), var(--blue));
  opacity: 0.65;
}

.bluerp-page .timeline-hero--bg .timeline-slide .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding-top: 100px;
  padding-bottom: 110px;
}

.bluerp-page .timeline-hero--bg .timeline-text {
  flex: 0 1 550px;
  max-width: 550px;
  /* background: linear-gradient(
    105deg,
    rgba(var(--hero-overlay-rgb), 0.18) 0%,
    rgba(var(--hero-overlay-rgb), 0.32) 100%
  );
  border: 1px solid rgba(var(--hero-overlay-rgb), 0.2);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  backdrop-filter: blur(10px); */
  box-shadow: none;
}

.bluerp-page .timeline-hero--bg .timeline-slide--mfg {
  background-image: url('../images/erp-solutions/banner-Manufacturing.png');
}

.bluerp-page .timeline-hero--bg .timeline-slide--warehouse {
  background-image: url('../images/erp-solutions/banner-Warehouse.png');
}

.bluerp-page .timeline-hero--bg .timeline-slide--finance {
  background-image: url('../images/erp-solutions/banner-finance.png');
}


.bluanalytics-page .timeline-hero--bg .timeline-slide--mfg {
  background-image: url('../images/blu-analytics/blu-analytics-slider-1.png');
}

.bluanalytics-page .timeline-hero--bg .timeline-slide--warehouse {
  background-image: url('../images/blu-analytics/blu-analytics-slider-2.png');
}

.bluanalytics-page .timeline-hero--bg .timeline-slide--finance {
  background-image: url('../images/blu-analytics/blu-analytics-slider-3.png');
}

.bluerp-page .timeline-hero--bg .timeline-hero__nav-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding-bottom: 36px;
  pointer-events: none;
}

.bluerp-page .timeline-hero--bg .timeline-nav {
  margin-top: 0;
  pointer-events: auto;
}

.bluerp-page .timeline-hero--bg .tl-num-badge {
  background: rgba(13, 21, 38, 0.82);
  backdrop-filter: blur(8px);
}

.bluerp-page .timeline-hero--bg .tl-seg-wrap.is-done .tl-num-badge {
  background: rgba(13, 21, 38, 0.82);
}

/* ── RESPONSIVE: TIMELINE ── */
@media(max-width:991px) {
  .timeline-slide.active {
    flex-direction: column-reverse;
    text-align: left;
    align-items: flex-start;
  }

  .timeline-text {
    text-align: left;
    width: 100%;
  }

  .timeline-nav {
    gap: 15px;
  }

  .bluerp-page .timeline-hero--bg .timeline-slide .container {
    padding-top: 80px;
    align-items: flex-end;
  }

  .bluerp-page .timeline-hero--bg .timeline-text {
    max-width: 100%;
  }

  .bluerp-page .timeline-hero--bg .timeline-slide::before {
    background:
      linear-gradient(
        to top,
        rgba(var(--hero-overlay-rgb), 0.92) 0%,
        rgba(var(--hero-overlay-rgb), 0.5) 18%,
        transparent 36%
      ),
      linear-gradient(
        180deg,
        rgba(var(--hero-overlay-rgb), 0.55) 0%,
        rgba(var(--hero-overlay-rgb), 0.82) 45%,
        rgba(var(--hero-overlay-rgb), 0.95) 100%
      );
  }
}

@media(max-width:576px) {
  .trust-strip {
    display: none;
  }

  .timeline-hero {
    padding: 60px 0;
  }

  .bluerp-page .timeline-hero--bg {
    min-height: clamp(560px, 78vh, 720px);
  }

  .bluerp-page .timeline-hero--bg .timeline-slide .container {
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .bluerp-page .timeline-hero--bg .timeline-hero__nav-wrap {
    padding-bottom: 20px;
  }

  .bluerp-page .timeline-hero--bg .timeline-text {
    padding: 0;
  }

  .timeline-nav {
    overflow-x: visible;
    justify-content: stretch;
    gap: 0;
    padding-bottom: 0;
    margin-top: 28px;
  }

  .timeline-text h1 {
    margin-bottom: 18px;
  }

  .timeline-text p {
    margin-bottom: 28px;
  }

  .tl-bar-track {
    height: 3px;
  }

  .tl-num-badge {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .hero-btns a {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
    padding: 12px 12px;
    white-space: nowrap;
    min-width: 0;
  }

  .video-bg-img {
    height: 220px;
  }

  .bd-row {
    grid-template-columns: 1fr;
  }

  .bd-features {
    grid-template-columns: 1fr;
  }

  .why-section,
  .modules-section,
  .video-section,
  .delivering-section,
  .integrations-section,
  .cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .faq-section {
    padding: 48px 0 36px;
  }

  .trust-strip2 {
    padding-bottom: 64px;
  }
}

@media(max-width:400px) {
  .hero-btns a {
    flex: 1 1 100%;
    white-space: normal;
    text-align: center;
    padding: 12px 14px;
  }

  .btn-orange,
  .btn-outline-blue {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bluerp-page .timeline-hero--bg {
    min-height: clamp(520px, 72vh, 680px);
  }

  .bluerp-page .timeline-hero--bg .timeline-slide .container {
    padding-bottom: 88px;
  }
}

/* Short landscape phones / small height */
@media(max-height:500px) and (max-width:991px) {
  .bluerp-page .timeline-hero--bg {
    min-height: 100vh;
  }

  .bluerp-page .timeline-hero--bg .timeline-slide .container {
    padding-top: 64px;
    padding-bottom: 72px;
    align-items: center;
  }
}

/* Preserve fluid type on this page — overrides global responsive.css h1–h6 !important */
@media only screen and (max-width: 430px) {
  .bluerp-page .timeline-text h1 {
    font-size: var(--fs-hero) !important;
  }

  .bluerp-page .sec-title,
  .bluerp-page .cta-content h2,
  .bluerp-page .bd-title {
    font-size: var(--fs-4xl) !important;
  }

  .bluerp-page .mod-body h3,
  .bluerp-page .why-card-title,
  .bluerp-page .why-card-default .why-card-title {
    font-size: var(--fs-2xl) !important;
  }

  .bluerp-page .why-card-hover h5 {
    font-size: var(--fs-xl) !important;
  }

  .bluerp-page .delivering-card h5,
  .bluerp-page .t2-item h6 {
    font-size: var(--fs-base) !important;
  }

  .bluerp-page .faq-q {
    font-size: var(--fs-md) !important;
  }
}

@media screen and (max-width: 320px) {
  .bluerp-page .timeline-text h1 {
    font-size: var(--fs-hero) !important;
  }

  .bluerp-page .sec-title,
  .bluerp-page .cta-content h2,
  .bluerp-page .bd-title {
    font-size: var(--fs-4xl) !important;
  }

  .bluerp-page .mod-body h3,
  .bluerp-page .why-card-title,
  .bluerp-page .why-card-default .why-card-title {
    font-size: var(--fs-2xl) !important;
  }

  .hero-btns a {
    font-size: 0.8125rem;
  }
}