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

.figv-section-wrap,
.figv-section-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.figv-section-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #1f2933;
  font-family: inherit;
  --figv-primary: #b8325b;
  --figv-secondary: #f97352;
  --figv-accent: #13a89e;
  --figv-soft: #fff6f4;
  --figv-text: #1f2933;
  --figv-muted: #64707d;
  --figv-border: rgba(184, 50, 91, 0.16);
  --figv-shadow: rgba(117, 30, 62, 0.13);
}

.figv-section-wrap .figv-band {
  width: 100% !important;
  position: relative;
}

.figv-section-wrap .figv-band-white {
  background: #ffffff;
}

.figv-section-wrap .figv-band-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(249, 115, 82, 0.09), transparent 34%),
    linear-gradient(180deg, #fff8f5 0%, #fff4f7 100%);
}

.figv-section-wrap .figv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 18px;
  padding-right: 18px;
}

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

.figv-section-wrap .figv-intro {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--figv-muted);
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
}

.figv-section-wrap .figv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

.figv-section-wrap .figv-card {
  height: 100% !important;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--figv-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top, rgba(19, 168, 158, 0.07), transparent 42%);
  box-shadow: 0 18px 45px var(--figv-shadow);
  text-align: center;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background-position 320ms ease;
  opacity: 1;
  transform: translateY(0);
}

.figv-section-wrap .figv-card.figv-card-tint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 250, 248, 0.96)),
    radial-gradient(circle at top, rgba(184, 50, 91, 0.08), transparent 44%);
}

.figv-section-wrap .figv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 50, 91, 0.12), rgba(249, 115, 82, 0.08), rgba(19, 168, 158, 0.08));
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.figv-section-wrap .figv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 50, 91, 0.36);
  box-shadow: 0 24px 58px rgba(117, 30, 62, 0.18);
}

.figv-section-wrap .figv-card:hover::before {
  opacity: 1;
}

.figv-section-wrap .figv-card:hover .figv-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 30px rgba(184, 50, 91, 0.22);
}

.figv-section-wrap .figv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--figv-primary), var(--figv-secondary));
  color: #ffffff;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

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

.figv-section-wrap .figv-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--figv-text);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.figv-section-wrap .figv-card p {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: var(--figv-muted);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.figv-section-wrap .figv-card[data-figv-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

.figv-section-wrap .figv-card[data-figv-reveal].figv-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .figv-section-wrap .figv-band {
    padding-top: 86px;
    padding-bottom: 90px;
  }

  .figv-section-wrap .figv-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .figv-section-wrap .figv-heading {
    font-size: 42px;
    white-space: nowrap;
  }

  .figv-section-wrap .figv-intro {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .figv-section-wrap .figv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .figv-section-wrap .figv-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .figv-section-wrap .figv-grid {
    gap: 24px;
  }

  .figv-section-wrap .figv-card {
    min-height: 292px;
    padding: 34px 26px 30px;
    border-radius: 22px;
  }

  .figv-section-wrap .figv-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .figv-section-wrap .figv-i {
    font-size: 28px;
  }

  .figv-section-wrap .figv-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .figv-section-wrap .figv-card p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .figv-section-wrap .figv-band {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .figv-section-wrap .figv-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .figv-section-wrap .figv-heading {
    font-size: 34px;
  }

  .figv-section-wrap .figv-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .figv-section-wrap .figv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .figv-section-wrap .figv-card {
    min-height: 268px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  .figv-section-wrap .figv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
  }

  .figv-section-wrap .figv-i {
    font-size: 25px;
  }

  .figv-section-wrap .figv-card h3 {
    font-size: 19px;
    margin-bottom: 11px;
  }

  .figv-section-wrap .figv-card p {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .figv-section-wrap .figv-band {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .figv-section-wrap .figv-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .figv-section-wrap .figv-heading {
    font-size: 27px;
  }

  .figv-section-wrap .figv-intro {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

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

  .figv-section-wrap .figv-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

  .figv-section-wrap .figv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .figv-section-wrap .figv-i {
    font-size: 20px;
  }

  .figv-section-wrap .figv-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .figv-section-wrap .figv-card p {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .figv-section-wrap .figv-band {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .figv-section-wrap .figv-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .figv-section-wrap .figv-heading {
    font-size: 24px;
  }

  .figv-section-wrap .figv-intro {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .figv-section-wrap .figv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .figv-section-wrap .figv-card {
    min-height: 220px;
    padding: 20px 12px 18px;
    border-radius: 15px;
  }

  .figv-section-wrap .figv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .figv-section-wrap .figv-i {
    font-size: 18px;
  }

  .figv-section-wrap .figv-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .figv-section-wrap .figv-card p {
    font-size: 12.5px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .figv-section-wrap .figv-band {
    padding-top: 40px;
    padding-bottom: 44px;
  }

  .figv-section-wrap .figv-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .figv-section-wrap .figv-heading {
    font-size: 21px;
    line-height: 1.18;
  }

  .figv-section-wrap .figv-intro {
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .figv-section-wrap .figv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .figv-section-wrap .figv-card {
    min-height: 214px;
    padding: 18px 10px 16px;
    border-radius: 14px;
  }

  .figv-section-wrap .figv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .figv-section-wrap .figv-i {
    font-size: 17px;
  }

  .figv-section-wrap .figv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .figv-section-wrap .figv-card p {
    font-size: 11.8px;
    line-height: 1.42;
  }
}