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

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

.tpv-premium-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #1f2430;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tpv-premium-content .tpv-section {
  width: 100%;
  max-width: 100%;
  padding: 86px 22px;
  overflow: hidden;
}

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

.tpv-premium-content .tpv-section-warm {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 122, 104, 0.13), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(52, 211, 153, 0.12), transparent 32%),
    linear-gradient(180deg, #fff7f3 0%, #fffaf6 58%, #ffffff 100%);
}

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

.tpv-premium-content .tpv-heading-block {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.tpv-premium-content .tpv-heading-block h2 {
  margin: 0;
  color: #171a22;
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.16;
  font-weight: 820;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tpv-premium-content .tpv-heading-block h2 span {
  display: inline;
  background: linear-gradient(135deg, #ff3d70 0%, #ff8a3d 48%, #13b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tpv-premium-content .tpv-heading-block p {
  margin: 14px auto 0;
  color: #687182;
  font-size: 1.02rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.tpv-premium-content .tpv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --tpv-a: #ff3d70;
  --tpv-b: #ff8a3d;
  --tpv-c: #fff4ed;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 268px;
  padding: 28px;
  border: 1px solid rgba(31, 36, 48, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 0 132px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, var(--tpv-c), #ffffff);
  box-shadow: 0 18px 46px rgba(34, 28, 22, 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: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tpv-premium-content .tpv-card:nth-child(2n) {
  --tpv-a: #13b981;
  --tpv-b: #22c55e;
  --tpv-c: #effdf7;
}

.tpv-premium-content .tpv-card:nth-child(3n) {
  --tpv-a: #7c3aed;
  --tpv-b: #ec4899;
  --tpv-c: #fbf4ff;
}

.tpv-premium-content .tpv-card:nth-child(4n) {
  --tpv-a: #0ea5e9;
  --tpv-b: #06b6d4;
  --tpv-c: #eefaff;
}

.tpv-premium-content .tpv-card:nth-child(5n) {
  --tpv-a: #f59e0b;
  --tpv-b: #ef4444;
  --tpv-c: #fff7e8;
}

.tpv-premium-content .tpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--tpv-a) 18%, transparent), transparent 34%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.tpv-premium-content .tpv-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tpv-a), var(--tpv-b));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

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

.tpv-premium-content .tpv-card:hover {
  border-color: color-mix(in srgb, var(--tpv-a) 34%, rgba(31, 36, 48, 0.14));
  box-shadow: 0 26px 64px rgba(31, 36, 48, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-6px);
}

.tpv-premium-content .tpv-card:hover::before {
  opacity: 1;
}

.tpv-premium-content .tpv-card:hover::after {
  transform: scaleX(1);
}

.tpv-premium-content .tpv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--tpv-a);
  background: linear-gradient(135deg, #ffffff, var(--tpv-c));
  box-shadow: inset 0 0 0 1px rgba(31, 36, 48, 0.08), 0 14px 26px rgba(31, 36, 48, 0.08);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

.tpv-premium-content .tpv-icon i {
  font-size: 1.22rem;
  line-height: 1;
}

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

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

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

.tpv-premium-content .tpv-card p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: #5f6878;
  font-size: 0.95rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tpv-premium-content .tpv-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--tpv-a);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

.tpv-premium-content .tpv-process {
  min-height: 292px;
}

.tpv-premium-content .tpv-process::before {
  content: attr(data-step);
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--tpv-a);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.075;
  transform: scale(1);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.tpv-premium-content .tpv-process:hover::before {
  opacity: 0.13;
  transform: scale(1.08) translateY(-2px);
}

.tpv-premium-content .tpv-step-inline {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 14px;
  color: var(--tpv-a);
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

@media (min-width: 1200px) {
  .tpv-premium-content .tpv-section {
    padding: 92px 30px;
  }

  .tpv-premium-content .tpv-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .tpv-premium-content .tpv-section {
    padding: 78px 24px;
  }

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

  .tpv-premium-content .tpv-heading-block p {
    font-size: 0.98rem;
  }

  .tpv-premium-content .tpv-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px;
  }

  .tpv-premium-content .tpv-card {
    padding: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tpv-premium-content .tpv-section {
    padding: 66px 20px;
  }

  .tpv-premium-content .tpv-heading-block {
    margin-bottom: 30px;
  }

  .tpv-premium-content .tpv-heading-block p {
    font-size: 0.96rem;
  }

  .tpv-premium-content .tpv-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px;
  }

  .tpv-premium-content .tpv-card {
    min-height: 242px;
    padding: 24px;
  }

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

  .tpv-premium-content .tpv-card p {
    font-size: 0.92rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .tpv-premium-content .tpv-section {
    padding: 54px 16px;
  }

  .tpv-premium-content .tpv-heading-block {
    margin-bottom: 26px;
  }

  .tpv-premium-content .tpv-heading-block p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

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

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

  .tpv-premium-content .tpv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tpv-premium-content .tpv-section {
    padding: 46px 14px;
  }

  .tpv-premium-content .tpv-heading-block {
    margin-bottom: 22px;
  }

  .tpv-premium-content .tpv-heading-block p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

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

  .tpv-premium-content .tpv-card {
    min-width: 0;
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

  .tpv-premium-content .tpv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .tpv-premium-content .tpv-icon i {
    font-size: 1.08rem;
  }

  .tpv-premium-content .tpv-card h3 {
    font-size: 0.98rem;
  }

  .tpv-premium-content .tpv-card p {
    font-size: 0.9rem;
  }

  .tpv-premium-content .tpv-process::before {
    font-size: 3.8rem;
  }
}

@media (max-width: 374px) {
  .tpv-premium-content .tpv-section {
    padding: 40px 12px;
  }

  .tpv-premium-content .tpv-heading-block {
    margin-bottom: 20px;
  }

  .tpv-premium-content .tpv-heading-block p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

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

  .tpv-premium-content .tpv-card {
    min-width: 0;
    min-height: auto;
    padding: 18px;
    border-radius: 16px;
  }

  .tpv-premium-content .tpv-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 12px;
  }

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

  .tpv-premium-content .tpv-card h3 {
    font-size: 0.95rem;
  }

  .tpv-premium-content .tpv-card p,
  .tpv-premium-content .tpv-cta {
    font-size: 0.86rem;
  }

  .tpv-premium-content .tpv-process::before {
    top: 14px;
    right: 14px;
    font-size: 3.2rem;
  }
}

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

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