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

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

.fbpv-2026-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  color: #172033;
  font-family: Arial, Helvetica, sans-serif;
  --fbpv-primary: #1877f2;
  --fbpv-secondary: #00a6d6;
  --fbpv-accent: #19b88a;
  --fbpv-text: #172033;
  --fbpv-muted: #5b677a;
  --fbpv-tint: #f3f8ff;
  --fbpv-border: rgba(24, 119, 242, 0.16);
  --fbpv-shadow: rgba(18, 58, 112, 0.12);
}

.fbpv-2026-section {
  width: 100% !important;
  max-width: 100% !important;
}

.fbpv-2026-section-white {
  background: #ffffff !important;
}

.fbpv-2026-section-tint {
  background: linear-gradient(180deg, #f3f8ff 0%, #eefbfa 100%) !important;
}

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

.fbpv-2026-wrap h2 {
  margin: 0 auto;
  max-width: 920px;
  color: var(--fbpv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.fbpv-2026-intro {
  margin: 16px auto 0;
  max-width: 760px;
  color: var(--fbpv-muted);
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
}

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

.fbpv-2026-card {
  position: relative;
  display: block;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--fbpv-border);
  box-shadow: 0 18px 42px var(--fbpv-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.fbpv-2026-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(24, 119, 242, 0.12), transparent 52%);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.fbpv-2026-card:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 119, 242, 0.34);
  box-shadow: 0 24px 56px rgba(18, 58, 112, 0.18);
}

.fbpv-2026-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.fbpv-2026-card-tint {
  background: rgba(255, 255, 255, 0.9);
}

.fbpv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-right: auto;
  margin-left: auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fbpv-primary), var(--fbpv-secondary));
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.24);
  transition: transform 260ms ease, box-shadow 260ms ease, background-position 260ms ease;
  background-size: 160% 160%;
  background-position: 0% 50%;
}

.fbpv-2026-card:hover .fbpv-icon {
  transform: translateY(-4px) scale(1.04);
  background-position: 100% 50%;
  box-shadow: 0 18px 36px rgba(0, 166, 214, 0.28);
}

.fbpv-i {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.fbpv-2026-wrap h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--fbpv-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.fbpv-2026-wrap .fbpv-2026-card p {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: var(--fbpv-muted);
  font-weight: 400;
  line-height: 1.62;
  text-align: center;
}

.fbpv-2026-card.fbpv-2026-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fbpv-2026-card.fbpv-2026-reveal.fbpv-2026-visible {
  opacity: 1;
  transform: translateY(0);
}

.fbpv-2026-card.fbpv-2026-reveal.fbpv-2026-visible:hover {
  transform: translateY(-8px);
}

@media (min-width: 1024px) {
  .fbpv-2026-section {
    padding: 92px 0 !important;
  }

  .fbpv-2026-container {
    padding: 0 28px !important;
  }

  .fbpv-2026-wrap h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  .fbpv-2026-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .fbpv-2026-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 26px !important;
  }

  .fbpv-2026-card {
    min-height: 292px;
    padding: 34px 28px 30px;
    border-radius: 24px;
  }

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

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

  .fbpv-2026-wrap h3 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .fbpv-2026-wrap .fbpv-2026-card p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fbpv-2026-section {
    padding: 76px 0 !important;
  }

  .fbpv-2026-container {
    padding: 0 24px !important;
  }

  .fbpv-2026-wrap h2 {
    font-size: 34px;
  }

  .fbpv-2026-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .fbpv-2026-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  .fbpv-2026-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

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

  .fbpv-i {
    font-size: 25px;
  }

  .fbpv-2026-wrap h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .fbpv-2026-wrap .fbpv-2026-card p {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .fbpv-2026-section {
    padding: 58px 0 !important;
  }

  .fbpv-2026-container {
    padding: 0 16px !important;
  }

  .fbpv-2026-wrap h2 {
    font-size: 28px;
  }

  .fbpv-2026-intro {
    font-size: 14.5px;
    line-height: 1.55;
    margin-top: 12px;
    margin-bottom: 24px;
  }

  .fbpv-2026-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .fbpv-2026-card {
    min-height: 234px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .fbpv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 16px;
  }

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

  .fbpv-2026-wrap h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .fbpv-2026-wrap .fbpv-2026-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .fbpv-2026-section {
    padding: 50px 0 !important;
  }

  .fbpv-2026-container {
    padding: 0 12px !important;
  }

  .fbpv-2026-wrap h2 {
    font-size: 25px;
  }

  .fbpv-2026-intro {
    font-size: 13.5px;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .fbpv-2026-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px !important;
  }

  .fbpv-2026-card {
    min-height: 224px;
    padding: 19px 11px 17px;
    border-radius: 16px;
  }

  .fbpv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 15px;
  }

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

  .fbpv-2026-wrap h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .fbpv-2026-wrap .fbpv-2026-card p {
    font-size: 12.5px;
    line-height: 1.46;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .fbpv-2026-section {
    padding: 44px 0 !important;
  }

  .fbpv-2026-container {
    padding: 0 10px !important;
  }

  .fbpv-2026-wrap h2 {
    font-size: 22px;
  }

  .fbpv-2026-intro {
    font-size: 12.5px;
    line-height: 1.46;
    margin-top: 9px;
    margin-bottom: 18px;
  }

  .fbpv-2026-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .fbpv-2026-card {
    min-height: 214px;
    padding: 17px 9px 15px;
    border-radius: 14px;
  }

  .fbpv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .fbpv-i {
    font-size: 18px;
  }

  .fbpv-2026-wrap h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .fbpv-2026-wrap .fbpv-2026-card p {
    font-size: 12px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .fbpv-2026-grid {
    grid-template-columns: 1fr !important;
  }
}