:root {
  --brand-navy: #112a5c;
  --brand-navy-dark: #0b1d42;
  --brand-blue: #159fdb;
  --brand-cyan: #3bc7c4;
  --brand-soft: #eefaff;
  --brand-soft-2: #f6fbff;
  --brand-text: #14264a;
  --brand-muted: #66748b;
  --brand-border: rgba(20, 159, 219, 0.18);
  --brand-gradient: linear-gradient(135deg, #159fdb 0%, #3bc7c4 100%);
  --brand-gradient-dark: linear-gradient(135deg, #112a5c 0%, #0c3c6c 55%, #159fdb 100%);
  --shadow-soft: 0 24px 80px rgba(17, 42, 92, 0.12);
  --shadow-card: 0 14px 42px rgba(17, 42, 92, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--brand-text);
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.navbar {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 42, 92, 0.06);
  transition: all 0.25s ease;
}

.navbar.navbar-scrolled {
  box-shadow: 0 12px 40px rgba(17, 42, 92, 0.08);
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.navbar .nav-link {
  color: var(--brand-navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem !important;
  border-radius: 999px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand-blue);
  background: rgba(21, 159, 219, 0.08);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding-inline: 1.35rem;
}

.btn-gradient {
  color: #ffffff;
  border: 0;
  background: var(--brand-gradient);
  box-shadow: 0 12px 34px rgba(21, 159, 219, 0.28);
}

.btn-gradient:hover,
.btn-gradient:focus {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(21, 159, 219, 0.36);
}

.btn-outline-brand {
  color: var(--brand-navy);
  border: 1px solid rgba(21, 159, 219, 0.35);
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: #ffffff;
  border-color: transparent;
  background: var(--brand-navy);
}

.hero-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(59, 199, 196, 0.16), transparent 30%),
    radial-gradient(circle at 88% 28%, rgba(21, 159, 219, 0.12), transparent 28%),
    linear-gradient(180deg, #f9fdff 0%, #ffffff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/background-pattern-hex-network.svg");
  background-size: 560px;
  background-repeat: no-repeat;
  background-position: right 8% top 18%;
  opacity: 0.22;
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  opacity: 0.48;
}

.hero-orb-one {
  width: 520px;
  right: -210px;
  top: 130px;
}

.hero-node {
  position: absolute;
  left: 4%;
  bottom: 6%;
  width: 280px;
  opacity: 0.08;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue);
  background: rgba(21, 159, 219, 0.08);
  border: 1px solid rgba(21, 159, 219, 0.12);
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.display-4,
.section-title {
  color: var(--brand-navy);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  margin: 0.9rem 0 1.2rem;
}

.section-text {
  color: var(--brand-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-mini-stats .mini-stat {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  padding: 1rem;
  min-height: 104px;
  box-shadow: 0 12px 36px rgba(17, 42, 92, 0.06);
}

.mini-stat span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.mini-stat strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.hero-visual-card {
  position: relative;
  max-width: 610px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 159, 219, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  overflow: hidden;
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 199, 196, 0.20), transparent 70%);
  right: -120px;
  top: -120px;
}

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

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 159, 219, 0.16);
  border-radius: 18px;
  padding: 0.85rem 1rem;
  max-width: 260px;
}

.floating-card small {
  display: block;
  color: var(--brand-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-card strong {
  color: var(--brand-navy);
  font-size: 0.88rem;
}

.floating-card-top {
  left: 2rem;
  top: 2rem;
}

.floating-card-bottom {
  right: 2rem;
  bottom: 2rem;
}

.floating-card i,
.status-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--brand-gradient);
}

.status-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
}

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

.bg-soft {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.benefit-image-card {
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  transform: translateY(0);
  transition: all 0.28s ease;
}

.benefit-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(17, 42, 92, 0.14);
}

.info-card,
.feature-card,
.impact-card {
  background: #ffffff;
  border: 1px solid rgba(21, 159, 219, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  transition: all 0.28s ease;
}

.info-card:hover,
.feature-card:hover,
.impact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 199, 196, 0.40);
  box-shadow: 0 20px 56px rgba(17, 42, 92, 0.14);
}

.icon-badge,
.impact-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(21, 159, 219, 0.08);
  color: var(--brand-blue);
  font-size: 1.55rem;
  margin-bottom: 1.2rem;
}

