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

.tlv-editorial-sections {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: inherit;
  color: #17202a;
  background: #ffffff;
}

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

.tlv-editorial-sections .tlv-section {
  position: relative;
  overflow: hidden;
}

.tlv-editorial-sections .tlv-section-white {
  background: #ffffff;
}

.tlv-editorial-sections .tlv-section-soft {
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 242, 234, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 0, 80, 0.10), transparent 30%),
    #f8fafc;
}

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

.tlv-editorial-sections .tlv-section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tlv-editorial-sections .tlv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 0, 80, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.10), rgba(255, 0, 80, 0.10));
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.tlv-editorial-sections .tlv-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d5d0, #ff2f68);
  box-shadow: 0 0 0 5px rgba(0, 213, 208, 0.12);
}

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

.tlv-editorial-sections .tlv-section-heading p {
  margin: 16px auto 0;
  max-width: 680px;
  color: #5b6778;
  font-weight: 450;
  line-height: 1.7;
}

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

.tlv-editorial-sections .tlv-info-card,
.tlv-editorial-sections .tlv-use-card,
.tlv-editorial-sections .tlv-trust-card,
.tlv-editorial-sections .tlv-step-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tlv-editorial-sections .tlv-info-card::before,
.tlv-editorial-sections .tlv-use-card::before,
.tlv-editorial-sections .tlv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.44), rgba(255, 0, 80, 0.32), transparent 52%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.tlv-editorial-sections .tlv-info-card:hover,
.tlv-editorial-sections .tlv-use-card:hover,
.tlv-editorial-sections .tlv-trust-card:hover,
.tlv-editorial-sections .tlv-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 213, 208, 0.22);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

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

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

.tlv-editorial-sections .tlv-info-card p,
.tlv-editorial-sections .tlv-use-card p,
.tlv-editorial-sections .tlv-trust-card p,
.tlv-editorial-sections .tlv-step-card p {
  margin: 10px 0 0;
  color: #5b6778;
  line-height: 1.68;
}

.tlv-editorial-sections .tlv-icon {
  display: inline-flex;
  position: relative;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.16), rgba(255, 0, 80, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.tlv-editorial-sections .tlv-icon::before,
.tlv-editorial-sections .tlv-icon::after {
  content: "";
  position: absolute;
  transition: transform 260ms ease;
}

.tlv-editorial-sections .tlv-info-card:hover .tlv-icon::before,
.tlv-editorial-sections .tlv-info-card:hover .tlv-icon::after {
  transform: translateX(2px);
}

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

.tlv-editorial-sections .tlv-icon-bolt::before {
  left: 18px;
  top: 10px;
  width: 11px;
  height: 25px;
  background: linear-gradient(180deg, #00cfc8, #ff2f68);
  clip-path: polygon(45% 0, 100% 0, 65% 42%, 100% 42%, 35% 100%, 48% 55%, 0 55%);
}

.tlv-editorial-sections .tlv-icon-frame::before {
  left: 12px;
  top: 13px;
  width: 22px;
  height: 18px;
  border: 2px solid #00aeb0;
  border-radius: 7px;
}

.tlv-editorial-sections .tlv-icon-route::before {
  left: 12px;
  top: 21px;
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #00cfc8, #ff2f68);
}

.tlv-editorial-sections .tlv-icon-route::after {
  right: 11px;
  top: 17px;
  width: 9px;
  height: 9px;
  border-top: 3px solid #ff2f68;
  border-right: 3px solid #ff2f68;
  transform: rotate(45deg);
}

.tlv-editorial-sections .tlv-icon-phone::before {
  left: 15px;
  top: 9px;
  width: 16px;
  height: 28px;
  border: 2px solid #00aeb0;
  border-radius: 8px;
}

.tlv-editorial-sections .tlv-icon-dots::before {
  left: 11px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #00cfc8;
  box-shadow: 9px 0 0 #ff2f68, 18px 0 0 #111827;
}

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

.tlv-editorial-sections .tlv-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(0, 242, 234, 0.10), rgba(255, 0, 80, 0.08));
}

.tlv-editorial-sections .tlv-step-card::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(180deg, #00d5d0, #ff2f68);
}

.tlv-editorial-sections .tlv-step-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.16);
}

.tlv-editorial-sections .tlv-step-content {
  min-width: 0;
}

.tlv-editorial-sections .tlv-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0, 213, 208, 0.10);
  color: #087f82;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.tlv-editorial-sections .tlv-trust-mark {
  display: inline-flex;
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d5d0, #ff2f68);
  box-shadow: 0 16px 30px rgba(255, 47, 104, 0.16);
}

.tlv-editorial-sections .tlv-trust-mark::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  width: 10px;
  height: 17px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(42deg);
}

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

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

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

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

  .tlv-editorial-sections .tlv-section-heading h2 {
    font-size: 25px;
  }

  .tlv-editorial-sections .tlv-section-heading p {
    font-size: 14px;
  }

  .tlv-editorial-sections .tlv-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

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

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

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

  .tlv-editorial-sections .tlv-step-list {
    gap: 16px;
    margin-top: 30px;
  }

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

  .tlv-editorial-sections .tlv-step-number {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }
}

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

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

  .tlv-editorial-sections .tlv-section-heading h2 {
    font-size: 28px;
  }

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

  .tlv-editorial-sections .tlv-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

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

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

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

  .tlv-editorial-sections .tlv-step-list {
    gap: 18px;
    margin-top: 34px;
  }

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

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

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

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

  .tlv-editorial-sections .tlv-section-heading h2 {
    font-size: 31px;
  }

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

  .tlv-editorial-sections .tlv-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 38px;
  }

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

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

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

  .tlv-editorial-sections .tlv-step-list {
    gap: 20px;
    margin-top: 38px;
  }

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

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

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

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

  .tlv-editorial-sections .tlv-section-heading h2 {
    font-size: 38px;
  }

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

  .tlv-editorial-sections .tlv-card-grid {
    gap: 22px;
    margin-top: 44px;
  }

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

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

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

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

  .tlv-editorial-sections .tlv-step-list {
    gap: 22px;
    margin-top: 44px;
  }

  .tlv-editorial-sections .tlv-step-card {
    gap: 24px;
    padding: 30px;
  }

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

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

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

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

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

  .tlv-editorial-sections .tlv-card-grid {
    gap: 24px;
    margin-top: 50px;
  }

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

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

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

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

  .tlv-editorial-sections .tlv-step-list {
    gap: 24px;
    margin-top: 50px;
  }

  .tlv-editorial-sections .tlv-step-card {
    gap: 28px;
    padding: 34px 38px;
  }

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