/* Highlights Preview */
.highlights-preview {
  padding: 80px 20px;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--gob-blue);
  margin: 0 0 50px 0;
  font-weight: 700;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlights-card {
  background: var(--gob-light-bg);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.highlights-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gob-blue);
  background: white;
}

.highlights-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.highlights-card h3 {
  color: var(--gob-blue);
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.highlights-card p {
  color: var(--gob-muted);
  line-height: 1.6;
  margin: 0;
}

/* ... existing code ... */

/* Highlights – Impact Infographic */
.impact-section {
  margin-top: 55px;
  padding: 35px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.08) 0%, rgba(8, 66, 152, 0.06) 100%);
  border: 1px solid rgba(11, 94, 215, 0.18);
  box-shadow: var(--shadow-sm);
}

.impact-header {
  text-align: center;
  margin-bottom: 22px;
}

.impact-title {
  margin: 0;
  font-size: 1.8rem;
  color: var(--gob-dark-blue);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.impact-subtitle {
  margin: 10px auto 0;
  max-width: 850px;
  color: var(--gob-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.impact-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(222, 226, 230, 0.9);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 94, 215, 0.35);
}

.impact-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gob-blue) 0%, var(--gob-dark-blue) 100%);
  box-shadow: 0 10px 22px rgba(11, 94, 215, 0.18);
  margin-bottom: 12px;
}

.impact-emoji {
  font-size: 1.35rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.impact-metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.impact-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gob-dark-blue);
  letter-spacing: 0.4px;
}

.impact-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gob-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.impact-bar {
  height: 10px;
  width: 100%;
  border-radius: 999px;
  background: rgba(222, 226, 230, 0.9);
  overflow: hidden;
  position: relative;
}

.impact-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gob-green) 0%, var(--gob-blue) 60%, var(--gob-dark-blue) 100%);
  width: 70%;
}

.fill-offices { width: 68%; }
.fill-users { width: 74%; }
.fill-decisions { width: 92%; }
.fill-beneficiaries { width: 80%; }

.impact-footnote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(11, 94, 215, 0.25);
  color: var(--gob-text);
  font-size: 0.98rem;
  line-height: 1.7;
}

.impact-footnote strong {
  color: var(--gob-dark-blue);
}

.impact-footnote-dot {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gob-blue);
  box-shadow: 0 0 0 5px rgba(11, 94, 215, 0.15);
}

/* Responsive tweaks for infographic */
@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 520px) {
  .impact-section {
    padding: 26px 18px;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-number {
    font-size: 1.45rem;
  }
}

/* ... existing code ... */
