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

.icv26-wrapper,
.icv26-wrapper * {
  box-sizing: border-box;
  min-width: 0;
}

.icv26-wrapper {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #172033;
  font-family: inherit;
}

.icv26-wrapper .icv26-section {
  width: 100% !important;
}

.icv26-wrapper .icv26-section-white {
  background: #ffffff;
}

.icv26-wrapper .icv26-section-tint {
  background: linear-gradient(180deg, #fff7fb 0%, #f7fbff 100%);
}

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

.icv26-wrapper .icv26-heading,
.icv26-wrapper .icv26-intro,
.icv26-wrapper .icv26-title,
.icv26-wrapper .icv26-text {
  text-align: center !important;
}

.icv26-wrapper .icv26-heading {
  margin: 0 auto;
  color: #171827;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.icv26-wrapper .icv26-intro {
  margin: 14px auto 0;
  max-width: 760px;
  color: #5d6475;
  line-height: 1.7;
  font-weight: 400;
}

.icv26-wrapper .icv26-grid {
  display: grid !important;
  align-items: stretch !important;
}

.icv26-wrapper .icv26-card {
  position: relative;
  height: 100% !important;
  overflow: hidden;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    radial-gradient(circle at 50% 0%, rgba(236, 45, 125, .12), transparent 44%);
  border: 1px solid rgba(231, 96, 151, .18);
  box-shadow: 0 18px 45px rgba(78, 32, 70, .08);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background-position .32s ease;
}

.icv26-wrapper .icv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246, 64, 128, .12), rgba(255, 195, 86, .08), rgba(45, 174, 205, .1));
  opacity: 0;
  transition: opacity .32s ease;
  pointer-events: none;
}

.icv26-wrapper .icv26-card:hover {
  transform: translateY(-7px);
  border-color: rgba(236, 45, 125, .34);
  box-shadow: 0 24px 60px rgba(78, 32, 70, .14);
}

.icv26-wrapper .icv26-card:hover::before {
  opacity: 1;
}

.icv26-wrapper .icv26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #e8327c 0%, #ff8f3f 58%, #19a7c7 100%);
  box-shadow: 0 14px 28px rgba(232, 50, 124, .22);
  transition: transform .32s ease, box-shadow .32s ease, filter .32s ease;
}

.icv26-wrapper .icv26-card:hover .icv26-icon {
  transform: translateY(-4px) scale(1.04);
  filter: saturate(1.08);
  box-shadow: 0 18px 34px rgba(232, 50, 124, .28);
}

.icv26-wrapper .icv26-i {
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.icv26-wrapper .icv26-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #1b1c2f;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.icv26-wrapper .icv26-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: #636a7b;
  line-height: 1.62;
  font-weight: 400;
}

.icv26-wrapper .icv26-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.icv26-wrapper .icv26-reveal.icv26-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .58s ease, transform .58s ease;
}

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

  .icv26-wrapper .icv26-container {
    padding: 0 24px;
  }

  .icv26-wrapper .icv26-heading {
    font-size: 42px;
    white-space: nowrap;
  }

  .icv26-wrapper .icv26-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .icv26-wrapper .icv26-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .icv26-wrapper .icv26-grid {
    gap: 24px;
  }

  .icv26-wrapper .icv26-card {
    min-height: 300px;
    padding: 34px 28px;
    border-radius: 24px;
  }

  .icv26-wrapper .icv26-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .icv26-wrapper .icv26-i {
    font-size: 28px;
  }

  .icv26-wrapper .icv26-title {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .icv26-wrapper .icv26-text {
    font-size: 15.5px;
  }
}

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

  .icv26-wrapper .icv26-container {
    padding: 0 22px;
  }

  .icv26-wrapper .icv26-heading {
    font-size: 34px;
  }

  .icv26-wrapper .icv26-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

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

  .icv26-wrapper .icv26-card {
    min-height: 270px;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .icv26-wrapper .icv26-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 21px;
  }

  .icv26-wrapper .icv26-i {
    font-size: 25px;
  }

  .icv26-wrapper .icv26-title {
    font-size: 18px;
    margin-bottom: 11px;
  }

  .icv26-wrapper .icv26-text {
    font-size: 14.5px;
  }
}

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

  .icv26-wrapper .icv26-container {
    padding: 0 16px;
  }

  .icv26-wrapper .icv26-heading {
    font-size: 28px;
  }

  .icv26-wrapper .icv26-intro {
    font-size: 14.5px;
    line-height: 1.58;
    margin-bottom: 24px;
  }

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

  .icv26-wrapper .icv26-card {
    min-height: 230px;
    padding: 22px 14px;
    border-radius: 18px;
  }

  .icv26-wrapper .icv26-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
  }

  .icv26-wrapper .icv26-i {
    font-size: 21px;
  }

  .icv26-wrapper .icv26-title {
    font-size: 15.5px;
    margin-bottom: 8px;
  }

  .icv26-wrapper .icv26-text {
    font-size: 13px;
    line-height: 1.48;
  }
}

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

  .icv26-wrapper .icv26-container {
    padding: 0 12px;
  }

  .icv26-wrapper .icv26-heading {
    font-size: 25px;
  }

  .icv26-wrapper .icv26-intro {
    font-size: 13.8px;
    line-height: 1.54;
    margin-bottom: 22px;
  }

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

  .icv26-wrapper .icv26-card {
    min-height: 224px;
    padding: 19px 11px;
    border-radius: 16px;
  }

  .icv26-wrapper .icv26-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .icv26-wrapper .icv26-i {
    font-size: 19px;
  }

  .icv26-wrapper .icv26-title {
    font-size: 14.5px;
    margin-bottom: 8px;
  }

  .icv26-wrapper .icv26-text {
    font-size: 12.4px;
    line-height: 1.44;
  }
}

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

  .icv26-wrapper .icv26-container {
    padding: 0 10px;
  }

  .icv26-wrapper .icv26-heading {
    font-size: 22px;
  }

  .icv26-wrapper .icv26-intro {
    font-size: 13px;
    line-height: 1.48;
    margin-bottom: 18px;
  }

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

  .icv26-wrapper .icv26-card {
    min-height: 218px;
    padding: 17px 9px;
    border-radius: 14px;
  }

  .icv26-wrapper .icv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .icv26-wrapper .icv26-i {
    font-size: 18px;
  }

  .icv26-wrapper .icv26-title {
    font-size: 13.5px;
    margin-bottom: 7px;
  }

  .icv26-wrapper .icv26-text {
    font-size: 11.8px;
    line-height: 1.42;
  }
}

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