@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.tlv-editorial-wrap {
  width: 100%;
  overflow: hidden;
  color: #172033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

.tlv-editorial-wrap,
.tlv-editorial-wrap section,
.tlv-editorial-wrap div,
.tlv-editorial-wrap article {
  box-sizing: border-box;
}

.tlv-editorial-wrap .tlv-section {
  position: relative;
  width: 100%;
}

.tlv-editorial-wrap .tlv-section-white {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 242, 234, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 0, 80, 0.07), transparent 24%),
    #ffffff;
}

.tlv-editorial-wrap .tlv-section-soft {
  background:
    linear-gradient(135deg, rgba(0, 242, 234, 0.06), rgba(255, 255, 255, 0) 32%),
    linear-gradient(315deg, rgba(255, 0, 80, 0.055), rgba(255, 255, 255, 0) 30%),
    #f7f9fc;
}

.tlv-editorial-wrap .tlv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.tlv-editorial-wrap .tlv-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.tlv-editorial-wrap .tlv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 184, 176, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.12), rgba(255, 0, 80, 0.09));
  color: #0d6670;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.tlv-editorial-wrap .tlv-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d9d2, #ff2b6d);
  box-shadow: 0 0 0 5px rgba(0, 217, 210, 0.12);
}

.tlv-editorial-wrap .tlv-heading h2 {
  margin: 0;
  color: #101828;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.tlv-editorial-wrap .tlv-heading p {
  margin: 16px auto 0;
  max-width: 720px;
  color: #566174;
  font-weight: 450;
}

.tlv-editorial-wrap .tlv-card-grid {
  display: grid;
  align-items: stretch;
}

.tlv-editorial-wrap .tlv-info-card,
.tlv-editorial-wrap .tlv-use-card,
.tlv-editorial-wrap .tlv-trust-card,
.tlv-editorial-wrap .tlv-step-card {
  position: relative;
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(21, 31, 48, 0.09);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.tlv-editorial-wrap .tlv-info-card,
.tlv-editorial-wrap .tlv-use-card,
.tlv-editorial-wrap .tlv-trust-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
}

.tlv-editorial-wrap .tlv-info-card::after,
.tlv-editorial-wrap .tlv-use-card::after,
.tlv-editorial-wrap .tlv-trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.16), transparent 34%, rgba(255, 0, 80, 0.12));
  opacity: 0;
  transition: opacity 260ms ease;
}

.tlv-editorial-wrap .tlv-info-card:hover,
.tlv-editorial-wrap .tlv-use-card:hover,
.tlv-editorial-wrap .tlv-trust-card:hover,
.tlv-editorial-wrap .tlv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 184, 176, 0.28);
  box-shadow: 0 24px 54px rgba(16, 24, 40, 0.12);
}

.tlv-editorial-wrap .tlv-info-card:hover::after,
.tlv-editorial-wrap .tlv-use-card:hover::after,
.tlv-editorial-wrap .tlv-trust-card:hover::after {
  opacity: 1;
}

.tlv-editorial-wrap .tlv-info-card h3,
.tlv-editorial-wrap .tlv-use-card h3,
.tlv-editorial-wrap .tlv-trust-card h3,
.tlv-editorial-wrap .tlv-step-content h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #111827;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.tlv-editorial-wrap .tlv-info-card p,
.tlv-editorial-wrap .tlv-use-card p,
.tlv-editorial-wrap .tlv-trust-card p,
.tlv-editorial-wrap .tlv-step-content p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: #596579;
  font-weight: 430;
}

.tlv-editorial-wrap .tlv-card-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00d9d2, #ff2b6d);
  box-shadow: 0 14px 26px rgba(0, 217, 210, 0.18);
  transition: transform 260ms ease;
}

.tlv-editorial-wrap .tlv-info-card:hover .tlv-card-icon {
  transform: translateY(-2px) rotate(-3deg);
}

.tlv-editorial-wrap .tlv-card-icon::before,
.tlv-editorial-wrap .tlv-card-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
}

.tlv-editorial-wrap .tlv-icon-play::before {
  width: 0;
  height: 0;
  left: 18px;
  top: 14px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #ffffff;
  background: transparent;
}

.tlv-editorial-wrap .tlv-icon-flash::before {
  width: 13px;
  height: 24px;
  left: 17px;
  top: 11px;
  clip-path: polygon(62% 0, 25% 45%, 56% 45%, 36% 100%, 82% 36%, 52% 36%);
}

.tlv-editorial-wrap .tlv-icon-frame::before {
  inset: 13px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  background: transparent;
}

.tlv-editorial-wrap .tlv-icon-frame::after {
  width: 8px;
  height: 8px;
  right: 12px;
  top: 12px;
  border-radius: 50%;
}

