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

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

.ttbv-editorial-wrap {
  --ttbv-ink: #17131f;
  --ttbv-muted: #625c6d;
  --ttbv-line: rgba(32, 24, 42, 0.1);
  --ttbv-shadow: 0 18px 55px rgba(26, 18, 38, 0.1);
  --ttbv-shadow-hover: 0 28px 80px rgba(26, 18, 38, 0.17);
  --ttbv-grad: linear-gradient(135deg, #ff2f71 0%, #7c3cff 48%, #12d6df 100%);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  color: var(--ttbv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ttbv-editorial-wrap *,
.ttbv-editorial-wrap *::before,
.ttbv-editorial-wrap *::after {
  box-sizing: border-box;
}

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

.ttbv-editorial-wrap .ttbv-section-intro,
.ttbv-editorial-wrap .ttbv-section-process {
  background: #fff;
}

.ttbv-editorial-wrap .ttbv-section-benefits {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 47, 113, 0.11), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(18, 214, 223, 0.12), transparent 30%),
    linear-gradient(180deg, #fff7f4 0%, #fbf7ff 48%, #f7fcff 100%);
}

.ttbv-editorial-wrap .ttbv-container {
  width: min(100%, 1240px);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.ttbv-editorial-wrap .ttbv-heading-block {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.ttbv-editorial-wrap .ttbv-heading-block h2 {
  margin: 0;
  color: var(--ttbv-ink);
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.15;
  font-weight: 820;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ttbv-editorial-wrap .ttbv-heading-block h2 span {
  background: var(--ttbv-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ttbv-editorial-wrap .ttbv-heading-block p {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--ttbv-muted);
  font-size: 1rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ttbv-editorial-wrap .ttbv-card-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ttbv-editorial-wrap .ttbv-card {
  --fg-mx: 50%;
  --fg-my: 35%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --ttbv-accent: #ff2f71;
  --ttbv-accent-2: #7c3cff;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--ttbv-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--ttbv-accent) 18%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.82));
  box-shadow: var(--ttbv-shadow);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(24px);
  opacity: 0;
  transition: transform 420ms ease, opacity 420ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
  will-change: transform;
}

.ttbv-editorial-wrap .ttbv-card:nth-child(2) { --ttbv-accent: #7c3cff; --ttbv-accent-2: #12d6df; }
.ttbv-editorial-wrap .ttbv-card:nth-child(3) { --ttbv-accent: #12d6df; --ttbv-accent-2: #00a679; }
.ttbv-editorial-wrap .ttbv-card:nth-child(4) { --ttbv-accent: #ff8a3d; --ttbv-accent-2: #ff2f71; }
.ttbv-editorial-wrap .ttbv-card:nth-child(5) { --ttbv-accent: #00a679; --ttbv-accent-2: #12d6df; }
.ttbv-editorial-wrap .ttbv-card:nth-child(6) { --ttbv-accent: #3758ff; --ttbv-accent-2: #7c3cff; }
.ttbv-editorial-wrap .ttbv-card:nth-child(7) { --ttbv-accent: #d62fff; --ttbv-accent-2: #ff2f71; }
.ttbv-editorial-wrap .ttbv-card:nth-child(8) { --ttbv-accent: #f0a400; --ttbv-accent-2: #ff6542; }

.ttbv-editorial-wrap .ttbv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, color-mix(in srgb, var(--ttbv-accent) 12%, transparent), transparent 42%);
  opacity: 0.62;
}

.ttbv-editorial-wrap .ttbv-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ttbv-accent), var(--ttbv-accent-2));
  transform: scaleX(0.24);
  transform-origin: left;
  opacity: 0.55;
  transition: transform 320ms ease, opacity 320ms ease;
}

.ttbv-editorial-wrap .ttbv-card.ttbv-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}

.ttbv-editorial-wrap .ttbv-card:hover {
  border-color: color-mix(in srgb, var(--ttbv-accent) 42%, rgba(32,24,42,0.12));
  box-shadow: var(--ttbv-shadow-hover);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.ttbv-editorial-wrap .ttbv-card:hover::after {
  transform: scaleX(1);
  opacity: 0.95;
}

.ttbv-editorial-wrap .ttbv-icon {
  width: 52px;
  height: 52px;
  max-width: 100%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--ttbv-accent) 12%, #ffffff);
  color: var(--ttbv-accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ttbv-accent) 20%, transparent);
  transition: transform 320ms ease, color 320ms ease, background 320ms ease;
}

.ttbv-editorial-wrap .ttbv-icon i {
  font-size: 1.18rem;
  line-height: 1;
}

.ttbv-editorial-wrap .ttbv-card:hover .ttbv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--ttbv-accent), var(--ttbv-accent-2));
  transform: translateY(-3px) rotate(-3deg) scale(1.04);
}

.ttbv-editorial-wrap .ttbv-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--ttbv-ink);
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 760;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ttbv-editorial-wrap .ttbv-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ttbv-accent), var(--ttbv-accent-2));
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 280ms ease;
}

.ttbv-editorial-wrap .ttbv-card:hover h3::after {
  transform: scaleX(1.5);
}

.ttbv-editorial-wrap .ttbv-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ttbv-muted);
  font-size: 0.94rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ttbv-editorial-wrap .ttbv-cta {
  display: inline-flex;
  max-width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--ttbv-accent);
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 740;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ttbv-editorial-wrap .ttbv-card:hover .ttbv-cta {
  opacity: 1;
  transform: translateY(0);
}

