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

.tprv-content-wrap,
.tprv-content-wrap * {
  box-sizing: border-box;
}

.tprv-content-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #22212a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

.tprv-content-wrap .tprv-section,
.tprv-content-wrap .tprv-container,
.tprv-content-wrap .tprv-grid {
  width: 100%;
  max-width: 100%;
}

.tprv-content-wrap .tprv-section {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}

.tprv-content-wrap .tprv-section-white {
  background: #fff;
}

.tprv-content-wrap .tprv-section-warm {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 112, 88, 0.12), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(124, 92, 255, 0.1), transparent 32%),
    linear-gradient(135deg, #fff7f1 0%, #fffaf6 48%, #f8fbff 100%);
}

.tprv-content-wrap .tprv-container {
  max-width: 1320px;
  margin: 0 auto;
}

.tprv-content-wrap .tprv-section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.tprv-content-wrap .tprv-section-head h2 {
  margin: 0;
  color: #1e1c27;
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tprv-content-wrap .tprv-section-head h2 span {
  color: transparent;
  background: linear-gradient(135deg, #ff654d 0%, #8a5cf6 54%, #1b9aaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.tprv-content-wrap .tprv-section-head p {
  margin: 14px auto 0;
  color: #5d596a;
  font-size: 1.06rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tprv-content-wrap .tprv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.tprv-content-wrap .tprv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --tprv-accent: #ff654d;
  --tprv-accent-2: #8a5cf6;
  --tprv-soft: rgba(255, 101, 77, 0.1);
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 255px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(40, 35, 55, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 247, 0.86));
  box-shadow: 0 18px 46px rgba(38, 31, 52, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tprv-content-wrap .tprv-card:nth-child(2) { --tprv-accent: #8a5cf6; --tprv-accent-2: #1b9aaa; --tprv-soft: rgba(138, 92, 246, 0.11); }
.tprv-content-wrap .tprv-card:nth-child(3) { --tprv-accent: #1b9aaa; --tprv-accent-2: #ffb000; --tprv-soft: rgba(27, 154, 170, 0.11); }
.tprv-content-wrap .tprv-card:nth-child(4) { --tprv-accent: #d94f8c; --tprv-accent-2: #ff654d; --tprv-soft: rgba(217, 79, 140, 0.11); }
.tprv-content-wrap .tprv-card:nth-child(5) { --tprv-accent: #ff8a3d; --tprv-accent-2: #1b9aaa; --tprv-soft: rgba(255, 138, 61, 0.12); }
.tprv-content-wrap .tprv-card:nth-child(6) { --tprv-accent: #2f7df6; --tprv-accent-2: #8a5cf6; --tprv-soft: rgba(47, 125, 246, 0.1); }
.tprv-content-wrap .tprv-card:nth-child(7) { --tprv-accent: #18a66a; --tprv-accent-2: #ffb000; --tprv-soft: rgba(24, 166, 106, 0.11); }
.tprv-content-wrap .tprv-card:nth-child(8) { --tprv-accent: #6c5ce7; --tprv-accent-2: #ff654d; --tprv-soft: rgba(108, 92, 231, 0.11); }

.tprv-content-wrap .tprv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--tprv-soft), transparent 42%),
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--tprv-accent) 20%, transparent), transparent 34%);
  opacity: 0.82;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.tprv-content-wrap .tprv-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tprv-accent), var(--tprv-accent-2));
  transform: scaleX(0.22);
  transform-origin: left;
  opacity: 0.45;
  transition: transform 260ms ease, opacity 260ms ease;
}

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

.tprv-content-wrap .tprv-card:hover {
  border-color: color-mix(in srgb, var(--tprv-accent) 42%, rgba(40, 35, 55, 0.12));
  box-shadow: 0 26px 64px rgba(38, 31, 52, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.tprv-content-wrap .tprv-card:hover::after {
  transform: scaleX(1);
  opacity: 0.95;
}

.tprv-content-wrap .tprv-icon,
.tprv-content-wrap .tprv-card h3,
.tprv-content-wrap .tprv-card p,
.tprv-content-wrap .tprv-cta,
.tprv-content-wrap .tprv-step-line {
  position: relative;
  z-index: 1;
}

.tprv-content-wrap .tprv-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  max-width: 100%;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  color: var(--tprv-accent);
  background: linear-gradient(145deg, #fff, var(--tprv-soft));
  box-shadow: 0 14px 28px rgba(38, 31, 52, 0.08);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

.tprv-content-wrap .tprv-icon i {
  font-size: 1.2rem;
  line-height: 1;
}

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

.tprv-content-wrap .tprv-card h3 {
  display: inline;
  margin: 0;
  color: #24202f;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, var(--tprv-accent), var(--tprv-accent-2));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: background-size 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.tprv-content-wrap .tprv-card p {
  margin: 14px 0 0;
  color: #625d70;
  font-size: 0.96rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tprv-content-wrap .tprv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--tprv-accent);
  font-size: 0.88rem;
  font-weight: 800;
  opacity: 0.2;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.tprv-content-wrap .tprv-grid-tilt .tprv-card {
  transform-style: preserve-3d;
}

.tprv-content-wrap .tprv-grid-tilt .tprv-card .tprv-icon,
.tprv-content-wrap .tprv-grid-tilt .tprv-card h3 {
  transform: translateZ(18px);
}

.tprv-content-wrap .tprv-process-card {
  padding-top: 34px;
}

.tprv-content-wrap .tprv-process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 8px;
  z-index: 0;
  color: color-mix(in srgb, var(--tprv-accent) 16%, transparent);
  font-size: 5.6rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

.tprv-content-wrap .tprv-process-card:hover::before {
  opacity: 0.9;
  transform: translateY(-4px) scale(1.04);
}

.tprv-content-wrap .tprv-step-line {
  margin-bottom: 16px;
  color: var(--tprv-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

@media (min-width: 1200px) {
  .tprv-content-wrap .tprv-section {
    padding: 104px 32px;
  }

  .tprv-content-wrap .tprv-container {
    max-width: 1320px;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .tprv-content-wrap .tprv-section {
    padding: 88px 24px;
  }

  .tprv-content-wrap .tprv-container {
    max-width: 1080px;
  }

  .tprv-content-wrap .tprv-section-head {
    margin-bottom: 38px;
  }

  .tprv-content-wrap .tprv-section-head p {
    font-size: 1rem;
  }

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

  .tprv-content-wrap .tprv-card {
    padding: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tprv-content-wrap .tprv-section {
    padding: 72px 20px;
  }

  .tprv-content-wrap .tprv-section-head {
    margin-bottom: 32px;
  }

  .tprv-content-wrap .tprv-section-head p {
    font-size: 0.98rem;
  }

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

  .tprv-content-wrap .tprv-card {
    padding: 24px;
    min-height: 230px;
  }

  .tprv-content-wrap .tprv-card h3 {
    font-size: 1.02rem;
  }

  .tprv-content-wrap .tprv-card p {
    font-size: 0.93rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .tprv-content-wrap .tprv-section {
    padding: 58px 16px;
  }

  .tprv-content-wrap .tprv-section-head {
    margin-bottom: 28px;
  }

  .tprv-content-wrap .tprv-section-head p {
    font-size: 0.94rem;
  }

  .tprv-content-wrap .tprv-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

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

@media (min-width: 375px) and (max-width: 429px) {
  .tprv-content-wrap .tprv-section {
    padding: 50px 14px;
  }

  .tprv-content-wrap .tprv-section-head {
    margin-bottom: 24px;
  }

  .tprv-content-wrap .tprv-section-head p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .tprv-content-wrap .tprv-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .tprv-content-wrap .tprv-card {
    padding: 20px;
    border-radius: 18px;
  }

  .tprv-content-wrap .tprv-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    margin-bottom: 18px;
  }

  .tprv-content-wrap .tprv-card h3 {
    font-size: 0.98rem;
  }

  .tprv-content-wrap .tprv-card p {
    font-size: 0.9rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .tprv-content-wrap .tprv-section {
    padding: 44px 12px;
  }

  .tprv-content-wrap .tprv-section-head {
    margin-bottom: 22px;
  }

  .tprv-content-wrap .tprv-section-head p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .tprv-content-wrap .tprv-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .tprv-content-wrap .tprv-card {
    padding: 18px;
    border-radius: 16px;
  }

  .tprv-content-wrap .tprv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .tprv-content-wrap .tprv-icon i {
    font-size: 1rem;
  }

  .tprv-content-wrap .tprv-card h3 {
    font-size: 0.95rem;
  }

  .tprv-content-wrap .tprv-card p,
  .tprv-content-wrap .tprv-cta {
    font-size: 0.86rem;
  }

  .tprv-content-wrap .tprv-process-card::before {
    font-size: 4.6rem;
    right: 12px;
  }
}

@media (max-width: 319px) {
  .tprv-content-wrap .tprv-section {
    padding: 40px 10px;
  }

  .tprv-content-wrap .tprv-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .tprv-content-wrap .tprv-card {
    min-width: 0;
    padding: 16px;
  }
}

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

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