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

.tpv26-wrapper,
.tpv26-wrapper * {
  box-sizing: border-box;
  min-width: 0;
}

.tpv26-wrapper {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17202a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tpv26-wrapper .tpv26-section {
  width: 100% !important;
}

.tpv26-wrapper .tpv26-section-white {
  background: #ffffff;
}

.tpv26-wrapper .tpv26-section-tint {
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 242, 234, 0.12), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(255, 0, 80, 0.10), transparent 30%),
    #f7fbfb;
}

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

.tpv26-wrapper .tpv26-heading,
.tpv26-wrapper .tpv26-intro,
.tpv26-wrapper .tpv26-title,
.tpv26-wrapper .tpv26-text {
  text-align: center !important;
}

.tpv26-wrapper .tpv26-heading {
  margin: 0 auto;
  color: #111827;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.tpv26-wrapper .tpv26-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #5b6675;
  line-height: 1.7;
  font-weight: 450;
}

.tpv26-wrapper .tpv26-grid {
  display: grid !important;
  align-items: stretch !important;
}

.tpv26-wrapper .tpv26-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100% !important;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    #ffffff;
  border: 1px solid rgba(0, 242, 234, 0.22);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.tpv26-wrapper .tpv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.13), transparent 42%, rgba(255, 0, 80, 0.11));
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.tpv26-wrapper .tpv26-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(255, 0, 80, 0.34);
  box-shadow: 0 24px 60px rgba(255, 0, 80, 0.13), 0 14px 34px rgba(0, 242, 234, 0.10);
}

.tpv26-wrapper .tpv26-card:hover::before {
  opacity: 1;
}

.tpv26-wrapper .tpv26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #00cfc8 0%, #101820 48%, #ff0050 100%);
  box-shadow: 0 14px 28px rgba(255, 0, 80, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.tpv26-wrapper .tpv26-card:hover .tpv26-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 242, 234, 0.22), 0 12px 28px rgba(255, 0, 80, 0.16);
}

.tpv26-wrapper .tpv26-i {
  color: #ffffff;
  line-height: 1;
}

.tpv26-wrapper .tpv26-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #17202a;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tpv26-wrapper .tpv26-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #647184;
  line-height: 1.62;
  font-weight: 450;
}

.tpv26-wrapper .tpv26-card.tpv26-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.tpv26-wrapper .tpv26-card.tpv26-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .tpv26-wrapper .tpv26-section {
    padding: 92px 0;
  }

  .tpv26-wrapper .tpv26-container {
    padding: 0 28px;
  }

  .tpv26-wrapper .tpv26-heading {
    font-size: 42px;
    max-width: 980px;
    white-space: nowrap;
  }

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

  .tpv26-wrapper .tpv26-grid {
    margin-top: 42px;
    gap: 24px;
  }

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

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

  .tpv26-wrapper .tpv26-card {
    min-height: 300px;
    padding: 34px 26px;
    border-radius: 22px;
  }

  .tpv26-wrapper .tpv26-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .tpv26-wrapper .tpv26-i {
    font-size: 29px;
  }

  .tpv26-wrapper .tpv26-title {
    font-size: 20px;
  }

  .tpv26-wrapper .tpv26-text {
    margin-top: 12px;
    font-size: 15px;
  }
}

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

  .tpv26-wrapper .tpv26-container {
    padding: 0 24px;
  }

  .tpv26-wrapper .tpv26-heading {
    font-size: 34px;
    max-width: 720px;
  }

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

  .tpv26-wrapper .tpv26-grid,
  .tpv26-wrapper .tpv26-grid-3,
  .tpv26-wrapper .tpv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
    gap: 20px;
  }

  .tpv26-wrapper .tpv26-card {
    min-height: 270px;
    padding: 30px 22px;
    border-radius: 20px;
  }

  .tpv26-wrapper .tpv26-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
  }

  .tpv26-wrapper .tpv26-i {
    font-size: 26px;
  }

  .tpv26-wrapper .tpv26-title {
    font-size: 19px;
  }

  .tpv26-wrapper .tpv26-text {
    margin-top: 10px;
    font-size: 14px;
  }
}

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

  .tpv26-wrapper .tpv26-container {
    padding: 0 16px;
  }

  .tpv26-wrapper .tpv26-heading {
    font-size: 28px;
    max-width: 420px;
  }

  .tpv26-wrapper .tpv26-intro {
    margin-top: 12px;
    font-size: 14px;
  }

  .tpv26-wrapper .tpv26-grid,
  .tpv26-wrapper .tpv26-grid-3,
  .tpv26-wrapper .tpv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
    gap: 14px;
  }

  .tpv26-wrapper .tpv26-card {
    min-height: 232px;
    padding: 22px 14px;
    border-radius: 16px;
  }

  .tpv26-wrapper .tpv26-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
  }

  .tpv26-wrapper .tpv26-i {
    font-size: 21px;
  }

  .tpv26-wrapper .tpv26-title {
    font-size: 16px;
  }

  .tpv26-wrapper .tpv26-text {
    margin-top: 8px;
    font-size: 12.5px;
  }
}

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

  .tpv26-wrapper .tpv26-container {
    padding: 0 12px;
  }

  .tpv26-wrapper .tpv26-heading {
    font-size: 25px;
    max-width: 350px;
  }

  .tpv26-wrapper .tpv26-intro {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
  }

  .tpv26-wrapper .tpv26-grid,
  .tpv26-wrapper .tpv26-grid-3,
  .tpv26-wrapper .tpv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    gap: 11px;
  }

  .tpv26-wrapper .tpv26-card {
    min-height: 224px;
    padding: 18px 10px;
    border-radius: 14px;
  }

  .tpv26-wrapper .tpv26-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 13px;
  }

  .tpv26-wrapper .tpv26-i {
    font-size: 19px;
  }

  .tpv26-wrapper .tpv26-title {
    font-size: 14.5px;
  }

  .tpv26-wrapper .tpv26-text {
    margin-top: 7px;
    font-size: 11.7px;
    line-height: 1.55;
  }
}

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

  .tpv26-wrapper .tpv26-container {
    padding: 0 10px;
  }

  .tpv26-wrapper .tpv26-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .tpv26-wrapper .tpv26-intro {
    margin-top: 9px;
    font-size: 12.3px;
    line-height: 1.55;
  }

  .tpv26-wrapper .tpv26-grid,
  .tpv26-wrapper .tpv26-grid-3,
  .tpv26-wrapper .tpv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
    gap: 9px;
  }

  .tpv26-wrapper .tpv26-card {
    min-height: 214px;
    padding: 16px 8px;
    border-radius: 13px;
  }

  .tpv26-wrapper .tpv26-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 11px;
  }

  .tpv26-wrapper .tpv26-i {
    font-size: 17px;
  }

  .tpv26-wrapper .tpv26-title {
    font-size: 13.2px;
  }

  .tpv26-wrapper .tpv26-text {
    margin-top: 6px;
    font-size: 10.8px;
    line-height: 1.48;
  }
}