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

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

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

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

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

.tpav-editorial .tpav-section-soft {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 242, 234, 0.1), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 0, 80, 0.09), transparent 30%),
    #f7f8fb;
}

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

.tpav-editorial .tpav-heading {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.tpav-editorial .tpav-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #d90046;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tpav-editorial .tpav-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f2ea, #ff0050);
  box-shadow: 0 0 18px rgba(255, 0, 80, 0.35);
}

.tpav-editorial h2 {
  margin: 0;
  color: #111827;
  font-weight: 850;
  line-height: 1.13;
  letter-spacing: 0;
}

.tpav-editorial .tpav-heading p {
  margin: 14px auto 0;
  max-width: 720px;
  color: #5f6b7a;
  line-height: 1.7;
}

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

.tpav-editorial .tpav-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18, 28, 45, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 242, 234, 0.45), rgba(255, 0, 80, 0.32)) border-box;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tpav-editorial .tpav-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 92px;
  height: 92px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.12), rgba(255, 0, 80, 0.1));
  transform: rotate(18deg);
}

.tpav-editorial .tpav-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 80, 0.24);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.13);
}

.tpav-editorial .tpav-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #141b2d;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tpav-editorial .tpav-card p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: #637083;
  line-height: 1.68;
}

.tpav-editorial .tpav-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.16), rgba(255, 0, 80, 0.15));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  transition: transform 220ms ease;
}

.tpav-editorial .tpav-card:hover .tpav-icon {
  transform: translateY(-2px) scale(1.04);
}

.tpav-editorial .tpav-icon::before,
.tpav-editorial .tpav-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.tpav-editorial .tpav-icon-play::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #ff0050;
}

.tpav-editorial .tpav-icon-bolt::before {
  width: 13px;
  height: 24px;
  background: linear-gradient(160deg, #00b8b3, #ff0050);
  clip-path: polygon(48% 0, 100% 0, 62% 42%, 100% 42%, 35% 100%, 49% 56%, 0 56%);
}

.tpav-editorial .tpav-icon-frame::before {
  width: 23px;
  height: 17px;
  border: 2px solid #00a9a5;
  border-radius: 5px;
}

.tpav-editorial .tpav-icon-frame::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff0050;
  transform: translate(8px, -5px);
}

.tpav-editorial .tpav-icon-route::before {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #00b8b3, #ff0050);
}

.tpav-editorial .tpav-icon-route::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid #ff0050;
  border-right: 2px solid #ff0050;
  transform: translateX(8px) rotate(45deg);
}

.tpav-editorial .tpav-icon-phone::before {
  width: 17px;
  height: 25px;
  border: 2px solid #00a9a5;
  border-radius: 6px;
}

.tpav-editorial .tpav-icon-phone::after {
  width: 4px;
  height: 4px;
  bottom: 10px;
  border-radius: 50%;
  background: #ff0050;
}

.tpav-editorial .tpav-icon-calendar::before {
  width: 23px;
  height: 21px;
  border: 2px solid #00a9a5;
  border-radius: 6px;
}

.tpav-editorial .tpav-icon-calendar::after {
  width: 15px;
  height: 2px;
  background: #ff0050;
  transform: translateY(-4px);
}

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

.tpav-editorial .tpav-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 28, 45, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tpav-editorial .tpav-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(16, 24, 40, 0.13);
}

.tpav-editorial .tpav-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00f2ea, #ff0050);
}

.tpav-editorial .tpav-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
}

.tpav-editorial .tpav-step-content h3 {
  margin: 0;
  color: #141b2d;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}

.tpav-editorial .tpav-step-content p {
  margin: 8px 0 0;
  color: #627083;
  line-height: 1.68;
}

.tpav-editorial .tpav-card-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.98)) padding-box,
    linear-gradient(135deg, rgba(0, 242, 234, 0.32), rgba(255, 0, 80, 0.22)) border-box;
}

.tpav-editorial .tpav-badge {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 0, 80, 0.14);
  border-radius: 999px;
  background: rgba(255, 0, 80, 0.07);
  color: #c8003f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.tpav-editorial .tpav-benefit {
  background:
    linear-gradient(180deg, #ffffff, #fbfdff) padding-box,
    linear-gradient(135deg, rgba(0, 242, 234, 0.4), rgba(255, 0, 80, 0.26)) border-box;
}

