@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');

.fbcpv-wrap,
.fbcpv-wrap * {
  box-sizing: border-box;
}

.fbcpv-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #172033;
  font-family: inherit;
}

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

.fbcpv-section-white {
  background: #ffffff;
}

.fbcpv-section-tint {
  background: linear-gradient(180deg, #f4f8fb 0%, #eef5f4 100%);
}

.fbcpv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  min-width: 0;
}

.fbcpv-heading {
  margin: 0 auto;
  color: #172033;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
}

.fbcpv-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #5b6678;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.fbcpv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
  min-width: 0;
}

.fbcpv-card {
  position: relative;
  display: block;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 100%);
  border: 1px solid #dce7ee;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(18, 72, 98, 0.11);
  transition:
    transform 360ms ease,
    box-shadow 360ms ease,
    border-color 360ms ease,
    background-position 520ms ease;
  background-size: 100% 160%;
}

.fbcpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 119, 242, 0.13), transparent 44%),
    linear-gradient(135deg, rgba(22, 163, 154, 0.08), rgba(255, 176, 72, 0.08));
  transition: opacity 360ms ease;
}

.fbcpv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(24, 119, 242, 0.34);
  box-shadow: 0 24px 64px rgba(18, 72, 98, 0.18);
  background-position: 0 100%;
}

.fbcpv-card:hover::before {
  opacity: 1;
}

.fbcpv-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%, #16a39a 68%, #ffb048 100%);
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.22);
  transition: transform 360ms ease, box-shadow 360ms ease, filter 360ms ease;
}

.fbcpv-card:hover .fbcpv-icon {
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 18px 38px rgba(22, 163, 154, 0.26);
}

.fbcpv-i {
  display: block;
  color: #ffffff;
  line-height: 1;
}

.fbcpv-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #172033;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.fbcpv-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5b6678;
  font-weight: 400;
  line-height: 1.62;
  text-align: center;
}

.fbcpv-js .fbcpv-card {
  opacity: 0;
  transform: translateY(18px);
}

.fbcpv-js .fbcpv-card.fbcpv-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .fbcpv-container {
    padding: 0 28px;
  }

  .fbcpv-heading {
    font-size: 42px;
    max-width: 980px;
    white-space: nowrap;
  }

  .fbcpv-intro {
    margin-top: 18px;
    font-size: 17px;
  }

  .fbcpv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 46px;
  }

  .fbcpv-card {
    min-height: 292px;
    padding: 34px 28px 30px;
  }

  .fbcpv-icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .fbcpv-i {
    font-size: 31px;
  }

  .fbcpv-card h3 {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .fbcpv-card p {
    font-size: 15.5px;
  }
}

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

  .fbcpv-container {
    padding: 0 24px;
  }

  .fbcpv-heading {
    font-size: 34px;
    max-width: 760px;
  }

  .fbcpv-intro {
    margin-top: 16px;
    font-size: 16px;
  }

  .fbcpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
  }

  .fbcpv-card {
    min-height: 268px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  .fbcpv-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    margin-bottom: 21px;
  }

  .fbcpv-i {
    font-size: 28px;
  }

  .fbcpv-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .fbcpv-card p {
    font-size: 15px;
  }
}

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

  .fbcpv-container {
    padding: 0 16px;
  }

  .fbcpv-heading {
    font-size: 28px;
    max-width: 520px;
  }

  .fbcpv-intro {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .fbcpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .fbcpv-card {
    min-height: 226px;
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

  .fbcpv-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    margin-bottom: 16px;
  }

  .fbcpv-i {
    font-size: 23px;
  }

  .fbcpv-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .fbcpv-card p {
    font-size: 13.2px;
    line-height: 1.48;
  }
}

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

  .fbcpv-container {
    padding: 0 14px;
  }

  .fbcpv-heading {
    font-size: 25px;
    max-width: 360px;
  }

  .fbcpv-intro {
    margin-top: 11px;
    font-size: 13.8px;
    line-height: 1.52;
  }

  .fbcpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .fbcpv-card {
    min-height: 222px;
    padding: 20px 12px 18px;
    border-radius: 15px;
  }

  .fbcpv-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .fbcpv-i {
    font-size: 21px;
  }

  .fbcpv-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .fbcpv-card p {
    font-size: 12.7px;
    line-height: 1.44;
  }
}

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

  .fbcpv-container {
    padding: 0 10px;
  }

  .fbcpv-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .fbcpv-intro {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.48;
  }

  .fbcpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .fbcpv-card {
    min-height: 214px;
    padding: 18px 9px 16px;
    border-radius: 14px;
  }

  .fbcpv-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    margin-bottom: 12px;
  }

  .fbcpv-i {
    font-size: 19px;
  }

  .fbcpv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .fbcpv-card p {
    font-size: 12px;
    line-height: 1.38;
  }
}

@media (max-width: 319px) {
  .fbcpv-section {
    padding: 38px 0;
  }

  .fbcpv-container {
    padding: 0 10px;
  }

  .fbcpv-heading {
    font-size: 21px;
  }

  .fbcpv-intro {
    margin-top: 10px;
    font-size: 13px;
  }

  .fbcpv-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .fbcpv-card {
    min-height: 210px;
    padding: 18px 12px 16px;
  }

  .fbcpv-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    margin-bottom: 12px;
  }

  .fbcpv-i {
    font-size: 19px;
  }

  .fbcpv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .fbcpv-card p {
    font-size: 12px;
  }
}