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

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

.ychv-premium-content {
  --ychv-ink: #1f2933;
  --ychv-muted: #64748b;
  --ychv-line: rgba(177, 92, 55, 0.18);
  --ychv-red: #d93025;
  --ychv-coral: #f9735b;
  --ychv-amber: #f4a340;
  --ychv-rose: #b8325f;
  --ychv-cream: #fff7ed;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ychv-ink);
  background: #fff;
}

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

.ychv-premium-content .ychv-section {
  position: relative;
  overflow: hidden;
}

.ychv-premium-content .ychv-section-intro {
  background: #fff;
}

.ychv-premium-content .ychv-section-benefits {
  background:
    radial-gradient(circle at 12% 12%, rgba(249, 115, 91, 0.14), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(244, 163, 64, 0.16), transparent 30%),
    linear-gradient(180deg, #fff7ed 0%, #fff1e7 100%);
}

.ychv-premium-content .ychv-section-process {
  background: #fff;
}

.ychv-premium-content .ychv-container {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ychv-premium-content .ychv-heading-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

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

.ychv-premium-content h2 span {
  display: inline;
  background: linear-gradient(135deg, var(--ychv-red), var(--ychv-coral) 52%, var(--ychv-amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.ychv-premium-content .ychv-card-grid {
  display: grid;
  padding: 0;
  margin: 0;
}

.ychv-premium-content .ychv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --ychv-accent: #d93025;
  --ychv-accent-2: #f9735b;
  --ychv-soft: rgba(217, 48, 37, 0.09);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 100%;
  border: 1px solid var(--ychv-line);
  border-radius: 22px;
  padding: 26px;
  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.96), rgba(255, 249, 244, 0.9));
  box-shadow: 0 16px 42px rgba(68, 32, 24, 0.08);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--fg-tilt-y)) rotateY(var(--fg-tilt-x)) translateY(18px);
  opacity: 0;
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  will-change: transform;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ychv-premium-content .ychv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 42%), var(--ychv-soft);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.ychv-premium-content .ychv-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--ychv-accent), var(--ychv-accent-2));
  opacity: 0.68;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 260ms ease, opacity 260ms ease;
  pointer-events: none;
}

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

.ychv-premium-content .ychv-card:hover {
  border-color: color-mix(in srgb, var(--ychv-accent) 48%, transparent);
  box-shadow: 0 24px 58px rgba(68, 32, 24, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-y)) rotateY(var(--fg-tilt-x)) translateY(-7px);
}

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

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

.ychv-premium-content .ychv-icon-box {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  border-radius: 16px;
  color: var(--ychv-accent);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), var(--ychv-soft));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 10px 24px rgba(68, 32, 24, 0.08);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

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

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

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

.ychv-premium-content .ychv-card:hover h3 {
  color: #111827;
  background-size: 100% 2px;
}

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

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