.tlv-editorial-wrap .tlv-icon-steps::before {
  width: 22px;
  height: 3px;
  left: 12px;
  top: 14px;
  border-radius: 99px;
  box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
}

.tlv-editorial-wrap .tlv-icon-mobile::before {
  width: 17px;
  height: 26px;
  left: 15px;
  top: 10px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  background: transparent;
}

.tlv-editorial-wrap .tlv-icon-daily::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
}

.tlv-editorial-wrap .tlv-icon-daily::after {
  width: 9px;
  height: 2px;
  left: 23px;
  top: 22px;
  border-radius: 99px;
  transform: rotate(42deg);
  transform-origin: left center;
}

.tlv-editorial-wrap .tlv-step-list {
  display: grid;
  grid-template-columns: 1fr;
}

.tlv-editorial-wrap .tlv-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(0, 242, 234, 0.12), rgba(255, 0, 80, 0.1));
}

.tlv-editorial-wrap .tlv-step-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(180deg, #00d9d2, #ff2b6d);
}

.tlv-editorial-wrap .tlv-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: #101828;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.18);
}

.tlv-editorial-wrap .tlv-use-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    #ffffff;
}

.tlv-editorial-wrap .tlv-mini-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 36px;
  height: 36px;
  margin: 0 0 16px;
  border-radius: 50%;
  background: rgba(0, 217, 210, 0.12);
  border: 1px solid rgba(0, 184, 176, 0.18);
}

.tlv-editorial-wrap .tlv-mini-dot::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d9d2, #ff2b6d);
  box-shadow: 0 0 0 6px rgba(255, 43, 109, 0.08);
}

.tlv-editorial-wrap .tlv-trust-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    #ffffff;
}

.tlv-editorial-wrap .tlv-trust-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.06);
  color: #324054;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.tlv-editorial-wrap .tlv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.tlv-editorial-wrap .tlv-reveal.tlv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

