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

.tp-tv-section-wrap,
.tp-tv-section-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.tp-tv-section-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #18211f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tp-tv-primary: #006b5f;
  --tp-tv-secondary: #ff3f6c;
  --tp-tv-accent: #00b894;
  --tp-tv-soft: #f2fbf8;
  --tp-tv-text: #18211f;
  --tp-tv-muted: #5e6e69;
  --tp-tv-border: rgba(0, 107, 95, 0.16);
  --tp-tv-shadow: rgba(0, 79, 70, 0.13);
}

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

.tp-tv-section-wrap .tp-tv-section-one,
.tp-tv-section-wrap .tp-tv-section-three {
  background: #ffffff;
}

.tp-tv-section-wrap .tp-tv-section-two {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 184, 148, 0.08), transparent 34%),
    linear-gradient(180deg, #f6fbf9 0%, #f0faf7 100%);
}

.tp-tv-section-wrap .tp-tv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

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

.tp-tv-section-wrap .tp-tv-intro {
  margin: 0 auto;
  max-width: 780px;
  color: var(--tp-tv-muted);
  font-weight: 450;
  line-height: 1.7;
  text-align: center;
}

.tp-tv-section-wrap .tp-tv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

.tp-tv-section-wrap .tp-tv-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  height: 100% !important;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at top, rgba(0, 184, 148, 0.12), transparent 42%);
  border: 1px solid var(--tp-tv-border);
  box-shadow: 0 18px 45px var(--tp-tv-shadow);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background-position 360ms ease;
}

.tp-tv-section-wrap .tp-tv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 107, 95, 0.08), rgba(255, 63, 108, 0.08));
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.tp-tv-section-wrap .tp-tv-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(255, 63, 108, 0.34);
  box-shadow: 0 26px 60px rgba(0, 79, 70, 0.18);
}

.tp-tv-section-wrap .tp-tv-card:hover::before {
  opacity: 1;
}

.tp-tv-section-wrap .tp-tv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--tp-tv-primary), var(--tp-tv-accent) 58%, var(--tp-tv-secondary));
  box-shadow: 0 14px 32px rgba(0, 107, 95, 0.22);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.tp-tv-section-wrap .tp-tv-card:hover .tp-tv-icon {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(255, 63, 108, 0.2);
}

.tp-tv-section-wrap .tp-tv-i {
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.tp-tv-section-wrap .tp-tv-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--tp-tv-text);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.tp-tv-section-wrap .tp-tv-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--tp-tv-muted);
  font-weight: 440;
  line-height: 1.62;
  text-align: center;
}

.tp-tv-section-wrap.tp-tv-js-ready .tp-tv-card {
  opacity: 0;
  transform: translateY(18px);
}