.ychv-premium-content .ychv-card:hover .ychv-card-cta {
  opacity: 1;
  transform: translateY(0);
  color: color-mix(in srgb, var(--ychv-accent) 82%, #111827);
}

.ychv-premium-content .ychv-card:nth-child(1) { --ychv-accent: #d93025; --ychv-accent-2: #ff6b4a; --ychv-soft: rgba(217, 48, 37, 0.09); }
.ychv-premium-content .ychv-card:nth-child(2) { --ychv-accent: #b8325f; --ychv-accent-2: #f9738a; --ychv-soft: rgba(184, 50, 95, 0.09); }
.ychv-premium-content .ychv-card:nth-child(3) { --ychv-accent: #c05621; --ychv-accent-2: #f59e0b; --ychv-soft: rgba(192, 86, 33, 0.1); }
.ychv-premium-content .ychv-card:nth-child(4) { --ychv-accent: #8b5cf6; --ychv-accent-2: #ec4899; --ychv-soft: rgba(139, 92, 246, 0.08); }
.ychv-premium-content .ychv-card:nth-child(5) { --ychv-accent: #0f766e; --ychv-accent-2: #14b8a6; --ychv-soft: rgba(15, 118, 110, 0.08); }
.ychv-premium-content .ychv-card:nth-child(6) { --ychv-accent: #2563eb; --ychv-accent-2: #38bdf8; --ychv-soft: rgba(37, 99, 235, 0.08); }
.ychv-premium-content .ychv-card:nth-child(7) { --ychv-accent: #7c3aed; --ychv-accent-2: #f43f5e; --ychv-soft: rgba(124, 58, 237, 0.08); }
.ychv-premium-content .ychv-card:nth-child(8) { --ychv-accent: #be123c; --ychv-accent-2: #fb7185; --ychv-soft: rgba(190, 18, 60, 0.08); }

.ychv-premium-content .ychv-grid-benefits .ychv-card {
  transform-style: preserve-3d;
}

.ychv-premium-content .ychv-grid-benefits .ychv-icon-box,
.ychv-premium-content .ychv-grid-benefits h3,
.ychv-premium-content .ychv-grid-benefits p {
  transform: translateZ(16px);
}

.ychv-premium-content .ychv-process-card {
  padding-top: 34px;
}

.ychv-premium-content .ychv-step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 0;
  color: color-mix(in srgb, var(--ychv-accent) 18%, transparent);
  font-size: 4.4rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 260ms ease, color 260ms ease;
}

.ychv-premium-content .ychv-process-card:hover .ychv-step-number {
  color: color-mix(in srgb, var(--ychv-accent) 28%, transparent);
  transform: translateY(-4px) scale(1.04);
}

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

  .ychv-premium-content .ychv-container {
    max-width: 1240px;
  }

  .ychv-premium-content .ychv-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 46px;
  }
}

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

  .ychv-premium-content .ychv-container {
    max-width: 1040px;
  }

  .ychv-premium-content .ychv-heading-wrap p {
    font-size: 1rem;
  }

  .ychv-premium-content .ychv-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
  }

  .ychv-premium-content .ychv-card {
    padding: 24px;
  }
}

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

  .ychv-premium-content .ychv-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
  }

  .ychv-premium-content .ychv-card {
    padding: 23px;
    border-radius: 20px;
  }

  .ychv-premium-content h3 {
    font-size: 1rem;
  }

  .ychv-premium-content .ychv-card p {
    font-size: 0.93rem;
  }
}

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

  .ychv-premium-content .ychv-heading-wrap p {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .ychv-premium-content .ychv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
    margin-top: 30px;
  }

  .ychv-premium-content .ychv-card {
    padding: 22px;
    border-radius: 18px;
  }

  .ychv-premium-content .ychv-card-cta {
    opacity: 0.8;
    transform: none;
  }
}

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

  .ychv-premium-content .ychv-heading-wrap p {
    font-size: 0.91rem;
    line-height: 1.58;
  }

  .ychv-premium-content .ychv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    margin-top: 26px;
  }

  .ychv-premium-content .ychv-card {
    padding: 19px;
    border-radius: 17px;
  }

  .ychv-premium-content .ychv-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

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

  .ychv-premium-content .ychv-card p,
  .ychv-premium-content .ychv-card-cta {
    font-size: 0.9rem;
  }

  .ychv-premium-content .ychv-step-number {
    font-size: 3.6rem;
    right: 16px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ychv-premium-content .ychv-section {
    padding: 42px 10px;
  }

  .ychv-premium-content .ychv-heading-wrap p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .ychv-premium-content .ychv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 13px;
    margin-top: 22px;
  }

  .ychv-premium-content .ychv-card {
    padding: 16px;
    border-radius: 16px;
  }

  .ychv-premium-content .ychv-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .ychv-premium-content .ychv-icon-box i {
    font-size: 1.02rem;
  }

  .ychv-premium-content h3 {
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .ychv-premium-content .ychv-card p,
  .ychv-premium-content .ychv-card-cta {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .ychv-premium-content .ychv-step-number {
    top: 14px;
    right: 14px;
    font-size: 3.1rem;
  }
}

@media (max-width: 319px) {
  .ychv-premium-content .ychv-section {
    padding: 38px 8px;
  }

  .ychv-premium-content .ychv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 20px;
  }

  .ychv-premium-content .ychv-card {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ychv-premium-content .ychv-card,
  .ychv-premium-content .ychv-card::before,
  .ychv-premium-content .ychv-card::after,
  .ychv-premium-content .ychv-icon-box,
  .ychv-premium-content h3,
  .ychv-premium-content .ychv-card-cta,
  .ychv-premium-content .ychv-step-number {
    transition: none !important;
    animation: none !important;
  }

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