* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #222;
}

/* GLOBAL */
section {
  padding: 100px 12%;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

/* ================= FEATURES ================= */

.features {
  text-align: center;
}

.features h2 {
  margin-bottom: 60px;
}

.features-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 80px;
}

.features-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item img {
  width: 28px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
}

.feature-item p {
  font-size: 14px;
  color: #666;
}

/* CENTER IMAGE */
.center-image img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
}

/* BUTTON */
.cta {
  margin-top: 50px;
  background: #ee6c4d;
  color: white;
  padding: 14px 30px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.payments {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.payments img {
  width: 40px;
  height: auto;
}

/* ================= NUTRITION ================= */

.nutrition {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nutrition-text p {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
}

.stats {
  margin-top: 30px;
}

.stats span {
  color: #ee6c4d;
  font-weight: 600;
  margin-right: 10px;
}

.nutrition-img img {
  width: 100%;
  border-radius: 14px;
}

/* ================= SPLIT ================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 14px;
}

.split .text p {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
}

.reverse {
  direction: rtl;
}

.reverse .text {
  direction: ltr;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  section {
    padding: 60px 6%;
  }

  .features-wrapper,
  .nutrition,
  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reverse {
    direction: ltr;
  }
}