.why-section {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.06), transparent 20%),
    #ffffff;
}

/* Layout */
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE SIDE */
.why-image {
  position: relative;
}

.why-image-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.why-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* floating stat */
.why-floating-card {
  position: absolute;
  bottom: -20px;
  left: 20px;

  background: rgba(15, 23, 42, 0.95);
  color: #fff;

  padding: 16px 22px;
  border-radius: 18px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.why-floating-card strong {
  display: block;
  font-size: 1.4rem;
  color: #4ade80;
}

.why-floating-card span {
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* CONTENT */
.why-title {
  font-size: clamp(2rem, 4vw, 3rem); /* SMALLER than before */
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 18px;
}

.why-title span {
  color: var(--primary-color);
}

.why-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 28px;
}

/* LIST */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.why-item p {
  font-size: 0.98rem;
  color: #334155;
}

.why-item strong {
  color: #0f172a;
}

/* BUTTON */
.why-btn {
  margin-top: 10px;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 992px) {
  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-image {
    order: 1;
  }

  .why-content {
    order: 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }

  .why-text {
    font-size: 0.95rem;
  }

  .why-floating-card {
    left: 10px;
    bottom: -16px;
    padding: 14px 18px;
  }

  .why-item p {
    font-size: 0.95rem;
  }
}