.trust-timeline {
  margin: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  flex: 0 0 100%;
  order: -1;
}

.trust-timeline__inner {
  background: linear-gradient(135deg, rgba(10, 12, 20, 0.98), rgba(20, 23, 36, 0.98));
  border: 5px solid #0e216d;
  border-radius: 18px;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px #ffffff,
    0 0 9px rgba(17, 17, 17, 0.6),
    0 0 9px rgba(17, 17, 17, 0.4),
    0px 4px 9px rgba(17, 17, 17, 0.76);
}

.trust-timeline__inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 20%, rgba(92, 141, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(111, 230, 176, 0.18), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(88, 195, 255, 0.18), transparent 50%);
  opacity: 0.85;
  pointer-events: none;
}

.trust-timeline__inner > * {
  position: relative;
  z-index: 1;
}

.trust-timeline__text h2 {
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #e9f3ff;
  background: linear-gradient(90deg, #9ad4ff 0%, #7cf7e0 55%, #b2a6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 16px rgba(88, 195, 255, 0.45);
}

.trust-timeline__text p {
  margin: 0;
  color: rgba(178, 228, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 0 12px rgba(111, 230, 176, 0.35);
}

.trust-timeline__track {
  position: relative;
  margin-top: 22px;
  padding: 18px 6px 0;
  --runner-start: 8.333%;
  --runner-end: 91.667%;
  overflow: visible;
}

.trust-timeline__track::before,
.trust-timeline__track::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  height: 3px;
  border-radius: 999px;
}

.trust-timeline__track::before {
  width: 100%;
  background: rgba(108, 255, 250, 0.18);
}

.trust-timeline__track::after {
  width: var(--progress, 0%);
  background: linear-gradient(90deg, #4f7bff 0%, #58ffdd 100%);
  box-shadow: 0 0 18px rgba(88, 195, 255, 0.45);
}

.trust-timeline__sweep {
  position: absolute;
  left: 0;
  top: 9px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(88, 195, 255, 0), rgba(88, 195, 255, 0.9), rgba(111, 230, 176, 0.95));
  width: 0%;
  box-shadow: 0 0 16px rgba(88, 195, 255, 0.6);
  animation: trust-sweep 5.5s ease-in-out infinite;
}

.trust-timeline__runner {
  position: absolute;
  left: var(--runner-start);
  top: 9px;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  animation: trust-runner 5.5s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(124, 247, 224, 0.65));
  will-change: left;
}

.trust-timeline__runner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 35deg,
    rgba(0, 0, 0, 0) 0deg 55deg,
    #7cf7e0 55deg 360deg
  );
  box-shadow: 0 0 10px rgba(124, 247, 224, 0.6);
}

.trust-timeline__runner::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(154, 212, 255, 0.9);
  box-shadow:
    10px 0 0 rgba(154, 212, 255, 0.7),
    18px 0 0 rgba(154, 212, 255, 0.45);
}

.trust-timeline__years {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(184, 238, 255, 0.9);
  text-shadow: 0 0 12px rgba(88, 195, 255, 0.35);
}

.trust-timeline__years li {
  position: relative;
  padding-top: 16px;
  flex: 1;
  text-align: center;
}

.trust-timeline__years li:first-child,
.trust-timeline__years li:last-child {
  font-size: 18px;
}

.trust-timeline__years li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f1422;
  border: 2px solid rgba(111, 230, 176, 0.65);
  box-shadow: 0 0 10px rgba(88, 195, 255, 0.35);
}

.trust-timeline__years li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(154, 212, 255, 0.95);
  box-shadow: 0 0 8px rgba(88, 195, 255, 0.55);
  transform: translateX(-50%);
  animation-duration: 5.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.trust-timeline__years li:nth-child(1)::after { animation-name: trust-bite-1; }
.trust-timeline__years li:nth-child(2)::after { animation-name: trust-bite-2; }
.trust-timeline__years li:nth-child(3)::after { animation-name: trust-bite-3; }
.trust-timeline__years li:nth-child(4)::after { animation-name: trust-bite-4; }
.trust-timeline__years li:nth-child(5)::after { animation-name: trust-bite-5; }
.trust-timeline__years li:nth-child(6)::after { animation-name: trust-bite-final; }

.trust-timeline__years li.is-target::before {
  border-color: rgba(111, 230, 176, 1);
  box-shadow: 0 0 12px rgba(111, 230, 176, 0.6), 0 0 22px rgba(88, 195, 255, 0.45);
  animation: trust-pulse 2.6s ease-in-out infinite;
}

.trust-timeline__years li.is-target::after {
  animation: none;
  opacity: 1;
}

@keyframes trust-sweep {
  0% {
    width: 0%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  55% {
    width: 100%;
    opacity: 1;
  }
  70% {
    opacity: 0.25;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

@keyframes trust-runner {
  0% {
    left: var(--runner-start);
    opacity: 0;
  }
  10% {
    left: var(--runner-start);
    opacity: 1;
  }
  55% {
    left: var(--runner-end);
    opacity: 1;
  }
  70% {
    left: var(--runner-end);
    opacity: 0.3;
  }
  100% {
    left: var(--runner-end);
    opacity: 0;
  }
}

@keyframes trust-bite-1 {
  0%, 12% { opacity: 1; }
  12.01%, 100% { opacity: 0; }
}

@keyframes trust-bite-2 {
  0%, 21% { opacity: 1; }
  21.01%, 100% { opacity: 0; }
}

@keyframes trust-bite-3 {
  0%, 30% { opacity: 1; }
  30.01%, 100% { opacity: 0; }
}

@keyframes trust-bite-4 {
  0%, 39% { opacity: 1; }
  39.01%, 100% { opacity: 0; }
}

@keyframes trust-bite-5 {
  0%, 48% { opacity: 1; }
  48.01%, 100% { opacity: 0; }
}

@keyframes trust-bite-final {
  0%, 100% { opacity: 1; }
}

@keyframes trust-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 12px rgba(111, 230, 176, 0.6), 0 0 22px rgba(88, 195, 255, 0.45);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.35);
    box-shadow: 0 0 18px rgba(111, 230, 176, 0.9), 0 0 32px rgba(88, 195, 255, 0.7);
  }
}

@media (max-width: 768px) {
  .trust-timeline__inner {
    padding: 20px;
  }

  .trust-timeline__text h2 {
    font-size: 18px;
  }

  .trust-timeline__text p {
    font-size: 14px;
  }

  .trust-timeline__years {
    font-size: 12px;
  }

  .trust-timeline__years li:first-child,
  .trust-timeline__years li:last-child {
    font-size: 14px;
  }
}
