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

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

.isv26-wrapper {
  width: 100% !important;
  overflow: hidden;
  --isv26-primary: #c13584;
  --isv26-secondary: #f77737;
  --isv26-accent: #ffdc80;
  --isv26-tint: #fff7fb;
  --isv26-text: #22141f;
  --isv26-muted: #685763;
  --isv26-border: rgba(193, 53, 132, 0.16);
  --isv26-shadow: rgba(193, 53, 132, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--isv26-text);
}

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

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

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

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

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

.isv26-wrapper h2 {
  color: var(--isv26-text);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
  margin-top: 0;
}

.isv26-wrapper .isv26-intro {
  color: var(--isv26-muted);
  line-height: 1.7;
  font-weight: 500;
  max-width: 760px;
  margin-top: 0;
}

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

.isv26-wrapper .isv26-card {
  position: relative;
  height: 100% !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--isv26-border);
  box-shadow: 0 18px 42px var(--isv26-shadow);
  overflow: hidden;
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.isv26-wrapper .isv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 220, 128, 0.28), transparent 42%);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 260ms ease, transform 260ms ease;
  z-index: -1;
}

.isv26-wrapper .isv26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 119, 55, 0.38);
  box-shadow: 0 24px 58px rgba(193, 53, 132, 0.2);
}

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

.isv26-wrapper .isv26-icon {
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--isv26-primary), var(--isv26-secondary));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(193, 53, 132, 0.25);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.isv26-wrapper .isv26-card:hover .isv26-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(247, 119, 55, 0.28);
}

.isv26-wrapper .isv26-i {
  display: block;
  color: #ffffff;
  text-align: center !important;
  line-height: 1;
}

.isv26-wrapper .isv26-card h3 {
  color: var(--isv26-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  margin-top: 0;
}

.isv26-wrapper .isv26-card p {
  color: var(--isv26-muted);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 0;
}

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

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

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

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

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

  .isv26-wrapper h2 {
    font-size: 44px;
    margin-bottom: 18px;
    white-space: nowrap;
  }

  .isv26-wrapper .isv26-intro {
    font-size: 18px;
    margin-bottom: 46px;
  }

  .isv26-wrapper .isv26-grid {
    gap: 26px;
  }

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

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

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

  .isv26-wrapper .isv26-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .isv26-wrapper .isv26-i {
    font-size: 30px;
  }

  .isv26-wrapper .isv26-card h3 {
    font-size: 21px;
    margin-bottom: 13px;
  }

  .isv26-wrapper .isv26-card p {
    font-size: 15.5px;
  }
}

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

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

  .isv26-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .isv26-wrapper .isv26-intro {
    font-size: 17px;
    margin-bottom: 36px;
  }

  .isv26-wrapper .isv26-grid,
  .isv26-wrapper .isv26-grid-3,
  .isv26-wrapper .isv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

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

  .isv26-wrapper .isv26-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

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

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

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

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

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

  .isv26-wrapper h2 {
    font-size: 29px;
    margin-bottom: 12px;
    max-width: 390px;
  }

  .isv26-wrapper .isv26-intro {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

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

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

  .isv26-wrapper .isv26-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    margin-bottom: 15px;
  }

  .isv26-wrapper .isv26-i {
    font-size: 22px;
  }

  .isv26-wrapper .isv26-card h3 {
    font-size: 16.5px;
    margin-bottom: 9px;
  }

  .isv26-wrapper .isv26-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

  .isv26-wrapper .isv26-container {
    padding: 0 13px;
  }

  .isv26-wrapper h2 {
    font-size: 26px;
    margin-bottom: 11px;
    max-width: 330px;
  }

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

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

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

  .isv26-wrapper .isv26-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    margin-bottom: 13px;
  }

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

  .isv26-wrapper .isv26-card h3 {
    font-size: 15.2px;
    margin-bottom: 8px;
  }

  .isv26-wrapper .isv26-card p {
    font-size: 12.4px;
    line-height: 1.45;
  }
}

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

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

  .isv26-wrapper h2 {
    font-size: 23px;
    margin-bottom: 10px;
    max-width: 290px;
  }

  .isv26-wrapper .isv26-intro {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

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

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

  .isv26-wrapper .isv26-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

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

  .isv26-wrapper .isv26-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .isv26-wrapper .isv26-card p {
    font-size: 11.8px;
    line-height: 1.42;
  }
}

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