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

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

.ttav-content,
.ttav-content div,
.ttav-content section,
.ttav-content article,
.ttav-content span,
.ttav-content h2,
.ttav-content h3,
.ttav-content p {
  box-sizing: border-box;
}

.ttav-content .ttav-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ttav-content .ttav-section-white {
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 244, 238, 0.1), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(254, 44, 85, 0.08), transparent 30%),
    #ffffff;
}

.ttav-content .ttav-section-soft {
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.08), rgba(254, 44, 85, 0.06)),
    #f8fafc;
}

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

.ttav-content .ttav-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ttav-content .ttav-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(254, 44, 85, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #c71842;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 10px 26px rgba(20, 24, 39, 0.06);
}

.ttav-content .ttav-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 0 5px rgba(37, 244, 238, 0.12);
}

.ttav-content h2 {
  margin: 0;
  color: #101423;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.ttav-content .ttav-heading p {
  margin: 16px auto 0;
  max-width: 680px;
  color: #5b6475;
  font-weight: 450;
}

.ttav-content .ttav-grid {
  display: grid;
  align-items: stretch;
}

.ttav-content .ttav-card,
.ttav-content .ttav-trust-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(20, 24, 39, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.ttav-content .ttav-card::before,
.ttav-content .ttav-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.16), transparent 36%, rgba(254, 44, 85, 0.13));
  opacity: 0;
  transition: opacity 240ms ease;
}

.ttav-content .ttav-card:hover,
.ttav-content .ttav-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 44, 85, 0.2);
  box-shadow: 0 24px 56px rgba(20, 24, 39, 0.12);
}

.ttav-content .ttav-card:hover::before,
.ttav-content .ttav-trust-card:hover::before {
  opacity: 1;
}

.ttav-content .ttav-card h3,
.ttav-content .ttav-trust-card h3,
.ttav-content .ttav-step-card h3 {
  position: relative;
  margin: 0;
  color: #121624;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
}

.ttav-content .ttav-card p,
.ttav-content .ttav-trust-card p,
.ttav-content .ttav-step-card p {
  position: relative;
  margin: 10px 0 0;
  color: #606a7b;
  font-weight: 430;
}

.ttav-content .ttav-icon {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 14px 28px rgba(254, 44, 85, 0.2);
  transition: transform 240ms ease;
}

.ttav-content .ttav-card:hover .ttav-icon {
  transform: translateY(-2px) rotate(-3deg);
}

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

.ttav-content .ttav-icon-view::before {
  width: 20px;
  height: 12px;
  top: 15px;
  left: 12px;
  border: 2px solid #ffffff;
  border-radius: 999px;
}

.ttav-content .ttav-icon-view::after {
  width: 6px;
  height: 6px;
  top: 18px;
  left: 19px;
  border-radius: 50%;
  background: #ffffff;
}

.ttav-content .ttav-icon-speed::before {
  width: 18px;
  height: 18px;
  left: 13px;
  top: 13px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-right-color: transparent;
}

.ttav-content .ttav-icon-speed::after {
  width: 12px;
  height: 2px;
  left: 21px;
  top: 21px;
  background: #ffffff;
  transform: rotate(-35deg);
  transform-origin: left center;
}

.ttav-content .ttav-icon-preview::before {
  width: 20px;
  height: 16px;
  left: 12px;
  top: 14px;
  border: 2px solid #ffffff;
  border-radius: 5px;
}

.ttav-content .ttav-icon-preview::after {
  width: 8px;
  height: 8px;
  left: 18px;
  top: 18px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ttav-content .ttav-icon-steps::before {
  width: 4px;
  height: 4px;
  left: 13px;
  top: 13px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
}

.ttav-content .ttav-icon-steps::after {
  width: 16px;
  height: 2px;
  left: 21px;
  top: 14px;
  background: #ffffff;
  box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
}

.ttav-content .ttav-icon-mobile::before {
  width: 16px;
  height: 24px;
  left: 14px;
  top: 10px;
  border: 2px solid #ffffff;
  border-radius: 6px;
}

.ttav-content .ttav-icon-mobile::after {
  width: 4px;
  height: 4px;
  left: 20px;
  top: 27px;
  border-radius: 50%;
  background: #ffffff;
}

.ttav-content .ttav-icon-daily::before {
  width: 20px;
  height: 20px;
  left: 12px;
  top: 12px;
  border: 2px solid #ffffff;
  border-radius: 7px;
}

.ttav-content .ttav-icon-daily::after {
  width: 12px;
  height: 6px;
  left: 16px;
  top: 19px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.ttav-content .ttav-steps {
  display: grid;
  grid-template-columns: 1fr;
}

.ttav-content .ttav-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(20, 24, 39, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.ttav-content .ttav-step-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -62px;
  top: -62px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 244, 238, 0.28), rgba(254, 44, 85, 0.08) 58%, transparent 70%);
  transition: transform 300ms ease;
}

.ttav-content .ttav-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 244, 238, 0.28);
  box-shadow: 0 24px 58px rgba(20, 24, 39, 0.12);
}

.ttav-content .ttav-step-card:hover::after {
  transform: scale(1.18);
}

.ttav-content .ttav-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #101423;
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 32px rgba(16, 20, 35, 0.18);
}

.ttav-content .ttav-step-number::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 25px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
}

.ttav-content .ttav-step-copy {
  position: relative;
  z-index: 1;
}

.ttav-content .ttav-badge {
  position: relative;
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 244, 238, 0.12);
  color: #0d7977;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.ttav-content .ttav-card-use:nth-child(even) .ttav-badge {
  background: rgba(254, 44, 85, 0.1);
  color: #bd173e;
}

