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

.fbfv-viewer-section,
.fbfv-viewer-section * {
  box-sizing: border-box;
  min-width: 0;
}

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

.fbfv-viewer-section .fbfv-panel {
  width: 100% !important;
}

.fbfv-viewer-section .fbfv-panel-white {
  background: #ffffff;
}

.fbfv-viewer-section .fbfv-panel-tint {
  background: linear-gradient(180deg, #f3f8ff 0%, #eef6f4 100%);
}

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

.fbfv-viewer-section h2,
.fbfv-viewer-section .fbfv-intro,
.fbfv-viewer-section h3,
.fbfv-viewer-section p {
  text-align: center !important;
}

.fbfv-viewer-section h2 {
  margin: 0 auto;
  color: #12315f;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.fbfv-viewer-section .fbfv-intro {
  max-width: 760px;
  margin: 14px auto 0;
  color: #506176;
  line-height: 1.7;
  font-weight: 400;
}

.fbfv-viewer-section .fbfv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
}

.fbfv-viewer-section .fbfv-card {
  height: 100% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbe7f5;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(21, 67, 123, 0.10);
  position: relative;
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.fbfv-viewer-section .fbfv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(21, 119, 255, 0.10), transparent 44%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.fbfv-viewer-section .fbfv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #1877f2 0%, #16a085 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.24);
  transition: transform 320ms ease, box-shadow 320ms ease, background-position 320ms ease;
  background-size: 160% 160%;
}

.fbfv-viewer-section .fbfv-i {
  color: #ffffff;
  line-height: 1;
}

.fbfv-viewer-section h3 {
  margin: 20px 0 0;
  color: #172033;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.fbfv-viewer-section .fbfv-card p {
  margin: 12px auto 0;
  color: #5b6a7f;
  line-height: 1.62;
  font-weight: 400;
}

.fbfv-viewer-section .fbfv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(22, 160, 133, 0.42);
  box-shadow: 0 24px 58px rgba(21, 67, 123, 0.16);
  background: #ffffff;
}

.fbfv-viewer-section .fbfv-card:hover::before {
  opacity: 1;
}

.fbfv-viewer-section .fbfv-card:hover .fbfv-icon {
  transform: translateY(-4px);
  background-position: 100% 50%;
  box-shadow: 0 18px 36px rgba(22, 160, 133, 0.28);
}

.fbfv-viewer-section .fbfv-card.fbfv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fbfv-viewer-section .fbfv-card.fbfv-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .fbfv-viewer-section .fbfv-panel {
    padding: 92px 24px;
  }

  .fbfv-viewer-section h2 {
    font-size: 42px;
    max-width: 980px;
  }

  .fbfv-viewer-section .fbfv-intro {
    font-size: 17px;
  }

  .fbfv-viewer-section .fbfv-grid {
    gap: 28px;
    margin-top: 44px;
  }

  .fbfv-viewer-section .fbfv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fbfv-viewer-section .fbfv-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fbfv-viewer-section .fbfv-card {
    min-height: 292px;
    padding: 34px 28px;
  }

  .fbfv-viewer-section .fbfv-icon {
    width: 68px;
    height: 68px;
  }

  .fbfv-viewer-section .fbfv-i {
    font-size: 28px;
  }

  .fbfv-viewer-section h3 {
    font-size: 21px;
  }

  .fbfv-viewer-section .fbfv-card p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fbfv-viewer-section .fbfv-panel {
    padding: 76px 22px;
  }

  .fbfv-viewer-section h2 {
    font-size: 34px;
    max-width: 780px;
  }

  .fbfv-viewer-section .fbfv-intro {
    font-size: 16px;
  }

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

  .fbfv-viewer-section .fbfv-card {
    min-height: 268px;
    padding: 30px 24px;
  }

  .fbfv-viewer-section .fbfv-icon {
    width: 62px;
    height: 62px;
  }

  .fbfv-viewer-section .fbfv-i {
    font-size: 25px;
  }

  .fbfv-viewer-section h3 {
    font-size: 20px;
  }

  .fbfv-viewer-section .fbfv-card p {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .fbfv-viewer-section .fbfv-panel {
    padding: 58px 16px;
  }

  .fbfv-viewer-section h2 {
    font-size: 27px;
    max-width: 520px;
  }

  .fbfv-viewer-section .fbfv-intro {
    font-size: 14.5px;
    line-height: 1.6;
  }

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

  .fbfv-viewer-section .fbfv-card {
    min-height: 232px;
    padding: 22px 14px;
    border-radius: 18px;
  }

  .fbfv-viewer-section .fbfv-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .fbfv-viewer-section .fbfv-i {
    font-size: 21px;
  }

  .fbfv-viewer-section h3 {
    font-size: 17px;
    margin-top: 16px;
  }

  .fbfv-viewer-section .fbfv-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .fbfv-viewer-section .fbfv-panel {
    padding: 50px 12px;
  }

  .fbfv-viewer-section h2 {
    font-size: 24px;
    max-width: 360px;
  }

  .fbfv-viewer-section .fbfv-intro {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .fbfv-viewer-section .fbfv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 24px;
  }

  .fbfv-viewer-section .fbfv-card {
    min-height: 222px;
    padding: 19px 10px;
    border-radius: 16px;
  }

  .fbfv-viewer-section .fbfv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .fbfv-viewer-section .fbfv-i {
    font-size: 19px;
  }

  .fbfv-viewer-section h3 {
    font-size: 15.5px;
    margin-top: 14px;
  }

  .fbfv-viewer-section .fbfv-card p {
    font-size: 12.2px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .fbfv-viewer-section .fbfv-panel {
    padding: 44px 10px;
  }

  .fbfv-viewer-section h2 {
    font-size: 22px;
    max-width: 310px;
  }

  .fbfv-viewer-section .fbfv-intro {
    font-size: 13px;
    line-height: 1.5;
  }

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

  .fbfv-viewer-section .fbfv-card {
    min-height: 214px;
    padding: 17px 8px;
    border-radius: 15px;
  }

  .fbfv-viewer-section .fbfv-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .fbfv-viewer-section .fbfv-i {
    font-size: 18px;
  }

  .fbfv-viewer-section h3 {
    font-size: 14.5px;
    margin-top: 13px;
  }

  .fbfv-viewer-section .fbfv-card p {
    font-size: 11.6px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .fbfv-viewer-section .fbfv-panel {
    padding: 38px 10px;
  }

  .fbfv-viewer-section h2 {
    font-size: 21px;
  }

  .fbfv-viewer-section .fbfv-intro {
    font-size: 13px;
  }

  .fbfv-viewer-section .fbfv-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .fbfv-viewer-section .fbfv-card {
    min-height: 210px;
    padding: 18px 12px;
  }

  .fbfv-viewer-section .fbfv-icon {
    width: 44px;
    height: 44px;
  }

  .fbfv-viewer-section .fbfv-i {
    font-size: 18px;
  }

  .fbfv-viewer-section h3 {
    font-size: 15px;
  }

  .fbfv-viewer-section .fbfv-card p {
    font-size: 12px;
  }
}