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

.fbv26-feature-viewer,
.fbv26-feature-viewer * {
  box-sizing: border-box;
  min-width: 0;
}

.fbv26-feature-viewer {
  --fbv26-primary: #176b87;
  --fbv26-secondary: #26a69a;
  --fbv26-accent: #ffb703;
  --fbv26-soft: #f2fbfa;
  --fbv26-text: #102a33;
  --fbv26-muted: #5d747a;
  --fbv26-border: rgba(23, 107, 135, 0.16);
  --fbv26-shadow: rgba(16, 42, 51, 0.12);
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: var(--fbv26-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.fbv26-feature-viewer .fbv26-section {
  width: 100% !important;
  overflow: hidden;
}

.fbv26-feature-viewer .fbv26-section-white {
  background: #ffffff;
}

.fbv26-feature-viewer .fbv26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(38, 166, 154, 0.11), transparent 36%),
    linear-gradient(180deg, #f7fcfb 0%, var(--fbv26-soft) 100%);
}

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

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

.fbv26-feature-viewer .fbv26-heading {
  margin: 0 auto;
  color: var(--fbv26-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.fbv26-feature-viewer .fbv26-intro {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--fbv26-muted);
  font-weight: 500;
  line-height: 1.65;
}

.fbv26-feature-viewer .fbv26-grid {
  display: grid !important;
  align-items: stretch !important;
}

.fbv26-feature-viewer .fbv26-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  border: 1px solid var(--fbv26-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(38, 166, 154, 0.1), transparent 45%);
  box-shadow: 0 18px 46px var(--fbv26-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
  overflow: hidden;
}

.fbv26-feature-viewer .fbv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(23, 107, 135, 0.09), rgba(255, 183, 3, 0.12), rgba(38, 166, 154, 0.08));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.fbv26-feature-viewer .fbv26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(38, 166, 154, 0.42);
  box-shadow: 0 24px 60px rgba(16, 42, 51, 0.16);
}

.fbv26-feature-viewer .fbv26-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.fbv26-feature-viewer .fbv26-card:hover .fbv26-icon {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(23, 107, 135, 0.2);
}

.fbv26-feature-viewer .fbv26-card:hover .fbv26-i {
  transform: scale(1.08);
  color: var(--fbv26-accent);
}

.fbv26-feature-viewer .fbv26-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--fbv26-primary), var(--fbv26-secondary));
  color: #ffffff;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.fbv26-feature-viewer .fbv26-i {
  display: block;
  line-height: 1;
  color: #ffffff;
  transition: transform 260ms ease, color 260ms ease;
}

