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

.tbv-bottom-content {
  width: 100%;
  overflow-x: hidden;
  color: #17202a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tbv-ink: #17202a;
  --tbv-muted: #5d6a78;
  --tbv-line: rgba(18, 28, 43, 0.1);
  --tbv-white: #ffffff;
  --tbv-soft: #f8fafc;
  --tbv-accent-a: #00d4b8;
  --tbv-accent-b: #ff2d75;
  --tbv-accent-c: #7c3cff;
  --tbv-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --tbv-shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.13);
  --tbv-radius: 22px;
}

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

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

.tbv-bottom-content .tbv-section-soft {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 212, 184, 0.09), transparent 28%),
    radial-gradient(circle at 88% 28%, rgba(255, 45, 117, 0.08), transparent 30%),
    #f8fafc;
}

.tbv-bottom-content .tbv-container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.tbv-bottom-content .tbv-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tbv-bottom-content .tbv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 13px;
  border: 1px solid rgba(0, 212, 184, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 212, 184, 0.1), rgba(255, 45, 117, 0.08));
  color: #0f766e;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.tbv-bottom-content .tbv-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tbv-accent-a), var(--tbv-accent-b));
  box-shadow: 0 0 0 5px rgba(0, 212, 184, 0.12);
}

.tbv-bottom-content .tbv-section-head h2 {
  margin: 0;
  color: var(--tbv-ink);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.tbv-bottom-content .tbv-section-head p {
  margin: 14px auto 0;
  color: var(--tbv-muted);
  line-height: 1.75;
}

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

.tbv-bottom-content .tbv-card,
.tbv-bottom-content .tbv-step-card {
  position: relative;
  box-sizing: border-box;
  border: 1px solid var(--tbv-line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--tbv-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tbv-bottom-content .tbv-card {
  min-width: 0;
  height: 100%;
  border-radius: var(--tbv-radius);
}

.tbv-bottom-content .tbv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 212, 184, 0.38), rgba(255, 45, 117, 0.25), rgba(124, 60, 255, 0.22));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.tbv-bottom-content .tbv-card:hover,
.tbv-bottom-content .tbv-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tbv-shadow-hover);
  border-color: rgba(0, 212, 184, 0.24);
}

.tbv-bottom-content .tbv-card:hover::before {
  opacity: 1;
}

.tbv-bottom-content .tbv-card h3,
.tbv-bottom-content .tbv-step-card h3 {
  margin: 0;
  color: var(--tbv-ink);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tbv-bottom-content .tbv-card p,
.tbv-bottom-content .tbv-step-card p {
  margin: 10px 0 0;
  color: var(--tbv-muted);
  line-height: 1.7;
}

.tbv-bottom-content .tbv-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 184, 0.13), rgba(255, 45, 117, 0.12));
  border: 1px solid rgba(0, 212, 184, 0.18);
}

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

.tbv-bottom-content .tbv-feature-card:hover .tbv-icon::before,
.tbv-bottom-content .tbv-feature-card:hover .tbv-icon::after {
  transform: translateY(-2px);
}

.tbv-bottom-content .tbv-icon-ring::before {
  inset: 13px;
  border: 3px solid #00a99a;
  border-radius: 999px;
}

.tbv-bottom-content .tbv-icon-ring::after {
  width: 10px;
  height: 3px;
  right: 12px;
  bottom: 13px;
  border-radius: 999px;
  background: #ff2d75;
  transform: rotate(45deg);
}

.tbv-bottom-content .tbv-icon-bolt::before {
  left: 17px;
  top: 10px;
  width: 12px;
  height: 26px;
  background: linear-gradient(160deg, #00a99a, #ff2d75);
  clip-path: polygon(55% 0, 100% 0, 62% 43%, 100% 43%, 32% 100%, 45% 54%, 0 54%);
}

.tbv-bottom-content .tbv-icon-frame::before {
  inset: 12px;
  border: 3px solid #00a99a;
  border-radius: 8px;
}

.tbv-bottom-content .tbv-icon-frame::after {
  left: 18px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff2d75;
}

.tbv-bottom-content .tbv-icon-path::before {
  left: 13px;
  top: 14px;
  width: 20px;
  height: 16px;
  border-left: 3px solid #00a99a;
  border-bottom: 3px solid #00a99a;
  border-radius: 0 0 0 10px;
}

.tbv-bottom-content .tbv-icon-path::after {
  right: 12px;
  top: 13px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #ff2d75;
  border-right: 3px solid #ff2d75;
  transform: rotate(45deg);
}

.tbv-bottom-content .tbv-icon-device::before {
  left: 16px;
  top: 9px;
  width: 14px;
  height: 26px;
  border: 3px solid #00a99a;
  border-radius: 8px;
}

.tbv-bottom-content .tbv-icon-device::after {
  left: 21px;
  bottom: 12px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #ff2d75;
}

.tbv-bottom-content .tbv-icon-notes::before {
  left: 13px;
  top: 12px;
  width: 20px;
  height: 23px;
  border: 3px solid #00a99a;
  border-radius: 7px;
}

.tbv-bottom-content .tbv-icon-notes::after {
  left: 18px;
  top: 20px;
  width: 13px;
  height: 8px;
  border-top: 3px solid #ff2d75;
  border-bottom: 3px solid #ff2d75;
}

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

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

.tbv-bottom-content .tbv-step-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--tbv-accent-a), var(--tbv-accent-b), var(--tbv-accent-c));
}

