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

.tav-bottom-content {
  width: 100%;
  overflow-x: hidden;
  color: #172033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tav-bottom-content,
.tav-bottom-content div,
.tav-bottom-content section,
.tav-bottom-content article {
  box-sizing: border-box;
}

.tav-bottom-content .tav-section {
  position: relative;
  width: 100%;
}

.tav-bottom-content .tav-section-white {
  background: #ffffff;
}

.tav-bottom-content .tav-section-soft {
  background:
    radial-gradient(circle at top left, rgba(37, 244, 238, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(254, 44, 85, 0.10), transparent 34%),
    #f7f8fb;
}

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

.tav-bottom-content .tav-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.tav-bottom-content .tav-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 7px 13px;
  border: 1px solid rgba(37, 244, 238, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.10));
  color: #0f5960;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

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

.tav-bottom-content .tav-heading p {
  margin: 16px auto 0;
  max-width: 720px;
  color: #5a6578;
  line-height: 1.7;
}

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

.tav-bottom-content .tav-card,
.tav-bottom-content .tav-trust-card,
.tav-bottom-content .tav-step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.10);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tav-bottom-content .tav-card::before,
.tav-bottom-content .tav-trust-card::before,
.tav-bottom-content .tav-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.13), transparent 38%, rgba(254, 44, 85, 0.10));
  opacity: 0;
  transition: opacity 220ms ease;
}

.tav-bottom-content .tav-card:hover,
.tav-bottom-content .tav-trust-card:hover,
.tav-bottom-content .tav-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 244, 238, 0.42);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.tav-bottom-content .tav-card:hover::before,
.tav-bottom-content .tav-trust-card:hover::before,
.tav-bottom-content .tav-step-card:hover::before {
  opacity: 1;
}

.tav-bottom-content h3 {
  position: relative;
  margin: 0;
  color: #131b2c;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tav-bottom-content .tav-card p,
.tav-bottom-content .tav-trust-card p,
.tav-bottom-content .tav-step-card p {
  position: relative;
  margin: 10px 0 0;
  color: #5b6678;
  line-height: 1.66;
}

.tav-bottom-content .tav-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25f4ee, #ffffff 48%, #fe2c55);
  box-shadow: 0 12px 26px rgba(37, 244, 238, 0.18);
}

.tav-bottom-content .tav-icon::before,
.tav-bottom-content .tav-icon::after {
  content: "";
  position: absolute;
  transition: transform 220ms ease;
}

.tav-bottom-content .tav-card:hover .tav-icon::before,
.tav-bottom-content .tav-card:hover .tav-icon::after {
  transform: translateX(2px);
}

.tav-bottom-content .tav-icon-play::before {
  top: 14px;
  left: 17px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #132033;
}

.tav-bottom-content .tav-icon-speed::before {
  top: 16px;
  left: 12px;
  width: 22px;
  height: 14px;
  border: 3px solid #132033;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.tav-bottom-content .tav-icon-preview::before {
  top: 14px;
  left: 10px;
  width: 26px;
  height: 18px;
  border: 3px solid #132033;
  border-radius: 8px;
}

.tav-bottom-content .tav-icon-steps::before {
  top: 12px;
  left: 13px;
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: #132033;
  box-shadow: 0 9px 0 #132033, 0 18px 0 #132033;
}

.tav-bottom-content .tav-icon-mobile::before {
  top: 9px;
  left: 15px;
  width: 16px;
  height: 28px;
  border: 3px solid #132033;
  border-radius: 7px;
}

.tav-bottom-content .tav-icon-daily::before {
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  border: 3px solid #132033;
  border-radius: 50%;
}

.tav-bottom-content .tav-icon-daily::after {
  top: 21px;
  left: 22px;
  width: 9px;
  height: 3px;
  border-radius: 999px;
  background: #132033;
  transform-origin: left center;
}

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

.tav-bottom-content .tav-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 24px;
}

.tav-bottom-content .tav-step-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #111827, #26324a);
  color: #ffffff;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.20);
}

