.carousel-control-prev,
.carousel-control-next {
  width: 35px;
  height: 35px;
  /* background: rgba(10, 61, 97, 1); */
  background: #fff;
  padding: 5px;
  z-index: 999;
}

/* HERO SECTION */
.hero {
  /* background: linear-gradient(90deg, var(--brand-dark-blue) 40%, var(--brand-green) 100%); */
  background: linear-gradient(99.15deg, var(--brand-dark-blue) 44.91%, #72953be6 84.19%, rgba(17, 38, 53, 0.7) 119.93%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* STEPS SECTION */
.step-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.step-img img {
  min-height: 160px;
  max-height: 160px;
  width: 100%;
  object-fit: cover;
}

.step-number {
  background: #2f719e;
}

/* CTA BANNER */
.cta-banner {
  /* background: linear-gradient(135deg, var(--brand-green) 0%, #059669 100%); margin: 3rem 0;
  background: linear-gradient(135deg, #25313e 0%, #203a43 40%, #0f2027 100%); */
  background: url('/assets/img/bg-gradient.jpg');
  background-position: 68%;
}

a.btn {
  transition: all 0.3s ease;
}

a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* RIA SECTION */
.ria-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.ria-preview {
  border: 2px solid var(--brand-blue);
}

.play-button {
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgb(0 0 0 / 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #444;
}

/* MODULES SECTION */
.modules-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.module-card {
  background: #e0f2fe;
  transition: all 0.3s ease;
}

.module-card:hover {
  /* background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%); */
  background: linear-gradient(113deg, rgba(0, 51, 111, 1) 52%, rgba(136, 183, 64, 1) 89%);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.module-card:hover h5,
.module-card:hover p,
.module-card:hover h3 {
  color: #fff;
}

.module-card:hover a {
  color: #2196f3;
}

.module-card h3 {
  color: #1e293b;
  font-size: 1.1rem;
}

.module-card p {
  color: #64748b;
  font-size: 0.9rem;
}

.module-card a {
  color: #2563eb;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.module-card a:hover {
  color: #1d4ed8;
}

@media (max-width: 1400px) {
  .modules-list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .modules-list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .modules-list-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .modules-list-grid {
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .modules-list-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    padding: 1.25rem;
  }
}

/* EXPERTISE SECTION */
.expertise-section .lead {
  color: #666;
}

.stat-item {
  border-bottom: 2px solid #e8f4fd;
}

/* .cmpy:after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #dbf3ff;
  left: 0;
  top: -8px;
  position: absolute;
} */
.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: invert(1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: #e8f4fd;
}

.stat-icon i {
  font-size: 1.5rem;
  color: rgba(49, 114, 159, 1);
}

.stat-content {
  flex: 1;
}

.stat-label {
  color: #666;
}

@media (max-width: 768px) {
  .stat-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }

  .stat-icon i {
    font-size: 1.25rem;
  }
}

/* PROTECTED FEATURES */
.protected-section {
  background: #f5faff;
}

.protected-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #f8fafc;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  border-bottom: 4px solid transparent;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.col-md-4:nth-child(1) .feature-card,
.col-md-4:nth-child(3) .feature-card,
.col-md-4:nth-child(5) .feature-card {
  border-bottom-color: var(--brand-blue);
}

.col-md-4:nth-child(2) .feature-card,
.col-md-4:nth-child(4) .feature-card {
  border-bottom-color: #88B740;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.col-md-4:nth-child(1) .feature-icon,
.col-md-4:nth-child(3) .feature-icon,
.col-md-4:nth-child(5) .feature-icon {
  background-color: var(--brand-blue);
}

.col-md-4:nth-child(2) .feature-icon,
.col-md-4:nth-child(4) .feature-icon {
  background: #88B740;
}

.feature-card h3 {
  font-size: 1.1rem;
}

.feature-card ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-card li {
  font-size: 0.9rem;
  color: rgba(4, 21, 39, 1);
}

.feature-card li i {
  margin-right: 2px;
  font-size: 0.8rem;
}

@media (max-width: 1200px) {
  .protected-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 992px) {
  .protected-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

@media (max-width: 768px) {
  .protected-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* TRUSTED SECTION */
.trusted-section {
  background: var(--bg-section);
}

.logo-grid img {
  height: 70px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo-grid img:hover {
  opacity: 1;
  /*filter: grayscale(0%);*/
}

/* TESTIMONIAL */

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* FINAL CTA */
.f_cta .btn {
  transition: all 0.3s ease;
}

.f_cta .btn:hover {
  color: #10b981 !important;
}