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

.tlv26-link-viewer,
.tlv26-link-viewer * {
  box-sizing: border-box;
}

.tlv26-link-viewer {
  --tlv26-primary: #101820;
  --tlv26-secondary: #ff2d55;
  --tlv26-accent: #19d6d2;
  --tlv26-ink: #17202a;
  --tlv26-muted: #60707c;
  --tlv26-tint: #f3fbfb;
  --tlv26-border: rgba(16, 24, 32, 0.1);
  --tlv26-shadow: rgba(12, 22, 34, 0.12);
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: var(--tlv26-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.tlv26-section {
  width: 100% !important;
  overflow: hidden;
}

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

.tlv26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 214, 210, 0.14), transparent 34%),
    linear-gradient(180deg, #f7fcfc 0%, var(--tlv26-tint) 100%);
}

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

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

.tlv26-heading {
  margin: 0 auto;
  max-width: 980px;
  color: var(--tlv26-primary);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.tlv26-intro {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--tlv26-muted);
  line-height: 1.65;
  font-weight: 500;
}

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

.tlv26-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--tlv26-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(255, 45, 85, 0.08), rgba(25, 214, 210, 0.08));
  box-shadow: 0 18px 46px var(--tlv26-shadow);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background-position 280ms ease;
}

.tlv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.1), rgba(25, 214, 210, 0.14));
  transition: opacity 280ms ease;
}

.tlv26-card:hover {
  transform: translateY(-7px);
  border-color: rgba(25, 214, 210, 0.42);
  box-shadow: 0 24px 60px rgba(12, 22, 34, 0.16);
}

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

.tlv26-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--tlv26-secondary), var(--tlv26-accent));
  box-shadow: 0 14px 30px rgba(255, 45, 85, 0.2);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.tlv26-card:hover .tlv26-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 36px rgba(25, 214, 210, 0.24);
}

.tlv26-i {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.tlv26-card-title {
  margin: 0;
  color: var(--tlv26-primary);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tlv26-card-text {
  margin: 0 auto;
  color: var(--tlv26-muted);
  line-height: 1.58;
  font-weight: 500;
}

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

.tlv26-js .tlv26-reveal.tlv26-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

@media (min-width: 1024px) {
  .tlv26-section {
    padding: 92px 0 !important;
  }

  .tlv26-container {
    padding: 0 24px !important;
  }

  .tlv26-heading {
    font-size: 42px;
    white-space: nowrap;
  }

  .tlv26-intro {
    font-size: 17px;
    margin-bottom: 44px;
  }

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

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

  .tlv26-grid {
    gap: 24px;
  }

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

  .tlv26-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .tlv26-i {
    font-size: 29px;
  }

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

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

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

  .tlv26-container {
    padding: 0 22px !important;
  }

  .tlv26-heading {
    font-size: 34px;
  }

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

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

  .tlv26-card {
    min-height: 260px;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .tlv26-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .tlv26-i {
    font-size: 26px;
  }

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

  .tlv26-card-text {
    font-size: 14px;
  }
}

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

  .tlv26-container {
    padding: 0 16px !important;
  }

  .tlv26-heading {
    font-size: 28px;
    line-height: 1.16;
  }

  .tlv26-intro {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

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

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

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

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

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

  .tlv26-card-text {
    font-size: 12.5px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tlv26-section {
    padding: 48px 0 !important;
  }

  .tlv26-container {
    padding: 0 12px !important;
  }

  .tlv26-heading {
    font-size: 25px;
    line-height: 1.15;
  }

  .tlv26-intro {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .tlv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px;
  }

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

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

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

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

  .tlv26-card-text {
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .tlv26-section {
    padding: 42px 0 !important;
  }

  .tlv26-container {
    padding: 0 10px !important;
  }

  .tlv26-heading {
    font-size: 22px;
    line-height: 1.16;
  }

  .tlv26-intro {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .tlv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px;
  }

  .tlv26-card {
    min-height: 214px;
    padding: 16px 9px;
    border-radius: 14px;
  }

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

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

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

  .tlv26-card-text {
    font-size: 11.4px;
    line-height: 1.42;
  }
}