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

#fbdpv-section-suite,
#fbdpv-section-suite * {
  box-sizing: border-box;
  min-width: 0;
}

#fbdpv-section-suite {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #18212f;
  font-family: inherit;
  --fbdpv-primary: #0f6b8f;
  --fbdpv-secondary: #24a89a;
  --fbdpv-accent: #f0b84b;
  --fbdpv-soft: #f3fbfa;
  --fbdpv-text: #18212f;
  --fbdpv-muted: #657283;
  --fbdpv-border: rgba(15, 107, 143, 0.16);
  --fbdpv-shadow: rgba(12, 58, 82, 0.14);
}

#fbdpv-section-suite .fbdpv-section {
  width: 100% !important;
  position: relative;
}

#fbdpv-section-suite .fbdpv-section-one,
#fbdpv-section-suite .fbdpv-section-three {
  background: #ffffff !important;
}

#fbdpv-section-suite .fbdpv-section-two {
  background: linear-gradient(180deg, #f4fbfa 0%, #eef8fb 100%);
}

#fbdpv-section-suite .fbdpv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

#fbdpv-section-suite h2,
#fbdpv-section-suite h3,
#fbdpv-section-suite p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

#fbdpv-section-suite h2 {
  color: var(--fbdpv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 14px;
}

#fbdpv-section-suite .fbdpv-intro {
  color: var(--fbdpv-muted);
  line-height: 1.72;
  margin-top: 0;
}

#fbdpv-section-suite .fbdpv-grid {
  display: grid !important;
  align-items: stretch !important;
}

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

#fbdpv-section-suite .fbdpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(36, 168, 154, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

#fbdpv-section-suite .fbdpv-card:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 184, 75, 0.58);
  box-shadow: 0 24px 54px rgba(12, 58, 82, 0.2);
  background: #ffffff;
}

#fbdpv-section-suite .fbdpv-card:hover::before {
  opacity: 1;
}

#fbdpv-section-suite .fbdpv-icon {
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fbdpv-primary), var(--fbdpv-secondary));
  box-shadow: 0 14px 28px rgba(15, 107, 143, 0.24);
  position: relative;
  z-index: 1;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

#fbdpv-section-suite .fbdpv-card:hover .fbdpv-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(36, 168, 154, 0.3);
}

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

#fbdpv-section-suite h3 {
  position: relative;
  z-index: 1;
  color: var(--fbdpv-text);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  margin-top: 0;
}

#fbdpv-section-suite .fbdpv-card p {
  position: relative;
  z-index: 1;
  color: var(--fbdpv-muted);
  line-height: 1.68;
  margin-top: 0;
  margin-bottom: 0;
}

#fbdpv-section-suite .fbdpv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

#fbdpv-section-suite .fbdpv-reveal.fbdpv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 1024px) {
  #fbdpv-section-suite .fbdpv-section {
    padding: 86px 0 !important;
  }

  #fbdpv-section-suite .fbdpv-container {
    padding: 0 28px !important;
  }

  #fbdpv-section-suite h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  #fbdpv-section-suite .fbdpv-intro {
    max-width: 760px;
    font-size: 17px;
    margin-bottom: 42px;
  }

  #fbdpv-section-suite .fbdpv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #fbdpv-section-suite .fbdpv-grid {
    gap: 26px;
  }

  #fbdpv-section-suite .fbdpv-card {
    min-height: 292px;
    padding: 34px 28px 30px;
    border-radius: 22px;
  }

  #fbdpv-section-suite .fbdpv-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  #fbdpv-section-suite .fbdpv-i {
    font-size: 28px;
  }

  #fbdpv-section-suite h3 {
    font-size: 21px;
    margin-bottom: 13px;
  }

  #fbdpv-section-suite .fbdpv-card p {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #fbdpv-section-suite .fbdpv-section {
    padding: 72px 0 !important;
  }

  #fbdpv-section-suite .fbdpv-container {
    padding: 0 24px !important;
  }

  #fbdpv-section-suite h2 {
    font-size: 34px;
  }

  #fbdpv-section-suite .fbdpv-intro {
    max-width: 680px;
    font-size: 16px;
    margin-bottom: 34px;
  }

  #fbdpv-section-suite .fbdpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  #fbdpv-section-suite .fbdpv-card {
    min-height: 266px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  #fbdpv-section-suite .fbdpv-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin-bottom: 21px;
  }

  #fbdpv-section-suite .fbdpv-i {
    font-size: 25px;
  }

  #fbdpv-section-suite h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  #fbdpv-section-suite .fbdpv-card p {
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  #fbdpv-section-suite .fbdpv-section {
    padding: 52px 0 !important;
  }

  #fbdpv-section-suite .fbdpv-container {
    padding: 0 16px !important;
  }

  #fbdpv-section-suite h2 {
    font-size: 27px;
  }

  #fbdpv-section-suite .fbdpv-intro {
    max-width: 560px;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  #fbdpv-section-suite .fbdpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  #fbdpv-section-suite .fbdpv-card {
    min-height: 230px;
    padding: 22px 14px 19px;
    border-radius: 16px;
  }

  #fbdpv-section-suite .fbdpv-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    margin-bottom: 16px;
  }

  #fbdpv-section-suite .fbdpv-i {
    font-size: 20px;
  }

  #fbdpv-section-suite h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  #fbdpv-section-suite .fbdpv-card p {
    font-size: 13px;
    line-height: 1.52;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  #fbdpv-section-suite .fbdpv-section {
    padding: 46px 0 !important;
  }

  #fbdpv-section-suite .fbdpv-container {
    padding: 0 13px !important;
  }

  #fbdpv-section-suite h2 {
    font-size: 24px;
  }

  #fbdpv-section-suite .fbdpv-intro {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  #fbdpv-section-suite .fbdpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  #fbdpv-section-suite .fbdpv-card {
    min-height: 220px;
    padding: 19px 11px 17px;
    border-radius: 14px;
  }

  #fbdpv-section-suite .fbdpv-icon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    margin-bottom: 14px;
  }

  #fbdpv-section-suite .fbdpv-i {
    font-size: 18px;
  }

  #fbdpv-section-suite h3 {
    font-size: 14.5px;
    margin-bottom: 8px;
  }

  #fbdpv-section-suite .fbdpv-card p {
    font-size: 12.2px;
    line-height: 1.48;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  #fbdpv-section-suite .fbdpv-section {
    padding: 40px 0 !important;
  }

  #fbdpv-section-suite .fbdpv-container {
    padding: 0 10px !important;
  }

  #fbdpv-section-suite h2 {
    font-size: 21px;
  }

  #fbdpv-section-suite .fbdpv-intro {
    font-size: 12.8px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  #fbdpv-section-suite .fbdpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  #fbdpv-section-suite .fbdpv-card {
    min-height: 214px;
    padding: 16px 9px 15px;
    border-radius: 12px;
  }

  #fbdpv-section-suite .fbdpv-icon {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  #fbdpv-section-suite .fbdpv-i {
    font-size: 16px;
  }

  #fbdpv-section-suite h3 {
    font-size: 13.2px;
    margin-bottom: 7px;
  }

  #fbdpv-section-suite .fbdpv-card p {
    font-size: 11.4px;
    line-height: 1.42;
  }
}