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

.ytpvv-premium-wrap,
.ytpvv-premium-wrap * {
  box-sizing: border-box;
}

.ytpvv-premium-wrap {
  --ytpvv-ink: #1d1d27;
  --ytpvv-muted: #686779;
  --ytpvv-line: rgba(196, 88, 70, 0.18);
  --ytpvv-red: #ff3b30;
  --ytpvv-coral: #ff7a59;
  --ytpvv-gold: #f4b860;
  --ytpvv-rose: #f65f7c;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ytpvv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

.ytpvv-premium-wrap section,
.ytpvv-premium-wrap .ytpvv-container,
.ytpvv-premium-wrap .ytpvv-grid {
  max-width: 100%;
}

.ytpvv-section {
  position: relative;
  width: 100%;
  padding: 86px 22px;
  overflow: hidden;
}

.ytpvv-section-white {
  background: #fff;
}

.ytpvv-section-warm {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 122, 89, 0.14), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(244, 184, 96, 0.18), transparent 32%),
    linear-gradient(180deg, #fff8f4 0%, #fff3ec 100%);
}

.ytpvv-container {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.ytpvv-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

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

.ytpvv-heading h2 span {
  background: linear-gradient(105deg, var(--ytpvv-red), var(--ytpvv-coral), var(--ytpvv-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ytpvv-heading p {
  margin: 14px auto 0;
  max-width: 660px;
  color: var(--ytpvv-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.ytpvv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --card-a: #ff3b30;
  --card-b: #ff8a5c;
  --card-c: #fff6f2;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 248px;
  padding: 26px;
  border: 1px solid rgba(31, 31, 42, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--card-a) 18%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), var(--card-c));
  box-shadow: 0 16px 42px rgba(52, 35, 28, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  overflow: hidden;
  transition: transform 360ms ease, opacity 520ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.ytpvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-a) 12%, transparent), transparent 48%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.ytpvv-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--card-a), var(--card-b));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

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

.ytpvv-card:hover {
  border-color: color-mix(in srgb, var(--card-a) 42%, transparent);
  box-shadow: 0 24px 64px rgba(52, 35, 28, 0.15);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.ytpvv-card:hover::before {
  opacity: 1;
}

.ytpvv-card:hover::after {
  transform: scaleX(1);
}

.ytpvv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: var(--card-a);
  background: linear-gradient(145deg, #fff, color-mix(in srgb, var(--card-a) 12%, #fff));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--card-a) 16%, transparent), 0 12px 24px rgba(40, 30, 24, 0.08);
  transition: transform 320ms ease, color 320ms ease, background 320ms ease;
}

.ytpvv-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

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

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

.ytpvv-card:hover h3 {
  background-size: 100% 2px;
}

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

.ytpvv-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--card-a);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0.28;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.ytpvv-step-card {
  min-height: 270px;
}

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

.ytpvv-step-card:hover::before {
  color: color-mix(in srgb, var(--card-a) 20%, transparent);
  transform: translateY(5px) scale(1.06);
}

.ytpvv-step-line {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: var(--card-a);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytpvv-card:nth-child(1) { --card-a: #ff3b30; --card-b: #ff8f70; --card-c: #fff7f4; }
.ytpvv-card:nth-child(2) { --card-a: #e85271; --card-b: #ff9a76; --card-c: #fff5f7; }
.ytpvv-card:nth-child(3) { --card-a: #d85c2f; --card-b: #f4b860; --card-c: #fff8ef; }
.ytpvv-card:nth-child(4) { --card-a: #b64bd8; --card-b: #ff7a59; --card-c: #fff6fb; }
.ytpvv-card:nth-child(5) { --card-a: #0f9f8f; --card-b: #65d6bd; --card-c: #f2fffc; }
.ytpvv-card:nth-child(6) { --card-a: #4879e8; --card-b: #6ec6ff; --card-c: #f4f8ff; }
.ytpvv-card:nth-child(7) { --card-a: #c27714; --card-b: #ffd36b; --card-c: #fff9ec; }
.ytpvv-card:nth-child(8) { --card-a: #6f63e8; --card-b: #ff7a93; --card-c: #f8f6ff; }

@media (min-width: 1200px) {
  .ytpvv-section {
    padding: 92px 28px;
  }

  .ytpvv-container {
    width: min(1240px, 100%);
  }

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

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

  .ytpvv-container {
    width: min(1060px, 100%);
  }

  .ytpvv-heading p {
    font-size: 0.98rem;
  }

  .ytpvv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .ytpvv-card {
    padding: 24px;
  }
}

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

  .ytpvv-heading {
    margin-bottom: 30px;
  }

  .ytpvv-heading p {
    font-size: 0.96rem;
  }

  .ytpvv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .ytpvv-card {
    padding: 22px;
  }

  .ytpvv-card h3 {
    font-size: 1.02rem;
  }

  .ytpvv-card p {
    font-size: 0.92rem;
  }
}

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

  .ytpvv-heading {
    margin-bottom: 26px;
  }

  .ytpvv-heading p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .ytpvv-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .ytpvv-card {
    min-height: auto;
    padding: 22px;
  }

  .ytpvv-cta {
    opacity: 0.72;
    transform: none;
  }
}

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

  .ytpvv-heading {
    margin-bottom: 22px;
  }

  .ytpvv-heading p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

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

  .ytpvv-card {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

  .ytpvv-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .ytpvv-step-card::before {
    font-size: 3.8rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytpvv-section {
    padding: 40px 12px;
  }

  .ytpvv-heading {
    margin-bottom: 20px;
  }

  .ytpvv-heading p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

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

  .ytpvv-card {
    min-height: auto;
    padding: 18px;
    border-radius: 16px;
  }

  .ytpvv-card h3 {
    font-size: 0.98rem;
  }

  .ytpvv-card p {
    font-size: 0.86rem;
  }

  .ytpvv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .ytpvv-icon i {
    font-size: 1.05rem;
  }

  .ytpvv-step-card::before {
    font-size: 3.2rem;
    right: 12px;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .ytpvv-premium-wrap *,
  .ytpvv-premium-wrap *::before,
  .ytpvv-premium-wrap *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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