@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-viewer,
.tvv-2026-viewer * {
  box-sizing: border-box;
}

.tvv-2026-viewer {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17212b;
  --tvv-primary: #ff2f6d;
  --tvv-secondary: #10d7d2;
  --tvv-accent: #111827;
  --tvv-tint: #f6fbfb;
  --tvv-border: rgba(17, 24, 39, 0.1);
  --tvv-shadow: rgba(255, 47, 109, 0.16);
  --tvv-text: #17212b;
  --tvv-muted: #5f6b76;
}

.tvv-2026-viewer .tvv-section {
  width: 100% !important;
  text-align: center;
}

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

.tvv-2026-viewer .tvv-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 215, 210, 0.16), transparent 34%),
    linear-gradient(180deg, #f7fcfc 0%, #fff7fa 100%);
}

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

.tvv-2026-viewer h2 {
  margin: 0 auto;
  color: var(--tvv-text);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.tvv-2026-viewer .tvv-intro {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--tvv-muted);
  line-height: 1.65;
  text-align: center;
}

.tvv-2026-viewer .tvv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.tvv-2026-viewer .tvv-card {
  position: relative;
  min-width: 0;
  height: 100% !important;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(255, 47, 109, 0.08), rgba(16, 215, 210, 0.08));
  border: 1px solid var(--tvv-border);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
  background-size: 100% 100%, 180% 180%;
}

.tvv-2026-viewer .tvv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 47, 109, 0.32);
  box-shadow: 0 24px 58px var(--tvv-shadow), 0 0 0 1px rgba(16, 215, 210, 0.12);
  background-position: 0 0, 100% 50%;
}

.tvv-2026-viewer .tvv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 47, 109, 0.14), rgba(16, 215, 210, 0.16)),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 47, 109, 0.12), 0 12px 28px rgba(16, 215, 210, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.tvv-2026-viewer .tvv-card:hover .tvv-icon {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(255, 47, 109, 0.24), 0 16px 34px rgba(255, 47, 109, 0.18);
}

.tvv-2026-viewer .tvv-i {
  color: var(--tvv-primary);
  line-height: 1;
  text-align: center;
  transition: color 260ms ease, transform 260ms ease;
}

.tvv-2026-viewer .tvv-card:hover .tvv-i {
  color: #0aa7a4;
  transform: translateY(-1px);
}

.tvv-2026-viewer h3 {
  margin: 0;
  color: var(--tvv-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.tvv-2026-viewer .tvv-card p {
  margin: 0;
  color: var(--tvv-muted);
  line-height: 1.55;
  text-align: center;
}

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

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

.tvv-2026-viewer.tvv-js .tvv-card.tvv-visible:hover {
  transform: translateY(-8px) scale(1.01);
}

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

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

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

  .tvv-2026-viewer .tvv-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .tvv-2026-viewer .tvv-grid {
    gap: 24px;
  }

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

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

  .tvv-2026-viewer .tvv-card {
    min-height: 300px;
    padding: 34px 26px;
    border-radius: 22px;
  }

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

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

  .tvv-2026-viewer h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

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

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

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

  .tvv-2026-viewer h2 {
    font-size: 36px;
  }

  .tvv-2026-viewer .tvv-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

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

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

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

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

  .tvv-2026-viewer h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .tvv-2026-viewer .tvv-card p {
    font-size: 14.5px;
  }
}

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

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

  .tvv-2026-viewer h2 {
    font-size: 29px;
  }

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

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

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

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

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

  .tvv-2026-viewer h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .tvv-2026-viewer .tvv-card p {
    font-size: 13px;
    line-height: 1.45;
  }
}

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

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

  .tvv-2026-viewer h2 {
    font-size: 26px;
  }

  .tvv-2026-viewer .tvv-intro {
    font-size: 13.8px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .tvv-2026-viewer .tvv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .tvv-2026-viewer .tvv-card {
    min-height: 225px;
    padding: 20px 11px;
    border-radius: 15px;
  }

  .tvv-2026-viewer .tvv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

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

  .tvv-2026-viewer h3 {
    font-size: 15px;
    margin-bottom: 9px;
  }

  .tvv-2026-viewer .tvv-card p {
    font-size: 12.4px;
    line-height: 1.42;
  }
}

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

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

  .tvv-2026-viewer h2 {
    font-size: 23px;
  }

  .tvv-2026-viewer .tvv-intro {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .tvv-2026-viewer .tvv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .tvv-2026-viewer .tvv-card {
    min-height: 218px;
    padding: 18px 9px;
    border-radius: 14px;
  }

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

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

  .tvv-2026-viewer h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .tvv-2026-viewer .tvv-card p {
    font-size: 11.8px;
    line-height: 1.38;
  }
}