@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-wrap,
.fbppv-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.fbppv-wrap {
  --fbppv-primary: #18735d;
  --fbppv-secondary: #0f4f70;
  --fbppv-accent: #f0b13a;
  --fbppv-soft: #f4fbf8;
  --fbppv-text: #14231f;
  --fbppv-muted: #5d6f69;
  --fbppv-border: #dceee8;
  --fbppv-shadow: rgba(15, 79, 112, 0.14);
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  font-family: inherit;
}

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

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

.fbppv-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 115, 93, 0.08), transparent 32%),
    linear-gradient(180deg, #f7fcfa 0%, #eef8f4 100%);
}

.fbppv-container {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center;
}

.fbppv-title {
  margin: 0 auto;
  color: var(--fbppv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

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

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

.fbppv-card {
  position: relative;
  height: 100% !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(24, 115, 93, 0.08), rgba(240, 177, 58, 0.08));
  border: 1px solid var(--fbppv-border);
  border-radius: 22px;
  box-shadow: 0 18px 45px var(--fbppv-shadow);
  text-align: center;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
  background-size: 100% 100%, 180% 180%;
}

.fbppv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 115, 93, 0.08), transparent 38%, rgba(240, 177, 58, 0.1));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.fbppv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 115, 93, 0.42);
  box-shadow: 0 24px 62px rgba(15, 79, 112, 0.2);
  background-position: 0 0, 100% 50%;
}

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

.fbppv-icon {
  position: relative;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fbppv-primary), var(--fbppv-secondary));
  box-shadow: 0 14px 28px rgba(24, 115, 93, 0.25);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.fbppv-card:hover .fbppv-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 34px rgba(24, 115, 93, 0.32), 0 0 0 7px rgba(240, 177, 58, 0.12);
}

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

.fbppv-card-title {
  position: relative;
  margin: 0;
  color: var(--fbppv-text);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.fbppv-card-text {
  position: relative;
  margin: 0 auto;
  color: var(--fbppv-muted);
  font-weight: 400;
  line-height: 1.58;
  text-align: center;
}

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

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

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

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

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

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

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

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

  .fbppv-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
  }

  .fbppv-i {
    font-size: 30px;
  }

  .fbppv-card-title {
    font-size: 21px;
  }

  .fbppv-card-text {
    margin-top: 13px;
    font-size: 15.5px;
  }
}

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

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

  .fbppv-title {
    font-size: 34px;
    max-width: 760px;
  }

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

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

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

  .fbppv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 21px;
  }

  .fbppv-i {
    font-size: 27px;
  }

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

  .fbppv-card-text {
    margin-top: 11px;
    font-size: 15px;
  }
}

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

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

  .fbppv-title {
    font-size: 27px;
    max-width: 430px;
  }

  .fbppv-intro {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

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

  .fbppv-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .fbppv-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
  }

  .fbppv-i {
    font-size: 22px;
  }

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

  .fbppv-card-text {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.48;
  }
}

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

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

  .fbppv-title {
    font-size: 24px;
    max-width: 360px;
  }

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

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

  .fbppv-card {
    min-height: 224px;
    padding: 18px 10px 17px;
    border-radius: 15px;
  }

  .fbppv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 13px;
  }

  .fbppv-i {
    font-size: 20px;
  }

  .fbppv-card-title {
    font-size: 14.5px;
  }

  .fbppv-card-text {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.45;
  }
}

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

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

  .fbppv-title {
    font-size: 21px;
    max-width: 300px;
  }

  .fbppv-intro {
    margin-top: 9px;
    font-size: 12.8px;
    line-height: 1.46;
  }

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

  .fbppv-card {
    min-height: 214px;
    padding: 16px 8px 15px;
    border-radius: 14px;
  }

  .fbppv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 11px;
  }

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

  .fbppv-card-title {
    font-size: 13.5px;
  }

  .fbppv-card-text {
    margin-top: 7px;
    font-size: 11.8px;
    line-height: 1.42;
  }
}