.info-card h3,
.feature-card h3,
.impact-card h3 {
  color: var(--brand-navy);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.info-card p,
.feature-card p,
.impact-card p {
  color: var(--brand-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.solution-section {
  background: var(--brand-gradient-dark);
}

.section-pattern {
  position: absolute;
  inset: auto -80px -30px auto;
  width: 640px;
  opacity: 0.15;
}

.solution-visual {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 90px rgba(3, 14, 34, 0.24);
  overflow: hidden;
}

.solution-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/decorative__section-dots.png");
  background-repeat: no-repeat;
  background-position: right 20px bottom 20px;
  opacity: 0.20;
}

.solution-main-icon {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.20));
}

.solution-point {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  padding: 1rem;
  min-height: 88px;
}

.solution-point i {
  color: var(--brand-cyan);
  font-size: 1.2rem;
}

.feature-card {
  min-height: 270px;
}

.feature-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.nav-pills .nav-link {
  border-radius: 999px;
  color: var(--brand-navy);
  background: #ffffff;
  border: 1px solid rgba(21, 159, 219, 0.16);
  font-weight: 700;
  padding: 0.7rem 1.05rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: var(--brand-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(21, 159, 219, 0.24);
}

.platform-screen {
  display: block;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(21, 159, 219, 0.18);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.workflow-list {
  position: relative;
}

.workflow-list::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-cyan), rgba(21, 159, 219, 0.10));
}

.workflow-item {
  position: relative;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(21, 159, 219, 0.12);
  border-radius: 24px;
  padding: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 34px rgba(17, 42, 92, 0.07);
}

.workflow-item span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  background: var(--brand-gradient);
}

.workflow-item h3 {
  color: var(--brand-navy);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.workflow-item p {
  color: var(--brand-muted);
  margin-bottom: 0;
}

.impact-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 199, 196, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.impact-card {
  text-align: center;
}

.impact-card i {
  margin-left: auto;
  margin-right: auto;
  background: var(--brand-gradient);
  color: #ffffff;
}

.check-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-navy);
  font-weight: 700;
  background: #ffffff;
  border: 1px solid rgba(21, 159, 219, 0.10);
  border-radius: 18px;
  padding: 0.85rem 1rem;
}

.check-line i {
  color: var(--brand-cyan);
}

.compare-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid rgba(21, 159, 219, 0.14);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.compare-column {
  border-radius: 24px;
  padding: 1.5rem;
}

.compare-column.before {
  background: #f6f8fb;
}

.compare-column.after {
  color: #ffffff;
  background: var(--brand-gradient-dark);
}

.compare-column span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.8rem;
}

.compare-column.after span {
  color: var(--brand-cyan);
}

.compare-column h3 {
  font-weight: 800;
  color: var(--brand-navy);
}

.compare-column.after h3 {
  color: #ffffff;
}

.compare-column ul {
  color: var(--brand-muted);
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.compare-column.after ul {
  color: rgba(255,255,255,0.78);
}

.compare-column li {
  margin-bottom: 0.7rem;
}

.compare-divider {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.compare-divider i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-gradient);
}

.cta-section {
  padding: 90px 0;
  background: #ffffff;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  color: #ffffff;
  background: var(--brand-gradient-dark);
  padding: clamp(2.5rem, 6vw, 5rem);
  box-shadow: 0 24px 80px rgba(17, 42, 92, 0.20);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/cta-background.png");
  background-size: cover;
  background-position: center;
  opacity: 0.36;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-card h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 1rem 0;
}

.cta-card p {
  max-width: 620px;
  margin: 0 auto 1.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.cta-corner {
  position: absolute !important;
  right: -80px;
  bottom: -100px;
  width: 330px;
  opacity: 0.28;
}

.contact-illustration {
  max-width: 460px;
  border-radius: 24px;
  background: #f5fbff;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
  color: var(--brand-navy);
  font-weight: 700;
}

.contact-detail i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--brand-gradient);
}

.contact-detail a {
  color: var(--brand-navy);
}

.contact-detail a:hover {
  color: var(--brand-blue);
}

.contact-form {
  background: #ffffff;
  border: 1px solid rgba(21, 159, 219, 0.14);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}

.form-label {
  color: var(--brand-navy);
  font-weight: 700;
}

.form-control {
  border-radius: 16px;
  border-color: rgba(21, 159, 219, 0.18);
  padding: 0.85rem 1rem;
}

.form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 0.25rem rgba(21, 159, 219, 0.12);
}

.form-message {
  color: var(--brand-blue);
  font-weight: 700;
}

.footer {
  background: var(--brand-navy-dark);
}

.footer-logo {
  height: 56px;
  width: auto;
}