.tp-tv-section-wrap.tp-tv-js-ready .tp-tv-card.tp-tv-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .tp-tv-section-wrap .tp-tv-section {
    padding: 92px 0;
  }

  .tp-tv-section-wrap .tp-tv-container {
    padding: 0 28px;
  }

  .tp-tv-section-wrap .tp-tv-heading {
    max-width: 1040px;
    font-size: 42px;
  }

  .tp-tv-section-wrap .tp-tv-intro {
    padding-top: 16px;
    font-size: 17px;
  }

  .tp-tv-section-wrap .tp-tv-grid {
    gap: 26px;
    margin-top: 46px;
  }

  .tp-tv-section-wrap .tp-tv-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tp-tv-section-wrap .tp-tv-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tp-tv-section-wrap .tp-tv-card {
    min-height: 300px;
    padding: 34px 28px 30px;
    border-radius: 22px;
  }

  .tp-tv-section-wrap .tp-tv-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    border-radius: 20px;
  }

  .tp-tv-section-wrap .tp-tv-i {
    font-size: 28px;
  }

  .tp-tv-section-wrap .tp-tv-card h3 {
    font-size: 20px;
  }

  .tp-tv-section-wrap .tp-tv-card p {
    padding-top: 12px;
    font-size: 15px;
  }
}

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

  .tp-tv-section-wrap .tp-tv-container {
    padding: 0 24px;
  }

  .tp-tv-section-wrap .tp-tv-heading {
    max-width: 760px;
    font-size: 34px;
  }

  .tp-tv-section-wrap .tp-tv-intro {
    padding-top: 14px;
    font-size: 16px;
  }

  .tp-tv-section-wrap .tp-tv-grid,
  .tp-tv-section-wrap .tp-tv-grid-three,
  .tp-tv-section-wrap .tp-tv-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
  }

  .tp-tv-section-wrap .tp-tv-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  .tp-tv-section-wrap .tp-tv-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 21px;
    border-radius: 18px;
  }

  .tp-tv-section-wrap .tp-tv-i {
    font-size: 25px;
  }

  .tp-tv-section-wrap .tp-tv-card h3 {
    font-size: 19px;
  }

  .tp-tv-section-wrap .tp-tv-card p {
    padding-top: 11px;
    font-size: 14.5px;
  }
}

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

  .tp-tv-section-wrap .tp-tv-container {
    padding: 0 16px;
  }

  .tp-tv-section-wrap .tp-tv-heading {
    max-width: 520px;
    font-size: 28px;
  }

  .tp-tv-section-wrap .tp-tv-intro {
    padding-top: 12px;
    font-size: 14.5px;
    line-height: 1.6;
  }

  .tp-tv-section-wrap .tp-tv-grid,
  .tp-tv-section-wrap .tp-tv-grid-three,
  .tp-tv-section-wrap .tp-tv-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
  }

  .tp-tv-section-wrap .tp-tv-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

  .tp-tv-section-wrap .tp-tv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .tp-tv-section-wrap .tp-tv-i {
    font-size: 21px;
  }

  .tp-tv-section-wrap .tp-tv-card h3 {
    font-size: 15.5px;
  }

  .tp-tv-section-wrap .tp-tv-card p {
    padding-top: 9px;
    font-size: 12.7px;
    line-height: 1.5;
  }
}

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

  .tp-tv-section-wrap .tp-tv-container {
    padding: 0 12px;
  }

  .tp-tv-section-wrap .tp-tv-heading {
    max-width: 360px;
    font-size: 25px;
  }

  .tp-tv-section-wrap .tp-tv-intro {
    padding-top: 10px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .tp-tv-section-wrap .tp-tv-grid,
  .tp-tv-section-wrap .tp-tv-grid-three,
  .tp-tv-section-wrap .tp-tv-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .tp-tv-section-wrap .tp-tv-card {
    min-height: 220px;
    padding: 19px 11px 18px;
    border-radius: 15px;
  }

  .tp-tv-section-wrap .tp-tv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .tp-tv-section-wrap .tp-tv-i {
    font-size: 19px;
  }

  .tp-tv-section-wrap .tp-tv-card h3 {
    font-size: 14.5px;
  }

  .tp-tv-section-wrap .tp-tv-card p {
    padding-top: 8px;
    font-size: 12px;
    line-height: 1.45;
  }
}

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

  .tp-tv-section-wrap .tp-tv-container {
    padding: 0 10px;
  }

  .tp-tv-section-wrap .tp-tv-heading {
    max-width: 300px;
    font-size: 22px;
  }

  .tp-tv-section-wrap .tp-tv-intro {
    padding-top: 9px;
    font-size: 12.8px;
    line-height: 1.5;
  }

  .tp-tv-section-wrap .tp-tv-grid,
  .tp-tv-section-wrap .tp-tv-grid-three,
  .tp-tv-section-wrap .tp-tv-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .tp-tv-section-wrap .tp-tv-card {
    min-height: 214px;
    padding: 17px 9px 16px;
    border-radius: 14px;
  }

  .tp-tv-section-wrap .tp-tv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 13px;
    border-radius: 13px;
  }

  .tp-tv-section-wrap .tp-tv-i {
    font-size: 17px;
  }

  .tp-tv-section-wrap .tp-tv-card h3 {
    font-size: 13.5px;
  }

  .tp-tv-section-wrap .tp-tv-card p {
    padding-top: 7px;
    font-size: 11.2px;
    line-height: 1.42;
  }
}