.tav-bottom-content .tav-step-number::after {
  content: "";
  position: absolute;
  right: -7px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
}

.tav-bottom-content .tav-badge-dot {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin: 0 0 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.95), rgba(254, 44, 85, 0.90));
  box-shadow: 0 12px 24px rgba(254, 44, 85, 0.14);
}

.tav-bottom-content .tav-badge-dot::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #ffffff;
}

.tav-bottom-content .tav-trust-card {
  text-align: left;
}

.tav-bottom-content .tav-trust-mark {
  position: relative;
  display: flex;
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.16));
  color: #111827;
  font-weight: 850;
}

.tav-bottom-content .tav-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.tav-bottom-content .tav-reveal.tav-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) {
  .tav-bottom-content .tav-section {
    padding: 54px 0;
  }

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

  .tav-bottom-content h2 {
    font-size: 27px;
  }

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

  .tav-bottom-content .tav-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .tav-bottom-content .tav-card,
  .tav-bottom-content .tav-trust-card {
    min-height: 1px;
    padding: 22px;
    border-radius: 20px;
  }

  .tav-bottom-content h3 {
    font-size: 18px;
  }

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

  .tav-bottom-content .tav-steps {
    gap: 16px;
    margin-top: 32px;
  }

  .tav-bottom-content .tav-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .tav-bottom-content .tav-step-number {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }
}

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

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

  .tav-bottom-content h2 {
    font-size: 30px;
  }

  .tav-bottom-content .tav-heading p {
    font-size: 15.5px;
  }

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

  .tav-bottom-content .tav-card,
  .tav-bottom-content .tav-trust-card {
    min-height: 1px;
    padding: 24px;
    border-radius: 21px;
  }

  .tav-bottom-content h3 {
    font-size: 18.5px;
  }

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

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

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

  .tav-bottom-content .tav-step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

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

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

  .tav-bottom-content h2 {
    font-size: 34px;
  }

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

  .tav-bottom-content .tav-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 38px;
  }

  .tav-bottom-content .tav-card,
  .tav-bottom-content .tav-trust-card {
    min-height: 1px;
    padding: 26px;
    border-radius: 22px;
  }

  .tav-bottom-content h3 {
    font-size: 19px;
  }

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

  .tav-bottom-content .tav-steps {
    gap: 20px;
    margin-top: 38px;
  }

  .tav-bottom-content .tav-step-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px;
  }

  .tav-bottom-content .tav-step-number {
    width: 64px;
    height: 64px;
    font-size: 19px;
  }
}

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

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

  .tav-bottom-content h2 {
    font-size: 40px;
  }

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

  .tav-bottom-content .tav-grid-six,
  .tav-bottom-content .tav-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
  }

  .tav-bottom-content .tav-card,
  .tav-bottom-content .tav-trust-card {
    min-height: 250px;
    padding: 28px;
    border-radius: 24px;
  }

  .tav-bottom-content h3 {
    font-size: 20px;
  }

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

  .tav-bottom-content .tav-steps {
    gap: 20px;
    margin-top: 44px;
  }

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

  .tav-bottom-content .tav-step-number {
    width: 72px;
    height: 72px;
    font-size: 21px;
  }
}

@media (min-width: 1024px) {
  .tav-bottom-content .tav-section {
    padding: 96px 0;
  }

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

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

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

  .tav-bottom-content .tav-grid-six,
  .tav-bottom-content .tav-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
  }

  .tav-bottom-content .tav-card,
  .tav-bottom-content .tav-trust-card {
    min-height: 262px;
    padding: 30px;
    border-radius: 24px;
  }

  .tav-bottom-content h3 {
    font-size: 20px;
  }

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

  .tav-bottom-content .tav-steps {
    gap: 22px;
    margin-top: 50px;
  }

  .tav-bottom-content .tav-step-card {
    gap: 30px;
    padding: 32px;
  }

  .tav-bottom-content .tav-step-number {
    width: 78px;
    height: 78px;
    font-size: 22px;
  }
}