/* ================= WHY CHOOSE GOCOVER — Green Theme ================= */

.why-section {
  max-width: 1265px;
  margin: 28px auto;
  padding: 18px 18px;
  border-radius: 24px;
  background: radial-gradient(
    80% 95% at 50% 0%,
    #134e4a 0%,
    #042f2e 40%,
    #022c22 100%
  );
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 30%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(7,181,168,0.08), transparent 60%);
  pointer-events: none;
}

.why-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Heading */
.why-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6ee7b7;
  margin-bottom: 8px;
}

.why-title {
  font-size: 28px;
  margin: 0 0 4px;
  color: #ffffff;
}

.why-sub {
  font-size: 14px;
  color: #a7f3d0;
  margin-bottom: 20px;
  max-width: 720px;
}

/* Cards Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

/* Cards */
.why-card {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 18px 16px;
  color: #0f172a;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  border-color: rgba(7,181,168,0.3);
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(7,181,168,0.1), rgba(34,197,94,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 8px;
}

.why-card h3 {
  font-size: 16px;
  margin: 6px 0 4px;
}

.why-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner {
    padding: 0 22px;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-section {
    padding: 16px 14px;
  }
}
