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

.istv-premium-wrap,
.istv-premium-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.istv-premium-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #1f2633;
  font-family: inherit;
  --istv-primary: #d62976;
  --istv-secondary: #f77737;
  --istv-accent: #405de6;
  --istv-soft: #fff6f9;
  --istv-text: #1f2633;
  --istv-muted: #667085;
  --istv-border: rgba(214, 41, 118, 0.16);
  --istv-shadow: rgba(214, 41, 118, 0.15);
  --istv-card-shadow: 0 18px 48px rgba(31, 38, 51, 0.08);
}

.istv-premium-wrap .istv-section {
  width: 100% !important;
  text-align: center;
}

.istv-premium-wrap .istv-section-one,
.istv-premium-wrap .istv-section-three {
  background: #ffffff;
}

.istv-premium-wrap .istv-section-two {
  background:
    radial-gradient(circle at 18% 12%, rgba(247, 119, 55, 0.11), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(64, 93, 230, 0.08), transparent 30%),
    linear-gradient(180deg, #fff8fb 0%, #fffdf9 100%);
}

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

.istv-premium-wrap .istv-heading {
  margin: 0 auto;
  color: var(--istv-text);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  text-align: center;
}

.istv-premium-wrap .istv-heading::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--istv-primary), var(--istv-secondary), var(--istv-accent));
}

.istv-premium-wrap .istv-intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--istv-muted);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

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

.istv-premium-wrap .istv-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(214, 41, 118, 0.28), rgba(247, 119, 55, 0.16), rgba(64, 93, 230, 0.18)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--istv-card-shadow);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.istv-premium-wrap .istv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(145deg, rgba(214, 41, 118, 0.06), rgba(247, 119, 55, 0.05) 52%, rgba(64, 93, 230, 0.05)),
    radial-gradient(circle at 50% 0%, rgba(255, 220, 128, 0.28), transparent 42%);
  transition: opacity 320ms ease;
}

.istv-premium-wrap .istv-card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 24px 64px var(--istv-shadow);
  border-color: rgba(214, 41, 118, 0.34);
}

.istv-premium-wrap .istv-card:hover::before {
  opacity: 1;
}

.istv-premium-wrap .istv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--istv-primary), var(--istv-secondary) 58%, var(--istv-accent));
  box-shadow: 0 14px 30px rgba(214, 41, 118, 0.24);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.istv-premium-wrap .istv-card:hover .istv-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(247, 119, 55, 0.28);
}

.istv-premium-wrap .istv-i {
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.istv-premium-wrap .istv-card-title {
  margin: 0;
  color: var(--istv-text);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
  text-align: center;
}

.istv-premium-wrap .istv-card-text {
  margin: 0;
  color: var(--istv-muted);
  font-weight: 500;
  line-height: 1.62;
  text-align: center;
}

.istv-premium-wrap.istv-js .istv-card {
  opacity: 0;
  transform: translateY(18px);
}

.istv-premium-wrap.istv-js .istv-card.istv-visible {
  opacity: 1;
  transform: translateY(0);
}

.istv-premium-wrap.istv-js .istv-card.istv-visible:hover {
  transform: translateY(-8px) scale(1.012);
}

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

  .istv-premium-wrap .istv-container {
    padding: 0 28px;
  }

  .istv-premium-wrap .istv-heading {
    font-size: 42px;
    max-width: 980px;
    white-space: nowrap;
  }

  .istv-premium-wrap .istv-intro {
    font-size: 17px;
  }

  .istv-premium-wrap .istv-grid {
    gap: 28px;
    margin-top: 42px;
  }

  .istv-premium-wrap .istv-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .istv-premium-wrap .istv-grid-eight {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .istv-premium-wrap .istv-card {
    min-height: 294px;
    padding: 34px 26px 30px;
    border-radius: 24px;
  }

  .istv-premium-wrap .istv-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .istv-premium-wrap .istv-i {
    font-size: 30px;
  }

  .istv-premium-wrap .istv-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .istv-premium-wrap .istv-card-text {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .istv-premium-wrap .istv-section {
    padding: 70px 0;
  }

  .istv-premium-wrap .istv-container {
    padding: 0 24px;
  }

  .istv-premium-wrap .istv-heading {
    font-size: 34px;
    max-width: 720px;
  }

  .istv-premium-wrap .istv-intro {
    font-size: 16px;
  }

  .istv-premium-wrap .istv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
  }

  .istv-premium-wrap .istv-card {
    min-height: 268px;
    padding: 30px 22px 26px;
    border-radius: 22px;
  }

  .istv-premium-wrap .istv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
  }

  .istv-premium-wrap .istv-i {
    font-size: 27px;
  }

  .istv-premium-wrap .istv-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .istv-premium-wrap .istv-card-text {
    font-size: 14px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .istv-premium-wrap .istv-section {
    padding: 54px 0;
  }

  .istv-premium-wrap .istv-container {
    padding: 0 16px;
  }

  .istv-premium-wrap .istv-heading {
    font-size: 27px;
    max-width: 390px;
  }

  .istv-premium-wrap .istv-heading::after {
    width: 62px;
    height: 3px;
    margin-top: 12px;
  }

  .istv-premium-wrap .istv-intro {
    font-size: 14px;
    line-height: 1.58;
  }

  .istv-premium-wrap .istv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .istv-premium-wrap .istv-card {
    min-height: 226px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .istv-premium-wrap .istv-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
  }

  .istv-premium-wrap .istv-i {
    font-size: 22px;
  }

  .istv-premium-wrap .istv-card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .istv-premium-wrap .istv-card-text {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .istv-premium-wrap .istv-section {
    padding: 48px 0;
  }

  .istv-premium-wrap .istv-container {
    padding: 0 12px;
  }

  .istv-premium-wrap .istv-heading {
    font-size: 24px;
    max-width: 340px;
  }

  .istv-premium-wrap .istv-heading::after {
    width: 56px;
    height: 3px;
    margin-top: 11px;
  }

  .istv-premium-wrap .istv-intro {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .istv-premium-wrap .istv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .istv-premium-wrap .istv-card {
    min-height: 218px;
    padding: 20px 11px 18px;
    border-radius: 16px;
  }

  .istv-premium-wrap .istv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .istv-premium-wrap .istv-i {
    font-size: 20px;
  }

  .istv-premium-wrap .istv-card-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .istv-premium-wrap .istv-card-text {
    font-size: 12px;
    line-height: 1.46;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .istv-premium-wrap .istv-section {
    padding: 42px 0;
  }

  .istv-premium-wrap .istv-container {
    padding: 0 10px;
  }

  .istv-premium-wrap .istv-heading {
    font-size: 21px;
    max-width: 300px;
  }

  .istv-premium-wrap .istv-heading::after {
    width: 50px;
    height: 3px;
    margin-top: 10px;
  }

  .istv-premium-wrap .istv-intro {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .istv-premium-wrap .istv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .istv-premium-wrap .istv-card {
    min-height: 212px;
    padding: 18px 9px 16px;
    border-radius: 14px;
  }

  .istv-premium-wrap .istv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .istv-premium-wrap .istv-i {
    font-size: 18px;
  }

  .istv-premium-wrap .istv-card-title {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .istv-premium-wrap .istv-card-text {
    font-size: 11.5px;
    line-height: 1.42;
  }
}