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

.ttdv-editorial-wrap {
  width: 100%;
  overflow-x: hidden;
  color: #17202a;
  font-family: inherit;
  --ttdv-ink: #17202a;
  --ttdv-muted: #5c6875;
  --ttdv-soft: #f7f9fc;
  --ttdv-line: rgba(23, 32, 42, 0.1);
  --ttdv-card: #ffffff;
  --ttdv-pink: #ff2d72;
  --ttdv-cyan: #11d8d0;
  --ttdv-violet: #6c4cff;
  --ttdv-shadow: 0 18px 45px rgba(20, 28, 38, 0.09);
  --ttdv-shadow-soft: 0 10px 28px rgba(20, 28, 38, 0.07);
}

.ttdv-editorial-wrap,
.ttdv-editorial-wrap section,
.ttdv-editorial-wrap div,
.ttdv-editorial-wrap article,
.ttdv-editorial-wrap span,
.ttdv-editorial-wrap h2,
.ttdv-editorial-wrap h3,
.ttdv-editorial-wrap p {
  box-sizing: border-box;
}

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

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

.ttdv-editorial-wrap .ttdv-section-soft {
  background:
    radial-gradient(circle at 12% 8%, rgba(17, 216, 208, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 45, 114, 0.1), transparent 26%),
    #f7f9fc;
}

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

.ttdv-editorial-wrap .ttdv-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ttdv-editorial-wrap .ttdv-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 45, 114, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 45, 114, 0.1), rgba(17, 216, 208, 0.12));
  color: #8a1f55;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.ttdv-editorial-wrap .ttdv-section-head h2 {
  margin: 0;
  color: var(--ttdv-ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.ttdv-editorial-wrap .ttdv-section-head p {
  margin: 16px auto 0;
  color: var(--ttdv-muted);
  font-weight: 400;
  line-height: 1.7;
}

.ttdv-editorial-wrap .ttdv-grid {
  display: grid;
  width: 100%;
  align-items: stretch;
}

.ttdv-editorial-wrap .ttdv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ttdv-line);
  border-radius: 22px;
  background: var(--ttdv-card);
  box-shadow: var(--ttdv-shadow-soft);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttdv-editorial-wrap .ttdv-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--ttdv-pink), var(--ttdv-cyan), var(--ttdv-violet));
  opacity: 0.9;
}

.ttdv-editorial-wrap .ttdv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 114, 0.28);
  box-shadow: var(--ttdv-shadow);
}

.ttdv-editorial-wrap .ttdv-card h3 {
  margin: 0;
  color: var(--ttdv-ink);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttdv-editorial-wrap .ttdv-card p {
  margin: 12px 0 0;
  color: var(--ttdv-muted);
  line-height: 1.68;
}

.ttdv-editorial-wrap .ttdv-icon {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin: 0 0 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 45, 114, 0.14), rgba(17, 216, 208, 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  transition: transform 260ms ease;
}

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

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

.ttdv-editorial-wrap .ttdv-icon-eye::before {
  width: 22px;
  height: 14px;
  left: 13px;
  top: 17px;
  border: 2px solid #ff2d72;
  border-radius: 999px 999px 999px 999px / 70% 70% 70% 70%;
}

.ttdv-editorial-wrap .ttdv-icon-eye::after {
  width: 8px;
  height: 8px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  background: #11bfb8;
}

.ttdv-editorial-wrap .ttdv-icon-speed::before {
  width: 24px;
  height: 24px;
  left: 12px;
  top: 12px;
  border: 2px solid #11bfb8;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.ttdv-editorial-wrap .ttdv-icon-speed::after {
  width: 14px;
  height: 2px;
  left: 21px;
  top: 23px;
  background: #ff2d72;
  transform: rotate(-35deg);
  transform-origin: left center;
}

.ttdv-editorial-wrap .ttdv-icon-preview::before {
  width: 24px;
  height: 18px;
  left: 12px;
  top: 15px;
  border: 2px solid #6c4cff;
  border-radius: 7px;
}

.ttdv-editorial-wrap .ttdv-icon-preview::after {
  width: 8px;
  height: 8px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  background: #ff2d72;
}

.ttdv-editorial-wrap .ttdv-icon-steps::before {
  width: 6px;
  height: 6px;
  left: 14px;
  top: 13px;
  border-radius: 50%;
  background: #ff2d72;
  box-shadow: 0 10px 0 #11bfb8, 0 20px 0 #6c4cff;
}

.ttdv-editorial-wrap .ttdv-icon-steps::after {
  width: 16px;
  height: 2px;
  left: 25px;
  top: 15px;
  background: rgba(23, 32, 42, 0.38);
  box-shadow: 0 10px 0 rgba(23, 32, 42, 0.28), 0 20px 0 rgba(23, 32, 42, 0.2);
}

.ttdv-editorial-wrap .ttdv-icon-mobile::before {
  width: 18px;
  height: 28px;
  left: 15px;
  top: 10px;
  border: 2px solid #11bfb8;
  border-radius: 8px;
}

.ttdv-editorial-wrap .ttdv-icon-mobile::after {
  width: 6px;
  height: 2px;
  left: 21px;
  top: 32px;
  border-radius: 6px;
  background: #ff2d72;
}

.ttdv-editorial-wrap .ttdv-icon-daily::before {
  width: 22px;
  height: 22px;
  left: 13px;
  top: 13px;
  border: 2px solid #6c4cff;
  border-radius: 50%;
}

.ttdv-editorial-wrap .ttdv-icon-daily::after {
  width: 10px;
  height: 10px;
  left: 19px;
  top: 13px;
  border-right: 2px solid #ff2d72;
  border-bottom: 2px solid #ff2d72;
  transform: rotate(40deg);
}

.ttdv-editorial-wrap .ttdv-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.ttdv-editorial-wrap .ttdv-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--ttdv-shadow-soft);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttdv-editorial-wrap .ttdv-step-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 45, 114, 0.1), rgba(17, 216, 208, 0.12));
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.75;
}

