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

.tvnw-wrap,
.tvnw-wrap * {
  box-sizing: border-box;
}

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

.tvnw-wrap .tvnw-section {
  width: 100% !important;
  text-align: center;
  overflow: hidden;
}

.tvnw-wrap .tvnw-section-white {
  background: #ffffff;
}

.tvnw-wrap .tvnw-section-tint {
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 244, 238, 0.12), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(254, 44, 85, 0.1), transparent 30%),
    #f7fbfb;
}

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

.tvnw-wrap .tvnw-heading,
.tvnw-wrap .tvnw-intro,
.tvnw-wrap .tvnw-card-title,
.tvnw-wrap .tvnw-card-text {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.tvnw-wrap .tvnw-heading {
  margin-top: 0;
  color: #111820;
  font-weight: 820;
  line-height: 1.12;
  letter-spacing: 0;
}

.tvnw-wrap .tvnw-intro {
  color: #586673;
  line-height: 1.68;
  max-width: 760px;
  margin-top: 14px;
  margin-bottom: 0;
}

.tvnw-wrap .tvnw-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
  min-width: 0;
}

.tvnw-wrap .tvnw-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  min-width: 0;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    #ffffff;
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(13, 22, 31, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
  overflow: hidden;
}

.tvnw-wrap .tvnw-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.11), rgba(254, 44, 85, 0.08), rgba(17, 24, 32, 0));
  opacity: 0;
  transition: opacity 280ms ease;
}

.tvnw-wrap .tvnw-card-tint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 253, 253, 0.92)),
    #ffffff;
}

.tvnw-wrap .tvnw-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  text-align: center !important;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #111820 0%, #25f4ee 48%, #fe2c55 100%);
  box-shadow: 0 16px 32px rgba(254, 44, 85, 0.18), 0 12px 28px rgba(37, 244, 238, 0.14);
  transition: transform 280ms ease, box-shadow 280ms ease, filter 280ms ease;
}

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

.tvnw-wrap .tvnw-card-title {
  color: #131b24;
  font-weight: 780;
  line-height: 1.22;
  letter-spacing: 0;
}

.tvnw-wrap .tvnw-card-text {
  color: #62707c;
  line-height: 1.62;
  margin-bottom: 0;
}

.tvnw-wrap .tvnw-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(37, 244, 238, 0.44);
  box-shadow: 0 26px 64px rgba(13, 22, 31, 0.12), 0 0 0 1px rgba(254, 44, 85, 0.08);
}

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

.tvnw-wrap .tvnw-card:hover .tvnw-icon {
  transform: translateY(-4px);
  filter: saturate(1.12);
  box-shadow: 0 20px 42px rgba(254, 44, 85, 0.22), 0 14px 34px rgba(37, 244, 238, 0.18);
}

.tvnw-wrap .tvnw-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.tvnw-wrap .tvnw-reveal.tvnw-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

@media (min-width: 1024px) {
  .tvnw-wrap .tvnw-section {
    padding: 88px 0;
  }

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

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

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

  .tvnw-wrap .tvnw-grid {
    gap: 26px;
    margin-top: 42px;
  }

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

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

  .tvnw-wrap .tvnw-card {
    min-height: 298px;
    padding: 34px 24px 30px;
  }

  .tvnw-wrap .tvnw-grid-4 .tvnw-card {
    min-height: 306px;
    padding: 32px 20px 28px;
  }

  .tvnw-wrap .tvnw-icon {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .tvnw-wrap .tvnw-card-title {
    font-size: 20px;
    margin: 24px 0 12px;
  }

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

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

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

  .tvnw-wrap .tvnw-heading {
    font-size: 36px;
  }

  .tvnw-wrap .tvnw-intro {
    font-size: 16px;
    max-width: 680px;
  }

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

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

  .tvnw-wrap .tvnw-icon {
    width: 66px;
    height: 66px;
    font-size: 25px;
  }

  .tvnw-wrap .tvnw-card-title {
    font-size: 19px;
    margin: 22px 0 10px;
  }

  .tvnw-wrap .tvnw-card-text {
    font-size: 14.5px;
  }
}

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

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

  .tvnw-wrap .tvnw-heading {
    font-size: 29px;
    line-height: 1.16;
  }

  .tvnw-wrap .tvnw-intro {
    font-size: 14px;
    line-height: 1.58;
    max-width: 560px;
    margin-top: 12px;
  }

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

  .tvnw-wrap .tvnw-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .tvnw-wrap .tvnw-icon {
    width: 54px;
    height: 54px;
    font-size: 21px;
    border-radius: 15px;
  }

  .tvnw-wrap .tvnw-card-title {
    font-size: 16px;
    margin: 17px 0 8px;
  }

  .tvnw-wrap .tvnw-card-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .tvnw-wrap .tvnw-card:hover {
    transform: translateY(-5px) scale(1.006);
  }
}

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

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

  .tvnw-wrap .tvnw-heading {
    font-size: 25px;
    line-height: 1.17;
  }

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

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

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

  .tvnw-wrap .tvnw-icon {
    width: 48px;
    height: 48px;
    font-size: 19px;
    border-radius: 14px;
  }

  .tvnw-wrap .tvnw-card-title {
    font-size: 14.5px;
    line-height: 1.22;
    margin: 15px 0 7px;
  }

  .tvnw-wrap .tvnw-card-text {
    font-size: 12.2px;
    line-height: 1.44;
  }
}

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

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

  .tvnw-wrap .tvnw-heading {
    font-size: 22px;
    line-height: 1.18;
  }

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

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

  .tvnw-wrap .tvnw-card {
    min-height: 216px;
    padding: 16px 8px 14px;
    border-radius: 14px;
  }

  .tvnw-wrap .tvnw-icon {
    width: 44px;
    height: 44px;
    font-size: 17px;
    border-radius: 13px;
  }

  .tvnw-wrap .tvnw-card-title {
    font-size: 13.4px;
    line-height: 1.18;
    margin: 13px 0 6px;
  }

  .tvnw-wrap .tvnw-card-text {
    font-size: 11.5px;
    line-height: 1.38;
  }
}