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

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

.iav-section-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #1f2733;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.iav-section-wrap .iav-band {
  width: 100% !important;
}

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

.iav-section-wrap .iav-band-tint {
  background: linear-gradient(180deg, #fff7f9 0%, #f8fbff 100%);
}

.iav-section-wrap .iav-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.iav-section-wrap .iav-heading,
.iav-section-wrap .iav-intro,
.iav-section-wrap .iav-card,
.iav-section-wrap .iav-card h3,
.iav-section-wrap .iav-card p,
.iav-section-wrap .iav-icon {
  text-align: center !important;
}

.iav-section-wrap .iav-heading {
  margin: 0 auto;
  color: #171b24;
  font-weight: 820;
  line-height: 1.12;
  letter-spacing: 0;
}

.iav-section-wrap .iav-intro {
  max-width: 760px;
  margin: 14px auto 0;
  color: #5e6675;
  line-height: 1.7;
  font-weight: 450;
}

.iav-section-wrap .iav-grid {
  display: grid !important;
  align-items: stretch !important;
}

.iav-section-wrap .iav-card {
  position: relative;
  height: 100% !important;
  border: 1px solid rgba(224, 72, 119, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fffafc 100%);
  box-shadow: 0 18px 48px rgba(198, 42, 91, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.iav-section-wrap .iav-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 151, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.iav-section-wrap .iav-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(224, 72, 119, 0.36);
  box-shadow: 0 26px 64px rgba(198, 42, 91, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fff4f8 100%);
}

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

.iav-section-wrap .iav-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #e04877 0%, #ff8a5b 100%);
  box-shadow: 0 16px 34px rgba(224, 72, 119, 0.28);
  transition: transform 320ms ease, box-shadow 320ms ease, background-position 320ms ease;
}

.iav-section-wrap .iav-card:hover .iav-icon {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(255, 138, 91, 0.34);
}

.iav-section-wrap .iav-i {
  color: #ffffff;
  line-height: 1;
}

.iav-section-wrap .iav-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #1c2230;
  font-weight: 780;
  line-height: 1.25;
  letter-spacing: 0;
}

.iav-section-wrap .iav-card p {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: #667084;
  line-height: 1.62;
  font-weight: 450;
}

.iav-section-wrap .iav-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.iav-section-wrap .iav-reveal.iav-visible {
  opacity: 1;
  transform: translateY(0);
}

.iav-section-wrap .iav-card {
  transition-property: opacity, transform, box-shadow, border-color, background;
  transition-duration: 520ms, 520ms, 320ms, 320ms, 320ms;
  transition-timing-function: ease;
}

@media (min-width: 1024px) {
  .iav-section-wrap .iav-band {
    padding: 86px 24px;
  }

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

  .iav-section-wrap .iav-intro {
    font-size: 17px;
  }

  .iav-section-wrap .iav-grid {
    gap: 24px;
    margin-top: 42px;
  }

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

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

  .iav-section-wrap .iav-card {
    min-height: 294px;
    padding: 34px 28px 30px;
  }

  .iav-section-wrap .iav-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
  }

  .iav-section-wrap .iav-i {
    font-size: 27px;
  }

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

  .iav-section-wrap .iav-card p {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .iav-section-wrap .iav-band {
    padding: 68px 22px;
  }

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

  .iav-section-wrap .iav-intro {
    font-size: 16px;
  }

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

  .iav-section-wrap .iav-card {
    min-height: 266px;
    padding: 30px 24px 26px;
  }

  .iav-section-wrap .iav-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 21px;
  }

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

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

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

@media (min-width: 430px) and (max-width: 767px) {
  .iav-section-wrap .iav-band {
    padding: 50px 16px;
  }

  .iav-section-wrap .iav-heading {
    font-size: 28px;
  }

  .iav-section-wrap .iav-intro {
    font-size: 14.5px;
    line-height: 1.58;
  }

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

  .iav-section-wrap .iav-card {
    min-height: 228px;
    padding: 22px 16px 20px;
    border-radius: 18px;
  }

  .iav-section-wrap .iav-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 17px;
  }

  .iav-section-wrap .iav-i {
    font-size: 21px;
  }

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

  .iav-section-wrap .iav-card p {
    font-size: 13.4px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .iav-section-wrap .iav-band {
    padding: 44px 12px;
  }

  .iav-section-wrap .iav-heading {
    font-size: 25px;
  }

  .iav-section-wrap .iav-intro {
    font-size: 13.8px;
    line-height: 1.55;
  }

  .iav-section-wrap .iav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 24px;
  }

  .iav-section-wrap .iav-card {
    min-height: 218px;
    padding: 19px 12px 17px;
    border-radius: 16px;
  }

  .iav-section-wrap .iav-icon {
    width: 47px;
    height: 47px;
    margin-bottom: 15px;
  }

  .iav-section-wrap .iav-i {
    font-size: 19px;
  }

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

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

@media (min-width: 320px) and (max-width: 374px) {
  .iav-section-wrap .iav-band {
    padding: 38px 10px;
  }

  .iav-section-wrap .iav-heading {
    font-size: 22px;
  }

  .iav-section-wrap .iav-intro {
    font-size: 13px;
    line-height: 1.48;
  }

  .iav-section-wrap .iav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
  }

  .iav-section-wrap .iav-card {
    min-height: 212px;
    padding: 17px 10px 15px;
    border-radius: 14px;
  }

  .iav-section-wrap .iav-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 13px;
  }

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

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

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