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

.ttfv-editorial-wrap {
  width: 100%;
  overflow-x: hidden;
  color: #18202f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

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

.ttfv-editorial-wrap .ttfv-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

.ttfv-editorial-wrap .ttfv-section-soft {
  background:
    radial-gradient(circle at 10% 15%, rgba(37, 244, 238, 0.12), transparent 30%),
    radial-gradient(circle at 90% 5%, rgba(255, 0, 80, 0.10), transparent 28%),
    #f8fafc;
}

.ttfv-editorial-wrap .ttfv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.ttfv-editorial-wrap .ttfv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 0, 80, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(255, 0, 80, 0.10));
  color: #344052;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.ttfv-editorial-wrap .ttfv-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #ff0050);
  box-shadow: 0 0 16px rgba(255, 0, 80, 0.38);
}

.ttfv-editorial-wrap h2 {
  margin: 0;
  color: #101828;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.ttfv-editorial-wrap .ttfv-section-head p {
  margin: 16px auto 0;
  max-width: 700px;
  color: #5c6677;
  line-height: 1.75;
}

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

.ttfv-editorial-wrap .ttfv-info-card,
.ttfv-editorial-wrap .ttfv-use-card,
.ttfv-editorial-wrap .ttfv-trust-card,
.ttfv-editorial-wrap .ttfv-step-card {
  position: relative;
  height: 100%;
  border: 1px solid rgba(16, 24, 40, 0.09);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ttfv-editorial-wrap .ttfv-info-card:hover,
.ttfv-editorial-wrap .ttfv-use-card:hover,
.ttfv-editorial-wrap .ttfv-trust-card:hover,
.ttfv-editorial-wrap .ttfv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 80, 0.24);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.ttfv-editorial-wrap .ttfv-info-card::after,
.ttfv-editorial-wrap .ttfv-use-card::after,
.ttfv-editorial-wrap .ttfv-trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.10), transparent 35%, rgba(255, 0, 80, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.ttfv-editorial-wrap .ttfv-info-card:hover::after,
.ttfv-editorial-wrap .ttfv-use-card:hover::after,
.ttfv-editorial-wrap .ttfv-trust-card:hover::after {
  opacity: 1;
}

.ttfv-editorial-wrap .ttfv-info-card h3,
.ttfv-editorial-wrap .ttfv-use-card h3,
.ttfv-editorial-wrap .ttfv-trust-card h3,
.ttfv-editorial-wrap .ttfv-step-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #111827;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttfv-editorial-wrap .ttfv-info-card p,
.ttfv-editorial-wrap .ttfv-use-card p,
.ttfv-editorial-wrap .ttfv-trust-card p,
.ttfv-editorial-wrap .ttfv-step-card p,
.ttfv-editorial-wrap .ttfv-note p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: #5b6472;
  line-height: 1.7;
}

.ttfv-editorial-wrap .ttfv-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(255, 0, 80, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75), 0 14px 30px rgba(255, 0, 80, 0.12);
}

.ttfv-editorial-wrap .ttfv-icon::before,
.ttfv-editorial-wrap .ttfv-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, #25f4ee, #ff0050);
  transition: transform 220ms ease;
}

.ttfv-editorial-wrap .ttfv-info-card:hover .ttfv-icon::before,
.ttfv-editorial-wrap .ttfv-info-card:hover .ttfv-icon::after {
  transform: translateY(-2px) scale(1.05);
}

.ttfv-editorial-wrap .ttfv-icon-pulse::before {
  width: 18px;
  height: 18px;
  left: 13px;
  top: 13px;
}

.ttfv-editorial-wrap .ttfv-icon-pulse::after {
  width: 26px;
  height: 26px;
  left: 9px;
  top: 9px;
  background: transparent;
  border: 2px solid rgba(255, 0, 80, 0.45);
}

.ttfv-editorial-wrap .ttfv-icon-speed::before {
  width: 22px;
  height: 5px;
  left: 11px;
  top: 14px;
}

.ttfv-editorial-wrap .ttfv-icon-speed::after {
  width: 14px;
  height: 5px;
  left: 18px;
  top: 25px;
}

.ttfv-editorial-wrap .ttfv-icon-preview::before {
  width: 24px;
  height: 16px;
  left: 10px;
  top: 14px;
  border-radius: 8px;
}

.ttfv-editorial-wrap .ttfv-icon-preview::after {
  width: 8px;
  height: 8px;
  left: 18px;
  top: 18px;
  background: #ffffff;
}

.ttfv-editorial-wrap .ttfv-icon-steps::before {
  width: 7px;
  height: 7px;
  left: 11px;
  top: 11px;
  box-shadow: 0 10px 0 rgba(255, 0, 80, 0.9), 0 20px 0 rgba(37, 244, 238, 0.95);
}

.ttfv-editorial-wrap .ttfv-icon-steps::after {
  width: 16px;
  height: 4px;
  right: 10px;
  top: 13px;
  box-shadow: 0 10px 0 rgba(37, 244, 238, 0.8), 0 20px 0 rgba(255, 0, 80, 0.75);
}

.ttfv-editorial-wrap .ttfv-icon-mobile::before {
  width: 17px;
  height: 26px;
  left: 14px;
  top: 9px;
  border-radius: 6px;
}

.ttfv-editorial-wrap .ttfv-icon-mobile::after {
  width: 5px;
  height: 5px;
  left: 20px;
  top: 28px;
  background: #ffffff;
}

.ttfv-editorial-wrap .ttfv-icon-daily::before {
  width: 22px;
  height: 22px;
  left: 11px;
  top: 11px;
}

