/* ============================================ */
/* WHY FITMETRICS SECTION */
/* ============================================ */

.wave-brown-transition {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.why-fitmetrics-section {
  background: linear-gradient(135deg, #8b6f47 0%, #a0826d 50%, #b39475 100%);
  padding: 120px 5% 120px;
  position: relative;
  overflow: hidden;
}

.why-fitmetrics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.4;
  pointer-events: none;
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.why-content {
  color: #ffffff;
  padding-right: 40px;
}

.why-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.why-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #f5f5f5;
  font-weight: 400;
}

.why-subdescription {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #e8e8e8;
  font-weight: 300;
}

/* ============================================ */
/* HIGHLIGHTS */
/* ============================================ */

.why-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
  width: 32px;
  height: 32px;
  background: #6de75d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
}

/* ============================================ */
/* VISUAL SECTION */
/* ============================================ */

.why-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visual-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.visual-wrapper:hover img {
  transform: scale(1.05);
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(109, 231, 93, 0.1) 0%,
    rgba(139, 111, 71, 0.2) 100%
  );
  pointer-events: none;
}

/* ============================================ */
/* SCROLL REVEAL ANIMATIONS */
/* ============================================ */

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media screen and (max-width: 1200px) {
  .why-title {
    font-size: 3rem;
  }

  .why-container {
    gap: 60px;
  }
}

@media screen and (max-width: 968px) {
  .why-fitmetrics-section {
    padding: 80px 5%;
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-content {
    padding-right: 0;
    text-align: left;
  }

  .why-title {
    font-size: 2.5rem;
  }

  .why-description {
    font-size: 1.05rem;
  }

  .why-visual {
    min-height: 400px;
  }
}

@media screen and (max-width: 640px) {
  .why-fitmetrics-section {
    padding: 60px 5%;
  }

  .why-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .why-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .why-subdescription {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .why-highlights {
    gap: 15px;
  }

  .highlight-item {
    padding: 15px 20px;
  }

  .highlight-item span {
    font-size: 0.95rem;
  }

  .why-visual {
    min-height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .why-fitmetrics-section {
    padding: 50px 5%;
  }

  .why-title {
    font-size: 1.75rem;
  }

  .highlight-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .highlight-item span {
    font-size: 0.9rem;
  }
}
