@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-x: hidden;
  color: #172033;
  font-family: inherit;
  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: #ffffff;
}

.tlv-editorial-wrap .tlv-section-soft {
  background:
    radial-gradient(circle at top left, rgba(37, 244, 238, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(254, 44, 85, 0.1), transparent 32%),
    #f8fafc;
}

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

.tlv-editorial-wrap .tlv-section-head {
  max-width: 760px;
  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 13px;
  border: 1px solid rgba(254, 44, 85, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.1));
  color: #b5163a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.tlv-editorial-wrap .tlv-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 0 4px rgba(254, 44, 85, 0.1);
}

.tlv-editorial-wrap .tlv-section-head h2 {
  margin: 0;
  color: #101827;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.tlv-editorial-wrap .tlv-section-head p {
  margin: 16px auto 0;
  max-width: 690px;
  color: #5b6474;
  line-height: 1.7;
  font-weight: 400;
}

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

.tlv-editorial-wrap .tlv-card,
.tlv-editorial-wrap .tlv-trust-card {
  position: relative;
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tlv-editorial-wrap .tlv-card::before,
.tlv-editorial-wrap .tlv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.35), rgba(254, 44, 85, 0.28), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  -webkit-mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.tlv-editorial-wrap .tlv-card:hover,
.tlv-editorial-wrap .tlv-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 44, 85, 0.18);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.tlv-editorial-wrap .tlv-card:hover::before,
.tlv-editorial-wrap .tlv-trust-card:hover::before {
  opacity: 1;
}

.tlv-editorial-wrap .tlv-card h3,
.tlv-editorial-wrap .tlv-trust-card h3,
.tlv-editorial-wrap .tlv-step-card h3 {
  margin: 0;
  color: #111827;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tlv-editorial-wrap .tlv-card p,
.tlv-editorial-wrap .tlv-trust-card p,
.tlv-editorial-wrap .tlv-step-card p {
  margin: 10px 0 0;
  color: #606a7a;
  line-height: 1.68;
}

.tlv-editorial-wrap .tlv-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.15));
  box-shadow: inset 0 0 0 1px rgba(254, 44, 85, 0.1);
  transition: transform 260ms ease;
}

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

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

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

.tlv-editorial-wrap .tlv-icon-bolt::before {
  left: 18px;
  top: 10px;
  width: 11px;
  height: 25px;
  background: #fe2c55;
  clip-path: polygon(45% 0, 100% 0, 62% 42%, 100% 42%, 36% 100%, 50% 55%, 0 55%);
}

.tlv-editorial-wrap .tlv-icon-frame::before {
  left: 13px;
  top: 13px;
  width: 20px;
  height: 20px;
  border: 2px solid #111827;
  border-radius: 7px;
}

.tlv-editorial-wrap .tlv-icon-frame::after {
  left: 18px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: #25f4ee;
}

.tlv-editorial-wrap .tlv-icon-path::before {
  left: 12px;
  top: 21px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #111827;
}

.tlv-editorial-wrap .tlv-icon-path::after {
  right: 11px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fe2c55;
  border-right: 3px solid #fe2c55;
  transform: rotate(45deg);
}

.tlv-editorial-wrap .tlv-icon-phone::before {
  left: 15px;
  top: 9px;
  width: 16px;
  height: 28px;
  border: 2px solid #111827;
  border-radius: 7px;
}

.tlv-editorial-wrap .tlv-icon-phone::after {
  left: 21px;
  bottom: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fe2c55;
}

.tlv-editorial-wrap .tlv-icon-note::before {
  left: 14px;
  top: 12px;
  width: 19px;
  height: 23px;
  border-radius: 5px;
  background: #ffffff;
  border: 2px solid #111827;
}

.tlv-editorial-wrap .tlv-icon-note::after {
  left: 19px;
  top: 19px;
  width: 12px;
  height: 9px;
  border-top: 2px solid #25f4ee;
  border-bottom: 2px solid #fe2c55;
}

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

.tlv-editorial-wrap .tlv-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fbfdff);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.075);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.tlv-editorial-wrap .tlv-step-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.2), rgba(254, 44, 85, 0.12));
}

.tlv-editorial-wrap .tlv-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.11);
}

.tlv-editorial-wrap .tlv-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
}

.tlv-editorial-wrap .tlv-step-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

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

.tlv-editorial-wrap .tlv-dot {
  display: inline-flex;
  width: 13px;
  height: 13px;
  margin: 0 0 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 0 7px rgba(254, 44, 85, 0.08);
}

.tlv-editorial-wrap .tlv-trust-card {
  overflow: hidden;
}

.tlv-editorial-wrap .tlv-badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.tlv-editorial-wrap .tlv-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .tlv-editorial-wrap .tlv-reveal,
  .tlv-editorial-wrap .tlv-card,
  .tlv-editorial-wrap .tlv-trust-card,
  .tlv-editorial-wrap .tlv-step-card,
  .tlv-editorial-wrap .tlv-icon {
    transition: none;
  }

  .tlv-editorial-wrap .tlv-reveal {
    opacity: 1;
    transform: none;
  }
}

@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-section-head h2 {
    font-size: 26px;
  }

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

  .tlv-editorial-wrap .tlv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .tlv-editorial-wrap .tlv-card,
  .tlv-editorial-wrap .tlv-trust-card {
    padding: 22px;
    border-radius: 20px;
  }

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

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

  .tlv-editorial-wrap .tlv-steps {
    gap: 16px;
    margin-top: 28px;
  }

  .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: 17px;
  }
}

@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-section-head h2 {
    font-size: 29px;
  }

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

  .tlv-editorial-wrap .tlv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

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

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

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

  .tlv-editorial-wrap .tlv-steps {
    gap: 18px;
    margin-top: 30px;
  }

  .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;
  }
}

@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-section-head h2 {
    font-size: 33px;
  }

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

  .tlv-editorial-wrap .tlv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

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

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

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

  .tlv-editorial-wrap .tlv-steps {
    gap: 20px;
    margin-top: 34px;
  }

  .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: 18px;
  }
}

@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-section-head h2 {
    font-size: 40px;
  }

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

  .tlv-editorial-wrap .tlv-grid-six,
  .tlv-editorial-wrap .tlv-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
  }

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

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

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

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

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

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

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

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

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

  .tlv-editorial-wrap .tlv-section-head p {
    font-size: 17.5px;
  }

  .tlv-editorial-wrap .tlv-grid-six,
  .tlv-editorial-wrap .tlv-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

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

  .tlv-editorial-wrap .tlv-card h3,
  .tlv-editorial-wrap .tlv-trust-card h3,
  .tlv-editorial-wrap .tlv-step-card h3 {
    font-size: 22px;
  }

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

  .tlv-editorial-wrap .tlv-steps {
    gap: 22px;
    margin-top: 48px;
  }

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

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