@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-editorial,
.tsv-premium-editorial * {
  box-sizing: border-box;
}

.tsv-premium-editorial {
  --tsv-ink: #211a2e;
  --tsv-muted: #6d6378;
  --tsv-soft: #fff7f3;
  --tsv-line: rgba(67, 39, 87, 0.12);
  --tsv-shadow: 0 18px 50px rgba(58, 40, 76, 0.1);
  --tsv-shadow-hover: 0 28px 72px rgba(58, 40, 76, 0.18);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--tsv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.tsv-premium-editorial .tsv-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 96px 22px;
}

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

.tsv-premium-editorial .tsv-section-warm {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 120, 92, 0.14), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(104, 78, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #fff9f5 0%, #fff3eb 100%);
}

.tsv-premium-editorial .tsv-container {
  width: min(1320px, 100%);
  max-width: 100%;
  margin: 0 auto;
}

.tsv-premium-editorial .tsv-section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.tsv-premium-editorial .tsv-section-head h2 span {
  background: linear-gradient(135deg, #ff4d6d 0%, #7c4dff 52%, #00b7c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tsv-premium-editorial .tsv-section-head 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-editorial .tsv-card-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tsv-premium-editorial .tsv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --tsv-accent: #ff4d6d;
  --tsv-accent-2: #7c4dff;
  --tsv-card-bg: #ffffff;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--tsv-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--tsv-accent) 18%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.96), var(--tsv-card-bg));
  box-shadow: var(--tsv-shadow);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(22px);
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
  overflow: hidden;
}

.tsv-premium-editorial .tsv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--tsv-accent) 12%, transparent), transparent 46%),
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--tsv-accent-2) 14%, transparent), transparent 36%);
  opacity: 0.75;
  transition: opacity 0.32s ease;
}

.tsv-premium-editorial .tsv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--tsv-accent), var(--tsv-accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s ease;
}

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

