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

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

.tfv-premium-editorial {
  --tfv-ink: #1d1720;
  --tfv-muted: #6f6473;
  --tfv-line: rgba(42, 30, 45, 0.12);
  --tfv-panel: rgba(255, 255, 255, 0.86);
  --tfv-grad-a: #ff315b;
  --tfv-grad-b: #19d8d2;
  --tfv-grad-c: #8b5cf6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--tfv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
}

.tfv-premium-editorial .tfv-section,
.tfv-premium-editorial .tfv-container,
.tfv-premium-editorial .tfv-card-grid {
  width: 100%;
  max-width: 100%;
}

.tfv-premium-editorial .tfv-section {
  padding: 92px 24px;
  overflow: hidden;
}

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

.tfv-premium-editorial .tfv-section-warm {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 49, 91, 0.12), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(25, 216, 210, 0.14), transparent 32%),
    linear-gradient(180deg, #fff7f5 0%, #fffaf1 48%, #f8fbff 100%);
}

.tfv-premium-editorial .tfv-container {
  max-width: 1280px;
  margin: 0 auto;
}

.tfv-premium-editorial .tfv-heading-wrap {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.tfv-premium-editorial h2 span {
  background: linear-gradient(115deg, var(--tfv-grad-a), var(--tfv-grad-c) 48%, var(--tfv-grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.tfv-premium-editorial .tfv-card {
  --fg-mx: 50%;
  --fg-my: 30%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --tfv-card-a: #ff315b;
  --tfv-card-b: #ffb35c;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--tfv-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--tfv-card-a) 18%, transparent), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
    linear-gradient(145deg, color-mix(in srgb, var(--tfv-card-a) 10%, #fff), color-mix(in srgb, var(--tfv-card-b) 10%, #fff));
  box-shadow: 0 16px 45px rgba(30, 20, 40, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tfv-premium-editorial .tfv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.82), transparent 28%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.tfv-premium-editorial .tfv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tfv-card-a), var(--tfv-card-b));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

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

.tfv-premium-editorial .tfv-card:hover {
  border-color: color-mix(in srgb, var(--tfv-card-a) 36%, rgba(42, 30, 45, 0.16));
  box-shadow: 0 24px 70px rgba(30, 20, 40, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

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

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

.tfv-premium-editorial .tfv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin-bottom: 22px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--tfv-card-a) 12%, #fff);
  color: var(--tfv-card-a);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tfv-card-a) 16%, transparent);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

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

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

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

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

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

.tfv-premium-editorial .tfv-card-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--tfv-card-a);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.tfv-premium-editorial .tfv-benefit-card {
  transform-style: preserve-3d;
}

.tfv-premium-editorial .tfv-benefit-card .tfv-icon,
.tfv-premium-editorial .tfv-benefit-card h3,
.tfv-premium-editorial .tfv-benefit-card p {
  transform: translateZ(16px);
}

.tfv-premium-editorial .tfv-process-card {
  min-height: 275px;
}

.tfv-premium-editorial .tfv-process-card::before {
  z-index: 0;
}

.tfv-premium-editorial .tfv-process-card::after {
  z-index: 1;
}

.tfv-premium-editorial .tfv-process-card[data-step] {
  padding-top: 30px;
}

.tfv-premium-editorial .tfv-process-card[data-step]::before {
  content: attr(data-step);
  position: absolute;
  top: 12px;
  right: 18px;
  color: color-mix(in srgb, var(--tfv-card-a) 13%, transparent);
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.8;
  transform: translateY(0) scale(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.tfv-premium-editorial .tfv-process-card:hover[data-step]::before {
  opacity: 1;
  transform: translateY(-4px) scale(1.04);
}

.tfv-premium-editorial .tfv-step-text {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--tfv-card-a);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tfv-premium-editorial .tfv-card:nth-child(8n + 1) { --tfv-card-a: #ff315b; --tfv-card-b: #ffb35c; }
.tfv-premium-editorial .tfv-card:nth-child(8n + 2) { --tfv-card-a: #19b8d2; --tfv-card-b: #38e6b8; }
.tfv-premium-editorial .tfv-card:nth-child(8n + 3) { --tfv-card-a: #8b5cf6; --tfv-card-b: #f472b6; }
.tfv-premium-editorial .tfv-card:nth-child(8n + 4) { --tfv-card-a: #f59e0b; --tfv-card-b: #ef4444; }
.tfv-premium-editorial .tfv-card:nth-child(8n + 5) { --tfv-card-a: #10b981; --tfv-card-b: #14b8a6; }
.tfv-premium-editorial .tfv-card:nth-child(8n + 6) { --tfv-card-a: #3b82f6; --tfv-card-b: #a855f7; }
.tfv-premium-editorial .tfv-card:nth-child(8n + 7) { --tfv-card-a: #ec4899; --tfv-card-b: #fb7185; }
.tfv-premium-editorial .tfv-card:nth-child(8n + 8) { --tfv-card-a: #6366f1; --tfv-card-b: #22c55e; }

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

  .tfv-premium-editorial .tfv-container {
    max-width: 1280px;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .tfv-premium-editorial .tfv-section {
    padding: 82px 22px;
  }

  .tfv-premium-editorial .tfv-container {
    max-width: 1060px;
  }

  .tfv-premium-editorial .tfv-heading-wrap p {
    font-size: 0.98rem;
  }

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

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

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

  .tfv-premium-editorial .tfv-heading-wrap {
    margin-bottom: 34px;
  }

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

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

  .tfv-premium-editorial .tfv-card {
    padding: 23px;
    min-height: 238px;
  }

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

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

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

  .tfv-premium-editorial .tfv-heading-wrap {
    margin-bottom: 28px;
  }

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

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

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

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

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

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

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

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

  .tfv-premium-editorial .tfv-card {
    padding: 20px;
    min-height: auto;
  }

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

  .tfv-premium-editorial .tfv-icon i {
    font-size: 1.04rem;
  }

  .tfv-premium-editorial h3 {
    font-size: 0.99rem;
  }

  .tfv-premium-editorial .tfv-card p {
    font-size: 0.9rem;
  }

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

  .tfv-premium-editorial .tfv-process-card[data-step]::before {
    font-size: 4.6rem;
    right: 14px;
  }
}

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

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

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

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

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

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

  .tfv-premium-editorial .tfv-icon i {
    font-size: 0.96rem;
  }

  .tfv-premium-editorial h3 {
    font-size: 0.96rem;
  }

  .tfv-premium-editorial .tfv-card p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .tfv-premium-editorial .tfv-card-cta {
    opacity: 1;
    transform: none;
    font-size: 0.84rem;
  }

  .tfv-premium-editorial .tfv-process-card[data-step]::before {
    font-size: 4rem;
    right: 12px;
  }
}

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

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

  .tfv-premium-editorial .tfv-card {
    opacity: 1;
    transform: none !important;
  }
}