.fbv26-feature-viewer .fbv26-card-title {
  margin: 0;
  color: var(--fbv26-text);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.fbv26-feature-viewer .fbv26-card-text {
  margin: 0;
  color: var(--fbv26-muted);
  font-weight: 500;
  line-height: 1.58;
}

.fbv26-feature-viewer.fbv26-js .fbv26-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fbv26-feature-viewer.fbv26-js .fbv26-reveal.fbv26-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

@media (min-width: 1024px) {
  .fbv26-feature-viewer .fbv26-section {
    padding: 88px 0;
  }

  .fbv26-feature-viewer .fbv26-container {
    padding: 0 28px;
  }

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

  .fbv26-feature-viewer .fbv26-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .fbv26-feature-viewer .fbv26-grid {
    gap: 24px;
  }

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

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

  .fbv26-feature-viewer .fbv26-card {
    min-height: 300px;
    padding: 34px 26px 30px;
  }

  .fbv26-feature-viewer .fbv26-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
  }

  .fbv26-feature-viewer .fbv26-i {
    font-size: 29px;
  }

  .fbv26-feature-viewer .fbv26-card-title {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .fbv26-feature-viewer .fbv26-card-text {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fbv26-feature-viewer .fbv26-section {
    padding: 72px 0;
  }

  .fbv26-feature-viewer .fbv26-container {
    padding: 0 24px;
  }

  .fbv26-feature-viewer .fbv26-heading {
    font-size: 34px;
    max-width: 780px;
  }

  .fbv26-feature-viewer .fbv26-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .fbv26-feature-viewer .fbv26-grid,
  .fbv26-feature-viewer .fbv26-grid-3,
  .fbv26-feature-viewer .fbv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .fbv26-feature-viewer .fbv26-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .fbv26-feature-viewer .fbv26-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }

  .fbv26-feature-viewer .fbv26-i {
    font-size: 26px;
  }

  .fbv26-feature-viewer .fbv26-card-title {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .fbv26-feature-viewer .fbv26-card-text {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .fbv26-feature-viewer .fbv26-section {
    padding: 52px 0;
  }

  .fbv26-feature-viewer .fbv26-container {
    padding: 0 16px;
  }

  .fbv26-feature-viewer .fbv26-heading {
    font-size: 27px;
    max-width: 410px;
  }

  .fbv26-feature-viewer .fbv26-intro {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .fbv26-feature-viewer .fbv26-grid,
  .fbv26-feature-viewer .fbv26-grid-3,
  .fbv26-feature-viewer .fbv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .fbv26-feature-viewer .fbv26-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .fbv26-feature-viewer .fbv26-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 17px;
  }

  .fbv26-feature-viewer .fbv26-i {
    font-size: 22px;
  }

  .fbv26-feature-viewer .fbv26-card-title {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .fbv26-feature-viewer .fbv26-card-text {
    font-size: 13px;
    line-height: 1.48;
  }
}

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

  .fbv26-feature-viewer .fbv26-container {
    padding: 0 12px;
  }

  .fbv26-feature-viewer .fbv26-heading {
    font-size: 24px;
    max-width: 350px;
  }

  .fbv26-feature-viewer .fbv26-intro {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .fbv26-feature-viewer .fbv26-grid,
  .fbv26-feature-viewer .fbv26-grid-3,
  .fbv26-feature-viewer .fbv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .fbv26-feature-viewer .fbv26-card {
    min-height: 220px;
    padding: 20px 11px 18px;
    border-radius: 16px;
  }

  .fbv26-feature-viewer .fbv26-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  .fbv26-feature-viewer .fbv26-i {
    font-size: 20px;
  }

  .fbv26-feature-viewer .fbv26-card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .fbv26-feature-viewer .fbv26-card-text {
    font-size: 12.5px;
    line-height: 1.43;
  }
}

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

  .fbv26-feature-viewer .fbv26-container {
    padding: 0 10px;
  }

  .fbv26-feature-viewer .fbv26-heading {
    font-size: 21px;
    max-width: 300px;
  }

  .fbv26-feature-viewer .fbv26-intro {
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .fbv26-feature-viewer .fbv26-grid,
  .fbv26-feature-viewer .fbv26-grid-3,
  .fbv26-feature-viewer .fbv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .fbv26-feature-viewer .fbv26-card {
    min-height: 214px;
    padding: 18px 9px 16px;
    border-radius: 15px;
  }

  .fbv26-feature-viewer .fbv26-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 15px;
  }

  .fbv26-feature-viewer .fbv26-i {
    font-size: 18px;
  }

  .fbv26-feature-viewer .fbv26-card-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .fbv26-feature-viewer .fbv26-card-text {
    font-size: 11.8px;
    line-height: 1.4;
  }
}

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

  .fbv26-feature-viewer .fbv26-container {
    padding: 0 10px;
  }

  .fbv26-feature-viewer .fbv26-heading {
    font-size: 20px;
  }

  .fbv26-feature-viewer .fbv26-intro {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .fbv26-feature-viewer .fbv26-grid,
  .fbv26-feature-viewer .fbv26-grid-3,
  .fbv26-feature-viewer .fbv26-grid-4 {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .fbv26-feature-viewer .fbv26-card {
    min-height: 210px;
    padding: 18px 12px;
  }

  .fbv26-feature-viewer .fbv26-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .fbv26-feature-viewer .fbv26-i {
    font-size: 18px;
  }

  .fbv26-feature-viewer .fbv26-card-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .fbv26-feature-viewer .fbv26-card-text {
    font-size: 12px;
  }
}