/* GENERAL */
body {
  background-color: #f5f7fb;
  color: #212529;
}

/* HERO */
.hero-advanced {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #ffffff;
}

.hero-advanced h1,
.hero-advanced p {
  color: #ffffff;
}

.hero-image {
  max-height: 360px;
}

/* TRUST BAR */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

.trust-bar h5 {
  color: #0d6efd;
}

.trust-bar small {
  color: #6c757d;
}

/* FEATURES */
.feature-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  height: 100%;
}

.feature-card h5 {
  color: #212529;
  font-weight: 600;
}

.feature-card p {
  color: #6c757d;
}

/* HOW IT WORKS */
#how-it-works {
  background-color: #f8f9fa;
}

.step-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.step-box h5 {
  color: #212529;
}

.step-box p {
  color: #6c757d;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #0d6efd;
  color: #ffffff;
  border-radius: 50%;
  line-height: 50px;
  font-weight: bold;
  font-size: 18px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #198754, #20c997);
  color: #ffffff;
}

.cta-section h2,
.cta-section p {
  color: #ffffff;
}

.animated-progress {
  height: 26px;
  border-radius: 20px;
}

.timeline {
  position: relative;
}

.timeline-row {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  position: relative;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: #0d6efd;
  border-radius: 50%;
  margin-top: 6px;
}

.timeline-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 22px;
  width: 2px;
  height: calc(100% - 22px);
  background: #dee2e6;
}

/* Loading animation */
.spinner {
  width: 70px;
  height: 70px;
  border: 6px solid #e9ecef;
  border-top: 6px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#loadingBox {
  padding: 40px 0;
}

