/* =============================================
   VS FIELDBOSS PAGE
   ============================================= */

/* ── Comparison Table Section ────────────────── */
.vf-compare {
  background: #ffffff;
  padding: 72px 0 80px;
  font-family: 'Poppins', sans-serif;
}

.vf-compare__title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 0;
}

.vf-compare__table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
}

.vf-compare__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vf-compare__table {
  border-collapse: collapse;
  min-width: 620px;
}

/* ── Header ────────────────────────────────── */
.vf-compare__th {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  padding: 18px 22px;
  border-bottom: 2px solid #e5e7eb;
  white-space: nowrap;
}

.vf-compare__th--feature {
  color: #9ca3af;
  background: #ffffff;
  width: 24%;
}

.vf-compare__th--fb {
  color: #111111;
  background: #ffffff;
  width: 32%;
  border-left: 1px solid #e5e7eb;
}

.vf-compare__th--ep {
  background: #0A1A6F;
  color: #ffffff;
  width: 44%;
  border-left: 1px solid #0A1A6F;
}

/* ── Body Rows ─────────────────────────────── */
.vf-compare__row {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.18s ease;
}

.vf-compare__row:last-child {
  border-bottom: none;
}

.vf-compare__row:hover {
  background: #f8fafc;
}

.vf-compare__row:hover .vf-compare__td--ep {
  background: #e8eeff;
}

.vf-compare__td {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  padding: 16px 22px;
  vertical-align: middle;
  line-height: 1.6;
}

.vf-compare__td--feature {
  font-weight: 600;
  color: #374151;
}

.vf-compare__td--fb {
  color: #6b7280;
  border-left: 1px solid #e5e7eb;
}

.vf-compare__td--ep {
  color: #111827;
  background: #f0f4ff;
  border-left: 1px solid #dbeafe;
  font-weight: 500;
  transition: background 0.18s ease;
}

/* ── Honest Guidance Section ─────────────────── */
.vf-guidance {
  background: #ffffff;
  padding: 0 0 72px;
  font-family: 'Poppins', sans-serif;
}

.vf-guidance__title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 0;
}

.vf-guidance__card {
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.vf-guidance__card--fb {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.vf-guidance__card--fb:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  border-color: #d1d5db;
  transform: translateY(-3px);
}

.vf-guidance__card--ep {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
}

.vf-guidance__card--ep:hover {
  box-shadow: 0 6px 24px rgba(10, 26, 111, 0.12);
  border-color: #a5b4fc;
  transform: translateY(-3px);
}

.vf-guidance__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.3;
}

.vf-guidance__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vf-guidance__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #374151;
  line-height: 1.65;
}

.vf-guidance__check {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 3px;
}

.vf-guidance__check--fb {
  color: #9ca3af;
}

.vf-guidance__check--ep {
  color: #0A1A6F;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 991px) {
  .vf-compare {
    padding: 56px 0 64px;
  }

  .vf-compare__title {
    font-size: 26px;
  }

  .vf-guidance__title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .vf-compare {
    padding: 48px 0 56px;
  }

  .vf-compare__title {
    font-size: 22px;
  }

  .vf-compare__th,
  .vf-compare__td {
    padding: 14px 16px;
    font-size: 13px;
  }

  .vf-guidance {
    padding: 0 0 56px;
  }

  .vf-guidance__title {
    font-size: 22px;
  }

  .vf-guidance__card {
    padding: 24px 20px;
  }
}

@media (max-width: 575px) {
  .vf-compare {
    padding: 36px 0 44px;
  }

  .vf-compare__title {
    font-size: 20px;
  }

  .vf-compare__th,
  .vf-compare__td {
    padding: 12px 14px;
    font-size: 12.5px;
  }

  .vf-compare__table-wrap {
    border-radius: 12px;
  }

  .vf-guidance {
    padding: 0 0 44px;
  }

  .vf-guidance__title {
    font-size: 20px;
  }

  .vf-guidance__card {
    padding: 20px 16px;
  }

  .vf-guidance__card-title {
    font-size: 15px;
  }

  .vf-guidance__list li {
    font-size: 13px;
  }
}
