@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.5.2/css/all.min.css");

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

.iav26-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #172026;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.iav26-section {
  width: 100% !important;
  overflow: hidden;
}

.iav26-section-one,
.iav26-section-three {
  background: #ffffff;
}

.iav26-section-two {
  background:
    radial-gradient(circle at 18% 12%, rgba(226, 63, 105, 0.08), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(248, 168, 52, 0.08), transparent 32%),
    #fff7f7;
}

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

.iav26-wrapper h2,
.iav26-wrapper h3,
.iav26-wrapper p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.iav26-wrapper h2 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #15191f;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.iav26-intro {
  max-width: 760px;
  margin-top: 0;
  color: #59636d;
  line-height: 1.65;
  font-weight: 500;
}

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

.iav26-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  height: 100% !important;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9)),
    #ffffff;
  border: 1px solid rgba(226, 63, 105, 0.16);
  box-shadow: 0 18px 46px rgba(110, 31, 51, 0.09);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.iav26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 63, 105, 0.1), rgba(248, 168, 52, 0.08), transparent 62%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.iav26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 63, 105, 0.38);
  box-shadow: 0 24px 60px rgba(110, 31, 51, 0.15);
}

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

.iav26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, #e23f69, #f8a834);
  box-shadow: 0 14px 30px rgba(226, 63, 105, 0.24);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.iav26-card:hover .iav26-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 36px rgba(226, 63, 105, 0.32);
}

.iav26-i {
  line-height: 1;
}

.iav26-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #1c2229;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
}

.iav26-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: #64707a;
  font-weight: 500;
  line-height: 1.58;
}

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

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

.iav26-wrapper.iav26-js .iav26-card.iav26-visible:hover {
  transform: translateY(-8px);
}

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

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

  .iav26-wrapper h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  .iav26-intro {
    font-size: 17px;
    margin-bottom: 38px;
  }

  .iav26-grid {
    gap: 24px;
  }

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

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

  .iav26-card {
    min-height: 300px;
    padding: 34px 26px 30px;
    border-radius: 22px;
  }

  .iav26-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-size: 28px;
  }

  .iav26-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .iav26-card p {
    font-size: 15px;
  }
}

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

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

  .iav26-wrapper h2 {
    font-size: 34px;
  }

  .iav26-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

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

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

  .iav26-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 20px;
    font-size: 25px;
  }

  .iav26-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .iav26-card p {
    font-size: 14.5px;
  }
}

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

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

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

  .iav26-intro {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

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

  .iav26-card {
    min-height: 235px;
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

  .iav26-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    margin-bottom: 16px;
    font-size: 21px;
  }

  .iav26-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .iav26-card p {
    font-size: 13px;
    line-height: 1.48;
  }
}

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

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

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

  .iav26-intro {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

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

  .iav26-card {
    min-height: 224px;
    padding: 18px 10px 17px;
    border-radius: 14px;
  }

  .iav26-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    margin-bottom: 13px;
    font-size: 19px;
  }

  .iav26-card h3 {
    font-size: 14.5px;
    margin-bottom: 7px;
  }

  .iav26-card p {
    font-size: 12.2px;
    line-height: 1.43;
  }
}

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

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

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

  .iav26-intro {
    font-size: 12.8px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

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

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

  .iav26-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 17px;
  }

  .iav26-card h3 {
    font-size: 13.2px;
    margin-bottom: 6px;
  }

  .iav26-card p {
    font-size: 11.4px;
    line-height: 1.4;
  }
}

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

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

  .iav26-wrapper h2 {
    font-size: 21px;
  }

  .iav26-intro {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .iav26-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .iav26-card {
    min-height: 210px;
    padding: 18px 12px;
    border-radius: 12px;
  }

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

  .iav26-card h3 {
    font-size: 15px;
    margin-bottom: 7px;
  }

  .iav26-card p {
    font-size: 12.5px;
  }
}