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

.fbvv26-wrapper,
.fbvv26-wrapper * {
  box-sizing: border-box;
  min-width: 0;
}

.fbvv26-wrapper {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17212f;
  font-family: Arial, Helvetica, sans-serif;
}

.fbvv26-section {
  width: 100% !important;
}

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

.fbvv26-section-tint {
  background: linear-gradient(180deg, #f5f9fb 0%, #eef7f8 100%);
}

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

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

.fbvv26-heading {
  margin: 0 auto;
  color: #122033;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.fbvv26-intro {
  margin: 14px auto 0;
  max-width: 760px;
  color: #5d6979;
  line-height: 1.7;
  font-weight: 400;
}

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

.fbvv26-card {
  position: relative;
  height: 100% !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  border: 1px solid #dce8ed;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(22, 79, 103, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center !important;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.fbvv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 128, 128, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.fbvv26-card-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
}

.fbvv26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 128, 128, 0.38);
  box-shadow: 0 24px 60px rgba(22, 79, 103, 0.18);
}

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

.fbvv26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #1877f2 0%, #00a7a7 100%);
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease, background-position 260ms ease;
  background-size: 140% 140%;
  background-position: 0% 50%;
  text-align: center !important;
}

.fbvv26-card:hover .fbvv26-icon {
  transform: translateY(-4px) scale(1.04);
  background-position: 100% 50%;
  box-shadow: 0 18px 38px rgba(0, 167, 167, 0.28);
}

.fbvv26-i {
  color: #ffffff;
  line-height: 1;
  text-align: center !important;
}

.fbvv26-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #162235;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.fbvv26-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #607080;
  line-height: 1.65;
  font-weight: 400;
}

.fbvv26-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fbvv26-reveal.fbvv26-visible {
  opacity: 1;
  transform: translateY(0);
}

.fbvv26-card {
  transition-property: opacity, transform, box-shadow, border-color, background;
  transition-duration: 520ms, 520ms, 260ms, 260ms, 260ms;
  transition-timing-function: ease;
}

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

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

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

  .fbvv26-intro {
    font-size: 17px;
  }

  .fbvv26-grid {
    gap: 24px;
    margin-top: 42px;
  }

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

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

  .fbvv26-card {
    min-height: 296px;
    padding: 34px 26px 30px;
  }

  .fbvv26-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
  }

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

  .fbvv26-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .fbvv26-card-text {
    font-size: 15px;
  }
}

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

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

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

  .fbvv26-intro {
    font-size: 16px;
  }

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

  .fbvv26-card {
    min-height: 268px;
    padding: 30px 24px 26px;
  }

  .fbvv26-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

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

  .fbvv26-card-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .fbvv26-card-text {
    font-size: 14.5px;
  }
}

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

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

  .fbvv26-heading {
    font-size: 28px;
    max-width: 420px;
  }

  .fbvv26-intro {
    font-size: 14.5px;
    line-height: 1.6;
  }

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

  .fbvv26-card {
    min-height: 238px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

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

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

  .fbvv26-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .fbvv26-card-text {
    font-size: 13px;
    line-height: 1.52;
  }
}

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

  .fbvv26-container {
    padding: 0 12px;
  }

  .fbvv26-heading {
    font-size: 25px;
    max-width: 350px;
  }

  .fbvv26-intro {
    font-size: 13.5px;
    line-height: 1.55;
  }

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

  .fbvv26-card {
    min-height: 224px;
    padding: 19px 11px 18px;
    border-radius: 16px;
  }

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

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

  .fbvv26-card-title {
    font-size: 14.5px;
    margin-bottom: 7px;
  }

  .fbvv26-card-text {
    font-size: 12.3px;
    line-height: 1.48;
  }
}

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

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

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

  .fbvv26-intro {
    font-size: 12.8px;
    line-height: 1.5;
  }

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

  .fbvv26-card {
    min-height: 216px;
    padding: 16px 9px 15px;
    border-radius: 14px;
  }

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

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

  .fbvv26-card-title {
    font-size: 13.5px;
    margin-bottom: 7px;
  }

  .fbvv26-card-text {
    font-size: 11.8px;
    line-height: 1.44;
  }
}

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

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

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

  .fbvv26-intro {
    font-size: 12.5px;
  }

  .fbvv26-grid,
  .fbvv26-grid-3,
  .fbvv26-grid-4 {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .fbvv26-card {
    min-height: 210px;
    padding: 16px 10px;
  }

  .fbvv26-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

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

  .fbvv26-card-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .fbvv26-card-text {
    font-size: 12px;
  }
}