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

.tvv-2026-wrap,
.tvv-2026-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.tvv-2026-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #182129;
  font-family: inherit;
}

.tvv-2026-section {
  width: 100% !important;
}

.tvv-2026-section-white {
  background: #ffffff;
}

.tvv-2026-section-tint {
  background: linear-gradient(180deg, #fff8f9 0%, #f4fffd 100%);
}

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

.tvv-2026-heading,
.tvv-2026-intro,
.tvv-2026-card-title,
.tvv-2026-card-text {
  text-align: center !important;
}

.tvv-2026-heading {
  margin: 0 auto;
  max-width: 980px;
  color: #101820;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.tvv-2026-intro {
  margin: 14px auto 0;
  max-width: 760px;
  color: #52606b;
  line-height: 1.65;
  font-weight: 400;
}

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

.tvv-2026-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100% !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0, 188, 212, 0.11);
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.tvv-2026-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 80, 0.11), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(0, 242, 234, 0.12), transparent 44%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.tvv-2026-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(255, 0, 80, 0.28);
  box-shadow: 0 24px 58px rgba(255, 0, 80, 0.13), 0 12px 32px rgba(0, 242, 234, 0.12);
  background: #ffffff;
}

.tvv-2026-card:hover::before {
  opacity: 1;
}

.tvv-2026-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827 0%, #ff0050 52%, #00f2ea 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 0, 80, 0.2);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.tvv-2026-card:hover .tvv-2026-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 242, 234, 0.22);
}

.tvv-2026-i {
  color: #ffffff;
  line-height: 1;
}

.tvv-2026-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #101820;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tvv-2026-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5b6772;
  line-height: 1.58;
  font-weight: 400;
}

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

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

@media (min-width: 1024px) {
  .tvv-2026-section {
    padding: 92px 24px;
  }

  .tvv-2026-container {
    padding: 0 18px;
  }

  .tvv-2026-heading {
    font-size: 42px;
    white-space: nowrap;
  }

  .tvv-2026-intro {
    font-size: 17px;
  }

  .tvv-2026-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 42px;
  }

  .tvv-2026-card {
    min-height: 296px;
    padding: 34px 28px;
  }

  .tvv-2026-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .tvv-2026-i {
    font-size: 30px;
  }

  .tvv-2026-card-title {
    font-size: 21px;
    margin-bottom: 13px;
  }

  .tvv-2026-card-text {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tvv-2026-section {
    padding: 72px 22px;
  }

  .tvv-2026-container {
    padding: 0 14px;
  }

  .tvv-2026-heading {
    font-size: 34px;
  }

  .tvv-2026-intro {
    font-size: 16px;
  }

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

  .tvv-2026-card {
    min-height: 268px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .tvv-2026-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 21px;
  }

  .tvv-2026-i {
    font-size: 27px;
  }

  .tvv-2026-card-title {
    font-size: 19px;
    margin-bottom: 11px;
  }

  .tvv-2026-card-text {
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .tvv-2026-section {
    padding: 52px 16px;
  }

  .tvv-2026-container {
    padding: 0 6px;
  }

  .tvv-2026-heading {
    font-size: 28px;
    line-height: 1.16;
  }

  .tvv-2026-intro {
    font-size: 14.5px;
    line-height: 1.55;
  }

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

  .tvv-2026-card {
    min-height: 236px;
    padding: 22px 14px;
    border-radius: 17px;
  }

  .tvv-2026-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .tvv-2026-i {
    font-size: 22px;
  }

  .tvv-2026-card-title {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .tvv-2026-card-text {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tvv-2026-section {
    padding: 46px 12px;
  }

  .tvv-2026-container {
    padding: 0 4px;
  }

  .tvv-2026-heading {
    font-size: 25px;
    line-height: 1.16;
  }

  .tvv-2026-intro {
    font-size: 13.5px;
    line-height: 1.5;
  }

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

  .tvv-2026-card {
    min-height: 226px;
    padding: 19px 11px;
    border-radius: 15px;
  }

  .tvv-2026-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .tvv-2026-i {
    font-size: 20px;
  }

  .tvv-2026-card-title {
    font-size: 14.5px;
    margin-bottom: 8px;
  }

  .tvv-2026-card-text {
    font-size: 12.2px;
    line-height: 1.44;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .tvv-2026-section {
    padding: 40px 10px;
  }

  .tvv-2026-container {
    padding: 0 2px;
  }

  .tvv-2026-heading {
    font-size: 22px;
    line-height: 1.17;
  }

  .tvv-2026-intro {
    font-size: 12.8px;
    line-height: 1.48;
  }

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

  .tvv-2026-card {
    min-height: 216px;
    padding: 17px 9px;
    border-radius: 14px;
  }

  .tvv-2026-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 13px;
  }

  .tvv-2026-i {
    font-size: 18px;
  }

  .tvv-2026-card-title {
    font-size: 13.5px;
    margin-bottom: 7px;
  }

  .tvv-2026-card-text {
    font-size: 11.5px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .tvv-2026-section {
    padding: 38px 10px;
  }

  .tvv-2026-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .tvv-2026-card {
    min-height: 210px;
    padding: 18px 12px;
  }

  .tvv-2026-heading {
    font-size: 21px;
  }

  .tvv-2026-intro {
    font-size: 12.5px;
  }

  .tvv-2026-card-title {
    font-size: 14px;
  }

  .tvv-2026-card-text {
    font-size: 12px;
  }

  .tvv-2026-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .tvv-2026-i {
    font-size: 18px;
  }
}