.footer h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
}

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

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1020;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--brand-gradient);
  box-shadow: 0 12px 32px rgba(21, 159, 219, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.24s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .brand-logo {
    height: 44px;
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
    padding-top: 128px !important;
    padding-bottom: 72px;
  }

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

  .navbar-collapse {
    padding: 1rem 0;
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin-top: 0.8rem;
    max-width: none;
  }

  .hero-visual-card {
    padding: 1.3rem;
  }

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

  .compare-divider {
    width: auto;
    height: 40px;
    transform: rotate(90deg);
    margin: -0.2rem auto;
  }
}

@media (max-width: 575.98px) {
  .display-4 {
    font-size: 2.6rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .info-card,
  .feature-card,
  .impact-card,
  .contact-form {
    border-radius: 22px;
  }

  .workflow-list::before {
    left: 24px;
  }

  .workflow-item {
    gap: 0.95rem;
  }

  .workflow-item span {
    width: 40px;
    height: 40px;
  }

  .nav-pills .nav-link {
    font-size: 0.86rem;
    padding: 0.55rem 0.8rem;
  }
}

/* Mobile viewport and overflow hardening
   Keeps every section flush with the device width and prevents horizontal AOS
   transforms or decorative assets from creating a blank strip on the right. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body,
main,
header,
section,
footer,
.navbar {
  max-width: 100%;
}

.navbar {
  width: 100%;
}

@media (max-width: 767.98px) {
  /* Bootstrap applies a fixed container max-width from the sm breakpoint.
     Force a fluid container on phones and small portrait screens. */
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .hero-section,
  .hero-section > .container,
  .hero-section .row,
  .hero-section [class*="col-"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-section {
    overflow-x: hidden !important;
    overflow-x: clip !important;
  }

  .hero-section::before {
    width: 100%;
    max-width: 100%;
    background-size: 430px;
    background-position: center top 96px;
  }

  .hero-orb-one {
    width: 430px;
    max-width: none;
    right: -215px;
  }

  .hero-node {
    width: 230px;
    max-width: none;
    left: -95px;
  }

  /* Horizontal AOS effects can temporarily expand the document width.
     On mobile, retain the fade animation while moving vertically instead. */
  [data-aos="fade-left"]:not(.aos-animate),
  [data-aos="fade-right"]:not(.aos-animate) {
    transform: translate3d(0, 32px, 0) !important;
  }

  img,
  svg,
  video,
  canvas,
  iframe {
    max-width: 100%;
  }
}

/* =========================================================
   Asset Tracking Journey — pitch deck matched composition
   ========================================================= */
.tracking-journey-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 84%, rgba(59, 199, 196, 0.08), transparent 25%),
    radial-gradient(circle at 92% 10%, rgba(21, 159, 219, 0.08), transparent 28%),
    #ffffff;
}

.tracking-journey-desktop {
  overflow: hidden;
  border: 1px solid rgba(21, 159, 219, 0.12);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(17, 42, 92, 0.10);
}

.tracking-journey-image {
  display: block;
  width: 100%;
  height: auto;
}

