.why-outer {
  background: var(--page-bg);
  padding: 40px 0 60px;
}

.why-card {
  background: #f2ede1;
  border-radius: 28px;
  padding: 96px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 240px;
  flex-wrap: wrap;
}

.why-content {
  flex: 1 1 420px;
  min-width: 280px;
}

.why-title {
  color: #2b2a28;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  margin: 0 0 32px;
}

.why-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.why-stat {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  padding: 24px 18px;
  text-align: center;
  flex: 1 1 130px;
  min-width: 120px;
  transition: transform 0.3s var(--ease-natural), box-shadow 0.3s var(--ease-natural);
}

.why-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.1);
}

.why-stat .stat-number {
  color: #201f1e;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px;
}

.why-stat .stat-label {
  color: #55524d;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.why-media {
  position: relative;
  flex: 1 1 380px;
  min-width: 260px;
  max-width: 480px;
  aspect-ratio: 4 / 3;
}

.why-media::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 30%;
  height: 40%;
  border: 5px solid #201f1e;
  z-index: 0;
}

.why-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 20px 0;
  display: block;
}

@media (max-width: 900px) {
  .why-card {
    padding: 44px 28px;
    gap: 40px;
  }

  .why-media {
    order: -1;
    margin: 0 auto;
  }

  .why-media::before {
    top: -18px;
    left: -18px;
  }
}

@media (max-width: 480px) {
  .why-card {
    padding: 34px 20px;
  }

  .why-stats {
    gap: 10px;
  }

  .why-stat {
    flex: 1 1 0;
    min-width: 0;
    padding: 16px 8px;
  }

  .why-stat .stat-number {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .why-stat .stat-label {
    font-size: 12.5px;
  }
}