.tsv-premium-editorial .tsv-card:hover {
  border-color: color-mix(in srgb, var(--tsv-accent) 42%, var(--tsv-line));
  box-shadow: var(--tsv-shadow-hover);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.tsv-premium-editorial .tsv-card:hover::before {
  opacity: 1;
}

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

.tsv-premium-editorial .tsv-card:nth-child(1) { --tsv-accent: #ff4d6d; --tsv-accent-2: #7c4dff; --tsv-card-bg: #fff7f9; }
.tsv-premium-editorial .tsv-card:nth-child(2) { --tsv-accent: #00b7c7; --tsv-accent-2: #2f80ed; --tsv-card-bg: #f5fdff; }
.tsv-premium-editorial .tsv-card:nth-child(3) { --tsv-accent: #ff8a3d; --tsv-accent-2: #ff4d6d; --tsv-card-bg: #fff8f2; }
.tsv-premium-editorial .tsv-card:nth-child(4) { --tsv-accent: #7c4dff; --tsv-accent-2: #22c55e; --tsv-card-bg: #f8f6ff; }
.tsv-premium-editorial .tsv-card:nth-child(5) { --tsv-accent: #14b8a6; --tsv-accent-2: #f59e0b; --tsv-card-bg: #f4fffc; }
.tsv-premium-editorial .tsv-card:nth-child(6) { --tsv-accent: #ec4899; --tsv-accent-2: #06b6d4; --tsv-card-bg: #fff5fb; }
.tsv-premium-editorial .tsv-card:nth-child(7) { --tsv-accent: #6366f1; --tsv-accent-2: #ff8a3d; --tsv-card-bg: #f7f7ff; }
.tsv-premium-editorial .tsv-card:nth-child(8) { --tsv-accent: #10b981; --tsv-accent-2: #7c4dff; --tsv-card-bg: #f5fff9; }

.tsv-premium-editorial .tsv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--tsv-accent);
  background: color-mix(in srgb, var(--tsv-accent) 12%, #ffffff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tsv-accent) 18%, transparent);
  transition: transform 0.32s ease, color 0.32s ease, background 0.32s ease;
}

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

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

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

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

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

.tsv-premium-editorial .tsv-cta {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--tsv-accent);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease, color 0.28s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tsv-premium-editorial .tsv-card:hover .tsv-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--tsv-accent-2);
}

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

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

.tsv-premium-editorial .tsv-process-card {
  min-height: 270px;
}

.tsv-premium-editorial .tsv-process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 10px;
  z-index: -1;
  font-size: 5.2rem;
  line-height: 1;
  font-weight: 900;
  color: color-mix(in srgb, var(--tsv-accent) 12%, transparent);
  transition: transform 0.32s ease, color 0.32s ease;
  pointer-events: none;
}

.tsv-premium-editorial .tsv-process-card:hover::before {
  transform: translateY(-5px) scale(1.04);
  color: color-mix(in srgb, var(--tsv-accent) 18%, transparent);
}

.tsv-premium-editorial .tsv-step-line {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--tsv-accent);
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .tsv-premium-editorial .tsv-section {
    padding: 104px 28px;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .tsv-premium-editorial .tsv-section {
    padding: 88px 24px;
  }

  .tsv-premium-editorial .tsv-container {
    width: min(1080px, 100%);
  }

  .tsv-premium-editorial .tsv-section-head {
    margin-bottom: 36px;
  }

  .tsv-premium-editorial .tsv-section-head p {
    font-size: 1rem;
  }

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

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

@media (min-width: 768px) and (max-width: 1023px) {
  .tsv-premium-editorial .tsv-section {
    padding: 72px 20px;
  }

  .tsv-premium-editorial .tsv-section-head {
    margin-bottom: 32px;
  }

  .tsv-premium-editorial .tsv-section-head p {
    font-size: 0.98rem;
  }

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

  .tsv-premium-editorial .tsv-card {
    padding: 22px;
    min-height: 230px;
  }

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

  .tsv-premium-editorial .tsv-card p {
    font-size: 0.94rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .tsv-premium-editorial .tsv-section {
    padding: 58px 16px;
  }

  .tsv-premium-editorial .tsv-section-head {
    margin-bottom: 26px;
  }

  .tsv-premium-editorial .tsv-section-head p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

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

  .tsv-premium-editorial .tsv-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: auto;
    padding: 22px;
  }

  .tsv-premium-editorial .tsv-cta {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tsv-premium-editorial .tsv-section {
    padding: 48px 14px;
  }

  .tsv-premium-editorial .tsv-section-head {
    margin-bottom: 22px;
  }

  .tsv-premium-editorial .tsv-section-head p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

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

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

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

  .tsv-premium-editorial .tsv-card h3 {
    font-size: 1rem;
  }

  .tsv-premium-editorial .tsv-card p {
    font-size: 0.92rem;
  }

  .tsv-premium-editorial .tsv-cta {
    opacity: 1;
    transform: none;
  }

  .tsv-premium-editorial .tsv-process-card::before {
    font-size: 4.3rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .tsv-premium-editorial .tsv-section {
    padding: 42px 12px;
  }

  .tsv-premium-editorial .tsv-section-head {
    margin-bottom: 20px;
  }

  .tsv-premium-editorial .tsv-section-head p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

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

  .tsv-premium-editorial .tsv-card {
    padding: 18px;
    min-width: 0;
    max-width: 100%;
    min-height: auto;
    border-radius: 15px;
  }

  .tsv-premium-editorial .tsv-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 14px;
  }

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

  .tsv-premium-editorial .tsv-card h3 {
    font-size: 0.98rem;
    line-height: 1.32;
  }

  .tsv-premium-editorial .tsv-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .tsv-premium-editorial .tsv-cta {
    opacity: 1;
    transform: none;
    font-size: 0.86rem;
  }

  .tsv-premium-editorial .tsv-process-card::before {
    right: 12px;
    top: 8px;
    font-size: 3.7rem;
  }
}

@media (max-width: 319px) {
  .tsv-premium-editorial .tsv-card-grid {
    grid-template-columns: 1fr !important;
  }
}

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

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