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

.tcv26-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  background: #ffffff;
  color: #182026;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.tcv26-wrap,
.tcv26-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.tcv26-section {
  width: 100% !important;
  position: relative;
}

.tcv26-section-white {
  background: #ffffff;
}

.tcv26-section-tint {
  background: linear-gradient(180deg, #f7fbfa 0%, #fff7f8 100%);
}

.tcv26-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  text-align: center;
}

.tcv26-heading {
  margin: 0 auto;
  color: #11181d;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  text-align: center;
}

.tcv26-intro {
  margin: 0 auto;
  color: #5a6870;
  line-height: 1.7;
  text-align: center;
  max-width: 760px;
}

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

.tcv26-card {
  position: relative;
  height: 100% !important;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 244, 238, 0.08), transparent 38%),
    #ffffff;
  border: 1px solid rgba(26, 36, 43, 0.1);
  box-shadow: 0 18px 45px rgba(13, 22, 27, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.tcv26-card-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(254, 44, 85, 0.08), transparent 40%),
    #ffffff;
}

.tcv26-card::after {
  content: "";
  position: absolute;
  inset: auto 20% 0 20%;
  height: 3px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 260ms ease, transform 260ms ease;
}

.tcv26-card:hover {
  transform: translateY(-7px);
  border-color: rgba(254, 44, 85, 0.28);
  box-shadow: 0 24px 60px rgba(254, 44, 85, 0.13), 0 10px 30px rgba(37, 244, 238, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 244, 238, 0.14), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

.tcv26-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.tcv26-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  color: #11181d;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #25f4ee, #fe2c55) border-box;
  border: 2px solid transparent;
  box-shadow: 0 12px 30px rgba(37, 244, 238, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.tcv26-card:hover .tcv26-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(254, 44, 85, 0.18);
}

.tcv26-i {
  line-height: 1;
  color: #11181d;
}

.tcv26-card-title {
  margin: 0;
  color: #142027;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: center;
}

.tcv26-card-text {
  margin: 0 auto;
  color: #607078;
  line-height: 1.62;
  text-align: center;
}

.tcv26-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.tcv26-card.tcv26-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .tcv26-container {
    padding: 0 30px;
  }

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

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

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

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

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

  .tcv26-card {
    min-height: 300px;
    padding: 34px 26px;
    border-radius: 24px;
  }

  .tcv26-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
  }

  .tcv26-i {
    font-size: 28px;
  }

  .tcv26-card-title {
    font-size: 20px;
  }

  .tcv26-card-text {
    margin-top: 14px;
    font-size: 15px;
  }
}

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

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

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

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

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

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

  .tcv26-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

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

  .tcv26-card-title {
    font-size: 19px;
  }

  .tcv26-card-text {
    margin-top: 12px;
    font-size: 14.5px;
  }
}

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

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

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

  .tcv26-intro {
    margin-top: 12px;
    font-size: 14.5px;
  }

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

  .tcv26-card {
    min-height: 230px;
    padding: 22px 14px;
    border-radius: 18px;
  }

  .tcv26-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .tcv26-i {
    font-size: 22px;
  }

  .tcv26-card-title {
    font-size: 16px;
  }

  .tcv26-card-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.52;
  }
}

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

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

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

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

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

  .tcv26-card {
    min-height: 222px;
    padding: 20px 11px;
    border-radius: 16px;
  }

  .tcv26-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .tcv26-i {
    font-size: 20px;
  }

  .tcv26-card-title {
    font-size: 15px;
  }

  .tcv26-card-text {
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.48;
  }
}

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

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

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

  .tcv26-intro {
    margin-top: 9px;
    font-size: 12.8px;
    line-height: 1.52;
  }

  .tcv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    gap: 10px;
  }

  .tcv26-card {
    min-height: 214px;
    padding: 18px 9px;
    border-radius: 14px;
  }

  .tcv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

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

  .tcv26-card-title {
    font-size: 14px;
  }

  .tcv26-card-text {
    margin-top: 8px;
    font-size: 11.8px;
    line-height: 1.43;
  }
}