.tbv-bottom-content .tbv-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #101828, #283548);
  color: #ffffff;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.tbv-bottom-content .tbv-use-card {
  padding-top: 34px;
}

.tbv-bottom-content .tbv-badge-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--tbv-accent-a), var(--tbv-accent-b)) border-box;
  border: 1px solid transparent;
}

.tbv-bottom-content .tbv-badge-dot::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tbv-accent-a), var(--tbv-accent-b));
}

.tbv-bottom-content .tbv-trust-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 100% 0%, rgba(0, 212, 184, 0.15), transparent 38%);
}

.tbv-bottom-content .tbv-trust-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 212, 184, 0.14), rgba(255, 45, 117, 0.1));
  border: 1px solid rgba(0, 212, 184, 0.18);
  position: relative;
}

.tbv-bottom-content .tbv-trust-mark::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  width: 11px;
  height: 17px;
  border-right: 3px solid #00a99a;
  border-bottom: 3px solid #00a99a;
  transform: rotate(40deg);
}

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

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

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

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

  .tbv-bottom-content .tbv-section-head {
    margin-bottom: 26px;
  }

  .tbv-bottom-content .tbv-section-head h2 {
    font-size: 25px;
  }

  .tbv-bottom-content .tbv-section-head p {
    font-size: 14px;
  }

  .tbv-bottom-content .tbv-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tbv-bottom-content .tbv-card {
    padding: 22px;
  }

  .tbv-bottom-content .tbv-card h3,
  .tbv-bottom-content .tbv-step-card h3 {
    font-size: 18px;
  }

  .tbv-bottom-content .tbv-card p,
  .tbv-bottom-content .tbv-step-card p {
    font-size: 14px;
  }

  .tbv-bottom-content .tbv-steps {
    gap: 14px;
  }

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

  .tbv-bottom-content .tbv-step-number {
    width: 54px;
    height: 54px;
    font-size: 17px;
  }
}

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

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

  .tbv-bottom-content .tbv-section-head {
    margin-bottom: 30px;
  }

  .tbv-bottom-content .tbv-section-head h2 {
    font-size: 28px;
  }

  .tbv-bottom-content .tbv-section-head p {
    font-size: 15px;
  }

  .tbv-bottom-content .tbv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tbv-bottom-content .tbv-card {
    padding: 24px;
  }

  .tbv-bottom-content .tbv-card h3,
  .tbv-bottom-content .tbv-step-card h3 {
    font-size: 19px;
  }

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

  .tbv-bottom-content .tbv-steps {
    gap: 16px;
  }

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

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

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

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

  .tbv-bottom-content .tbv-section-head {
    margin-bottom: 32px;
  }

  .tbv-bottom-content .tbv-section-head h2 {
    font-size: 31px;
  }

  .tbv-bottom-content .tbv-section-head p {
    font-size: 15.5px;
  }

  .tbv-bottom-content .tbv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tbv-bottom-content .tbv-card {
    padding: 26px;
  }

  .tbv-bottom-content .tbv-card h3,
  .tbv-bottom-content .tbv-step-card h3 {
    font-size: 20px;
  }

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

  .tbv-bottom-content .tbv-steps {
    gap: 18px;
  }

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

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

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

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

  .tbv-bottom-content .tbv-section-head {
    margin-bottom: 40px;
  }

  .tbv-bottom-content .tbv-section-head h2 {
    font-size: 38px;
  }

  .tbv-bottom-content .tbv-section-head p {
    font-size: 16.5px;
  }

  .tbv-bottom-content .tbv-grid {
    gap: 22px;
  }

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

  .tbv-bottom-content .tbv-card {
    padding: 28px;
  }

  .tbv-bottom-content .tbv-card h3,
  .tbv-bottom-content .tbv-step-card h3 {
    font-size: 20px;
  }

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

  .tbv-bottom-content .tbv-steps {
    gap: 20px;
  }

  .tbv-bottom-content .tbv-step-card {
    gap: 22px;
    padding: 30px;
  }

  .tbv-bottom-content .tbv-step-number {
    width: 66px;
    height: 66px;
    font-size: 20px;
  }
}

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

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

  .tbv-bottom-content .tbv-section-head {
    margin-bottom: 46px;
  }

  .tbv-bottom-content .tbv-section-head h2 {
    font-size: 44px;
  }

  .tbv-bottom-content .tbv-section-head p {
    font-size: 17px;
  }

  .tbv-bottom-content .tbv-grid {
    gap: 24px;
  }

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

  .tbv-bottom-content .tbv-card {
    padding: 30px;
  }

  .tbv-bottom-content .tbv-card h3,
  .tbv-bottom-content .tbv-step-card h3 {
    font-size: 21px;
  }

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

  .tbv-bottom-content .tbv-steps {
    gap: 22px;
  }

  .tbv-bottom-content .tbv-step-card {
    gap: 26px;
    padding: 32px 34px;
  }

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