.stats-section {
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.02);
  border: 1px solid #f5f5f5;
  padding: 30px 20px;
  color: #333;
}


.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.manifest {
  max-width: 550px;          /* suzi tekst da bude čitljiv */
  margin: 0 auto;            /* centriraj u svojoj koloni */
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.manifest p {
  font-style: italic;
  margin-bottom: 15px;
}

.manifest .signature {
  font-weight: bold;
  font-style: normal;
  margin-top: 5px;
  display: block;
  text-align: right;        /* potpis na desnu stranu */
  color: #111;
}

.stats-list {
  counter-reset: stat-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.stats-list li {
  font-size: 1.15rem;
  margin: 20px 0;
  counter-increment: stat-counter;
  position: relative;
  padding-left: 40px;
}

.stats-list li::before {
  content: counter(stat-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background: #80b684;   /* nova elegantna boja */
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.stats-list li span strong {
  color: #B22222; /* elegantna crvenkasta nijansa */
  font-weight: 600;
}


.stats-list li span {
  color: #2a9d8f; /* ista porodica kao mint zelena */
  font-size: 0.8em;
  font-style: italic;
}

/* CTA container */
.stats-cta {
  text-align: center;
  margin-top: 28px;
}

/* Elegantno, jasno, “one action” dugme – brick red varijanta */
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(#e74c3c, #c0392b); /* brick red */
  box-shadow: 0 6px 16px rgba(192,57,43,0.25);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(192,57,43,0.28);
  opacity: 0.95;
}
.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(192,57,43,0.22);
}
