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

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

.ttuv26-wrap {
  width: 100% !important;
  overflow: hidden;
  --ttuv26-primary: #00a8a8;
  --ttuv26-secondary: #ff2f6d;
  --ttuv26-accent: #111827;
  --ttuv26-tint: #f5fbfa;
  --ttuv26-text: #172033;
  --ttuv26-muted: #607083;
  --ttuv26-border: rgba(0, 168, 168, 0.18);
  --ttuv26-shadow: rgba(7, 44, 58, 0.12);
  --ttuv26-card: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ttuv26-text);
}

.ttuv26-section {
  width: 100% !important;
  text-align: center;
  overflow: hidden;
}

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

.ttuv26-section-tint {
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 168, 168, 0.11), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(255, 47, 109, 0.10), transparent 30%),
    var(--ttuv26-tint);
}

.ttuv26-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 24px;
  padding-right: 24px;
}

.ttuv26-h2 {
  margin: 0 auto;
  text-align: center;
  color: var(--ttuv26-accent);
  font-weight: 820;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.ttuv26-intro {
  margin: 14px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--ttuv26-muted);
  line-height: 1.7;
  font-weight: 450;
}

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

.ttuv26-card {
  position: relative;
  height: 100% !important;
  min-width: 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    var(--ttuv26-card);
  border: 1px solid var(--ttuv26-border);
  box-shadow: 0 18px 48px var(--ttuv26-shadow);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 320ms ease;
}

.ttuv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.10), transparent 42%, rgba(255, 47, 109, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.ttuv26-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 47, 109, 0.32);
  box-shadow: 0 24px 62px rgba(7, 44, 58, 0.17);
}

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

.ttuv26-card:hover .ttuv26-icon {
  transform: translateY(-4px);
  background-position: 100% 50%;
}

.ttuv26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ttuv26-primary), var(--ttuv26-secondary), var(--ttuv26-primary));
  background-size: 220% 100%;
  box-shadow: 0 14px 32px rgba(0, 168, 168, 0.22);
  transition: transform 260ms ease, background-position 320ms ease;
}

.ttuv26-i {
  display: block;
  line-height: 1;
  text-align: center;
}

.ttuv26-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  color: var(--ttuv26-accent);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttuv26-card-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
  color: var(--ttuv26-muted);
  line-height: 1.62;
  font-weight: 430;
}

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

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

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

  .ttuv26-h2 {
    font-size: 42px;
    max-width: 980px;
  }

  .ttuv26-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

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

  .ttuv26-grid {
    gap: 24px;
  }

  .ttuv26-card {
    min-height: 296px;
    padding: 34px 28px;
    border-radius: 22px;
  }

  .ttuv26-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin-bottom: 26px;
  }

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

  .ttuv26-card-title {
    font-size: 20px;
    margin-bottom: 13px;
  }

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

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

  .ttuv26-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ttuv26-h2 {
    font-size: 34px;
    max-width: 780px;
  }

  .ttuv26-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

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

  .ttuv26-card {
    min-height: 268px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .ttuv26-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

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

  .ttuv26-card-title {
    font-size: 19px;
    margin-bottom: 12px;
  }

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

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

  .ttuv26-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ttuv26-h2 {
    font-size: 29px;
    max-width: 540px;
  }

  .ttuv26-intro {
    font-size: 14.5px;
    line-height: 1.58;
    margin-bottom: 24px;
  }

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

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

  .ttuv26-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    margin-bottom: 17px;
  }

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

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

  .ttuv26-card-text {
    font-size: 13.3px;
    line-height: 1.5;
  }
}

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

  .ttuv26-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ttuv26-h2 {
    font-size: 25px;
    max-width: 350px;
  }

  .ttuv26-intro {
    font-size: 13.8px;
    line-height: 1.52;
    margin-bottom: 20px;
  }

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

  .ttuv26-card {
    min-height: 218px;
    padding: 18px 10px;
    border-radius: 14px;
  }

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

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

  .ttuv26-card-title {
    font-size: 14.5px;
    margin-bottom: 8px;
  }

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

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

  .ttuv26-container {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .ttuv26-intro {
    font-size: 13px;
    line-height: 1.46;
    margin-bottom: 18px;
  }

  .ttuv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ttuv26-card {
    min-height: 210px;
    padding: 16px 8px;
    border-radius: 12px;
  }

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

  .ttuv26-i {
    font-size: 16px;
  }

  .ttuv26-card-title {
    font-size: 13.5px;
    margin-bottom: 7px;
  }

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