/* Results Cards Section (Inspired by provided image) */
.section-results-cards {
  background-color: transparent;
  padding: 100px 0 120px;
  font-family: 'Inter', sans-serif;
}

.results-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  gap: 40px;
}

.results-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  letter-spacing: -0.02em;
  flex: 1;
  max-width: 500px;
  margin: 0;
}

.results-desc {
  flex: 1;
  max-width: 400px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-top: 10px;
}

.results-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.results-cards-grid.grid-2-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 850px;
}

/* Card Styling with Chamfered Corners */
.result-card {
  background-color: #FFEAE6; /* Light brand red */
  border-radius: 24px; /* Rounds top-right and bottom-left */
  /* Clip path cuts top-left and bottom-right diagonally */
  clip-path: polygon(
    40px 0, 
    100% 0, 
    100% calc(100% - 40px), 
    calc(100% - 40px) 100%, 
    0 100%, 
    0 40px
  );
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  /* Since clip-path cuts off box-shadow on the element itself, we can't easily have a drop shadow.
     Usually this is fine for this flat, modern style. */
}

.result-card:hover {
  transform: translateY(-10px);
}

.result-card.highlight {
  background: linear-gradient(135deg, #FF6B52 0%, #A01010 100%);
  color: white;
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 67, 38, 0.15); /* Translucent red */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #FF4326;
}

.result-card.highlight .card-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.card-number {
  font-family: 'Inter Tight', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color:  #FF4326;; /* Deep red for numbers */
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.04em;
}

.card-number .symbol {
  font-size: 40px;
  font-weight: 700;
}

.result-card.highlight .card-number {
  color: white;
}

.card-label {
  font-size: 24px;
  font-weight: 700;
  color:  #FF4326;; /* Darker red */
  margin-bottom: 40px;
}

.result-card.highlight .card-label {
  color: white;
}

.card-note {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  text-align: right;
  margin-top: auto; /* Push to bottom */
  max-width: 80%;
  align-self: flex-end;
}

.result-card.highlight .card-note {
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .results-header-flex {
    flex-direction: column;
    gap: 20px;
  }
  
  .results-title {
    max-width: 100%;
    font-size: 42px;
  }
  
  .results-desc {
    max-width: 100%;
  }
  
  .results-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-results-cards {
    padding: 60px 0 80px;
  }

  .results-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .card-number {
    font-size: 64px;
  }

  .result-card {
    padding: 30px;
  }
}
