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

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

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

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

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

.tav26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 242, 234, 0.16), transparent 34%),
    linear-gradient(180deg, #f6fffe 0%, #fff7fb 100%);
}

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

.tav26-h2,
.tav26-intro,
.tav26-card-title,
.tav26-card-text {
  text-align: center !important;
}

.tav26-h2 {
  margin: 0 auto;
  color: #10181d;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.tav26-intro {
  max-width: 760px;
  margin: 14px auto 0;
  color: #53646b;
  line-height: 1.7;
  font-weight: 450;
}

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

.tav26-card {
  position: relative;
  height: 100% !important;
  overflow: hidden;
  text-align: center !important;
  border: 1px solid rgba(0, 185, 177, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(255, 0, 80, 0.08), transparent 48%);
  box-shadow: 0 18px 48px rgba(12, 38, 42, 0.09);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background-position 420ms ease;
}

.tav26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.13), rgba(255, 0, 80, 0.1));
  transition: opacity 320ms ease;
}

.tav26-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(255, 0, 80, 0.32);
  box-shadow: 0 24px 68px rgba(255, 0, 80, 0.14), 0 16px 42px rgba(0, 185, 177, 0.13);
}

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

.tav26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #00b9b1 0%, #172126 52%, #ff0050 100%);
  box-shadow: 0 14px 30px rgba(0, 185, 177, 0.24);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.tav26-card:hover .tav26-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(255, 0, 80, 0.22);
}

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

.tav26-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #172126;
  font-weight: 820;
  line-height: 1.22;
  letter-spacing: 0;
}

.tav26-card-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: #5c6b72;
  line-height: 1.62;
  font-weight: 440;
}

.tav26-card {
  opacity: 1;
  transform: translateY(0);
}

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

.tav26-wrapper.tav26-js .tav26-card.tav26-revealed {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .tav26-h2 {
    max-width: 980px;
    font-size: 44px;
    white-space: nowrap;
  }

  .tav26-intro {
    font-size: 17px;
  }

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

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

  .tav26-card {
    min-height: 292px;
    padding: 36px 30px 32px;
  }

  .tav26-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
  }

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

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

  .tav26-card-text {
    font-size: 15.5px;
  }
}

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

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

  .tav26-h2 {
    max-width: 780px;
    font-size: 36px;
  }

  .tav26-intro {
    font-size: 16px;
  }

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

  .tav26-card {
    min-height: 268px;
    padding: 32px 26px 28px;
    border-radius: 20px;
  }

  .tav26-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 21px;
  }

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

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

  .tav26-card-text {
    font-size: 15px;
  }
}

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

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

  .tav26-h2 {
    max-width: 520px;
    font-size: 29px;
  }

  .tav26-intro {
    font-size: 14.5px;
    line-height: 1.58;
  }

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

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

  .tav26-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .tav26-i {
    font-size: 21px;
  }

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

  .tav26-card-text {
    font-size: 13.2px;
    line-height: 1.5;
  }
}

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

  .tav26-container {
    padding: 0 13px;
  }

  .tav26-h2 {
    max-width: 360px;
    font-size: 25px;
  }

  .tav26-intro {
    font-size: 13.6px;
    line-height: 1.54;
  }

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

  .tav26-card {
    min-height: 222px;
    padding: 19px 11px 18px;
    border-radius: 14px;
  }

  .tav26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .tav26-i {
    font-size: 19px;
  }

  .tav26-card-title {
    font-size: 14.6px;
    margin-bottom: 8px;
  }

  .tav26-card-text {
    font-size: 12.4px;
    line-height: 1.46;
  }
}

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

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

  .tav26-h2 {
    max-width: 300px;
    font-size: 22px;
  }

  .tav26-intro {
    font-size: 12.8px;
    line-height: 1.5;
  }

  .tav26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 21px;
  }

  .tav26-card {
    min-height: 214px;
    padding: 17px 9px 16px;
    border-radius: 13px;
  }

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

  .tav26-i {
    font-size: 17px;
  }

  .tav26-card-title {
    font-size: 13.6px;
    margin-bottom: 7px;
  }

  .tav26-card-text {
    font-size: 11.8px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .tav26-section {
    padding: 36px 0;
  }

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

  .tav26-h2 {
    font-size: 21px;
  }

  .tav26-intro {
    font-size: 12.5px;
  }

  .tav26-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

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

  .tav26-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .tav26-i {
    font-size: 17px;
  }

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

  .tav26-card-text {
    font-size: 12px;
  }
}