.ttbv-editorial-wrap .ttbv-tilt-card {
  transform-style: preserve-3d;
}

.ttbv-editorial-wrap .ttbv-tilt-card .ttbv-icon,
.ttbv-editorial-wrap .ttbv-tilt-card h3,
.ttbv-editorial-wrap .ttbv-tilt-card p {
  transform: translateZ(16px);
}

.ttbv-editorial-wrap .ttbv-process-card {
  min-height: 268px;
}

.ttbv-editorial-wrap .ttbv-step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  color: color-mix(in srgb, var(--ttbv-accent) 20%, transparent);
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 320ms ease, color 320ms ease;
}

.ttbv-editorial-wrap .ttbv-process-card:hover .ttbv-step-number {
  color: color-mix(in srgb, var(--ttbv-accent) 34%, transparent);
  transform: translateY(-4px) scale(1.05);
}

.ttbv-editorial-wrap .ttbv-section-intro,
.ttbv-editorial-wrap .ttbv-section-benefits,
.ttbv-editorial-wrap .ttbv-section-process {
  padding: 96px 0;
}

@media (min-width: 1200px) {
  .ttbv-editorial-wrap .ttbv-container {
    width: min(100%, 1240px);
    padding: 0 28px;
  }

  .ttbv-editorial-wrap .ttbv-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .ttbv-editorial-wrap .ttbv-container {
    width: min(100%, 1060px);
    padding: 0 24px;
  }

  .ttbv-editorial-wrap .ttbv-section {
    padding: 82px 0;
  }

  .ttbv-editorial-wrap .ttbv-heading-block p {
    font-size: 0.98rem;
  }

  .ttbv-editorial-wrap .ttbv-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .ttbv-editorial-wrap .ttbv-card {
    padding: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ttbv-editorial-wrap .ttbv-container {
    padding: 0 22px;
  }

  .ttbv-editorial-wrap .ttbv-section {
    padding: 70px 0;
  }

  .ttbv-editorial-wrap .ttbv-heading-block {
    margin-bottom: 30px;
  }

  .ttbv-editorial-wrap .ttbv-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

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

  .ttbv-editorial-wrap .ttbv-card h3 {
    font-size: 1.02rem;
  }

  .ttbv-editorial-wrap .ttbv-card p {
    font-size: 0.92rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ttbv-editorial-wrap .ttbv-container {
    padding: 0 18px;
  }

  .ttbv-editorial-wrap .ttbv-section {
    padding: 58px 0;
  }

  .ttbv-editorial-wrap .ttbv-heading-block {
    margin-bottom: 26px;
  }

  .ttbv-editorial-wrap .ttbv-heading-block p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .ttbv-editorial-wrap .ttbv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

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

  .ttbv-editorial-wrap .ttbv-icon {
    width: 48px;
    height: 48px;
  }

  .ttbv-editorial-wrap .ttbv-cta {
    width: 100%;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ttbv-editorial-wrap .ttbv-container {
    padding: 0 15px;
  }

  .ttbv-editorial-wrap .ttbv-section {
    padding: 50px 0;
  }

  .ttbv-editorial-wrap .ttbv-heading-block {
    margin-bottom: 22px;
  }

  .ttbv-editorial-wrap .ttbv-heading-block p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .ttbv-editorial-wrap .ttbv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

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

  .ttbv-editorial-wrap .ttbv-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    margin-bottom: 16px;
  }

  .ttbv-editorial-wrap .ttbv-card h3 {
    font-size: 0.98rem;
  }

  .ttbv-editorial-wrap .ttbv-card p {
    font-size: 0.89rem;
  }

  .ttbv-editorial-wrap .ttbv-step-number {
    font-size: 3.45rem;
    right: 16px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ttbv-editorial-wrap .ttbv-container {
    padding: 0 12px;
  }

  .ttbv-editorial-wrap .ttbv-section {
    padding: 44px 0;
  }

  .ttbv-editorial-wrap .ttbv-heading-block {
    margin-bottom: 20px;
  }

  .ttbv-editorial-wrap .ttbv-heading-block p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .ttbv-editorial-wrap .ttbv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .ttbv-editorial-wrap .ttbv-card {
    padding: 18px;
    border-radius: 16px;
  }

  .ttbv-editorial-wrap .ttbv-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .ttbv-editorial-wrap .ttbv-icon i {
    font-size: 1rem;
  }

  .ttbv-editorial-wrap .ttbv-card h3 {
    font-size: 0.94rem;
  }

  .ttbv-editorial-wrap .ttbv-card p,
  .ttbv-editorial-wrap .ttbv-cta {
    font-size: 0.84rem;
  }

  .ttbv-editorial-wrap .ttbv-step-number {
    font-size: 3rem;
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 319px) {
  .ttbv-editorial-wrap .ttbv-container {
    padding: 0 10px;
  }

  .ttbv-editorial-wrap .ttbv-card-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ttbv-editorial-wrap .ttbv-card,
  .ttbv-editorial-wrap .ttbv-card::after,
  .ttbv-editorial-wrap .ttbv-icon,
  .ttbv-editorial-wrap .ttbv-cta,
  .ttbv-editorial-wrap .ttbv-step-number {
    transition: none !important;
    animation: none !important;
  }

  .ttbv-editorial-wrap .ttbv-card,
  .ttbv-editorial-wrap .ttbv-card.ttbv-visible,
  .ttbv-editorial-wrap .ttbv-card:hover {
    transform: none !important;
    opacity: 1;
  }
}