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

.ttpv-editorial-bottom {
  width: 100%;
  overflow: hidden;
  color: #172033;
  font-family: inherit;
  background: #ffffff;
}

.ttpv-editorial-bottom .ttpv-section {
  position: relative;
}

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

.ttpv-editorial-bottom .ttpv-section-soft {
  background: linear-gradient(180deg, #fafbff 0%, #f7f9fc 100%);
}

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

.ttpv-editorial-bottom .ttpv-heading-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ttpv-editorial-bottom .ttpv-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 242, 234, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.1), rgba(255, 0, 80, 0.08));
  color: #27324a;
  font-weight: 700;
  line-height: 1.2;
}

.ttpv-editorial-bottom .ttpv-heading-block h2 {
  margin: 0;
  color: #121827;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.ttpv-editorial-bottom .ttpv-heading-block p {
  margin: 14px auto 0;
  color: #5f6c82;
  line-height: 1.7;
}

.ttpv-editorial-bottom .ttpv-card-grid {
  display: grid;
  align-items: stretch;
}

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

.ttpv-editorial-bottom .ttpv-info-card,
.ttpv-editorial-bottom .ttpv-use-card,
.ttpv-editorial-bottom .ttpv-trust-card,
.ttpv-editorial-bottom .ttpv-step-card {
  position: relative;
  height: 100%;
  border: 1px solid rgba(18, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ttpv-editorial-bottom .ttpv-info-card,
.ttpv-editorial-bottom .ttpv-use-card,
.ttpv-editorial-bottom .ttpv-trust-card {
  border-radius: 22px;
}

.ttpv-editorial-bottom .ttpv-info-card::before,
.ttpv-editorial-bottom .ttpv-use-card::before,
.ttpv-editorial-bottom .ttpv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.13), rgba(255, 0, 80, 0.1));
  opacity: 0;
  transition: opacity 220ms ease;
}

.ttpv-editorial-bottom .ttpv-info-card:hover,
.ttpv-editorial-bottom .ttpv-use-card:hover,
.ttpv-editorial-bottom .ttpv-trust-card:hover,
.ttpv-editorial-bottom .ttpv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 234, 0.35);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

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

.ttpv-editorial-bottom .ttpv-card-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 68% 28%, #ffffff 0 8%, transparent 9%),
    linear-gradient(135deg, #00f2ea 0%, #5865f2 48%, #ff0050 100%);
  box-shadow: 0 12px 26px rgba(255, 0, 80, 0.18);
}

.ttpv-editorial-bottom .ttpv-info-card h3,
.ttpv-editorial-bottom .ttpv-use-card h3,
.ttpv-editorial-bottom .ttpv-trust-card h3,
.ttpv-editorial-bottom .ttpv-step-content h3 {
  position: relative;
  margin: 0;
  color: #141b2d;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttpv-editorial-bottom .ttpv-info-card p,
.ttpv-editorial-bottom .ttpv-use-card p,
.ttpv-editorial-bottom .ttpv-trust-card p,
.ttpv-editorial-bottom .ttpv-step-content p,
.ttpv-editorial-bottom .ttpv-note p {
  position: relative;
  margin: 10px 0 0;
  color: #5d697d;
  line-height: 1.65;
}

.ttpv-editorial-bottom .ttpv-step-list {
  display: grid;
  grid-template-columns: 1fr;
}

.ttpv-editorial-bottom .ttpv-step-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border-radius: 24px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 242, 234, 0.48), rgba(255, 0, 80, 0.34)) border-box;
  border: 1px solid transparent;
}

.ttpv-editorial-bottom .ttpv-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, #101827 0%, #24304a 42%, #ff0050 100%);
  box-shadow: 0 16px 32px rgba(255, 0, 80, 0.18);
}

.ttpv-editorial-bottom .ttpv-mini-badge {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 242, 234, 0.1);
  color: #126b70;
  font-weight: 800;
  line-height: 1.2;
}

.ttpv-editorial-bottom .ttpv-trust-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 0 18px;
  border-radius: 50%;
  background: #00f2ea;
  box-shadow: 14px 0 0 #ff0050, 28px 0 0 #5865f2, 0 10px 24px rgba(0, 242, 234, 0.28);
}

.ttpv-editorial-bottom .ttpv-note {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(88, 101, 242, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.08), rgba(255, 255, 255, 0.92), rgba(255, 0, 80, 0.06));
  text-align: center;
}

