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

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

.yev-premium-content {
  --yev-ink: #221812;
  --yev-muted: #74665d;
  --yev-soft: #fff7ef;
  --yev-line: rgba(126, 78, 48, 0.16);
  --yev-red: #ff0033;
  --yev-coral: #ff6a3d;
  --yev-gold: #f4aa3a;
  --yev-shadow: 0 18px 50px rgba(64, 36, 20, 0.1);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--yev-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

.yev-premium-content .yev-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

.yev-premium-content .yev-section-warm {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 0, 51, 0.08), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(244, 170, 58, 0.14), transparent 34%),
    linear-gradient(180deg, #fff8f1 0%, #fff3e7 100%);
}

.yev-premium-content .yev-container {
  width: min(1240px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
}

.yev-premium-content .yev-heading-wrap {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

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

.yev-premium-content .yev-heading-wrap h2 span {
  background: linear-gradient(110deg, var(--yev-red), var(--yev-coral) 48%, var(--yev-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.yev-premium-content .yev-card {
  --fg-mx: 50%;
  --fg-my: 0%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --yev-card-a: #ff0033;
  --yev-card-b: #ff8a45;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 248px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(126, 78, 48, 0.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 240, 0.92));
  box-shadow: var(--yev-shadow);
  transform: translateY(22px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  opacity: 0;
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 520ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  transform-style: preserve-3d;
  isolation: isolate;
}

.yev-premium-content .yev-card:nth-child(1) { --yev-card-a: #ff0033; --yev-card-b: #ff7a45; }
.yev-premium-content .yev-card:nth-child(2) { --yev-card-a: #e03a16; --yev-card-b: #f4aa3a; }
.yev-premium-content .yev-card:nth-child(3) { --yev-card-a: #b83dff; --yev-card-b: #ff5570; }
.yev-premium-content .yev-card:nth-child(4) { --yev-card-a: #0f9b8e; --yev-card-b: #ffb84d; }
.yev-premium-content .yev-card:nth-child(5) { --yev-card-a: #3157d5; --yev-card-b: #ff6a3d; }
.yev-premium-content .yev-card:nth-child(6) { --yev-card-a: #c05a00; --yev-card-b: #ffcf5a; }
.yev-premium-content .yev-card:nth-child(7) { --yev-card-a: #d4145a; --yev-card-b: #fbb03b; }
.yev-premium-content .yev-card:nth-child(8) { --yev-card-a: #5b45d9; --yev-card-b: #ff4f64; }

.yev-premium-content .yev-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--yev-card-a) 18%, transparent), transparent 36%),
    linear-gradient(135deg, color-mix(in srgb, var(--yev-card-a) 10%, transparent), color-mix(in srgb, var(--yev-card-b) 10%, transparent));
  opacity: 0;
  transition: opacity 260ms ease;
  z-index: -1;
}

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

.yev-premium-content .yev-card:hover {
  border-color: color-mix(in srgb, var(--yev-card-a) 42%, rgba(126, 78, 48, 0.18));
  box-shadow: 0 26px 70px rgba(69, 37, 18, 0.18);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

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

.yev-premium-content .yev-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--yev-card-a);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), color-mix(in srgb, var(--yev-card-b) 18%, #fff));
  border: 1px solid color-mix(in srgb, var(--yev-card-a) 18%, transparent);
  box-shadow: 0 12px 26px rgba(60, 33, 16, 0.1);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

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

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

.yev-premium-content .yev-card h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 12px;
  color: var(--yev-ink);
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 780;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.yev-premium-content .yev-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--yev-card-a), var(--yev-card-b));
  transition: width 260ms ease;
}

.yev-premium-content .yev-card:hover h3::after {
  width: 76px;
}

.yev-premium-content .yev-card p {
  margin: 0;
  color: var(--yev-muted);
  font-size: 0.95rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.yev-premium-content .yev-card-cta-text {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  color: var(--yev-card-a);
  font-size: 0.9rem;
  font-weight: 760;
  opacity: 0.42;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.yev-premium-content .yev-tilt-card {
  perspective: 900px;
}

.yev-premium-content .yev-process-card {
  min-height: 270px;
}

.yev-premium-content .yev-process-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: color-mix(in srgb, var(--yev-card-a) 14%, transparent);
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 260ms ease, color 260ms ease;
}

.yev-premium-content .yev-step-number {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 16px;
  color: var(--yev-card-a);
  font-size: 0.88rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: transform 260ms ease, color 260ms ease;
}

.yev-premium-content .yev-process-card:hover .yev-step-number {
  color: var(--yev-card-b);
  transform: translateX(4px);
}

.yev-premium-content .yev-process-card:hover::after {
  color: color-mix(in srgb, var(--yev-card-b) 22%, transparent);
  transform: translateY(-8px) scale(1.03);
}

@media (min-width: 1200px) {
  .yev-premium-content .yev-section {
    padding: 86px 0;
  }

  .yev-premium-content .yev-container {
    width: min(1240px, calc(100% - 64px));
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .yev-premium-content .yev-section {
    padding: 74px 0;
  }

  .yev-premium-content .yev-container {
    width: min(1060px, calc(100% - 48px));
  }

  .yev-premium-content .yev-heading-wrap {
    margin-bottom: 32px;
  }

  .yev-premium-content .yev-heading-wrap p {
    font-size: 0.98rem;
  }

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

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

@media (min-width: 768px) and (max-width: 1023px) {
  .yev-premium-content .yev-section {
    padding: 62px 0;
  }

  .yev-premium-content .yev-container {
    width: min(860px, calc(100% - 40px));
  }

  .yev-premium-content .yev-heading-wrap {
    margin-bottom: 28px;
  }

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

  .yev-premium-content .yev-card {
    padding: 22px;
    min-height: 230px;
  }

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

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

@media (min-width: 430px) and (max-width: 767px) {
  .yev-premium-content .yev-section {
    padding: 52px 0;
  }

  .yev-premium-content .yev-container {
    width: calc(100% - 32px);
  }

  .yev-premium-content .yev-heading-wrap {
    margin-bottom: 24px;
  }

  .yev-premium-content .yev-heading-wrap p {
    font-size: 0.94rem;
  }

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

  .yev-premium-content .yev-card {
    padding: 21px;
    min-height: auto;
  }

  .yev-premium-content .yev-card-cta-text {
    width: 100%;
  }
}

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

  .yev-premium-content .yev-container {
    width: calc(100% - 28px);
  }

  .yev-premium-content .yev-heading-wrap {
    margin-bottom: 22px;
  }

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

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

  .yev-premium-content .yev-card {
    padding: 19px;
    border-radius: 16px;
    min-height: auto;
  }

  .yev-premium-content .yev-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

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

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

  .yev-premium-content .yev-process-card::after {
    font-size: 4.4rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .yev-premium-content .yev-section {
    padding: 40px 0;
  }

  .yev-premium-content .yev-container {
    width: calc(100% - 22px);
  }

  .yev-premium-content .yev-heading-wrap {
    margin-bottom: 20px;
  }

  .yev-premium-content .yev-heading-wrap p {
    font-size: 0.86rem;
    line-height: 1.56;
  }

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

  .yev-premium-content .yev-card {
    padding: 16px;
    border-radius: 15px;
    min-height: auto;
  }

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

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

  .yev-premium-content .yev-card h3 {
    font-size: 0.94rem;
  }

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

  .yev-premium-content .yev-process-card::after {
    right: 10px;
    bottom: -10px;
    font-size: 3.8rem;
  }
}

@media (max-width: 319px) {
  .yev-premium-content .yev-container {
    width: calc(100% - 18px);
  }

  .yev-premium-content .yev-card-grid {
    grid-template-columns: 1fr !important;
  }
}

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

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