@media (min-width: 320px) and (max-width: 374px) {
  .tlv-editorial-wrap .tlv-section {
    padding: 48px 0;
  }

  .tlv-editorial-wrap .tlv-container {
    padding: 0 14px;
  }

  .tlv-editorial-wrap .tlv-heading h2 {
    font-size: 26px;
  }

  .tlv-editorial-wrap .tlv-heading p {
    font-size: 15px;
  }

  .tlv-editorial-wrap .tlv-card-grid,
  .tlv-editorial-wrap .tlv-step-list {
    gap: 16px;
    margin-top: 28px;
  }

  .tlv-editorial-wrap .tlv-grid-3 {
    grid-template-columns: 1fr;
  }

  .tlv-editorial-wrap .tlv-info-card,
  .tlv-editorial-wrap .tlv-use-card,
  .tlv-editorial-wrap .tlv-trust-card {
    padding: 22px;
  }

  .tlv-editorial-wrap .tlv-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .tlv-editorial-wrap .tlv-step-number {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .tlv-editorial-wrap .tlv-info-card h3,
  .tlv-editorial-wrap .tlv-use-card h3,
  .tlv-editorial-wrap .tlv-trust-card h3,
  .tlv-editorial-wrap .tlv-step-content h3 {
    font-size: 18px;
  }

  .tlv-editorial-wrap .tlv-info-card p,
  .tlv-editorial-wrap .tlv-use-card p,
  .tlv-editorial-wrap .tlv-trust-card p,
  .tlv-editorial-wrap .tlv-step-content p {
    font-size: 14px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tlv-editorial-wrap .tlv-section {
    padding: 54px 0;
  }

  .tlv-editorial-wrap .tlv-container {
    padding: 0 18px;
  }

  .tlv-editorial-wrap .tlv-heading h2 {
    font-size: 29px;
  }

  .tlv-editorial-wrap .tlv-heading p {
    font-size: 15.5px;
  }

  .tlv-editorial-wrap .tlv-card-grid,
  .tlv-editorial-wrap .tlv-step-list {
    gap: 18px;
    margin-top: 30px;
  }

  .tlv-editorial-wrap .tlv-grid-3 {
    grid-template-columns: 1fr;
  }

  .tlv-editorial-wrap .tlv-info-card,
  .tlv-editorial-wrap .tlv-use-card,
  .tlv-editorial-wrap .tlv-trust-card {
    padding: 24px;
  }

  .tlv-editorial-wrap .tlv-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .tlv-editorial-wrap .tlv-step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .tlv-editorial-wrap .tlv-info-card h3,
  .tlv-editorial-wrap .tlv-use-card h3,
  .tlv-editorial-wrap .tlv-trust-card h3,
  .tlv-editorial-wrap .tlv-step-content h3 {
    font-size: 19px;
  }

  .tlv-editorial-wrap .tlv-info-card p,
  .tlv-editorial-wrap .tlv-use-card p,
  .tlv-editorial-wrap .tlv-trust-card p,
  .tlv-editorial-wrap .tlv-step-content p {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .tlv-editorial-wrap .tlv-section {
    padding: 62px 0;
  }

  .tlv-editorial-wrap .tlv-container {
    padding: 0 22px;
  }

  .tlv-editorial-wrap .tlv-heading h2 {
    font-size: 33px;
  }

  .tlv-editorial-wrap .tlv-heading p {
    font-size: 16px;
  }

  .tlv-editorial-wrap .tlv-card-grid,
  .tlv-editorial-wrap .tlv-step-list {
    gap: 20px;
    margin-top: 34px;
  }

  .tlv-editorial-wrap .tlv-grid-3 {
    grid-template-columns: 1fr;
  }

  .tlv-editorial-wrap .tlv-info-card,
  .tlv-editorial-wrap .tlv-use-card,
  .tlv-editorial-wrap .tlv-trust-card {
    padding: 26px;
  }

  .tlv-editorial-wrap .tlv-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }

  .tlv-editorial-wrap .tlv-step-number {
    width: 62px;
    height: 62px;
    font-size: 19px;
  }

  .tlv-editorial-wrap .tlv-info-card h3,
  .tlv-editorial-wrap .tlv-use-card h3,
  .tlv-editorial-wrap .tlv-trust-card h3,
  .tlv-editorial-wrap .tlv-step-content h3 {
    font-size: 20px;
  }

  .tlv-editorial-wrap .tlv-info-card p,
  .tlv-editorial-wrap .tlv-use-card p,
  .tlv-editorial-wrap .tlv-trust-card p,
  .tlv-editorial-wrap .tlv-step-content p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tlv-editorial-wrap .tlv-section {
    padding: 76px 0;
  }

  .tlv-editorial-wrap .tlv-container {
    padding: 0 30px;
  }

  .tlv-editorial-wrap .tlv-heading h2 {
    font-size: 40px;
  }

  .tlv-editorial-wrap .tlv-heading p {
    font-size: 17px;
  }

  .tlv-editorial-wrap .tlv-card-grid {
    gap: 22px;
    margin-top: 42px;
  }

  .tlv-editorial-wrap .tlv-step-list {
    gap: 22px;
    margin-top: 42px;
  }

  .tlv-editorial-wrap .tlv-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlv-editorial-wrap .tlv-info-card,
  .tlv-editorial-wrap .tlv-use-card,
  .tlv-editorial-wrap .tlv-trust-card {
    padding: 28px;
  }

  .tlv-editorial-wrap .tlv-step-card {
    gap: 22px;
    padding: 30px;
  }

  .tlv-editorial-wrap .tlv-step-number {
    width: 70px;
    height: 70px;
    font-size: 20px;
  }

  .tlv-editorial-wrap .tlv-info-card h3,
  .tlv-editorial-wrap .tlv-use-card h3,
  .tlv-editorial-wrap .tlv-trust-card h3,
  .tlv-editorial-wrap .tlv-step-content h3 {
    font-size: 20px;
  }

  .tlv-editorial-wrap .tlv-info-card p,
  .tlv-editorial-wrap .tlv-use-card p,
  .tlv-editorial-wrap .tlv-trust-card p,
  .tlv-editorial-wrap .tlv-step-content p {
    font-size: 15.5px;
  }
}

@media (min-width: 1024px) {
  .tlv-editorial-wrap .tlv-section {
    padding: 92px 0;
  }

  .tlv-editorial-wrap .tlv-container {
    padding: 0 32px;
  }

  .tlv-editorial-wrap .tlv-heading h2 {
    font-size: 46px;
  }

  .tlv-editorial-wrap .tlv-heading p {
    font-size: 18px;
  }

  .tlv-editorial-wrap .tlv-card-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .tlv-editorial-wrap .tlv-step-list {
    gap: 24px;
    margin-top: 48px;
  }

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

  .tlv-editorial-wrap .tlv-info-card,
  .tlv-editorial-wrap .tlv-use-card,
  .tlv-editorial-wrap .tlv-trust-card {
    padding: 30px;
  }

  .tlv-editorial-wrap .tlv-step-card {
    gap: 26px;
    padding: 34px;
  }

  .tlv-editorial-wrap .tlv-step-number {
    width: 78px;
    height: 78px;
    font-size: 21px;
  }

  .tlv-editorial-wrap .tlv-info-card h3,
  .tlv-editorial-wrap .tlv-use-card h3,
  .tlv-editorial-wrap .tlv-trust-card h3,
  .tlv-editorial-wrap .tlv-step-content h3 {
    font-size: 21px;
  }

  .tlv-editorial-wrap .tlv-info-card p,
  .tlv-editorial-wrap .tlv-use-card p,
  .tlv-editorial-wrap .tlv-trust-card p,
  .tlv-editorial-wrap .tlv-step-content p {
    font-size: 16px;
  }
}