.ttfv-editorial-wrap .ttfv-icon-daily::after {
  width: 16px;
  height: 3px;
  left: 14px;
  top: 21px;
  background: #ffffff;
}

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

.ttfv-editorial-wrap .ttfv-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
}

.ttfv-editorial-wrap .ttfv-step-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #25f4ee, #ff0050);
}

.ttfv-editorial-wrap .ttfv-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.16);
}

.ttfv-editorial-wrap .ttfv-step-number::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.45), rgba(255, 0, 80, 0.42));
  z-index: -1;
  opacity: 0.7;
}

.ttfv-editorial-wrap .ttfv-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.05);
  color: #394255;
  font-size: 12px;
  font-weight: 800;
}

.ttfv-editorial-wrap .ttfv-trust-card {
  text-align: left;
}

.ttfv-editorial-wrap .ttfv-trust-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #ff0050);
  box-shadow: 0 14px 32px rgba(255, 0, 80, 0.18);
}

.ttfv-editorial-wrap .ttfv-trust-mark::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 7px;
  left: 13px;
  top: 15px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg);
}

.ttfv-editorial-wrap .ttfv-note {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  border: 1px solid rgba(37, 244, 238, 0.24);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.10), rgba(255, 255, 255, 0.92), rgba(255, 0, 80, 0.08));
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  text-align: center;
}

.ttfv-editorial-wrap .ttfv-note p {
  margin: 0;
  color: #445064;
}

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

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

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

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

  .ttfv-editorial-wrap h2 {
    font-size: 25px;
  }

  .ttfv-editorial-wrap .ttfv-section-head p {
    font-size: 14px;
  }

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

  .ttfv-editorial-wrap .ttfv-info-card,
  .ttfv-editorial-wrap .ttfv-use-card,
  .ttfv-editorial-wrap .ttfv-trust-card {
    padding: 22px;
    border-radius: 18px;
  }

  .ttfv-editorial-wrap .ttfv-info-card h3,
  .ttfv-editorial-wrap .ttfv-use-card h3,
  .ttfv-editorial-wrap .ttfv-trust-card h3,
  .ttfv-editorial-wrap .ttfv-step-card h3 {
    font-size: 17px;
  }

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

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

  .ttfv-editorial-wrap .ttfv-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
    border-radius: 18px;
  }

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

  .ttfv-editorial-wrap .ttfv-note {
    margin-top: 22px;
    padding: 20px;
  }

  .ttfv-editorial-wrap .ttfv-note p {
    font-size: 14px;
  }
}

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

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

  .ttfv-editorial-wrap h2 {
    font-size: 28px;
  }

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

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

  .ttfv-editorial-wrap .ttfv-info-card,
  .ttfv-editorial-wrap .ttfv-use-card,
  .ttfv-editorial-wrap .ttfv-trust-card {
    padding: 24px;
    border-radius: 20px;
  }

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

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

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

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

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

  .ttfv-editorial-wrap .ttfv-note {
    margin-top: 24px;
    padding: 22px;
  }

  .ttfv-editorial-wrap .ttfv-note p {
    font-size: 15px;
  }
}

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

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

  .ttfv-editorial-wrap h2 {
    font-size: 31px;
  }

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

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

  .ttfv-editorial-wrap .ttfv-info-card,
  .ttfv-editorial-wrap .ttfv-use-card,
  .ttfv-editorial-wrap .ttfv-trust-card {
    padding: 26px;
    border-radius: 22px;
  }

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

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

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

  .ttfv-editorial-wrap .ttfv-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
    border-radius: 22px;
  }

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

  .ttfv-editorial-wrap .ttfv-note {
    margin-top: 26px;
    padding: 24px;
  }

  .ttfv-editorial-wrap .ttfv-note p {
    font-size: 15px;
  }
}

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

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

  .ttfv-editorial-wrap h2 {
    font-size: 38px;
  }

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

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

  .ttfv-editorial-wrap .ttfv-info-card,
  .ttfv-editorial-wrap .ttfv-use-card,
  .ttfv-editorial-wrap .ttfv-trust-card {
    padding: 28px;
    border-radius: 24px;
  }

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

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

  .ttfv-editorial-wrap .ttfv-steps {
    gap: 22px;
    margin-top: 46px;
  }

  .ttfv-editorial-wrap .ttfv-step-card {
    gap: 22px;
    padding: 30px;
    border-radius: 24px;
  }

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

  .ttfv-editorial-wrap .ttfv-note {
    margin-top: 30px;
    padding: 26px 30px;
  }

  .ttfv-editorial-wrap .ttfv-note p {
    font-size: 16px;
  }
}

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

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

  .ttfv-editorial-wrap h2 {
    font-size: 44px;
  }

  .ttfv-editorial-wrap .ttfv-section-head p {
    font-size: 18px;
  }

  .ttfv-editorial-wrap .ttfv-card-grid {
    gap: 24px;
    margin-top: 52px;
  }

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

  .ttfv-editorial-wrap .ttfv-info-card,
  .ttfv-editorial-wrap .ttfv-use-card,
  .ttfv-editorial-wrap .ttfv-trust-card {
    padding: 30px;
    border-radius: 24px;
  }

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

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

  .ttfv-editorial-wrap .ttfv-steps {
    gap: 24px;
    margin-top: 52px;
  }

  .ttfv-editorial-wrap .ttfv-step-card {
    gap: 26px;
    padding: 32px 34px;
    border-radius: 26px;
  }

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

  .ttfv-editorial-wrap .ttfv-note {
    margin-top: 34px;
    padding: 28px 34px;
  }

  .ttfv-editorial-wrap .ttfv-note p {
    font-size: 16px;
  }
}