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

.tptv-secure-viewer-wrap,
.tptv-secure-viewer-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.tptv-secure-viewer-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #18242a;
  font-family: inherit;
  --tptv-primary: #0f766e;
  --tptv-secondary: #14b8a6;
  --tptv-accent: #ff3d71;
  --tptv-soft: #f2fbf9;
  --tptv-border: rgba(15, 118, 110, 0.16);
  --tptv-shadow: rgba(15, 83, 78, 0.13);
  --tptv-text: #18242a;
  --tptv-muted: #5b6b70;
}

.tptv-secure-viewer-wrap .tptv-section {
  width: 100% !important;
  text-align: center;
}

.tptv-secure-viewer-wrap .tptv-section-white {
  background: #ffffff !important;
}

.tptv-secure-viewer-wrap .tptv-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 61, 113, 0.08), transparent 34%),
    linear-gradient(180deg, #f2fbf9 0%, #f8fdfc 100%);
}

.tptv-secure-viewer-wrap .tptv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.tptv-secure-viewer-wrap .tptv-heading {
  margin: 0 auto;
  color: var(--tptv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.tptv-secure-viewer-wrap .tptv-intro {
  margin: 0 auto;
  color: var(--tptv-muted);
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}

.tptv-secure-viewer-wrap .tptv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

.tptv-secure-viewer-wrap .tptv-card {
  position: relative;
  height: 100% !important;
  border: 1px solid var(--tptv-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
    linear-gradient(135deg, rgba(20,184,166,0.08), rgba(255,61,113,0.06));
  box-shadow: 0 18px 46px var(--tptv-shadow);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 380ms ease;
  background-size: 100% 100%, 180% 180%;
  background-position: center, 0% 50%;
  overflow: hidden;
}

.tptv-secure-viewer-wrap .tptv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(15,118,110,0.12), transparent 42%, rgba(255,61,113,0.10));
  opacity: 0;
  transition: opacity 260ms ease;
}

.tptv-secure-viewer-wrap .tptv-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: 0 26px 64px rgba(15, 83, 78, 0.18);
  background-position: center, 100% 50%;
}

.tptv-secure-viewer-wrap .tptv-card:hover::after {
  opacity: 1;
}

.tptv-secure-viewer-wrap .tptv-card:hover .tptv-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.22);
}

.tptv-secure-viewer-wrap .tptv-icon {
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--tptv-primary), var(--tptv-secondary) 58%, var(--tptv-accent));
  color: #ffffff;
  transition: transform 260ms ease, box-shadow 260ms ease;
  text-align: center;
}

