
.why-us {
  background: #f7f7f4;
  color: #111;
  padding: 95px 20px;
}

.why-container {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.why-us .section-label {
  color: #ff6a00;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.why-us h2 {
  max-width: 720px;
  margin: 0 auto 16px;
  color: #111;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 900;
}

.why-us .section-subtitle {
  max-width: 680px;
  margin: 0 auto 42px;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.65;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto 38px;
  max-width: 1050px;
}

.why-card {
  text-align: left;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
  padding: 26px 22px;
  min-height: 210px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.09);
}

.why-card span {
  display: inline-block;
  color: #ff6a00;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.why-card h3 {
  color: #111;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 310px;
  height: 58px;
  padding: 0 28px;
  background: #ff6a00;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(255,106,0,0.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.why-btn:hover {
  transform: translateY(-2px);
  background: #ff7a1a;
  box-shadow: 0 18px 38px rgba(255,106,0,0.32);
}

/* TABLET */
@media (max-width: 900px) {
  .why-us {
    padding: 80px 18px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
    gap: 16px;
  }

  .why-card {
    min-height: 190px;
  }
}

/* PHONE */
@media (max-width: 560px) {
  .why-us {
    padding: 70px 16px;
  }

  .why-us h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .why-us .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 14px;
    margin-bottom: 32px;
  }

  .why-card {
    min-height: auto;
    padding: 24px;
    border-radius: 18px;
  }

  .why-btn {
    width: 100%;
    min-width: 0;
    height: 56px;
  }
}