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

.fb-dpv-wrap,
.fb-dpv-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.fb-dpv-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #172033;
  font-family: inherit;
  --fb-dpv-primary: #1877f2;
  --fb-dpv-secondary: #10b9b2;
  --fb-dpv-accent: #ffb020;
  --fb-dpv-soft: #f3f9ff;
  --fb-dpv-text: #172033;
  --fb-dpv-muted: #5f6f84;
  --fb-dpv-border: rgba(24, 119, 242, 0.16);
  --fb-dpv-shadow: rgba(13, 72, 143, 0.13);
}

.fb-dpv-section {
  width: 100% !important;
  text-align: center;
}

.fb-dpv-section-white {
  background: #ffffff;
}

.fb-dpv-section-tint {
  background:
    radial-gradient(circle at 18% 18%, rgba(16, 185, 178, 0.11), transparent 30%),
    linear-gradient(180deg, #f4faff 0%, #f8fcfb 100%);
}

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

.fb-dpv-wrap h2,
.fb-dpv-wrap h3,
.fb-dpv-wrap p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fb-dpv-wrap h2 {
  color: var(--fb-dpv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  margin-top: 0;
}

.fb-dpv-intro {
  color: var(--fb-dpv-muted);
  line-height: 1.68;
  max-width: 780px;
  margin-top: 0;
}

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

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

.fb-dpv-card {
  position: relative;
  height: 100% !important;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(24, 119, 242, 0.09), rgba(16, 185, 178, 0.06));
  border: 1px solid var(--fb-dpv-border);
  box-shadow: 0 18px 44px var(--fb-dpv-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 320ms ease;
  background-size: 100% 100%, 180% 180%;
}

.fb-dpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.08), transparent 42%, rgba(255, 176, 32, 0.09));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.fb-dpv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 119, 242, 0.34);
  box-shadow: 0 24px 60px rgba(13, 72, 143, 0.18);
  background-position: 0 0, 100% 50%;
}

.fb-dpv-card:hover::before {
  opacity: 1;
}

.fb-dpv-card-tint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.96)),
    linear-gradient(135deg, rgba(16, 185, 178, 0.1), rgba(24, 119, 242, 0.06));
}

.fb-dpv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(24, 119, 242, 0.18);
  background:
    linear-gradient(135deg, rgba(24, 119, 242, 0.12), rgba(16, 185, 178, 0.12)),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82), 0 12px 28px rgba(24, 119, 242, 0.13);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.fb-dpv-card:hover .fb-dpv-icon {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255, 176, 32, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), 0 16px 34px rgba(16, 185, 178, 0.18);
}

.fb-dpv-i {
  color: var(--fb-dpv-primary);
  background: linear-gradient(135deg, var(--fb-dpv-primary), var(--fb-dpv-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.fb-dpv-card h3 {
  position: relative;
  z-index: 1;
  color: var(--fb-dpv-text);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  margin-top: 0;
}

.fb-dpv-card p {
  position: relative;
  z-index: 1;
  color: var(--fb-dpv-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

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

  .fb-dpv-container {
    padding: 0 28px;
  }

  .fb-dpv-wrap h2 {
    font-size: 42px;
    margin-bottom: 16px;
    white-space: nowrap;
  }

  .fb-dpv-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .fb-dpv-grid {
    gap: 24px;
  }

  .fb-dpv-card {
    min-height: 300px;
    padding: 34px 28px 32px;
    border-radius: 24px;
  }

  .fb-dpv-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .fb-dpv-i {
    font-size: 31px;
  }

  .fb-dpv-card h3 {
    font-size: 21px;
    margin-bottom: 13px;
  }

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

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

  .fb-dpv-container {
    padding: 0 24px;
  }

  .fb-dpv-wrap h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .fb-dpv-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .fb-dpv-grid,
  .fb-dpv-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .fb-dpv-card {
    min-height: 270px;
    padding: 30px 24px 28px;
    border-radius: 22px;
  }

  .fb-dpv-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .fb-dpv-i {
    font-size: 28px;
  }

  .fb-dpv-card h3 {
    font-size: 19px;
    margin-bottom: 11px;
  }

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

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

  .fb-dpv-container {
    padding: 0 16px;
  }

  .fb-dpv-wrap h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .fb-dpv-intro {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .fb-dpv-grid,
  .fb-dpv-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .fb-dpv-card {
    min-height: 236px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

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

  .fb-dpv-i {
    font-size: 23px;
  }

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

  .fb-dpv-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .fb-dpv-card:hover {
    transform: translateY(-5px);
  }
}

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

  .fb-dpv-container {
    padding: 0 12px;
  }

  .fb-dpv-wrap h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .fb-dpv-intro {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .fb-dpv-grid,
  .fb-dpv-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .fb-dpv-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    margin-bottom: 13px;
  }

  .fb-dpv-i {
    font-size: 21px;
  }

  .fb-dpv-card h3 {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .fb-dpv-card p {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .fb-dpv-card:hover {
    transform: translateY(-4px);
  }
}

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

  .fb-dpv-container {
    padding: 0 10px;
  }

  .fb-dpv-wrap h2 {
    font-size: 22px;
    line-height: 1.16;
    margin-bottom: 9px;
  }

  .fb-dpv-intro {
    font-size: 12.8px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .fb-dpv-grid,
  .fb-dpv-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .fb-dpv-card {
    min-height: 214px;
    padding: 16px 9px 15px;
    border-radius: 14px;
  }

  .fb-dpv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 11px;
  }

  .fb-dpv-i {
    font-size: 19px;
  }

  .fb-dpv-card h3 {
    font-size: 13.8px;
    line-height: 1.18;
    margin-bottom: 7px;
  }

  .fb-dpv-card p {
    font-size: 11.8px;
    line-height: 1.4;
  }

  .fb-dpv-card:hover {
    transform: translateY(-3px);
  }
}

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

  .fb-dpv-container {
    padding: 0 10px;
  }

  .fb-dpv-grid,
  .fb-dpv-grid-3 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fb-dpv-card {
    min-height: 210px;
    padding: 18px 12px;
    border-radius: 14px;
  }

  .fb-dpv-wrap h2 {
    font-size: 21px;
  }

  .fb-dpv-intro {
    font-size: 12.5px;
    margin-bottom: 18px;
  }

  .fb-dpv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 11px;
  }

  .fb-dpv-i {
    font-size: 19px;
  }

  .fb-dpv-card h3 {
    font-size: 14px;
  }

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