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

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

.ffv26-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  --ffv26-primary: #145a8d;
  --ffv26-secondary: #17a2a4;
  --ffv26-accent: #f2b84b;
  --ffv26-text: #142330;
  --ffv26-muted: #5e6c78;
  --ffv26-border: #d8e7ec;
  --ffv26-tint: #f4fbfb;
  --ffv26-shadow: rgba(20, 90, 141, 0.14);
  font-family: inherit;
  color: var(--ffv26-text);
  background: #ffffff;
}

.ffv26-section {
  width: 100% !important;
  text-align: center;
  overflow: hidden;
}

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

.ffv26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 162, 164, 0.13), transparent 34%),
    linear-gradient(180deg, #f4fbfb 0%, #eef7f8 100%);
}

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

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

.ffv26-intro {
  margin: 0 auto;
  max-width: 760px;
  color: var(--ffv26-muted);
  line-height: 1.7;
  text-align: center;
}

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

.ffv26-card {
  position: relative;
  height: 100%;
  min-width: 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.91)),
    linear-gradient(135deg, rgba(20, 90, 141, 0.08), rgba(23, 162, 164, 0.08));
  border: 1px solid var(--ffv26-border);
  box-shadow: 0 18px 44px var(--ffv26-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
  overflow: hidden;
}

.ffv26-card::after {
  content: "";
  position: absolute;
  inset: auto 18% -2px 18%;
  height: 3px;
  background: linear-gradient(90deg, var(--ffv26-primary), var(--ffv26-secondary), var(--ffv26-accent));
  border-radius: 99px 99px 0 0;
  opacity: 0.72;
  transform: scaleX(0.42);
  transition: transform 260ms ease, opacity 260ms ease;
}

.ffv26-card:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 162, 164, 0.48);
  box-shadow: 0 24px 58px rgba(20, 90, 141, 0.2);
}

.ffv26-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.ffv26-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--ffv26-primary), var(--ffv26-secondary) 72%),
    var(--ffv26-primary);
  box-shadow: 0 14px 28px rgba(20, 90, 141, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ffv26-card:hover .ffv26-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 17px 34px rgba(23, 162, 164, 0.28);
}

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

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

.ffv26-card p {
  margin: 0 auto;
  color: var(--ffv26-muted);
  line-height: 1.62;
  text-align: center;
}

.ffv26-wrap.ffv26-ready .ffv26-card {
  opacity: 0;
  transform: translateY(18px);
}

.ffv26-wrap.ffv26-ready .ffv26-card.ffv26-visible {
  opacity: 1;
  transform: translateY(0);
}

.ffv26-wrap.ffv26-ready .ffv26-card.ffv26-visible:hover {
  transform: translateY(-7px);
}

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

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

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

  .ffv26-intro {
    padding-top: 16px;
    font-size: 17px;
  }

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

  .ffv26-card {
    min-height: 292px;
    padding: 36px 28px 34px;
    border-radius: 8px;
  }

  .ffv26-icon {
    width: 66px;
    height: 66px;
    border-radius: 8px;
    margin-bottom: 24px;
  }

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

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

  .ffv26-card p {
    padding-top: 13px;
    font-size: 15.5px;
  }
}

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

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

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

  .ffv26-intro {
    padding-top: 14px;
    font-size: 16px;
  }

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

  .ffv26-card {
    min-height: 266px;
    padding: 30px 24px 28px;
    border-radius: 8px;
  }

  .ffv26-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 21px;
  }

  .ffv26-i {
    font-size: 24px;
  }

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

  .ffv26-card p {
    padding-top: 11px;
    font-size: 15px;
  }
}

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

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

  .ffv26-wrap h2 {
    max-width: 390px;
    font-size: 27px;
  }

  .ffv26-intro {
    padding-top: 12px;
    font-size: 14.5px;
    line-height: 1.58;
  }

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

  .ffv26-card {
    min-height: 224px;
    padding: 22px 14px 20px;
    border-radius: 8px;
  }

  .ffv26-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-bottom: 16px;
  }

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

  .ffv26-card h3 {
    font-size: 16px;
  }

  .ffv26-card p {
    padding-top: 9px;
    font-size: 13px;
    line-height: 1.5;
  }
}

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

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

  .ffv26-wrap h2 {
    max-width: 340px;
    font-size: 24px;
  }

  .ffv26-intro {
    padding-top: 10px;
    font-size: 13.5px;
    line-height: 1.52;
  }

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

  .ffv26-card {
    min-height: 216px;
    padding: 19px 11px 18px;
    border-radius: 7px;
  }

  .ffv26-icon {
    width: 46px;
    height: 46px;
    border-radius: 7px;
    margin-bottom: 14px;
  }

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

  .ffv26-card h3 {
    font-size: 14.5px;
  }

  .ffv26-card p {
    padding-top: 8px;
    font-size: 12.4px;
    line-height: 1.45;
  }
}

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

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

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

  .ffv26-intro {
    padding-top: 9px;
    font-size: 12.5px;
    line-height: 1.48;
  }

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

  .ffv26-card {
    min-height: 210px;
    padding: 17px 9px 16px;
    border-radius: 7px;
  }

  .ffv26-icon {
    width: 42px;
    height: 42px;
    border-radius: 7px;
    margin-bottom: 12px;
  }

  .ffv26-i {
    font-size: 16px;
  }

  .ffv26-card h3 {
    font-size: 13.5px;
  }

  .ffv26-card p {
    padding-top: 7px;
    font-size: 11.8px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .ffv26-section {
    padding: 34px 0;
  }

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

  .ffv26-wrap h2 {
    font-size: 20px;
  }

  .ffv26-intro {
    padding-top: 9px;
    font-size: 12.5px;
  }

  .ffv26-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .ffv26-card {
    min-height: 210px;
    padding: 18px 12px;
    border-radius: 7px;
  }

  .ffv26-icon {
    width: 42px;
    height: 42px;
    border-radius: 7px;
    margin-bottom: 12px;
  }

  .ffv26-i {
    font-size: 16px;
  }

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

  .ffv26-card p {
    padding-top: 7px;
    font-size: 12px;
  }
}