.fr-homeWhy{
  position:relative;
  padding:88px 0;
  background:
    radial-gradient(circle at top left, rgba(190, 0, 0, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  overflow:hidden;
}

.fr-homeWhy__grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap:42px;
  align-items:center;
}

.fr-homeWhy__figure{
  margin:0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(10, 16, 28, 0.12);
  background:#fff;
}

.fr-homeWhy__figure img{
  display:block;
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}

.fr-homeWhy__content{
  position:relative;
}

.fr-homeWhy__kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(170, 13, 13, 0.08);
  color:#aa0d0d;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.fr-homeWhy__title{
  margin:0 0 18px;
  color:#111827;
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.12;
  font-weight:800;
}

.fr-homeWhy__text{
  margin-bottom:28px;
}

.fr-homeWhy__text p{
  margin:0;
  color:#4b5563;
  font-size:1.03rem;
  line-height:1.85;
}

.fr-homeWhy__stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  margin-bottom:28px;
}

.fr-homeWhy__stat{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px 16px;
  border:1px solid rgba(17, 24, 39, 0.08);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(17, 24, 39, 0.05);
}

.fr-homeWhy__statIcon{
  flex:0 0 42px;
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#aa0d0d;
  color:#fff;
  font-size:1rem;
}

.fr-homeWhy__statText{
  color:#1f2937;
  font-size:.98rem;
  line-height:1.55;
  font-weight:600;
}

.fr-homeWhy__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.fr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  transition:all .25s ease;
}

.fr-btn--primary{
  background:#aa0d0d;
  color:#fff;
  box-shadow:0 12px 24px rgba(170, 13, 13, 0.22);
}

.fr-btn--primary:hover{
  transform:translateY(-2px);
  color:#fff;
  background:#8f0c0c;
}

@media (max-width: 991px){
  .fr-homeWhy{
    padding:72px 0;
  }

  .fr-homeWhy__grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .fr-homeWhy__figure img{
    min-height:300px;
  }
}

@media (max-width: 767px){
  .fr-homeWhy{
    padding:56px 0;
  }

  .fr-homeWhy__stats{
    grid-template-columns:1fr;
  }

  .fr-homeWhy__title{
    font-size:clamp(1.65rem, 7vw, 2.2rem);
  }

  .fr-homeWhy__text p{
    font-size:.98rem;
    line-height:1.8;
  }

  .fr-homeWhy__figure{
    border-radius:20px;
  }

  .fr-homeWhy__stat{
    border-radius:16px;
  }
}