.ttpv-editorial-bottom .ttpv-note p {
  margin: 0;
  color: #455066;
  font-weight: 600;
}

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

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

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

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

  .ttpv-editorial-bottom .ttpv-kicker {
    font-size: 12px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block h2 {
    font-size: 26px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block p {
    font-size: 14px;
  }

  .ttpv-editorial-bottom .ttpv-card-grid,
  .ttpv-editorial-bottom .ttpv-step-list {
    gap: 14px;
    margin-top: 28px;
  }

  .ttpv-editorial-bottom .ttpv-grid-3 {
    grid-template-columns: 1fr;
  }

  .ttpv-editorial-bottom .ttpv-info-card,
  .ttpv-editorial-bottom .ttpv-use-card,
  .ttpv-editorial-bottom .ttpv-trust-card {
    padding: 22px;
  }

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

  .ttpv-editorial-bottom .ttpv-step-number {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

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

  .ttpv-editorial-bottom .ttpv-info-card p,
  .ttpv-editorial-bottom .ttpv-use-card p,
  .ttpv-editorial-bottom .ttpv-trust-card p,
  .ttpv-editorial-bottom .ttpv-step-content p,
  .ttpv-editorial-bottom .ttpv-note p {
    font-size: 14px;
  }

  .ttpv-editorial-bottom .ttpv-note {
    margin-top: 24px;
    padding: 18px;
  }
}

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

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

  .ttpv-editorial-bottom .ttpv-kicker {
    font-size: 12px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block h2 {
    font-size: 29px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block p {
    font-size: 15px;
  }

  .ttpv-editorial-bottom .ttpv-card-grid,
  .ttpv-editorial-bottom .ttpv-step-list {
    gap: 16px;
    margin-top: 30px;
  }

  .ttpv-editorial-bottom .ttpv-grid-3 {
    grid-template-columns: 1fr;
  }

  .ttpv-editorial-bottom .ttpv-info-card,
  .ttpv-editorial-bottom .ttpv-use-card,
  .ttpv-editorial-bottom .ttpv-trust-card {
    padding: 24px;
  }

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

  .ttpv-editorial-bottom .ttpv-step-number {
    width: 56px;
    height: 56px;
    font-size: 17px;
  }

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

  .ttpv-editorial-bottom .ttpv-info-card p,
  .ttpv-editorial-bottom .ttpv-use-card p,
  .ttpv-editorial-bottom .ttpv-trust-card p,
  .ttpv-editorial-bottom .ttpv-step-content p,
  .ttpv-editorial-bottom .ttpv-note p {
    font-size: 14.5px;
  }

  .ttpv-editorial-bottom .ttpv-note {
    margin-top: 26px;
    padding: 20px;
  }
}

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

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

  .ttpv-editorial-bottom .ttpv-kicker {
    font-size: 13px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block h2 {
    font-size: 32px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block p {
    font-size: 15.5px;
  }

  .ttpv-editorial-bottom .ttpv-card-grid,
  .ttpv-editorial-bottom .ttpv-step-list {
    gap: 18px;
    margin-top: 34px;
  }

  .ttpv-editorial-bottom .ttpv-grid-3 {
    grid-template-columns: 1fr;
  }

  .ttpv-editorial-bottom .ttpv-info-card,
  .ttpv-editorial-bottom .ttpv-use-card,
  .ttpv-editorial-bottom .ttpv-trust-card {
    padding: 26px;
  }

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

  .ttpv-editorial-bottom .ttpv-step-number {
    width: 58px;
    height: 58px;
    font-size: 17px;
  }

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

  .ttpv-editorial-bottom .ttpv-info-card p,
  .ttpv-editorial-bottom .ttpv-use-card p,
  .ttpv-editorial-bottom .ttpv-trust-card p,
  .ttpv-editorial-bottom .ttpv-step-content p,
  .ttpv-editorial-bottom .ttpv-note p {
    font-size: 15px;
  }

  .ttpv-editorial-bottom .ttpv-note {
    margin-top: 30px;
    padding: 22px;
  }
}

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

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

  .ttpv-editorial-bottom .ttpv-kicker {
    font-size: 13px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block h2 {
    font-size: 40px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block p {
    font-size: 16px;
  }

  .ttpv-editorial-bottom .ttpv-card-grid,
  .ttpv-editorial-bottom .ttpv-step-list {
    gap: 22px;
    margin-top: 42px;
  }

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

  .ttpv-editorial-bottom .ttpv-info-card,
  .ttpv-editorial-bottom .ttpv-use-card,
  .ttpv-editorial-bottom .ttpv-trust-card {
    padding: 28px;
  }

  .ttpv-editorial-bottom .ttpv-step-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    padding: 28px;
  }

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

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

  .ttpv-editorial-bottom .ttpv-info-card p,
  .ttpv-editorial-bottom .ttpv-use-card p,
  .ttpv-editorial-bottom .ttpv-trust-card p,
  .ttpv-editorial-bottom .ttpv-step-content p,
  .ttpv-editorial-bottom .ttpv-note p {
    font-size: 15.5px;
  }

  .ttpv-editorial-bottom .ttpv-note {
    margin-top: 34px;
    padding: 24px;
  }
}

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

  .ttpv-editorial-bottom .ttpv-container {
    padding: 0 34px;
  }

  .ttpv-editorial-bottom .ttpv-kicker {
    font-size: 13px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block h2 {
    font-size: 46px;
  }

  .ttpv-editorial-bottom .ttpv-heading-block p {
    font-size: 17px;
  }

  .ttpv-editorial-bottom .ttpv-card-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .ttpv-editorial-bottom .ttpv-step-list {
    gap: 22px;
    margin-top: 48px;
  }

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

  .ttpv-editorial-bottom .ttpv-info-card,
  .ttpv-editorial-bottom .ttpv-use-card,
  .ttpv-editorial-bottom .ttpv-trust-card {
    padding: 30px;
  }

  .ttpv-editorial-bottom .ttpv-step-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    padding: 30px 34px;
  }

  .ttpv-editorial-bottom .ttpv-step-number {
    width: 70px;
    height: 70px;
    font-size: 19px;
  }

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

  .ttpv-editorial-bottom .ttpv-info-card p,
  .ttpv-editorial-bottom .ttpv-use-card p,
  .ttpv-editorial-bottom .ttpv-trust-card p,
  .ttpv-editorial-bottom .ttpv-step-content p,
  .ttpv-editorial-bottom .ttpv-note p {
    font-size: 16px;
  }

  .ttpv-editorial-bottom .ttpv-note {
    margin-top: 38px;
    padding: 26px 32px;
  }
}