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

.ibv26-wrapper,
.ibv26-wrapper * {
  box-sizing: border-box;
}

.ibv26-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  --ibv26-primary: #c13584;
  --ibv26-secondary: #f56040;
  --ibv26-accent: #ffdc80;
  --ibv26-soft: #fff7f3;
  --ibv26-text: #221823;
  --ibv26-muted: #6e5d67;
  --ibv26-border: rgba(193, 53, 132, 0.16);
  --ibv26-shadow: rgba(193, 53, 132, 0.14);
  --ibv26-card: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ibv26-text);
  text-align: center;
}

.ibv26-section {
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
}

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

.ibv26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 220, 128, 0.26), transparent 34%),
    linear-gradient(180deg, #fff8f5 0%, #fff3f7 100%);
}

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

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

.ibv26-intro {
  margin: 0 auto;
  max-width: 760px;
  color: var(--ibv26-muted);
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

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

.ibv26-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(245, 96, 64, 0.12), transparent 46%);
  border: 1px solid var(--ibv26-border);
  box-shadow: 0 18px 46px var(--ibv26-shadow);
  text-align: center;
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease, background-position 360ms ease;
}

.ibv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(193, 53, 132, 0.08), rgba(245, 96, 64, 0.06), rgba(255, 220, 128, 0.12));
  transition: opacity 360ms ease;
}

.ibv26-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(193, 53, 132, 0.34);
  box-shadow: 0 24px 60px rgba(193, 53, 132, 0.2);
}

.ibv26-card:hover::before {
  opacity: 1;
}

.ibv26-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(193, 53, 132, 0.12), rgba(245, 96, 64, 0.11)),
    #ffffff;
  border: 1px solid rgba(193, 53, 132, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85), 0 12px 28px rgba(193, 53, 132, 0.15);
  color: var(--ibv26-primary);
  text-align: center;
  transition: transform 360ms ease, color 360ms ease, background 360ms ease;
}

.ibv26-card:hover .ibv26-icon {
  transform: translateY(-4px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--ibv26-primary), var(--ibv26-secondary));
}

.ibv26-i {
  display: inline-block;
  line-height: 1;
  text-align: center;
}

.ibv26-card-title {
  margin: 0;
  color: var(--ibv26-text);
  font-weight: 760;
  line-height: 1.22;
  letter-spacing: 0;
  text-align: center;
}

.ibv26-card-text {
  margin: 0 auto;
  color: var(--ibv26-muted);
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

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

.ibv26-card.ibv26-reveal.ibv26-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .ibv26-heading {
    font-size: 44px;
    white-space: nowrap;
  }

  .ibv26-intro {
    margin-top: 18px;
    font-size: 18px;
  }

  .ibv26-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

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

  .ibv26-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
    font-size: 30px;
  }

  .ibv26-card-title {
    font-size: 21px;
  }

  .ibv26-card-text {
    margin-top: 12px;
    font-size: 15.5px;
  }
}

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

  .ibv26-container {
    padding: 0 22px;
  }

  .ibv26-heading {
    font-size: 36px;
  }

  .ibv26-intro {
    margin-top: 16px;
    font-size: 16.5px;
  }

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

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

  .ibv26-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
    font-size: 27px;
  }

  .ibv26-card-title {
    font-size: 19px;
  }

  .ibv26-card-text {
    margin-top: 10px;
    font-size: 14.8px;
  }
}

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

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

  .ibv26-heading {
    font-size: 29px;
  }

  .ibv26-intro {
    margin-top: 12px;
    font-size: 14.5px;
  }

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

  .ibv26-card {
    min-height: 238px;
    padding: 22px 14px;
    border-radius: 18px;
  }

  .ibv26-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    font-size: 22px;
  }

  .ibv26-card-title {
    font-size: 16px;
  }

  .ibv26-card-text {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.48;
  }
}

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

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

  .ibv26-heading {
    font-size: 25px;
  }

  .ibv26-intro {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.55;
  }

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

  .ibv26-card {
    min-height: 224px;
    padding: 18px 10px;
    border-radius: 16px;
  }

  .ibv26-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 13px;
    font-size: 20px;
  }

  .ibv26-card-title {
    font-size: 14.5px;
  }

  .ibv26-card-text {
    margin-top: 7px;
    font-size: 12.2px;
    line-height: 1.45;
  }
}

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

  .ibv26-container {
    padding: 0 10px;
  }

  .ibv26-heading {
    font-size: 22px;
  }

  .ibv26-intro {
    margin-top: 9px;
    font-size: 12.8px;
    line-height: 1.5;
  }

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

  .ibv26-card {
    min-height: 214px;
    padding: 16px 8px;
    border-radius: 14px;
  }

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

  .ibv26-card-title {
    font-size: 13.5px;
  }

  .ibv26-card-text {
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .ibv26-section {
    padding: 38px 0;
  }

  .ibv26-container {
    padding: 0 10px;
  }

  .ibv26-heading {
    font-size: 21px;
  }

  .ibv26-intro {
    margin-top: 8px;
    font-size: 12.5px;
  }

  .ibv26-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .ibv26-card {
    min-height: 210px;
    padding: 16px 10px;
    border-radius: 14px;
  }

  .ibv26-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 11px;
    font-size: 17px;
  }

  .ibv26-card-title {
    font-size: 13.5px;
  }

  .ibv26-card-text {
    margin-top: 6px;
    font-size: 11.5px;
  }
}