/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.why-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.why-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 56px;
}
.why-label {
  color: var(--grey);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.why-heading {
  font: var(--h2);
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
}
.why-wave {
  margin-top: 40px;
}
.why-desc {
  max-width: 600px;
  line-height: 1.6;
  align-self: center;
}
.why-body {
  display: flex;
  align-items: center;
  gap: 85px;
}
.why-map {
  flex: 0 0 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-benefits {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.benefit-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}
.benefit-icon svg {
  width: 64px;
  height: 64px;
  display: block;
}
.benefit-title {
  font: var(--h5);
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.1;
}
.benefit-desc {
  font: var(--body-xs);
  color: #555;
  line-height: 1.6;
}

/* Why section responsive */
@media (max-width: 1024px) {
  .why-map {
    flex: 0 0 44%;
    max-width: 44%;
  }
  .why-benefits {
    gap: 24px;
  }
  .why-heading {
    font-size: 40px;
  }
}
 
@media (max-width: 768px) {
  .why-section {
    padding: 60px 0;
  }
  .why-top {
    flex-direction: column;
    align-items: center;   /* center horizontally */
    text-align: center; 
    gap: 16px;
    margin-bottom: 40px;
  }
  .why-top > div {
    display: flex;
    flex-direction: column;
    align-items: center;   /* center heading block */
  }
  
  .why-desc {
    max-width: 100%;
    align-self: center;    /* center paragraph */
    text-align: center;
  }
  .why-body {
    flex-direction: column;
    gap: 40px;
  }
  .why-map {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .why-map svg {
    max-width: 320px;
  }
  .why-heading {
    font-size: 34px;
  }
}
 
@media (max-width: 480px) {
  .why-section {
    padding: 120px 0;
  }
  .why-heading {
    font-size: 28px;
  }
  .benefit-icon {
    width: 52px;
    height: 52px;
  }
  .benefit-icon svg {
    width: 52px;
    height: 52px;
  }
  .benefit-title {
    font-size: 18px;
  }
}