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

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

.tsv26-wrapper {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #12161c;
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.tsv26-wrapper .tsv26-section-tint {
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 242, 234, 0.14), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(255, 0, 80, 0.10), transparent 30%),
    #f7fbfb;
}

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

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

.tsv26-wrapper .tsv26-heading {
  margin: 0 auto;
  color: #101318;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  text-wrap: balance;
}

.tsv26-wrapper .tsv26-intro {
  margin: 0 auto;
  color: #53616f;
  line-height: 1.65;
  font-weight: 500;
  max-width: 760px;
}

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

.tsv26-wrapper .tsv26-card {
  position: relative;
  height: 100% !important;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
    #ffffff;
  border: 1px solid rgba(16, 19, 24, 0.10);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(12, 20, 28, 0.08);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.tsv26-wrapper .tsv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.12), rgba(255, 0, 80, 0.10));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.tsv26-wrapper .tsv26-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 194, 186, 0.38);
  box-shadow: 0 24px 64px rgba(255, 0, 80, 0.13), 0 14px 42px rgba(0, 242, 234, 0.12);
}

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

.tsv26-wrapper .tsv26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 22px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #101318 0%, #171d24 36%, #00cfc8 68%, #ff2f68 100%);
  box-shadow: 0 14px 34px rgba(0, 194, 186, 0.24);
  transition: transform 260ms ease, box-shadow 260ms ease, background-position 260ms ease;
  background-size: 160% 160%;
  background-position: 0% 50%;
  text-align: center !important;
}

.tsv26-wrapper .tsv26-card:hover .tsv26-icon {
  transform: translateY(-4px);
  background-position: 100% 50%;
  box-shadow: 0 18px 38px rgba(255, 0, 80, 0.20);
}

.tsv26-wrapper .tsv26-i {
  line-height: 1;
  text-align: center !important;
}

.tsv26-wrapper .tsv26-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #11161d;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.tsv26-wrapper .tsv26-card-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: #5b6875;
  font-weight: 500;
  line-height: 1.62;
}

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

.tsv26-wrapper.tsv26-js .tsv26-reveal.tsv26-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

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

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

  .tsv26-wrapper .tsv26-heading {
    font-size: 42px;
    white-space: nowrap;
    max-width: 100%;
  }

  .tsv26-wrapper .tsv26-intro {
    margin-top: 18px;
    font-size: 17px;
  }

  .tsv26-wrapper .tsv26-grid {
    margin-top: 44px;
    gap: 26px;
  }

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

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

  .tsv26-wrapper .tsv26-card {
    min-height: 296px;
    padding: 34px 26px 30px;
  }

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

  .tsv26-wrapper .tsv26-i {
    font-size: 30px;
  }

  .tsv26-wrapper .tsv26-card-title {
    font-size: 21px;
  }

  .tsv26-wrapper .tsv26-card-text {
    margin-top: 13px;
    font-size: 15px;
  }
}

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

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

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

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

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

  .tsv26-wrapper .tsv26-card {
    min-height: 268px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .tsv26-wrapper .tsv26-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    border-radius: 20px;
  }

  .tsv26-wrapper .tsv26-i {
    font-size: 27px;
  }

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

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

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

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

  .tsv26-wrapper .tsv26-heading {
    font-size: 28px;
    max-width: 410px;
  }

  .tsv26-wrapper .tsv26-intro {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

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

  .tsv26-wrapper .tsv26-card {
    min-height: 228px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .tsv26-wrapper .tsv26-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 17px;
  }

  .tsv26-wrapper .tsv26-i {
    font-size: 22px;
  }

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

  .tsv26-wrapper .tsv26-card-text {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.48;
  }
}

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

  .tsv26-wrapper .tsv26-container {
    padding: 0 14px;
  }

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

  .tsv26-wrapper .tsv26-intro {
    margin-top: 11px;
    font-size: 13px;
    line-height: 1.52;
  }

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

  .tsv26-wrapper .tsv26-card {
    min-height: 218px;
    padding: 20px 12px 18px;
    border-radius: 16px;
  }

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

  .tsv26-wrapper .tsv26-i {
    font-size: 20px;
  }

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

  .tsv26-wrapper .tsv26-card-text {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.45;
  }
}

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

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

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

  .tsv26-wrapper .tsv26-intro {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.48;
  }

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

  .tsv26-wrapper .tsv26-card {
    min-height: 212px;
    padding: 18px 10px 16px;
    border-radius: 15px;
  }

  .tsv26-wrapper .tsv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 13px;
    border-radius: 15px;
  }

  .tsv26-wrapper .tsv26-i {
    font-size: 18px;
  }

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

  .tsv26-wrapper .tsv26-card-text {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .tsv26-wrapper .tsv26-section {
    padding: 38px 0;
  }

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

  .tsv26-wrapper .tsv26-heading {
    font-size: 21px;
  }

  .tsv26-wrapper .tsv26-intro {
    margin-top: 10px;
    font-size: 12px;
  }

  .tsv26-wrapper .tsv26-grid,
  .tsv26-wrapper .tsv26-grid-3,
  .tsv26-wrapper .tsv26-grid-4 {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 10px;
  }

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

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

  .tsv26-wrapper .tsv26-i {
    font-size: 18px;
  }

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

  .tsv26-wrapper .tsv26-card-text {
    margin-top: 7px;
    font-size: 12px;
  }
}