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

.tsv-premium-content,
.tsv-premium-content * {
  box-sizing: border-box;
}

.tsv-premium-content {
  --tsv-ink: #1d1a24;
  --tsv-muted: #6d6677;
  --tsv-line: rgba(31, 22, 45, 0.1);
  --tsv-bg-soft: #fff7f2;
  --tsv-grad: linear-gradient(135deg, #ff3f7f 0%, #ff7a3d 45%, #7c5cff 100%);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--tsv-ink);
}

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

.tsv-premium-content .tsv-section-white {
  background: #fff;
}

.tsv-premium-content .tsv-section-warm {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 63, 127, 0.11), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(124, 92, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #fff9f5 0%, #fff3ec 100%);
}

.tsv-premium-content .tsv-container {
  width: min(1240px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
  padding: 88px 0;
}

.tsv-premium-content .tsv-heading-wrap {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

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

.tsv-premium-content h2 span {
  background: var(--tsv-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.tsv-premium-content .tsv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --tsv-card-a: #ff3f7f;
  --tsv-card-b: #ff7a3d;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 25px;
  min-height: 252px;
  border-radius: 22px;
  border: 1px solid var(--tsv-line);
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--tsv-card-a) 17%, transparent), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78));
  box-shadow: 0 14px 36px rgba(35, 23, 52, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(22px);
  opacity: 0;
  transition: transform 420ms ease, opacity 520ms ease, box-shadow 280ms ease, border-color 280ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tsv-premium-content .tsv-card:nth-child(2) { --tsv-card-a: #7c5cff; --tsv-card-b: #26c6da; }
.tsv-premium-content .tsv-card:nth-child(3) { --tsv-card-a: #ff7a3d; --tsv-card-b: #ffd166; }
.tsv-premium-content .tsv-card:nth-child(4) { --tsv-card-a: #19b37b; --tsv-card-b: #7c5cff; }
.tsv-premium-content .tsv-card:nth-child(5) { --tsv-card-a: #f43f5e; --tsv-card-b: #14b8a6; }
.tsv-premium-content .tsv-card:nth-child(6) { --tsv-card-a: #8b5cf6; --tsv-card-b: #fb7185; }
.tsv-premium-content .tsv-card:nth-child(7) { --tsv-card-a: #0ea5e9; --tsv-card-b: #f97316; }
.tsv-premium-content .tsv-card:nth-child(8) { --tsv-card-a: #22c55e; --tsv-card-b: #e879f9; }

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

.tsv-premium-content .tsv-card:hover {
  border-color: color-mix(in srgb, var(--tsv-card-a) 42%, rgba(31, 22, 45, 0.16));
  box-shadow: 0 22px 54px rgba(35, 23, 52, 0.15);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-6px);
}

.tsv-premium-content .tsv-card-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--tsv-card-a) 12%, transparent), transparent 38%),
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--tsv-card-b) 14%, transparent), transparent 42%);
  opacity: 0.78;
  pointer-events: none;
}

.tsv-premium-content .tsv-icon-box {
  width: 52px;
  height: 52px;
  max-width: 100%;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--tsv-card-a);
  background: color-mix(in srgb, var(--tsv-card-a) 11%, #fff);
  border: 1px solid color-mix(in srgb, var(--tsv-card-a) 18%, transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 280ms ease, color 280ms ease, background 280ms ease;
}

.tsv-premium-content .tsv-icon-box i {
  font-size: 1.28rem;
  line-height: 1;
}

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

.tsv-premium-content h3 {
  position: relative;
  margin: 20px 0 11px;
  color: var(--tsv-ink);
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: 0;
  font-weight: 780;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tsv-premium-content h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 11px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--tsv-card-a), var(--tsv-card-b));
  transition: width 280ms ease;
}

.tsv-premium-content .tsv-card:hover h3::after {
  width: 74px;
}

