@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-wrap,
.icv26-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.icv26-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #18202b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

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

.icv26-h2,
.icv26-intro,
.icv26-card-title,
.icv26-card-text {
  text-align: center !important;
}

.icv26-h2 {
  margin: 0 auto;
  color: #141821;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.icv26-intro {
  margin: 0 auto;
  color: #5d6876;
  line-height: 1.7;
  font-weight: 500;
}

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

.icv26-card {
  position: relative;
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #f0d9e6;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(220, 39, 109, 0.09);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.icv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(220, 39, 109, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 280ms ease, transform 280ms ease;
  transform: translateY(12px);
  pointer-events: none;
}

.icv26-card:hover {
  transform: translateY(-7px);
  border-color: #e87ca8;
  box-shadow: 0 24px 60px rgba(220, 39, 109, 0.16);
}

.icv26-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.icv26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background: linear-gradient(135deg, #dc276d 0%, #ff7a59 100%);
  box-shadow: 0 14px 30px rgba(220, 39, 109, 0.22);
  transition: transform 280ms ease, box-shadow 280ms ease, background-position 280ms ease;
  background-size: 160% 160%;
  text-align: center !important;
}

.icv26-card:hover .icv26-icon {
  transform: translateY(-3px) scale(1.04);
  background-position: 100% 0;
  box-shadow: 0 18px 36px rgba(220, 39, 109, 0.28);
}

.icv26-i {
  display: block;
  line-height: 1;
  text-align: center !important;
}

.icv26-card-title,
.icv26-card-text {
  position: relative;
  z-index: 1;
}

.icv26-card-title {
  margin: 0;
  color: #192231;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.icv26-card-text {
  margin: 0;
  color: #687483;
  line-height: 1.62;
  font-weight: 500;
}

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

.icv26-reveal.icv26-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .icv26-h2 {
    max-width: 980px;
    font-size: 42px;
  }

  .icv26-intro {
    max-width: 720px;
    margin-top: 16px;
    font-size: 17px;
  }

  .icv26-grid {
    margin-top: 44px;
    gap: 24px;
  }

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

  .icv26-card {
    min-height: 300px;
    padding: 34px 28px 30px;
  }

  .icv26-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-size: 30px;
  }

  .icv26-card-title {
    font-size: 21px;
    margin-bottom: 13px;
  }

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

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

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

  .icv26-h2 {
    max-width: 760px;
    font-size: 34px;
  }

  .icv26-intro {
    max-width: 650px;
    margin-top: 14px;
    font-size: 16px;
  }

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

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

  .icv26-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    margin-bottom: 21px;
    font-size: 27px;
  }

  .icv26-card-title {
    font-size: 19px;
    margin-bottom: 11px;
  }

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

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

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

  .icv26-h2 {
    max-width: 520px;
    font-size: 27px;
  }

  .icv26-intro {
    max-width: 520px;
    margin-top: 11px;
    font-size: 14.5px;
    line-height: 1.58;
  }

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

  .icv26-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .icv26-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    margin-bottom: 16px;
    font-size: 22px;
  }

  .icv26-card-title {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .icv26-card-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

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

  .icv26-h2 {
    max-width: 360px;
    font-size: 24px;
  }

  .icv26-intro {
    max-width: 350px;
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.52;
  }

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

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

  .icv26-icon {
    width: 49px;
    height: 49px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 20px;
  }

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

  .icv26-card-text {
    font-size: 12.2px;
    line-height: 1.45;
  }
}

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

  .icv26-container {
    padding: 0 9px;
  }

  .icv26-h2 {
    max-width: 310px;
    font-size: 21px;
  }

  .icv26-intro {
    max-width: 300px;
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.48;
  }

  .icv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 19px;
    gap: 8px;
  }

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

  .icv26-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 18px;
  }

  .icv26-card-title {
    font-size: 13.2px;
    margin-bottom: 7px;
  }

  .icv26-card-text {
    font-size: 11.4px;
    line-height: 1.42;
  }
}