@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");

.tbv-premium-editorial,
.tbv-premium-editorial * {
  box-sizing: border-box;
}

.tbv-premium-editorial {
  --tbv-ink: #18141f;
  --tbv-muted: #6f6679;
  --tbv-line: rgba(35, 24, 52, 0.11);
  --tbv-bg-warm: #fff7f2;
  --tbv-grad: linear-gradient(135deg, #ff3b70 0%, #fe8a4d 45%, #12c6bd 100%);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--tbv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.tbv-premium-editorial .tbv-section--white {
  background: #fff;
}

.tbv-premium-editorial .tbv-section--warm {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 59, 112, 0.09), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(18, 198, 189, 0.11), transparent 32%),
    var(--tbv-bg-warm);
}

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

.tbv-premium-editorial .tbv-heading-wrap {
  width: min(760px, 100%);
  max-width: 100%;
  margin: 0 auto 38px;
  text-align: center;
}

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

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

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

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

.tbv-premium-editorial .tbv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --tbv-a: #ff3b70;
  --tbv-b: #fe8a4d;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--tbv-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--tbv-a) 16%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow: 0 18px 42px rgba(40, 30, 55, 0.08);
  transform: translateY(26px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
  isolation: isolate;
}

.tbv-premium-editorial .tbv-card:nth-child(1) { --tbv-a: #ff3b70; --tbv-b: #ffb347; }
.tbv-premium-editorial .tbv-card:nth-child(2) { --tbv-a: #12c6bd; --tbv-b: #5d7cff; }
.tbv-premium-editorial .tbv-card:nth-child(3) { --tbv-a: #fe8a4d; --tbv-b: #ff3b70; }
.tbv-premium-editorial .tbv-card:nth-child(4) { --tbv-a: #7c5cff; --tbv-b: #12c6bd; }
.tbv-premium-editorial .tbv-card:nth-child(5) { --tbv-a: #00a88f; --tbv-b: #f9b233; }
.tbv-premium-editorial .tbv-card:nth-child(6) { --tbv-a: #e94f86; --tbv-b: #7c5cff; }
.tbv-premium-editorial .tbv-card:nth-child(7) { --tbv-a: #2678ff; --tbv-b: #12c6bd; }
.tbv-premium-editorial .tbv-card:nth-child(8) { --tbv-a: #f06b42; --tbv-b: #15b79e; }

.tbv-premium-editorial .tbv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tbv-a) 10%, transparent), transparent 48%);
  opacity: 0.35;
  z-index: -1;
  transition: opacity 0.25s ease;
}

.tbv-premium-editorial .tbv-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--tbv-a), var(--tbv-b));
  opacity: 0.55;
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.tbv-premium-editorial .tbv-card.tbv-is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

.tbv-premium-editorial .tbv-card:hover {
  border-color: color-mix(in srgb, var(--tbv-a) 34%, var(--tbv-line));
  box-shadow: 0 26px 58px rgba(40, 30, 55, 0.14);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

.tbv-premium-editorial .tbv-card:hover::before {
  opacity: 0.58;
}

.tbv-premium-editorial .tbv-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.tbv-premium-editorial .tbv-icon {
  width: 54px;
  height: 54px;
  max-width: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--tbv-a);
  background: color-mix(in srgb, var(--tbv-a) 11%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tbv-a) 18%, transparent);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.tbv-premium-editorial .tbv-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

.tbv-premium-editorial .tbv-card:hover .tbv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--tbv-a), var(--tbv-b));
  transform: translateY(-3px) scale(1.04) rotate(-3deg);
}

.tbv-premium-editorial .tbv-card h3 {
  position: relative;
  display: inline;
  margin: 0;
  color: var(--tbv-ink);
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  background-image: linear-gradient(90deg, var(--tbv-a), var(--tbv-b));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.25s ease;
}

.tbv-premium-editorial .tbv-card:hover h3 {
  background-size: 100% 2px;
}

.tbv-premium-editorial .tbv-card p {
  margin: 14px 0 0;
  color: var(--tbv-muted);
  font-size: 0.95rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tbv-premium-editorial .tbv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--tbv-a);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
  opacity: 0.18;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.tbv-premium-editorial .tbv-card--tilt {
  transform-style: preserve-3d;
}

.tbv-premium-editorial .tbv-card--tilt .tbv-icon,
.tbv-premium-editorial .tbv-card--tilt h3,
.tbv-premium-editorial .tbv-card--tilt p {
  transform: translateZ(10px);
}