.journey-overline {
  display: block;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 10vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.journey-display-title {
  margin: 0.15rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 13vw, 5.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
  background: linear-gradient(90deg, #47d4d9 0%, #159fdb 50%, #0053b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.journey-mobile-list {
  position: relative;
  width: min(100%, 720px);
  margin: 0 auto;
}

.journey-mobile-list::before {
  content: "";
  position: absolute;
  left: 43px;
  top: 52px;
  bottom: 52px;
  width: 14px;
  border-radius: 999px;
  background: #b9d7f5;
}

.journey-mobile-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-width: 0;
  margin-bottom: 1.15rem;
}

.journey-mobile-item:last-child {
  margin-bottom: 0;
}

.journey-mobile-node {
  position: relative;
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #064087;
  background: #b5d5f4;
  box-shadow: 0 12px 34px rgba(17, 42, 92, 0.10);
}

.journey-mobile-node i {
  font-size: 2.35rem;
  line-height: 1;
}

.journey-step-number {
  position: absolute;
  left: -10px;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-18%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #154b8b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, #dfffd8 0%, #9ec8ff 100%);
  box-shadow: 0 8px 22px rgba(21, 159, 219, 0.16);
}

.journey-mobile-copy {
  min-width: 0;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(21, 159, 219, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(17, 42, 92, 0.07);
}

.journey-mobile-copy h3 {
  margin: 0 0 0.25rem;
  color: var(--brand-navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.journey-mobile-copy p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 575.98px) {
  .tracking-journey-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .journey-mobile-list::before {
    left: 35px;
    width: 12px;
  }

  .journey-mobile-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .journey-mobile-node {
    width: 70px;
    height: 70px;
  }

  .journey-mobile-node i {
    font-size: 1.85rem;
  }

  .journey-step-number {
    left: -6px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .journey-mobile-copy {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .journey-mobile-copy h3 {
    font-size: 0.98rem;
  }

  .journey-mobile-copy p {
    font-size: 0.84rem;
  }
}

/* =========================================================
   Editable desktop Asset Tracking Journey
   ========================================================= */
@media (min-width: 992px) {
  .tracking-journey-desktop {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .journey-desktop-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 710px;
    padding: 2.5rem 2.25rem 2rem;
    border: 1px solid rgba(21, 159, 219, 0.12);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(17, 42, 92, 0.10);
  }

  .journey-desktop-card::before,
  .journey-desktop-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: 0.36;
    border-radius: 50%;
    background: repeating-radial-gradient(
      ellipse at center,
      transparent 0 7px,
      rgba(21, 159, 219, 0.55) 8px 9px,
      transparent 10px 14px
    );
  }

  .journey-desktop-card::before {
    width: 560px;
    height: 235px;
    top: -150px;
    right: -25px;
    transform: rotate(7deg);
  }

  .journey-desktop-card::after {
    width: 360px;
    height: 250px;
    left: -145px;
    bottom: -112px;
    transform: rotate(-11deg);
  }

  .journey-desktop-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 1.75rem;
  }

  .journey-desktop-overline {
    display: block;
    color: #050505;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 6.2vw, 6.7rem);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -0.055em;
    text-shadow: 3px 3px 0 rgba(17, 42, 92, 0.10);
  }

  .journey-desktop-title {
    margin: 0.15rem 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.35rem, 7vw, 7.2rem);
    font-style: italic;
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.06em;
    background: linear-gradient(90deg, #4bd1d0 0%, #20a8dd 48%, #0052b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(3px 4px 0 rgba(17, 42, 92, 0.12));
  }

  .journey-desktop-map {
    --journey-node-size: 164px;
    --journey-path-size: 72px;
    position: relative;
    z-index: 2;
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 0 0.4rem;
  }

  .journey-desktop-map::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: calc(var(--journey-node-size) / 2 - var(--journey-path-size) / 2);
    right: calc(12.5% - var(--journey-path-size) / 2 + 0.4rem);
    bottom: calc(var(--journey-node-size) / 2 + 2.15rem - var(--journey-path-size) / 2);
    width: var(--journey-path-size);
    border-radius: 0 999px 999px 0;
    background: #b8d7f5;
  }

  .journey-desktop-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .journey-desktop-row::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: calc(var(--journey-node-size) / 2 - var(--journey-path-size) / 2);
    left: 12.5%;
    right: 12.5%;
    height: var(--journey-path-size);
    border-radius: 999px;
    background: #b8d7f5;
  }

  .journey-desktop-row-bottom {
    margin-top: 3.7rem;
  }

  .journey-desktop-step {
    position: relative;
    z-index: 2;
    min-width: 0;
    text-align: center;
  }

  .journey-desktop-node {
    position: relative;
    width: var(--journey-node-size);
    height: var(--journey-node-size);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #064087;
    background: #b5d5f4;
  }

  .journey-desktop-node i {
    position: relative;
    z-index: 2;
    font-size: 4.45rem;
    line-height: 1;
  }

  .journey-desktop-number {
    position: absolute;
    z-index: 4;
    left: -31px;
    top: 50%;
    width: 61px;
    height: 61px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #154b8b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #dfffd8 0%, #a9cdfb 100%);
    box-shadow: 0 8px 22px rgba(21, 159, 219, 0.16);
  }

  .journey-desktop-step h3 {
    margin: 0.55rem -0.5rem 0;
    color: #161616;
    font-family: Arial, sans-serif;
    font-size: clamp(0.8rem, 1.05vw, 1rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.25;
  }

  .journey-desktop-company {
    position: absolute;
    z-index: 2;
    left: 5.5rem;
    bottom: 2.1rem;
    color: #151515;
    font-size: 0.95rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .journey-desktop-card {
    min-height: 650px;
    padding-inline: 1.35rem;
  }

  .journey-desktop-map {
    --journey-node-size: 140px;
    --journey-path-size: 62px;
  }

  .journey-desktop-node i {
    font-size: 3.8rem;
  }

  .journey-desktop-number {
    left: -26px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .journey-desktop-row-bottom {
    margin-top: 3.15rem;
  }

  .journey-desktop-company {
    left: 3.5rem;
    bottom: 1.6rem;
  }
}
