/* HERO BRAND LOCKUP */
.med-hero-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 20px;
}
.med-hero-brand ion-icon {
  font-size: 28px;
  color: #fb5c82;
}
.med-hero-brand .accent-teal {
  font-weight: 800;
}

/* IMPACT SECTION (stats + flow + allarme photo) */
.med-impact {
  padding: 28px 6% 56px;
  background: #ffffff;
}

.med-impact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.med-impact-text h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 10px;
}
.med-impact-text > p {
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}

.med-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.med-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.med-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.med-stat-item:nth-child(odd) .med-stat-icon {
  background: #fdeff3;
  color: #fb5c82;
}
.med-stat-item:nth-child(even) .med-stat-icon {
  background: rgba(11, 143, 115, 0.08);
  color: #0b8f73;
}
.med-stat-value {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
}
.med-stat-item:nth-child(odd) .med-stat-value {
  color: #fb5c82;
}
.med-stat-item:nth-child(even) .med-stat-value {
  color: #0b8f73;
}
.med-stat-label {
  font-size: 13px;
  color: #5c6378;
}

.med-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.med-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}
.med-flow-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdeff3;
  color: #fb5c82;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.med-flow-step:last-child .med-flow-icon {
  background: rgba(11, 143, 115, 0.1);
  color: #0b8f73;
}
.med-flow-step span {
  font-size: 11.5px;
  font-weight: 600;
  color: #16234f;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}
.med-flow-arrow {
  color: #f1c6d3;
  font-size: 16px;
  flex-shrink: 0;
}

.med-footnote {
  font-size: 12px;
  font-style: italic;
  color: #9a9ab0;
  line-height: 1.5;
}

.med-impact-visual img {
  width: 100%;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .med-impact-grid {
    grid-template-columns: 1fr;
  }
  .med-impact-visual {
    order: -1;
  }
  .med-flow {
    flex-wrap: wrap;
  }
  .med-flow-step {
    flex: 0 0 calc(33.333% - 6px);
  }
  .med-flow-arrow {
    display: none;
  }
}
