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

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

.ihv26-wrapper {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #18202f;
  font-family: inherit;
  --ihv26-primary: #e04474;
  --ihv26-secondary: #ff9f4a;
  --ihv26-accent: #2fb7a4;
  --ihv26-soft: #fff6f1;
  --ihv26-text: #18202f;
  --ihv26-muted: #667085;
  --ihv26-border: rgba(224, 68, 116, 0.18);
  --ihv26-shadow: rgba(57, 31, 54, 0.12);
}

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

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

.ihv26-wrapper .ihv26-section-tint {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 159, 74, 0.13), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(47, 183, 164, 0.10), transparent 30%),
    #fff8f4;
}

.ihv26-wrapper .ihv26-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  text-align: center;
}

.ihv26-wrapper h2 {
  margin: 0 auto;
  max-width: 980px;
  color: var(--ihv26-text);
  text-align: center;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.ihv26-wrapper h2 span {
  display: inline;
}

.ihv26-wrapper .ihv26-intro {
  margin: 0 auto;
  max-width: 760px;
  color: var(--ihv26-muted);
  text-align: center;
  line-height: 1.7;
  font-weight: 450;
}

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

.ihv26-wrapper .ihv26-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  height: 100% !important;
  overflow: hidden;
  border: 1px solid var(--ihv26-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
    linear-gradient(135deg, rgba(224,68,116,0.06), rgba(47,183,164,0.05));
  box-shadow: 0 18px 48px var(--ihv26-shadow);
  text-align: center;
  transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease, background-position 500ms ease;
}

.ihv26-wrapper .ihv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,68,116,0.10), transparent 45%, rgba(255,159,74,0.10));
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
}

.ihv26-wrapper .ihv26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 68, 116, 0.38);
  box-shadow: 0 28px 70px rgba(57, 31, 54, 0.17);
}

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

.ihv26-wrapper .ihv26-card:hover .ihv26-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 32px rgba(224, 68, 116, 0.24);
}

.ihv26-wrapper .ihv26-card:hover .ihv26-i {
  transform: translateY(-2px);
}

.ihv26-wrapper .ihv26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ihv26-primary), var(--ihv26-secondary));
  box-shadow: 0 12px 28px rgba(224, 68, 116, 0.20);
  color: #ffffff;
  text-align: center;
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.ihv26-wrapper .ihv26-i {
  display: block;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  transition: transform 360ms ease;
}

.ihv26-wrapper h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ihv26-text);
  text-align: center;
  font-weight: 760;
  line-height: 1.22;
  letter-spacing: 0;
}

.ihv26-wrapper .ihv26-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ihv26-muted);
  text-align: center;
  line-height: 1.62;
  font-weight: 430;
}

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

  .ihv26-wrapper .ihv26-container {
    padding: 0 28px;
  }

  .ihv26-wrapper h2 {
    font-size: 44px;
  }

  .ihv26-wrapper .ihv26-intro {
    margin-top: 16px;
    font-size: 18px;
  }

  .ihv26-wrapper .ihv26-grid {
    margin-top: 42px;
    gap: 24px;
  }

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

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

  .ihv26-wrapper .ihv26-card {
    min-height: 294px;
    padding: 34px 26px 30px;
  }

  .ihv26-wrapper .ihv26-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
  }

  .ihv26-wrapper .ihv26-i {
    font-size: 27px;
  }

  .ihv26-wrapper h3 {
    font-size: 21px;
  }

  .ihv26-wrapper .ihv26-card p {
    margin-top: 13px;
    font-size: 15.5px;
  }
}

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

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

  .ihv26-wrapper h2 {
    font-size: 36px;
  }

  .ihv26-wrapper .ihv26-intro {
    margin-top: 14px;
    font-size: 16px;
  }

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

  .ihv26-wrapper .ihv26-card {
    min-height: 268px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .ihv26-wrapper .ihv26-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 18px;
  }

  .ihv26-wrapper .ihv26-i {
    font-size: 24px;
  }

  .ihv26-wrapper h3 {
    font-size: 20px;
  }

  .ihv26-wrapper .ihv26-card p {
    margin-top: 12px;
    font-size: 15px;
  }
}

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

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

  .ihv26-wrapper h2 {
    font-size: 28px;
  }

  .ihv26-wrapper h2 span {
    display: block;
  }

  .ihv26-wrapper .ihv26-intro {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.58;
  }

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

  .ihv26-wrapper .ihv26-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .ihv26-wrapper .ihv26-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 16px;
  }

  .ihv26-wrapper .ihv26-i {
    font-size: 20px;
  }

  .ihv26-wrapper h3 {
    font-size: 16px;
  }

  .ihv26-wrapper .ihv26-card p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.48;
  }
}

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

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

  .ihv26-wrapper h2 {
    font-size: 25px;
  }

  .ihv26-wrapper h2 span {
    display: block;
  }

  .ihv26-wrapper .ihv26-intro {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.52;
  }

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

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

  .ihv26-wrapper .ihv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

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

  .ihv26-wrapper h3 {
    font-size: 14.5px;
  }

  .ihv26-wrapper .ihv26-card p {
    margin-top: 8px;
    font-size: 12.4px;
    line-height: 1.43;
  }
}

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

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

  .ihv26-wrapper h2 {
    font-size: 22px;
  }

  .ihv26-wrapper h2 span {
    display: block;
  }

  .ihv26-wrapper .ihv26-intro {
    margin-top: 9px;
    font-size: 12.8px;
    line-height: 1.48;
  }

  .ihv26-wrapper .ihv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 20px;
    gap: 9px;
  }

  .ihv26-wrapper .ihv26-card {
    min-height: 214px;
    padding: 17px 9px 15px;
    border-radius: 14px;
  }

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

  .ihv26-wrapper .ihv26-i {
    font-size: 16px;
  }

  .ihv26-wrapper h3 {
    font-size: 13.2px;
  }

  .ihv26-wrapper .ihv26-card p {
    margin-top: 7px;
    font-size: 11.6px;
    line-height: 1.38;
  }
}

.ihv26-wrapper .ihv26-card {
  opacity: 1;
  transform: translateY(0);
}

.ihv26-wrapper.ihv26-js .ihv26-card {
  opacity: 0;
  transform: translateY(18px);
}

.ihv26-wrapper.ihv26-js .ihv26-card.ihv26-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ihv26-wrapper .ihv26-card,
  .ihv26-wrapper .ihv26-icon,
  .ihv26-wrapper .ihv26-i {
    transition: none;
  }

  .ihv26-wrapper.ihv26-js .ihv26-card {
    opacity: 1;
    transform: none;
  }
}