.ttav-content .ttav-grid-trust {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ttav-content .ttav-trust-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    #ffffff;
}

.ttav-content .ttav-trust-dot {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 0 8px rgba(37, 244, 238, 0.12), 0 16px 32px rgba(254, 44, 85, 0.16);
}

.ttav-content .ttav-trust-dot::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 8px;
  left: 10px;
  top: 11px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

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

.ttav-content.ttav-ready .ttav-reveal.ttav-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .ttav-content .ttav-container {
    padding: 0 14px;
  }

  .ttav-content h2 {
    font-size: 25px;
  }

  .ttav-content .ttav-heading p {
    font-size: 14px;
  }

  .ttav-content .ttav-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .ttav-content .ttav-card,
  .ttav-content .ttav-trust-card {
    padding: 20px;
    border-radius: 18px;
  }

  .ttav-content .ttav-card h3,
  .ttav-content .ttav-trust-card h3,
  .ttav-content .ttav-step-card h3 {
    font-size: 17px;
  }

  .ttav-content .ttav-card p,
  .ttav-content .ttav-trust-card p,
  .ttav-content .ttav-step-card p {
    font-size: 14px;
  }

  .ttav-content .ttav-steps {
    gap: 14px;
    margin-top: 28px;
  }

  .ttav-content .ttav-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .ttav-content .ttav-step-number {
    width: 58px;
    height: 58px;
    font-size: 17px;
    border-radius: 18px;
  }
}

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

  .ttav-content .ttav-container {
    padding: 0 18px;
  }

  .ttav-content h2 {
    font-size: 28px;
  }

  .ttav-content .ttav-heading p {
    font-size: 15px;
  }

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

  .ttav-content .ttav-card,
  .ttav-content .ttav-trust-card {
    padding: 22px;
    border-radius: 20px;
  }

  .ttav-content .ttav-card h3,
  .ttav-content .ttav-trust-card h3,
  .ttav-content .ttav-step-card h3 {
    font-size: 18px;
  }

  .ttav-content .ttav-card p,
  .ttav-content .ttav-trust-card p,
  .ttav-content .ttav-step-card p {
    font-size: 14.5px;
  }

  .ttav-content .ttav-steps {
    gap: 16px;
    margin-top: 30px;
  }

  .ttav-content .ttav-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .ttav-content .ttav-step-number {
    width: 62px;
    height: 62px;
    font-size: 18px;
  }
}

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

  .ttav-content .ttav-container {
    padding: 0 22px;
  }

  .ttav-content h2 {
    font-size: 31px;
  }

  .ttav-content .ttav-heading p {
    font-size: 16px;
  }

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

  .ttav-content .ttav-card,
  .ttav-content .ttav-trust-card {
    padding: 24px;
  }

  .ttav-content .ttav-card h3,
  .ttav-content .ttav-trust-card h3,
  .ttav-content .ttav-step-card h3 {
    font-size: 19px;
  }

  .ttav-content .ttav-card p,
  .ttav-content .ttav-trust-card p,
  .ttav-content .ttav-step-card p {
    font-size: 15px;
  }

  .ttav-content .ttav-steps {
    gap: 18px;
    margin-top: 34px;
  }

  .ttav-content .ttav-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .ttav-content .ttav-step-number {
    width: 66px;
    height: 66px;
    font-size: 19px;
  }
}

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

  .ttav-content .ttav-container {
    padding: 0 30px;
  }

  .ttav-content h2 {
    font-size: 38px;
  }

  .ttav-content .ttav-heading p {
    font-size: 17px;
  }

  .ttav-content .ttav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
  }

  .ttav-content .ttav-grid-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttav-content .ttav-card,
  .ttav-content .ttav-trust-card {
    padding: 28px;
  }

  .ttav-content .ttav-card h3,
  .ttav-content .ttav-trust-card h3,
  .ttav-content .ttav-step-card h3 {
    font-size: 20px;
  }

  .ttav-content .ttav-card p,
  .ttav-content .ttav-trust-card p,
  .ttav-content .ttav-step-card p {
    font-size: 15.5px;
  }

  .ttav-content .ttav-steps {
    gap: 20px;
    margin-top: 42px;
  }

  .ttav-content .ttav-step-card {
    gap: 22px;
    padding: 28px;
  }

  .ttav-content .ttav-step-number {
    font-size: 20px;
  }
}

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

  .ttav-content .ttav-container {
    padding: 0 32px;
  }

  .ttav-content h2 {
    font-size: 46px;
  }

  .ttav-content .ttav-heading p {
    font-size: 18px;
  }

  .ttav-content .ttav-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .ttav-content .ttav-grid-3,
  .ttav-content .ttav-grid-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ttav-content .ttav-card,
  .ttav-content .ttav-trust-card {
    padding: 30px;
  }

  .ttav-content .ttav-card h3,
  .ttav-content .ttav-trust-card h3,
  .ttav-content .ttav-step-card h3 {
    font-size: 21px;
  }

  .ttav-content .ttav-card p,
  .ttav-content .ttav-trust-card p,
  .ttav-content .ttav-step-card p {
    font-size: 16px;
  }

  .ttav-content .ttav-steps {
    gap: 22px;
    margin-top: 48px;
  }

  .ttav-content .ttav-step-card {
    gap: 26px;
    padding: 30px;
  }

  .ttav-content .ttav-step-number {
    font-size: 21px;
  }
}