@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.fbppv-section-wrap,
.fbppv-section-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.fbppv-section-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #182235;
  font-family: Arial, Helvetica, sans-serif;
}

.fbppv-section-wrap .fbppv-section {
  width: 100% !important;
  overflow: hidden;
}

.fbppv-section-wrap .fbppv-section-one,
.fbppv-section-wrap .fbppv-section-three {
  background: #ffffff;
}

.fbppv-section-wrap .fbppv-section-two {
  background: #f3f7fb;
}

.fbppv-section-wrap .fbppv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.fbppv-section-wrap .fbppv-heading,
.fbppv-section-wrap .fbppv-intro,
.fbppv-section-wrap .fbppv-card-title,
.fbppv-section-wrap .fbppv-card-text {
  text-align: center !important;
}

.fbppv-section-wrap .fbppv-heading {
  margin: 0 auto;
  color: #12213a;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.fbppv-section-wrap .fbppv-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #536277;
  line-height: 1.7;
  font-weight: 400;
}

.fbppv-section-wrap .fbppv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.fbppv-section-wrap .fbppv-card {
  position: relative;
  height: 100% !important;
  overflow: hidden;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(24, 119, 242, 0.12), transparent 44%);
  border: 1px solid #dbe6f2;
  box-shadow: 0 18px 42px rgba(18, 52, 86, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
}

.fbppv-section-wrap .fbppv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(0, 191, 166, 0.08), rgba(255, 205, 64, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.fbppv-section-wrap .fbppv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(24, 119, 242, 0.42);
  box-shadow: 0 24px 58px rgba(18, 52, 86, 0.16);
}

.fbppv-section-wrap .fbppv-card:hover::before {
  opacity: 1;
}

.fbppv-section-wrap .fbppv-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background: linear-gradient(135deg, #1877f2 0%, #00bfa6 100%);
  box-shadow: 0 12px 26px rgba(24, 119, 242, 0.24);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.fbppv-section-wrap .fbppv-card:hover .fbppv-icon {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 191, 166, 0.28);
}

.fbppv-section-wrap .fbppv-i {
  display: block;
  line-height: 1;
  text-align: center !important;
}

.fbppv-section-wrap .fbppv-card-title,
.fbppv-section-wrap .fbppv-card-text {
  position: relative;
  z-index: 1;
}

.fbppv-section-wrap .fbppv-card-title {
  margin: 0;
  color: #14243d;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.fbppv-section-wrap .fbppv-card-text {
  margin: 0 auto;
  color: #5b687a;
  line-height: 1.65;
  font-weight: 400;
}

.fbppv-section-wrap .fbppv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fbppv-section-wrap .fbppv-reveal.fbppv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

@media (min-width: 1024px) {
  .fbppv-section-wrap .fbppv-section {
    padding: 86px 0;
  }

  .fbppv-section-wrap .fbppv-container {
    padding: 0 28px;
  }

  .fbppv-section-wrap .fbppv-heading {
    font-size: 38px;
    max-width: 980px;
    white-space: nowrap;
  }

  .fbppv-section-wrap .fbppv-intro {
    margin-top: 16px;
    font-size: 17px;
  }

  .fbppv-section-wrap .fbppv-grid {
    margin-top: 42px;
    gap: 24px;
  }

  .fbppv-section-wrap .fbppv-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fbppv-section-wrap .fbppv-grid-eight {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fbppv-section-wrap .fbppv-card {
    min-height: 292px;
    padding: 34px 26px;
    border-radius: 22px;
  }

  .fbppv-section-wrap .fbppv-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 20px;
    font-size: 28px;
  }

  .fbppv-section-wrap .fbppv-card-title {
    font-size: 20px;
  }

  .fbppv-section-wrap .fbppv-card-text {
    margin-top: 12px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fbppv-section-wrap .fbppv-section {
    padding: 70px 0;
  }

  .fbppv-section-wrap .fbppv-container {
    padding: 0 24px;
  }

  .fbppv-section-wrap .fbppv-heading {
    font-size: 32px;
    max-width: 720px;
  }

  .fbppv-section-wrap .fbppv-intro {
    margin-top: 14px;
    font-size: 16px;
  }

  .fbppv-section-wrap .fbppv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
    gap: 20px;
  }

  .fbppv-section-wrap .fbppv-card {
    min-height: 270px;
    padding: 30px 22px;
    border-radius: 20px;
  }

  .fbppv-section-wrap .fbppv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
    border-radius: 18px;
    font-size: 25px;
  }

  .fbppv-section-wrap .fbppv-card-title {
    font-size: 19px;
  }

  .fbppv-section-wrap .fbppv-card-text {
    margin-top: 11px;
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .fbppv-section-wrap .fbppv-section {
    padding: 50px 0;
  }

  .fbppv-section-wrap .fbppv-container {
    padding: 0 16px;
  }

  .fbppv-section-wrap .fbppv-heading {
    font-size: 27px;
    max-width: 410px;
  }

  .fbppv-section-wrap .fbppv-intro {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.6;
  }

  .fbppv-section-wrap .fbppv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
    gap: 14px;
  }

  .fbppv-section-wrap .fbppv-card {
    min-height: 230px;
    padding: 22px 14px;
    border-radius: 16px;
  }

  .fbppv-section-wrap .fbppv-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
    border-radius: 15px;
    font-size: 21px;
  }

  .fbppv-section-wrap .fbppv-card-title {
    font-size: 16px;
  }

  .fbppv-section-wrap .fbppv-card-text {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.52;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .fbppv-section-wrap .fbppv-section {
    padding: 44px 0;
  }

  .fbppv-section-wrap .fbppv-container {
    padding: 0 12px;
  }

  .fbppv-section-wrap .fbppv-heading {
    font-size: 24px;
    max-width: 350px;
  }

  .fbppv-section-wrap .fbppv-intro {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .fbppv-section-wrap .fbppv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    gap: 12px;
  }

  .fbppv-section-wrap .fbppv-card {
    min-height: 224px;
    padding: 19px 11px;
    border-radius: 15px;
  }

  .fbppv-section-wrap .fbppv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
    border-radius: 14px;
    font-size: 19px;
  }

  .fbppv-section-wrap .fbppv-card-title {
    font-size: 15px;
  }

  .fbppv-section-wrap .fbppv-card-text {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.48;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .fbppv-section-wrap .fbppv-section {
    padding: 38px 0;
  }

  .fbppv-section-wrap .fbppv-container {
    padding: 0 10px;
  }

  .fbppv-section-wrap .fbppv-heading {
    font-size: 21px;
    max-width: 300px;
  }

  .fbppv-section-wrap .fbppv-intro {
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .fbppv-section-wrap .fbppv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
    gap: 10px;
  }

  .fbppv-section-wrap .fbppv-card {
    min-height: 216px;
    padding: 17px 9px;
    border-radius: 14px;
  }

  .fbppv-section-wrap .fbppv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 13px;
    font-size: 18px;
  }

  .fbppv-section-wrap .fbppv-card-title {
    font-size: 14px;
  }

  .fbppv-section-wrap .fbppv-card-text {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.45;
  }
}