.tptv-secure-viewer-wrap .tptv-i {
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

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

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

.tptv-secure-viewer-wrap .tptv-reveal {
  opacity: 1;
  transform: translateY(0);
}

.tptv-secure-viewer-wrap.tptv-js-ready .tptv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.tptv-secure-viewer-wrap.tptv-js-ready .tptv-reveal.tptv-visible {
  opacity: 1;
  transform: translateY(0);
}

.tptv-secure-viewer-wrap .tptv-reveal {
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 380ms ease;
}

@media (min-width: 1024px) {
  .tptv-secure-viewer-wrap .tptv-section {
    padding: 86px 0;
  }

  .tptv-secure-viewer-wrap .tptv-container {
    padding: 0 28px;
  }

  .tptv-secure-viewer-wrap .tptv-heading {
    max-width: 980px;
    font-size: 42px;
    white-space: nowrap;
  }

  .tptv-secure-viewer-wrap .tptv-intro {
    max-width: 760px;
    padding-top: 16px;
    font-size: 17px;
  }

  .tptv-secure-viewer-wrap .tptv-grid {
    gap: 24px;
    margin-top: 44px;
  }

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

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

  .tptv-secure-viewer-wrap .tptv-card {
    min-height: 292px;
    padding: 34px 24px 30px;
    border-radius: 24px;
  }

  .tptv-secure-viewer-wrap .tptv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
  }

  .tptv-secure-viewer-wrap .tptv-i {
    font-size: 27px;
  }

  .tptv-secure-viewer-wrap .tptv-card h3 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .tptv-secure-viewer-wrap .tptv-card p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tptv-secure-viewer-wrap .tptv-section {
    padding: 68px 0;
  }

  .tptv-secure-viewer-wrap .tptv-container {
    padding: 0 24px;
  }

  .tptv-secure-viewer-wrap .tptv-heading {
    max-width: 720px;
    font-size: 34px;
  }

  .tptv-secure-viewer-wrap .tptv-intro {
    max-width: 680px;
    padding-top: 14px;
    font-size: 16px;
  }

  .tptv-secure-viewer-wrap .tptv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px;
    margin-top: 36px;
  }

  .tptv-secure-viewer-wrap .tptv-card {
    min-height: 266px;
    padding: 30px 22px 26px;
    border-radius: 22px;
  }

  .tptv-secure-viewer-wrap .tptv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .tptv-secure-viewer-wrap .tptv-i {
    font-size: 24px;
  }

  .tptv-secure-viewer-wrap .tptv-card h3 {
    font-size: 18px;
    margin-bottom: 11px;
  }

  .tptv-secure-viewer-wrap .tptv-card p {
    font-size: 14px;
  }
}

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

  .tptv-secure-viewer-wrap .tptv-container {
    padding: 0 16px;
  }

  .tptv-secure-viewer-wrap .tptv-heading {
    max-width: 390px;
    font-size: 27px;
  }

  .tptv-secure-viewer-wrap .tptv-intro {
    max-width: 420px;
    padding-top: 11px;
    font-size: 14px;
    line-height: 1.58;
  }

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

  .tptv-secure-viewer-wrap .tptv-card {
    min-height: 228px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .tptv-secure-viewer-wrap .tptv-card:hover {
    transform: translateY(-4px);
  }

  .tptv-secure-viewer-wrap .tptv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .tptv-secure-viewer-wrap .tptv-i {
    font-size: 20px;
  }

  .tptv-secure-viewer-wrap .tptv-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .tptv-secure-viewer-wrap .tptv-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

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

  .tptv-secure-viewer-wrap .tptv-container {
    padding: 0 13px;
  }

  .tptv-secure-viewer-wrap .tptv-heading {
    max-width: 330px;
    font-size: 24px;
  }

  .tptv-secure-viewer-wrap .tptv-intro {
    max-width: 350px;
    padding-top: 10px;
    font-size: 13.5px;
    line-height: 1.54;
  }

  .tptv-secure-viewer-wrap .tptv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
    margin-top: 24px;
  }

  .tptv-secure-viewer-wrap .tptv-card {
    min-height: 220px;
    padding: 20px 12px 18px;
    border-radius: 16px;
  }

  .tptv-secure-viewer-wrap .tptv-card:hover {
    transform: translateY(-3px);
  }

  .tptv-secure-viewer-wrap .tptv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 13px;
  }

  .tptv-secure-viewer-wrap .tptv-i {
    font-size: 18px;
  }

  .tptv-secure-viewer-wrap .tptv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .tptv-secure-viewer-wrap .tptv-card p {
    font-size: 12px;
    line-height: 1.46;
  }
}

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

  .tptv-secure-viewer-wrap .tptv-container {
    padding: 0 10px;
  }

  .tptv-secure-viewer-wrap .tptv-heading {
    max-width: 292px;
    font-size: 21px;
  }

  .tptv-secure-viewer-wrap .tptv-intro {
    max-width: 300px;
    padding-top: 9px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .tptv-secure-viewer-wrap .tptv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
    margin-top: 22px;
  }

  .tptv-secure-viewer-wrap .tptv-card {
    min-height: 214px;
    padding: 18px 10px 16px;
    border-radius: 14px;
  }

  .tptv-secure-viewer-wrap .tptv-card:hover {
    transform: translateY(-2px);
  }

  .tptv-secure-viewer-wrap .tptv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .tptv-secure-viewer-wrap .tptv-i {
    font-size: 16px;
  }

  .tptv-secure-viewer-wrap .tptv-card h3 {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .tptv-secure-viewer-wrap .tptv-card p {
    font-size: 11.5px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .tptv-secure-viewer-wrap .tptv-section {
    padding: 38px 0;
  }

  .tptv-secure-viewer-wrap .tptv-container {
    padding: 0 10px;
  }

  .tptv-secure-viewer-wrap .tptv-heading {
    font-size: 20px;
  }

  .tptv-secure-viewer-wrap .tptv-intro {
    padding-top: 9px;
    font-size: 12px;
  }

  .tptv-secure-viewer-wrap .tptv-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
    margin-top: 20px;
  }

  .tptv-secure-viewer-wrap .tptv-card {
    min-height: 210px;
    padding: 18px 12px 16px;
    border-radius: 14px;
  }

  .tptv-secure-viewer-wrap .tptv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .tptv-secure-viewer-wrap .tptv-i {
    font-size: 16px;
  }

  .tptv-secure-viewer-wrap .tptv-card h3 {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .tptv-secure-viewer-wrap .tptv-card p {
    font-size: 11.5px;
  }
}