.tbv-premium-editorial .tbv-card--process {
  min-height: 290px;
}

.tbv-premium-editorial .tbv-card--process::before {
  content: attr(data-step);
  position: absolute;
  top: 10px;
  right: 18px;
  color: color-mix(in srgb, var(--tbv-a) 13%, transparent);
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  z-index: -1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.tbv-premium-editorial .tbv-card--process:hover::before {
  color: color-mix(in srgb, var(--tbv-a) 20%, transparent);
  transform: translateY(-4px) scale(1.04);
}

.tbv-premium-editorial .tbv-step-inline {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--tbv-a);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .tbv-premium-editorial .tbv-container {
    width: min(100%, 1240px);
    padding: 96px 24px;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .tbv-premium-editorial .tbv-container {
    width: min(100%, 1040px);
    padding: 82px 22px;
  }

  .tbv-premium-editorial .tbv-heading-wrap p {
    font-size: 0.99rem;
  }

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

  .tbv-premium-editorial .tbv-card {
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tbv-premium-editorial .tbv-container {
    padding: 68px 20px;
  }

  .tbv-premium-editorial .tbv-heading-wrap {
    margin-bottom: 30px;
  }

  .tbv-premium-editorial .tbv-heading-wrap p {
    font-size: 0.96rem;
  }

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

  .tbv-premium-editorial .tbv-card {
    min-height: 250px;
    padding: 22px;
  }

  .tbv-premium-editorial .tbv-card h3 {
    font-size: 1.02rem;
  }

  .tbv-premium-editorial .tbv-card p {
    font-size: 0.93rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .tbv-premium-editorial .tbv-container {
    padding: 54px 16px;
  }

  .tbv-premium-editorial .tbv-heading-wrap {
    margin-bottom: 24px;
  }

  .tbv-premium-editorial .tbv-heading-wrap p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

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

  .tbv-premium-editorial .tbv-card {
    min-width: 0;
    min-height: auto;
    padding: 21px;
  }

  .tbv-premium-editorial .tbv-cta {
    white-space: normal;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tbv-premium-editorial .tbv-container {
    padding: 46px 14px;
  }

  .tbv-premium-editorial .tbv-heading-wrap {
    margin-bottom: 22px;
  }

  .tbv-premium-editorial .tbv-heading-wrap p {
    font-size: 0.9rem;
  }

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

  .tbv-premium-editorial .tbv-card {
    min-width: 0;
    padding: 19px;
    border-radius: 18px;
  }

  .tbv-premium-editorial .tbv-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .tbv-premium-editorial .tbv-card--process::before {
    font-size: 4.8rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .tbv-premium-editorial .tbv-container {
    padding: 40px 12px;
  }

  .tbv-premium-editorial .tbv-heading-wrap {
    margin-bottom: 20px;
  }

  .tbv-premium-editorial .tbv-heading-wrap p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

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

  .tbv-premium-editorial .tbv-card {
    min-width: 0;
    padding: 17px;
    border-radius: 16px;
  }

  .tbv-premium-editorial .tbv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .tbv-premium-editorial .tbv-icon i {
    font-size: 1.05rem;
  }

  .tbv-premium-editorial .tbv-card h3 {
    font-size: 0.98rem;
  }

  .tbv-premium-editorial .tbv-card p {
    font-size: 0.88rem;
  }

  .tbv-premium-editorial .tbv-card--process::before {
    right: 12px;
    font-size: 4.2rem;
  }
}

@media (max-width: 319px) {
  .tbv-premium-editorial .tbv-container {
    padding: 34px 10px;
  }

  .tbv-premium-editorial .tbv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .tbv-premium-editorial .tbv-card {
    min-width: 0;
    padding: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tbv-premium-editorial .tbv-card,
  .tbv-premium-editorial .tbv-card::before,
  .tbv-premium-editorial .tbv-card::after,
  .tbv-premium-editorial .tbv-icon,
  .tbv-premium-editorial .tbv-cta,
  .tbv-premium-editorial .tbv-card h3 {
    transition: none !important;
    animation: none !important;
  }

  .tbv-premium-editorial .tbv-card,
  .tbv-premium-editorial .tbv-card.tbv-is-visible,
  .tbv-premium-editorial .tbv-card:hover {
    transform: none !important;
  }
}