/*=====================================
WHY CHOOSE US
=====================================*/

.why-choose {
  position: relative;
  padding: 112px 0 120px;
  overflow: hidden;
  background: #fff;
}

.why-choose::before,
.why-choose::after {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  filter: blur(8px);
}

.why-choose::before {
  top: 18%;
  left: -230px;
  background: rgba(37, 99, 235, 0.045);
}

.why-choose::after {
  right: -230px;
  bottom: 8%;
  background: rgba(124, 58, 237, 0.045);
}

.why-choose-container {
  position: relative;
  z-index: 1;
  width: min(92%, 1320px);
  margin: auto;
}

.why-choose-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.why-choose-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  background: #eef2ff;
  color: #4264f5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .65px;
}

.why-choose-kicker i {
  font-size: 12px;
}

.why-choose-heading h2 {
  margin: 16px 0 12px;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1.15;
}

.why-choose-heading h2 span {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-choose-heading p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.55;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  position: relative;
  min-height: 206px;
  padding: 22px 20px;
  overflow: hidden;
  border: 1px solid #eaf0f7;
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.why-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  opacity: 0;
  background: var(--why-color);
  transition: opacity .28s ease;
}

.why-card:hover {
  z-index: 1;
  transform: translateY(-6px);
  border-color: var(--why-border);
  box-shadow: 0 20px 35px rgba(15, 23, 42, .09);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 11px;
  background: var(--why-soft);
  color: var(--why-color);
  font-size: 19px;
  transition: transform .28s ease;
}

.why-card:hover .why-card-icon {
  transform: rotate(-7deg) scale(1.07);
}

.why-card-badge {
  display: table;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--why-soft);
  color: var(--why-color);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.why-card h3 {
  margin: 12px 0 7px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

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

.why-card--blue { --why-color: #2563eb; --why-soft: #eff6ff; --why-border: #bfdbfe; }
.why-card--green { --why-color: #10b981; --why-soft: #ecfdf5; --why-border: #a7f3d0; }
.why-card--purple { --why-color: #7c3aed; --why-soft: #f5f3ff; --why-border: #ddd6fe; }
.why-card--orange { --why-color: #f59e0b; --why-soft: #fffbeb; --why-border: #fde68a; }
.why-card--cyan { --why-color: #06b6d4; --why-soft: #ecfeff; --why-border: #a5f3fc; }
.why-card--red { --why-color: #f43f5e; --why-soft: #fff1f2; --why-border: #fecdd3; }
.why-card--violet { --why-color: #7c5cff; --why-soft: #f5f3ff; --why-border: #ddd6fe; }
.why-card--amber { --why-color: #f97316; --why-soft: #fff7ed; --why-border: #fed7aa; }

@media (max-width: 1024px) {
  .why-choose { padding: 92px 0; }
  .why-choose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .why-card { min-height: 190px; }
}

@media (max-width: 600px) {
  .why-choose { padding: 76px 0; }
  .why-choose-container { width: min(90%, 430px); }
  .why-choose-heading { margin-bottom: 38px; }
  .why-choose-heading h2 { margin-top: 14px; letter-spacing: -.5px; }
  .why-choose-heading p { font-size: 14px; }
  .heading-break { display: none; }
  .why-choose-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { min-height: 0; padding: 20px; }
}
