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

.why-us {
  position: relative;

  padding:
    100px
    var(--page-padding);

  overflow: visible;


}


.why-us__inner {
  display: grid;

  grid-template-columns:
    minmax(420px, 0.95fr)
    minmax(500px, 1.05fr);

  align-items: center;

  gap:
    clamp(70px, 8vw, 130px);

  width: 100%;
  max-width: 1220px;

  margin: 0 auto;
}


/* ==========================================================
   VISUAL
=/* ==========================================================
   WHY US — VISUAL
========================================================== */

.why-us__visual {
  position: relative;

  width: 100%;

  z-index: 1;
}


/* decorative offset layer πίσω από τη φωτογραφία */

.why-us__visual::before {
  content: "";

  position: absolute;

  z-index: -1;

  top: 16px;
  right: -16px;
  bottom: -16px;
  left: 16px;

  border-radius: 6px;

 
}


/* image container */

.why-us__visual-placeholder {
  position: relative;

  width: 100%;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 4px;

  background: #0c021f;

  box-shadow:
    0 28px 70px
    rgba(0, 0, 0, 0.15);
}


/* actual image */

.why-us__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  border-radius: inherit;
}


.why-us__visual-placeholder span {
  position: absolute;

  left: 30px;
  bottom: 28px;

  color: rgba(255, 255, 255, 0.92);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.15em;
}


/* ==========================================================
   CONTENT
========================================================== */

.why-us__content {
  max-width: 620px;
}


.why-us__eyebrow {
  margin: 0 0 27px;

  color: #ca7fff;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


.why-us__content h2 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(30px, 2.35vw, 45px);

  font-weight: 700;

  line-height: 1.04;


}


.why-us__intro {
  max-width: 580px;

  margin: 25px 0 0;

  color:
    rgba(255, 255, 255, 0.63);

  font-size: 15px;

  font-weight: 500;

  line-height: 1.65;
}


/* ==========================================================
   REASONS
========================================================== */

.why-us__reasons {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 96px;

  margin-top: 60px;
}


.why-us__reason {
  min-width: 0;
}


.why-us__icon {
  display: grid;

  width: 66px;
  height: 66px;

  place-items: center;

  margin-bottom: 20px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 12px 30px
    rgba(0, 0, 0, 0.14);
}


.why-us__icon img {
  width: 27px;
  height: 27px;

  object-fit: contain;
}


.why-us__reason h3 {
  margin: 0;

  color: #ffffff;

  font-size: 14px;

  font-weight: 750;

  line-height: 1.25;
}


.why-us__reason p {
  margin: 9px 0 0;

  color:
    rgba(255, 255, 255, 0.52);

  font-size: 12px;

  font-weight: 500;

  line-height: 1.5;
}


/* ==========================================================
   CTA
========================================================== */

.why-us__button {
  display: inline-flex;

  min-width: 210px;
  height: 50px;

  margin-top: 42px;

  padding: 0 24px;

  align-items: center;

  justify-content: center;

  gap: 14px;

  border-radius: 999px;
  border: 0.01px solid rgba(202, 127, 255, 1);
  border-width: 2px;
  color: #FFFFFF;
  background:rgba(71, 8, 82, 0.5);
  box-shadow: 0 12px 30px rgba(225, 32, 255, 0.16);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}






.why-us__button:hover {
  box-shadow: 0 10px 40px rgba(225, 32, 255, 0.28);
  transform: translateY(-3px);
}


.why-us__button:hover span:last-child {
  transform:
    translateX(4px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

  .why-us {
    padding:
      100px
      50px;
  }


  .why-us__inner {
    grid-template-columns:
      minmax(320px, 0.85fr)
      minmax(400px, 1.15fr);

    gap: 55px;
  }


  .why-us__reasons {
    gap: 20px;
  }


  .why-us__icon {
    width: 58px;
    height: 58px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

  .why-us {
    padding:
      80px
      20px;
  }


  .why-us__inner {
    display: flex;

    flex-direction: column;

    gap: 55px;
  }


  .why-us__visual {
    width: 100%;
  }


  .why-us__visual-placeholder {
    aspect-ratio: 4 / 5;
  }


  .why-us__content {
    width: 100%;
  }


  .why-us__content h2 {
    font-size:
      clamp(36px, 10vw, 46px);
  }


  .why-us__reasons {
    display: flex;

    flex-direction: column;

    gap: 24px;

    margin-top: 38px;
  }


  .why-us__reason {
    display: grid;

    grid-template-columns:
      56px
      1fr;

    column-gap: 16px;

    align-items: center;
  }


  .why-us__icon {
    grid-row:
      1 / span 2;

    width: 56px;
    height: 56px;

    margin: 0;
  }


  .why-us__reason p {
    margin-top: 5px;
  }


  .why-us__button {
    margin-top: 38px;
  }

}