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

.fbfv-2026-wrap,
.fbfv-2026-wrap * {
  box-sizing: border-box;
}

.fbfv-2026-wrap {
  --fbfv-primary: #176b87;
  --fbfv-secondary: #31a7a0;
  --fbfv-accent: #f2b84b;
  --fbfv-soft: #f3faf9;
  --fbfv-text: #17242b;
  --fbfv-muted: #5d6b72;
  --fbfv-border: rgba(23, 107, 135, 0.16);
  --fbfv-shadow: rgba(12, 55, 70, 0.12);
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--fbfv-text);
  background: #ffffff;
}

.fbfv-2026-section {
  width: 100% !important;
  max-width: 100% !important;
  text-align: center;
}

.fbfv-2026-section-one,
.fbfv-2026-section-three {
  background: #ffffff;
}

.fbfv-2026-section-two {
  background:
    radial-gradient(circle at 50% 0%, rgba(49, 167, 160, 0.14), transparent 34%),
    linear-gradient(180deg, #f6fbfa 0%, var(--fbfv-soft) 100%);
}

.fbfv-2026-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 0;
}

.fbfv-2026-wrap h2 {
  margin: 0 auto;
  max-width: 980px;
  color: var(--fbfv-text);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  text-align: center;
}

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

.fbfv-2026-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0;
}

.fbfv-2026-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--fbfv-border);
  box-shadow: 0 18px 48px var(--fbfv-shadow);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.fbfv-2026-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 107, 135, 0.09), rgba(242, 184, 75, 0.1));
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.fbfv-2026-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(23, 107, 135, 0.34);
  box-shadow: 0 26px 68px rgba(12, 55, 70, 0.18);
}

.fbfv-2026-card:hover::before {
  opacity: 1;
}

.fbfv-2026-card:hover .fbfv-2026-icon {
  transform: translateY(-4px);
  background-position: 100% 50%;
}

.fbfv-2026-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fbfv-primary), var(--fbfv-secondary), var(--fbfv-accent));
  background-size: 180% 180%;
  box-shadow: 0 14px 28px rgba(23, 107, 135, 0.22);
  transition: transform 280ms ease, background-position 280ms ease;
}

.fbfv-2026-i {
  display: block;
  line-height: 1;
  text-align: center;
}

.fbfv-2026-card h3,
.fbfv-2026-card p {
  position: relative;
  z-index: 1;
  text-align: center;
}

.fbfv-2026-card h3 {
  margin: 20px 0 0;
  color: var(--fbfv-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.fbfv-2026-card p {
  margin: 12px auto 0;
  color: var(--fbfv-muted);
  font-weight: 400;
  line-height: 1.62;
}

.fbfv-2026-js .fbfv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fbfv-2026-js .fbfv-reveal.fbfv-show {
  opacity: 1;
  transform: translateY(0);
}

.fbfv-2026-js .fbfv-reveal {
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

@media (min-width: 1024px) {
  .fbfv-2026-section {
    padding: 88px 0;
  }

  .fbfv-2026-wrap h2 {
    font-size: 42px;
  }

  .fbfv-2026-intro {
    font-size: 17px;
  }

  .fbfv-2026-grid {
    gap: 26px;
    margin-top: 44px;
  }

  .fbfv-2026-grid-three,
  .fbfv-2026-grid-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fbfv-2026-card {
    min-height: 300px;
    padding: 34px 30px;
    border-radius: 22px;
  }

  .fbfv-2026-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    font-size: 28px;
  }

  .fbfv-2026-card h3 {
    font-size: 21px;
  }

  .fbfv-2026-card p {
    font-size: 15px;
  }
}

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

  .fbfv-2026-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .fbfv-2026-wrap h2 {
    font-size: 34px;
  }

  .fbfv-2026-intro {
    font-size: 16px;
  }

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

  .fbfv-2026-card {
    min-height: 270px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .fbfv-2026-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 25px;
  }

  .fbfv-2026-card h3 {
    font-size: 19px;
  }

  .fbfv-2026-card p {
    font-size: 14px;
  }
}

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

  .fbfv-2026-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .fbfv-2026-wrap h2 {
    max-width: 420px;
    font-size: 27px;
  }

  .fbfv-2026-intro {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.58;
  }

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

  .fbfv-2026-card {
    min-height: 230px;
    padding: 22px 14px;
    border-radius: 16px;
  }

  .fbfv-2026-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 21px;
  }

  .fbfv-2026-card h3 {
    margin-top: 15px;
    font-size: 16px;
  }

  .fbfv-2026-card p {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.5;
  }
}

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

  .fbfv-2026-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fbfv-2026-wrap h2 {
    max-width: 350px;
    font-size: 24px;
  }

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

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

  .fbfv-2026-card {
    min-height: 222px;
    padding: 18px 11px;
    border-radius: 14px;
  }

  .fbfv-2026-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 19px;
  }

  .fbfv-2026-card h3 {
    margin-top: 14px;
    font-size: 15px;
  }

  .fbfv-2026-card p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.45;
  }
}

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

  .fbfv-2026-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .fbfv-2026-wrap h2 {
    max-width: 300px;
    font-size: 21px;
  }

  .fbfv-2026-intro {
    font-size: 12.5px;
    line-height: 1.48;
  }

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

  .fbfv-2026-card {
    min-height: 214px;
    padding: 16px 9px;
    border-radius: 13px;
  }

  .fbfv-2026-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 18px;
  }

  .fbfv-2026-card h3 {
    margin-top: 12px;
    font-size: 14px;
  }

  .fbfv-2026-card p {
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .fbfv-2026-grid {
    grid-template-columns: 1fr;
  }
}