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

.ttdv-2026-data-viewer,
.ttdv-2026-data-viewer * {
  box-sizing: border-box;
}

.ttdv-2026-data-viewer {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #172126;
  font-family: Arial, Helvetica, sans-serif;
}

.ttdv-2026-data-viewer .ttdv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0;
  position: relative;
  z-index: 1;
}

.ttdv-2026-data-viewer .ttdv-section {
  position: relative;
  text-align: center;
  min-width: 0;
  z-index: 1;
}

.ttdv-2026-data-viewer .ttdv-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
}

.ttdv-2026-data-viewer .ttdv-section-one::before,
.ttdv-2026-data-viewer .ttdv-section-three::before {
  background: #ffffff;
}

.ttdv-2026-data-viewer .ttdv-section-two::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 242, 234, 0.12), transparent 30%),
    radial-gradient(circle at 82% 75%, rgba(255, 0, 80, 0.1), transparent 32%),
    #f7fbfb;
}

.ttdv-2026-data-viewer h2 {
  margin: 0 auto;
  color: #101719;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
  max-width: 980px;
}

.ttdv-2026-data-viewer .ttdv-intro {
  margin: 16px auto 0;
  color: #516066;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  max-width: 760px;
}

.ttdv-2026-data-viewer .ttdv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0;
}

.ttdv-2026-data-viewer .ttdv-card {
  height: 100% !important;
  min-width: 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
    #ffffff;
  border: 1px solid rgba(21, 45, 48, 0.11);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(18, 42, 44, 0.09);
  display: grid;
  justify-items: center;
  align-content: start;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
  position: relative;
  overflow: hidden;
}

.ttdv-2026-data-viewer .ttdv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.08), rgba(255, 0, 80, 0.07));
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.ttdv-2026-data-viewer .ttdv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 187, 180, 0.38);
  box-shadow: 0 24px 62px rgba(255, 0, 80, 0.13), 0 10px 28px rgba(0, 187, 180, 0.13);
}

.ttdv-2026-data-viewer .ttdv-card:hover::after {
  opacity: 1;
}

.ttdv-2026-data-viewer .ttdv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(0, 242, 234, 0.18), rgba(255, 0, 80, 0.14)),
    #ffffff;
  border: 1px solid rgba(0, 187, 180, 0.2);
  color: #063f42;
  box-shadow: 0 12px 28px rgba(0, 187, 180, 0.12);
  transition: transform 320ms ease, box-shadow 320ms ease, background-position 320ms ease;
  position: relative;
  z-index: 1;
}

.ttdv-2026-data-viewer .ttdv-card:hover .ttdv-icon {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(255, 0, 80, 0.14);
}

.ttdv-2026-data-viewer .ttdv-i {
  display: block;
  line-height: 1;
  background: linear-gradient(135deg, #00b8b2, #ff0050);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ttdv-2026-data-viewer .ttdv-card h3 {
  margin: 0;
  color: #152326;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ttdv-2026-data-viewer .ttdv-card p {
  margin: 0;
  color: #59676c;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ttdv-2026-data-viewer .ttdv-card.ttdv-visible {
  animation: ttdvDataFade 620ms ease both;
}

@keyframes ttdvDataFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .ttdv-2026-data-viewer .ttdv-section {
    padding: 92px 24px;
  }

  .ttdv-2026-data-viewer h2 {
    font-size: 44px;
    white-space: nowrap;
  }

  .ttdv-2026-data-viewer .ttdv-intro {
    font-size: 18px;
    margin-bottom: 42px;
  }

  .ttdv-2026-data-viewer .ttdv-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .ttdv-2026-data-viewer .ttdv-grid-eight {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .ttdv-2026-data-viewer .ttdv-card {
    min-height: 296px;
    padding: 34px 26px 30px;
  }

  .ttdv-2026-data-viewer .ttdv-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    font-size: 30px;
  }

  .ttdv-2026-data-viewer .ttdv-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .ttdv-2026-data-viewer .ttdv-card p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ttdv-2026-data-viewer .ttdv-section {
    padding: 74px 22px;
  }

  .ttdv-2026-data-viewer h2 {
    font-size: 36px;
  }

  .ttdv-2026-data-viewer .ttdv-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .ttdv-2026-data-viewer .ttdv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .ttdv-2026-data-viewer .ttdv-card {
    min-height: 266px;
    padding: 30px 22px 26px;
    border-radius: 20px;
  }

  .ttdv-2026-data-viewer .ttdv-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    font-size: 27px;
  }

  .ttdv-2026-data-viewer .ttdv-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .ttdv-2026-data-viewer .ttdv-card p {
    font-size: 14px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ttdv-2026-data-viewer .ttdv-section {
    padding: 56px 16px;
  }

  .ttdv-2026-data-viewer h2 {
    font-size: 30px;
  }

  .ttdv-2026-data-viewer .ttdv-intro {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .ttdv-2026-data-viewer .ttdv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ttdv-2026-data-viewer .ttdv-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .ttdv-2026-data-viewer .ttdv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 15px;
    border-radius: 16px;
    font-size: 22px;
  }

  .ttdv-2026-data-viewer .ttdv-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .ttdv-2026-data-viewer .ttdv-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ttdv-2026-data-viewer .ttdv-section {
    padding: 48px 12px;
  }

  .ttdv-2026-data-viewer h2 {
    font-size: 26px;
  }

  .ttdv-2026-data-viewer .ttdv-intro {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .ttdv-2026-data-viewer .ttdv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .ttdv-2026-data-viewer .ttdv-card {
    min-height: 220px;
    padding: 18px 10px 16px;
    border-radius: 15px;
  }

  .ttdv-2026-data-viewer .ttdv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 13px;
    border-radius: 14px;
    font-size: 20px;
  }

  .ttdv-2026-data-viewer .ttdv-card h3 {
    font-size: 14.5px;
    margin-bottom: 8px;
  }

  .ttdv-2026-data-viewer .ttdv-card p {
    font-size: 11.5px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ttdv-2026-data-viewer .ttdv-section {
    padding: 42px 10px;
  }

  .ttdv-2026-data-viewer h2 {
    font-size: 23px;
  }

  .ttdv-2026-data-viewer .ttdv-intro {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .ttdv-2026-data-viewer .ttdv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .ttdv-2026-data-viewer .ttdv-card {
    min-height: 214px;
    padding: 16px 8px 14px;
    border-radius: 14px;
  }

  .ttdv-2026-data-viewer .ttdv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 13px;
    font-size: 18px;
  }

  .ttdv-2026-data-viewer .ttdv-card h3 {
    font-size: 13.5px;
    margin-bottom: 7px;
  }

  .ttdv-2026-data-viewer .ttdv-card p {
    font-size: 10.8px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .ttdv-2026-data-viewer .ttdv-section {
    padding: 36px 10px;
  }

  .ttdv-2026-data-viewer .ttdv-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .ttdv-2026-data-viewer h2 {
    font-size: 22px;
  }

  .ttdv-2026-data-viewer .ttdv-intro {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .ttdv-2026-data-viewer .ttdv-card {
    min-height: 210px;
    padding: 16px 10px;
  }
}