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

.igfv-2026-wrap,
.igfv-2026-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.igfv-2026-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #18202a;
  font-family: inherit;
}

.igfv-2026-section {
  width: 100% !important;
  position: relative;
}

.igfv-2026-section-white {
  background: #ffffff;
}

.igfv-2026-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 68, 127, 0.09), transparent 34%),
    linear-gradient(180deg, #fff7fa 0%, #fffaf4 100%);
}

.igfv-2026-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  position: relative;
}

.igfv-2026-heading,
.igfv-2026-intro,
.igfv-2026-card-title,
.igfv-2026-card-text {
  text-align: center !important;
}

.igfv-2026-heading {
  margin: 0 auto;
  color: #181923;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.igfv-2026-intro {
  margin: 0 auto;
  color: #657181;
  font-weight: 400;
  line-height: 1.7;
  max-width: 760px;
}

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

.igfv-2026-card {
  height: 100% !important;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(248, 68, 127, 0.08), rgba(245, 160, 73, 0.08));
  border: 1px solid rgba(248, 68, 127, 0.16);
  box-shadow: 0 18px 46px rgba(102, 44, 71, 0.09);
  overflow: hidden;
  isolation: isolate;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background-position 420ms ease;
}

.igfv-2026-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 68, 127, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(248, 68, 127, 0.08), rgba(245, 160, 73, 0.08));
  transition: opacity 280ms ease;
}

.igfv-2026-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(248, 68, 127, 0.34);
  box-shadow: 0 24px 62px rgba(102, 44, 71, 0.16);
}

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

.igfv-2026-icon {
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
  color: #ffffff;
  background:
    linear-gradient(135deg, #f8447f 0%, #fb7b52 54%, #f5a049 100%);
  box-shadow: 0 14px 30px rgba(248, 68, 127, 0.24);
  transition: transform 280ms ease, box-shadow 280ms ease, filter 280ms ease;
}

.igfv-2026-card:hover .igfv-2026-icon {
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 18px 38px rgba(248, 68, 127, 0.32);
}

.igfv-2026-i {
  display: block;
  color: #ffffff;
  line-height: 1;
  text-align: center !important;
}

.igfv-2026-card-title {
  margin: 0;
  color: #1e2028;
  font-weight: 760;
  line-height: 1.28;
  letter-spacing: 0;
}

.igfv-2026-card-text {
  margin: 0;
  color: #657181;
  font-weight: 400;
  line-height: 1.62;
}

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

.igfv-2026-card.igfv-2026-visible {
  opacity: 1;
  transform: translateY(0);
}

.igfv-2026-card.igfv-2026-visible:hover {
  transform: translateY(-8px) scale(1.01);
}

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

  .igfv-2026-container {
    padding: 0 28px;
  }

  .igfv-2026-heading {
    font-size: 42px;
    max-width: 980px;
    white-space: nowrap;
  }

  .igfv-2026-intro {
    font-size: 17px;
    margin-top: 16px;
    margin-bottom: 36px;
  }

  .igfv-2026-grid {
    gap: 24px;
  }

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

  .igfv-2026-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .igfv-2026-card {
    min-height: 292px;
    padding: 34px 28px 30px;
    border-radius: 22px;
  }

  .igfv-2026-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .igfv-2026-i {
    font-size: 28px;
  }

  .igfv-2026-card-title {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .igfv-2026-card-text {
    font-size: 15px;
  }
}

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

  .igfv-2026-container {
    padding: 0 24px;
  }

  .igfv-2026-heading {
    font-size: 34px;
    max-width: 760px;
  }

  .igfv-2026-intro {
    font-size: 16px;
    margin-top: 14px;
    margin-bottom: 30px;
  }

  .igfv-2026-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px;
  }

  .igfv-2026-card {
    min-height: 268px;
    padding: 30px 24px 28px;
    border-radius: 20px;
  }

  .igfv-2026-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .igfv-2026-i {
    font-size: 25px;
  }

  .igfv-2026-card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .igfv-2026-card-text {
    font-size: 15px;
  }
}

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

  .igfv-2026-container {
    padding: 0 16px;
  }

  .igfv-2026-heading {
    font-size: 27px;
    max-width: 420px;
  }

  .igfv-2026-intro {
    font-size: 14px;
    line-height: 1.62;
    margin-top: 12px;
    margin-bottom: 22px;
    max-width: 520px;
  }

  .igfv-2026-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
  }

  .igfv-2026-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

  .igfv-2026-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    margin-bottom: 15px;
  }

  .igfv-2026-i {
    font-size: 21px;
  }

  .igfv-2026-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .igfv-2026-card-text {
    font-size: 12.8px;
    line-height: 1.52;
  }
}

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

  .igfv-2026-container {
    padding: 0 12px;
  }

  .igfv-2026-heading {
    font-size: 24px;
    max-width: 350px;
  }

  .igfv-2026-intro {
    font-size: 13px;
    line-height: 1.55;
    margin-top: 10px;
    margin-bottom: 18px;
  }

  .igfv-2026-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .igfv-2026-card {
    min-height: 222px;
    padding: 18px 10px 17px;
    border-radius: 14px;
  }

  .igfv-2026-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 13px;
  }

  .igfv-2026-i {
    font-size: 19px;
  }

  .igfv-2026-card-title {
    font-size: 15px;
    margin-bottom: 7px;
  }

  .igfv-2026-card-text {
    font-size: 12px;
    line-height: 1.46;
  }
}

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

  .igfv-2026-container {
    padding: 0 10px;
  }

  .igfv-2026-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .igfv-2026-intro {
    font-size: 12.5px;
    line-height: 1.5;
    margin-top: 9px;
    margin-bottom: 16px;
  }

  .igfv-2026-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .igfv-2026-card {
    min-height: 214px;
    padding: 16px 8px 15px;
    border-radius: 13px;
  }

  .igfv-2026-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 12px;
  }

  .igfv-2026-i {
    font-size: 17px;
  }

  .igfv-2026-card-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .igfv-2026-card-text {
    font-size: 11.4px;
    line-height: 1.43;
  }
}

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