.ttdv-editorial-wrap .ttdv-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 216, 208, 0.3);
  box-shadow: var(--ttdv-shadow);
}

.ttdv-editorial-wrap .ttdv-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff2d72, #6c4cff 52%, #11d8d0);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(108, 76, 255, 0.22);
}

.ttdv-editorial-wrap .ttdv-step-content {
  position: relative;
  z-index: 1;
}

.ttdv-editorial-wrap .ttdv-step-content h3 {
  margin: 0;
  color: var(--ttdv-ink);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttdv-editorial-wrap .ttdv-step-content p {
  margin: 10px 0 0;
  color: var(--ttdv-muted);
  line-height: 1.68;
}

.ttdv-editorial-wrap .ttdv-dot {
  width: 12px;
  height: 12px;
  margin: 0 0 18px;
  border-radius: 50%;
  background: #ff2d72;
  box-shadow: 16px 0 0 #11d8d0, 32px 0 0 #6c4cff;
}

.ttdv-editorial-wrap .ttdv-use-card {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(255, 45, 114, 0.28), rgba(17, 216, 208, 0.24)) border-box;
  border-color: transparent;
}

.ttdv-editorial-wrap .ttdv-trust-card {
  min-height: 100%;
  background: #ffffff;
}

.ttdv-editorial-wrap .ttdv-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(17, 216, 208, 0.12);
  color: #087972;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

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

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

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

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

  .ttdv-editorial-wrap .ttdv-section-head {
    margin-bottom: 28px;
  }

  .ttdv-editorial-wrap .ttdv-section-head h2 {
    font-size: 26px;
  }

  .ttdv-editorial-wrap .ttdv-section-head p {
    font-size: 14.5px;
  }

  .ttdv-editorial-wrap .ttdv-grid,
  .ttdv-editorial-wrap .ttdv-grid-three,
  .ttdv-editorial-wrap .ttdv-grid-trust {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ttdv-editorial-wrap .ttdv-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

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

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

  .ttdv-editorial-wrap .ttdv-steps {
    gap: 16px;
  }

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

  .ttdv-editorial-wrap .ttdv-step-number {
    width: 54px;
    height: 54px;
    font-size: 16px;
  }
}

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

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

  .ttdv-editorial-wrap .ttdv-section-head {
    margin-bottom: 30px;
  }

  .ttdv-editorial-wrap .ttdv-section-head h2 {
    font-size: 29px;
  }

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

  .ttdv-editorial-wrap .ttdv-grid,
  .ttdv-editorial-wrap .ttdv-grid-three,
  .ttdv-editorial-wrap .ttdv-grid-trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ttdv-editorial-wrap .ttdv-card {
    padding: 26px 22px;
    border-radius: 20px;
  }

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

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

  .ttdv-editorial-wrap .ttdv-steps {
    gap: 18px;
  }

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

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

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

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

  .ttdv-editorial-wrap .ttdv-section-head {
    margin-bottom: 34px;
  }

  .ttdv-editorial-wrap .ttdv-section-head h2 {
    font-size: 32px;
  }

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

  .ttdv-editorial-wrap .ttdv-grid,
  .ttdv-editorial-wrap .ttdv-grid-three,
  .ttdv-editorial-wrap .ttdv-grid-trust {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ttdv-editorial-wrap .ttdv-card {
    padding: 28px 24px;
  }

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

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

  .ttdv-editorial-wrap .ttdv-steps {
    gap: 20px;
  }

  .ttdv-editorial-wrap .ttdv-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }

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

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

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

  .ttdv-editorial-wrap .ttdv-section-head {
    margin-bottom: 42px;
  }

  .ttdv-editorial-wrap .ttdv-section-head h2 {
    font-size: 40px;
  }

  .ttdv-editorial-wrap .ttdv-section-head p {
    font-size: 16.5px;
  }

  .ttdv-editorial-wrap .ttdv-grid-three,
  .ttdv-editorial-wrap .ttdv-grid-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .ttdv-editorial-wrap .ttdv-card {
    padding: 30px 26px;
  }

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

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

  .ttdv-editorial-wrap .ttdv-steps {
    gap: 22px;
  }

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

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

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

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

  .ttdv-editorial-wrap .ttdv-section-head {
    margin-bottom: 48px;
  }

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

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

  .ttdv-editorial-wrap .ttdv-grid-three,
  .ttdv-editorial-wrap .ttdv-grid-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .ttdv-editorial-wrap .ttdv-card {
    padding: 32px 28px;
  }

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

  .ttdv-editorial-wrap .ttdv-card p,
  .ttdv-editorial-wrap .ttdv-step-content p {
    font-size: 15.8px;
  }

  .ttdv-editorial-wrap .ttdv-steps {
    gap: 22px;
  }

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

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