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

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

.ttav26-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #172025;
  font-family: inherit;
}

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

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

.ttav26-section-tint {
  background: linear-gradient(135deg, #f6fffd 0%, #fff7fb 52%, #f7fbff 100%);
}

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

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

.ttav26-heading {
  margin: 0 auto;
  color: #10181d;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.ttav26-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #526169;
  font-weight: 400;
  line-height: 1.65;
}

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

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

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

.ttav26-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100% !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dceeed;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 188, 178, 0.1);
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.ttav26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 242, 234, 0.16), transparent 42%), radial-gradient(circle at 90% 18%, rgba(255, 0, 80, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.ttav26-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(0, 188, 178, 0.55);
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(255, 0, 80, 0.13), 0 12px 34px rgba(0, 188, 178, 0.14);
}

.ttav26-card:hover::before {
  opacity: 1;
}

.ttav26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #00f2ea 0%, #121212 48%, #ff0050 100%);
  box-shadow: 0 14px 28px rgba(0, 188, 178, 0.22);
  transition: transform 320ms ease, box-shadow 320ms ease, filter 320ms ease;
}

.ttav26-card:hover .ttav26-icon {
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 18px 34px rgba(255, 0, 80, 0.2);
}

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

.ttav26-title,
.ttav26-text {
  position: relative;
  z-index: 1;
}

.ttav26-title {
  margin: 0;
  color: #152025;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttav26-text {
  margin: 0;
  color: #5b6870;
  font-weight: 400;
  line-height: 1.58;
}

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

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

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

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

  .ttav26-heading {
    font-size: 42px;
    max-width: 920px;
    white-space: nowrap;
  }

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

  .ttav26-grid {
    gap: 26px;
    margin-top: 42px;
  }

  .ttav26-card {
    min-height: 300px;
    padding: 34px 28px 30px;
  }

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

  .ttav26-i {
    font-size: 30px;
  }

  .ttav26-title {
    font-size: 21px;
    margin-bottom: 13px;
  }

  .ttav26-text {
    font-size: 15.5px;
  }
}

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

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

  .ttav26-heading {
    font-size: 34px;
    max-width: 760px;
  }

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

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

  .ttav26-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  .ttav26-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 21px;
    border-radius: 17px;
  }

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

  .ttav26-title {
    font-size: 19px;
    margin-bottom: 11px;
  }

  .ttav26-text {
    font-size: 15px;
  }
}

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

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

  .ttav26-heading {
    font-size: 28px;
    max-width: 430px;
  }

  .ttav26-intro {
    margin-top: 11px;
    font-size: 14.5px;
    line-height: 1.55;
  }

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

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

  .ttav26-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
    border-radius: 15px;
  }

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

  .ttav26-title {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .ttav26-text {
    font-size: 13px;
    line-height: 1.48;
  }
}

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

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

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

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

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

  .ttav26-card {
    min-height: 222px;
    padding: 19px 11px 17px;
    border-radius: 15px;
  }

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

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

  .ttav26-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .ttav26-text {
    font-size: 12.4px;
    line-height: 1.43;
  }
}

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

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

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

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

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

  .ttav26-card {
    min-height: 214px;
    padding: 17px 9px 15px;
    border-radius: 14px;
  }

  .ttav26-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 13px;
  }

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

  .ttav26-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .ttav26-text {
    font-size: 11.7px;
    line-height: 1.38;
  }
}