.cta-banner-big {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #a2d1ff, #d4ffb9);;
}

.cta-big-content {
  flex: 1 1 420px;
}

.cta-big-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-big-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #374151;
}

.cta-big-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  padding: 6px 14px;
  background: #6366f1;
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
}

.btn-cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-white {
  background: #fff;
  border: 2px solid #6366f1;
  color: #6366f1;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #6366f1;
  color: #fff;
}

.cta-big-visuals {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.achievements-board {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ach-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

.ach-card svg {
  flex-shrink: 0;
}

.ach-card.done svg { stroke: #22c55e; }
.ach-card.inprogress svg { stroke: #f59e0b; }
.ach-card.upcoming svg { stroke: #6366f1; }

.ach-text {
  font-weight: 500;
  color: #111827;
}

.ach-card:nth-child(1) { animation-delay: 0.2s; }
.ach-card:nth-child(2) { animation-delay: 0.4s; }
.ach-card:nth-child(3) { animation-delay: 0.6s; }
.ach-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cta-banner-big {
    flex-direction: column;
    padding: 30px 20px;
  }
  .cta-big-visuals {
    width: 100%;
  }
}



.cta-visuals-board {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.board {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.board-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 120px;
}

.board-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
}

.board-card {
  background: #eef2ff;
  color: #4338ca;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s forwards;
}

.board-col:nth-child(1) .board-card:nth-child(2) { animation-delay: 0.2s; }
.board-col:nth-child(1) .board-card:nth-child(3) { animation-delay: 0.4s; }
.board-col:nth-child(2) .board-card:nth-child(2) { animation-delay: 0.6s; }
.board-col:nth-child(2) .board-card:nth-child(3) { animation-delay: 0.8s; }
.board-col:nth-child(3) .board-card:nth-child(2) { animation-delay: 1s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cta-banner {
    flex-direction: column;
    padding: 30px 20px;
  }
  .board {
    flex-direction: column;
  }
}

.cta-visuals-dashboard {
  flex: 1 1 420px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.dash-widget {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: widgetShow 0.6s forwards;
}

.dash-widget:nth-child(2) {
  animation-delay: 0.2s;
}
.dash-widget:nth-child(3) {
  animation-delay: 0.4s;
}

.dash-widget:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dash-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.dash-label {
  font-size: 0.9rem;
  color: #6b7280;
}

@keyframes widgetShow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cta-visuals-dashboard {
    grid-template-columns: 1fr;
  }
}