.tpav-editorial .tpav-dot {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f2ea, #ff0050);
  box-shadow: 0 14px 30px rgba(255, 0, 80, 0.2);
}

.tpav-editorial .tpav-dot::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #ffffff;
}

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

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

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

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

  .tpav-editorial h2 {
    font-size: 26px;
  }

  .tpav-editorial .tpav-heading p {
    font-size: 14px;
  }

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

  .tpav-editorial .tpav-card {
    padding: 22px;
    border-radius: 18px;
  }

  .tpav-editorial .tpav-card h3,
  .tpav-editorial .tpav-step-content h3 {
    font-size: 18px;
  }

  .tpav-editorial .tpav-card p,
  .tpav-editorial .tpav-step-content p {
    font-size: 14px;
  }

  .tpav-editorial .tpav-steps {
    gap: 16px;
    margin-top: 30px;
  }

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

  .tpav-editorial .tpav-step-number {
    width: 56px;
    height: 48px;
    font-size: 16px;
  }

  .tpav-editorial .tpav-badge {
    padding: 8px 10px;
  }
}

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

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

  .tpav-editorial h2 {
    font-size: 29px;
  }

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

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

  .tpav-editorial .tpav-card {
    padding: 24px;
  }

  .tpav-editorial .tpav-card h3,
  .tpav-editorial .tpav-step-content h3 {
    font-size: 19px;
  }

  .tpav-editorial .tpav-card p,
  .tpav-editorial .tpav-step-content p {
    font-size: 15px;
  }

  .tpav-editorial .tpav-steps {
    gap: 18px;
    margin-top: 34px;
  }

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

  .tpav-editorial .tpav-step-number {
    width: 60px;
    height: 50px;
    font-size: 17px;
  }

  .tpav-editorial .tpav-badge {
    padding: 8px 11px;
  }
}

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

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

  .tpav-editorial h2 {
    font-size: 32px;
  }

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

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

  .tpav-editorial .tpav-card {
    padding: 28px;
  }

  .tpav-editorial .tpav-card h3,
  .tpav-editorial .tpav-step-content h3 {
    font-size: 20px;
  }

  .tpav-editorial .tpav-card p,
  .tpav-editorial .tpav-step-content p {
    font-size: 15px;
  }

  .tpav-editorial .tpav-steps {
    gap: 20px;
    margin-top: 38px;
  }

  .tpav-editorial .tpav-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .tpav-editorial .tpav-step-number {
    width: 64px;
    height: 52px;
    font-size: 18px;
  }

  .tpav-editorial .tpav-badge {
    padding: 8px 12px;
  }
}

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

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

  .tpav-editorial h2 {
    font-size: 40px;
  }

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

  .tpav-editorial .tpav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
  }

  .tpav-editorial .tpav-grid-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tpav-editorial .tpav-card {
    padding: 30px;
  }

  .tpav-editorial .tpav-card h3,
  .tpav-editorial .tpav-step-content h3 {
    font-size: 21px;
  }

  .tpav-editorial .tpav-card p,
  .tpav-editorial .tpav-step-content p {
    font-size: 15px;
  }

  .tpav-editorial .tpav-steps {
    gap: 22px;
    margin-top: 44px;
  }

  .tpav-editorial .tpav-step {
    gap: 24px;
    padding: 30px;
  }

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

  .tpav-editorial .tpav-badge {
    padding: 9px 13px;
  }
}

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

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

  .tpav-editorial h2 {
    font-size: 46px;
  }

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

  .tpav-editorial .tpav-grid {
    gap: 24px;
    margin-top: 50px;
  }

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

  .tpav-editorial .tpav-card {
    padding: 32px;
  }

  .tpav-editorial .tpav-card h3 {
    font-size: 22px;
  }

  .tpav-editorial .tpav-card p {
    font-size: 16px;
  }

  .tpav-editorial .tpav-steps {
    gap: 24px;
    margin-top: 50px;
  }

  .tpav-editorial .tpav-step {
    gap: 28px;
    padding: 32px 36px;
  }

  .tpav-editorial .tpav-step-number {
    width: 82px;
    height: 66px;
    font-size: 20px;
  }

  .tpav-editorial .tpav-step-content h3 {
    font-size: 23px;
  }

  .tpav-editorial .tpav-step-content p {
    font-size: 16px;
  }

  .tpav-editorial .tpav-badge {
    padding: 9px 14px;
  }
}