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

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

.ttvtv-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #172126;
  font-family: Arial, Helvetica, sans-serif;
}

.ttvtv-section {
  width: 100% !important;
  text-align: center;
}

.ttvtv-section-one,
.ttvtv-section-three {
  background: #ffffff;
}

.ttvtv-section-two {
  background: linear-gradient(180deg, #f7fbfa 0%, #eef8f5 100%);
}

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

.ttvtv-heading {
  margin: 0;
  color: #112024;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.ttvtv-intro {
  margin: 0 auto;
  max-width: 780px;
  color: #536366;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

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

.ttvtv-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dceae7;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfefd 100%);
  box-shadow: 0 18px 44px rgba(20, 70, 64, 0.09);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.ttvtv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(17, 184, 157, 0.16), transparent 52%);
  transition: opacity 260ms ease, transform 260ms ease;
  transform: translateY(12px);
}

.ttvtv-card:hover {
  transform: translateY(-8px);
  border-color: #42c6b2;
  box-shadow: 0 24px 58px rgba(20, 70, 64, 0.16);
}

.ttvtv-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.ttvtv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6b61 0%, #12b89d 58%, #ff4d6d 100%);
  box-shadow: 0 14px 28px rgba(17, 184, 157, 0.24);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ttvtv-card:hover .ttvtv-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(255, 77, 109, 0.2);
}

.ttvtv-i {
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.ttvtv-card h3 {
  margin: 0;
  color: #142326;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.ttvtv-card p {
  margin: 0;
  color: #5b686b;
  font-weight: 400;
  line-height: 1.62;
  text-align: center;
}

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

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

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

  .ttvtv-container {
    padding: 0 28px;
  }

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

  .ttvtv-intro {
    margin-top: 16px;
    font-size: 17px;
  }

  .ttvtv-grid {
    gap: 24px;
    margin-top: 44px;
  }

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

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

  .ttvtv-card {
    min-height: 292px;
    padding: 34px 26px;
  }

  .ttvtv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
  }

  .ttvtv-i {
    font-size: 27px;
  }

  .ttvtv-card h3 {
    font-size: 20px;
  }

  .ttvtv-card p {
    margin-top: 13px;
    font-size: 15px;
  }
}

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

  .ttvtv-container {
    padding: 0 24px;
  }

  .ttvtv-heading {
    font-size: 34px;
  }

  .ttvtv-intro {
    margin-top: 14px;
    font-size: 16px;
  }

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

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

  .ttvtv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 21px;
    border-radius: 16px;
  }

  .ttvtv-i {
    font-size: 25px;
  }

  .ttvtv-card h3 {
    font-size: 19px;
  }

  .ttvtv-card p {
    margin-top: 12px;
    font-size: 14.5px;
  }
}

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

  .ttvtv-container {
    padding: 0 16px;
  }

  .ttvtv-heading {
    font-size: 28px;
  }

  .ttvtv-intro {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
  }

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

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

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

  .ttvtv-i {
    font-size: 21px;
  }

  .ttvtv-card h3 {
    font-size: 16px;
  }

  .ttvtv-card p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.5;
  }
}

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

  .ttvtv-container {
    padding: 0 12px;
  }

  .ttvtv-heading {
    font-size: 25px;
  }

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

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

  .ttvtv-card {
    min-height: 224px;
    padding: 19px 11px;
    border-radius: 15px;
  }

  .ttvtv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 13px;
  }

  .ttvtv-i {
    font-size: 19px;
  }

  .ttvtv-card h3 {
    font-size: 15px;
  }

  .ttvtv-card p {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.45;
  }
}

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

  .ttvtv-container {
    padding: 0 10px;
  }

  .ttvtv-heading {
    font-size: 22px;
  }

  .ttvtv-intro {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.5;
  }

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

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

  .ttvtv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .ttvtv-i {
    font-size: 18px;
  }

  .ttvtv-card h3 {
    font-size: 14px;
    line-height: 1.2;
  }

  .ttvtv-card p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .ttvtv-section {
    padding: 36px 0;
  }

  .ttvtv-container {
    padding: 0 10px;
  }

  .ttvtv-heading {
    font-size: 21px;
  }

  .ttvtv-intro {
    margin-top: 9px;
    font-size: 13px;
  }

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

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

  .ttvtv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .ttvtv-i {
    font-size: 18px;
  }

  .ttvtv-card h3 {
    font-size: 14px;
  }

  .ttvtv-card p {
    margin-top: 7px;
    font-size: 12px;
  }
}