.tsv-premium-content .tsv-card p {
  margin: 0;
  color: var(--tsv-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tsv-premium-content .tsv-card-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--tsv-card-a);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.35;
  opacity: 0.2;
  transform: translateY(9px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.tsv-premium-content .tsv-tilt-card {
  transform-style: preserve-3d;
}

.tsv-premium-content .tsv-tilt-card .tsv-icon-box,
.tsv-premium-content .tsv-tilt-card h3,
.tsv-premium-content .tsv-tilt-card p {
  transform: translateZ(18px);
}

.tsv-premium-content .tsv-process-card {
  min-height: 272px;
}

.tsv-premium-content .tsv-process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 8px;
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 900;
  color: color-mix(in srgb, var(--tsv-card-a) 10%, transparent);
  transition: transform 280ms ease, color 280ms ease;
  pointer-events: none;
}

.tsv-premium-content .tsv-process-card:hover::before {
  transform: translateY(-4px) scale(1.05);
  color: color-mix(in srgb, var(--tsv-card-a) 17%, transparent);
}

.tsv-premium-content .tsv-step-inline {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 16px;
  color: var(--tsv-card-a);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .tsv-premium-content .tsv-container {
    width: min(1240px, calc(100% - 56px));
    padding: 92px 0;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .tsv-premium-content .tsv-container {
    width: min(1060px, calc(100% - 44px));
    padding: 78px 0;
  }

  .tsv-premium-content .tsv-heading-wrap {
    margin-bottom: 32px;
  }

  .tsv-premium-content .tsv-heading-wrap p {
    font-size: 0.99rem;
  }

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

  .tsv-premium-content .tsv-card {
    padding: 23px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tsv-premium-content .tsv-container {
    width: min(820px, calc(100% - 36px));
    padding: 64px 0;
  }

  .tsv-premium-content .tsv-heading-wrap {
    margin-bottom: 28px;
  }

  .tsv-premium-content .tsv-heading-wrap p {
    font-size: 0.96rem;
  }

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

  .tsv-premium-content .tsv-card {
    padding: 22px;
    min-height: 232px;
  }

  .tsv-premium-content h3 {
    font-size: 1.02rem;
  }

  .tsv-premium-content .tsv-card p {
    font-size: 0.93rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .tsv-premium-content .tsv-container {
    width: calc(100% - 28px);
    padding: 52px 0;
  }

  .tsv-premium-content .tsv-heading-wrap {
    margin-bottom: 24px;
  }

  .tsv-premium-content .tsv-heading-wrap p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

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

  .tsv-premium-content .tsv-card {
    padding: 20px;
    min-height: auto;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tsv-premium-content .tsv-container {
    width: calc(100% - 24px);
    padding: 46px 0;
  }

  .tsv-premium-content .tsv-heading-wrap {
    margin-bottom: 22px;
  }

  .tsv-premium-content .tsv-heading-wrap p {
    font-size: 0.91rem;
  }

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

  .tsv-premium-content .tsv-card {
    padding: 18px;
    border-radius: 18px;
    min-height: auto;
  }

  .tsv-premium-content .tsv-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .tsv-premium-content .tsv-icon-box i {
    font-size: 1.12rem;
  }

  .tsv-premium-content h3 {
    font-size: 1rem;
    margin-top: 17px;
  }

  .tsv-premium-content .tsv-card p {
    font-size: 0.91rem;
  }

  .tsv-premium-content .tsv-process-card::before {
    font-size: 3.6rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .tsv-premium-content .tsv-container {
    width: calc(100% - 20px);
    padding: 40px 0;
  }

  .tsv-premium-content .tsv-heading-wrap {
    margin-bottom: 20px;
  }

  .tsv-premium-content .tsv-heading-wrap p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

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

  .tsv-premium-content .tsv-card {
    padding: 16px;
    border-radius: 16px;
    min-height: auto;
  }

  .tsv-premium-content .tsv-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .tsv-premium-content .tsv-icon-box i {
    font-size: 1rem;
  }

  .tsv-premium-content h3 {
    font-size: 0.96rem;
    margin-top: 15px;
  }

  .tsv-premium-content .tsv-card p,
  .tsv-premium-content .tsv-card-cta {
    font-size: 0.88rem;
  }

  .tsv-premium-content .tsv-process-card::before {
    right: 12px;
    font-size: 3.1rem;
  }

  .tsv-premium-content .tsv-step-inline {
    font-size: 0.7rem;
  }
}

@media (max-width: 319px) {
  .tsv-premium-content .tsv-container {
    width: calc(100% - 18px);
    padding: 36px 0;
  }

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

  .tsv-premium-content .tsv-card {
    padding: 15px;
    min-height: auto;
  }
}

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

  .tsv-premium-content .tsv-card,
  .tsv-premium-content .tsv-card.tsv-visible,
  .tsv-premium-content .tsv-card:hover {
    transform: none !important;
    opacity: 1;
  }
}