:root {
  --yh-black: #000000;
  --yh-white: #ffffff;
  --yh-blue: #2b7cff;
  --yh-blue-soft: #4b8dff;
  --yh-cyan: #00d4ff;
  --yh-red: #ff2e2e;
  --yh-text-soft: #d6d6d6;
  --yh-focus: 0 0 0 3px rgba(0, 212, 255, .35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.yh-page {
  background: var(--yh-black);
  color: var(--yh-white);
  font-family: Arial, sans-serif;
}

.yh-page a:focus-visible,
.yh-page button:focus-visible,
.yh-page input:focus-visible,
.yh-page textarea:focus-visible {
  outline: none;
  box-shadow: var(--yh-focus);
}

.yh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yh-testimonial-marquee {
  width: 100%;
  overflow: hidden;
  background: #000000;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
  font-family: 'Noto Sans Devanagari', Arial, sans-serif;
}

.yh-testimonial-track {
  display: flex;
  width: max-content;
  animation: yh-scroll-left 25s linear infinite;
}

.yh-testimonial-marquee:hover .yh-testimonial-track {
  animation-play-state: paused;
}

.yh-testimonial-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  margin: 0 15px;
  padding: 12px 25px;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.yh-testimonial-item span {
  color: #e53935;
  font-weight: 800;
}

@keyframes yh-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.yh-hero {
  background: #000;
  color: #fff;
  padding: 40px 5%;
}

.yh-hero-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.yh-hero-left {
  flex: 1.3;
}

.yh-hero-right {
  flex: 1;
}

.yh-hero-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4;
}

.yh-blue {
  color: #00d4ff;
}

.yh-hero-subtitle {
  text-align: center;
  margin-top: 12px;
  font-size: 18px;
  color: #ddd;
}

.yh-video-box {
  margin-top: 30px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1.7204301075268817;
}

.yh-video-box wistia-player {
  display: block;
  width: 100%;
  height: 100%;
}

.yh-video-box wistia-player[media-id='blpshrdg76']:not(:defined) {
  display: block;
  width: 100%;
  height: auto;
  background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/blpshrdg76/swatch');
  filter: blur(5px);
  padding-top: 58.13%;
}

.yh-check {
  margin-bottom: 18px;
  font-size: 20px;
}

.yh-check::before {
  content: "☑ ";
  color: #00d4ff;
}

.yh-timer {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin: 50px 0 10px;
  color: white;
}

.yh-offer {
  text-align: center;
  color: red;
  font-size: 14px;
}

.yh-buy {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 30px auto;
  text-align: center;
  background: #2f7cff;
  padding: 22px;
  font-size: 34px;
  font-weight: 800;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: .3s;
  border: 0;
  cursor: pointer;
}

.yh-buy:hover {
  transform: scale(1.03);
}

.yh-buy[aria-disabled="true"],
.yh-buy.is-loading,
.yh-form-button[disabled] {
  opacity: .68;
  cursor: wait;
  pointer-events: none;
}

.yh-old {
  text-decoration: line-through;
  opacity: .7;
}

.yh-small {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}

.yh-offer-section {
  background: #000;
  padding: 30px 0 70px;
  overflow: hidden;
}

.yh-photo-marquee {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: yh-move 30s linear infinite;
}

.yh-photo-marquee:hover {
  animation-play-state: paused;
}

@keyframes yh-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes yh-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yh-offer-card {
  width: 180px;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #101010;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .55), 0 0 0 1px rgba(43, 124, 255, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.yh-offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05);
  transition: transform .55s ease, filter .35s ease;
}

.yh-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .68), 0 0 26px rgba(43, 124, 255, .32);
}

.yh-offer-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.16) contrast(1.08);
}

.yh-offer-section .yh-timer {
  text-align: center;
  margin-top: 35px;
}

.yh-time {
  font-size: 52px;
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
}

.yh-unit {
  font-size: 11px;
  color: #aaa;
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 3px;
}

.yh-label {
  margin-top: 10px;
  color: #ff2e2e;
  font-size: 13px;
}

.yh-offer-section .yh-buy {
  max-width: 520px;
  background: linear-gradient(90deg, #2b7cff, #4b8dff);
  padding: 18px;
  font-size: 22px;
}

.yh-offer-section .yh-buy:hover {
  transform: scale(1.02);
}

.yh-offer-section .yh-small {
  margin-top: 8px;
  font-size: 12px;
  opacity: .9;
}

.yh-earning {
  background: #000;
  padding: 40px 3%;
}

.yh-heading {
  color: white;
  font-size: 54px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}

.yh-earning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.yh-video {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #101010;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .58), 0 0 0 1px rgba(43, 124, 255, .1);
}

.yh-video img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: .4s;
}

.yh-video:hover img {
  transform: scale(1.045);
  filter: saturate(1.14) contrast(1.08);
}

.yh-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(0, 0, 0, .65);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: white;
}

.yh-review {
  background: #000;
  padding: 50px 2%;
  color: white;
  overflow: hidden;
}

.yh-review-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #fff;
}

.yh-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  width: min(1320px, 92vw);
  margin: 0 auto 54px;
}

.yh-review-card {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
  color: #151923;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .48), 0 0 0 1px rgba(255, 255, 255, .12), 0 0 42px rgba(43, 124, 255, .12);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  animation: yh-fade-up .7s ease both;
}

.yh-review-card img {
  width: 100%;
  aspect-ratio: 1.64;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 12px auto 16px;
  background: #eef1f5;
  box-shadow: inset 0 0 0 1px rgba(14, 22, 35, .08), 0 12px 28px rgba(8, 14, 28, .12);
  filter: saturate(1.05) contrast(1.03);
  transition: transform .55s ease, filter .35s ease;
}

.yh-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 76px rgba(0, 0, 0, .58), 0 0 0 1px rgba(255, 255, 255, .22), 0 0 34px rgba(43, 124, 255, .28);
}

.yh-review-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.12) contrast(1.06);
}

.yh-proof-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.yh-proof-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ff1010;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(255, 16, 16, .25);
}

.yh-proof-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 22px;
  border-radius: 7px;
  background: #ff1010;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.yh-stars {
  color: #ffb000;
  font-size: 19px;
  letter-spacing: 2px;
  margin: 4px 0 12px;
}

.yh-review-card p {
  min-height: 76px;
  margin: 0 0 18px;
  color: #334155;
  font-size: 15px;
  line-height: 1.58;
  font-style: italic;
}

.yh-customer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, .1);
  text-align: left;
}

.yh-avatar {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 999px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .2);
}

.yh-avatar-one {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.yh-avatar-two {
  background: linear-gradient(135deg, #2563eb, #0f172a);
}

.yh-avatar-three {
  background: linear-gradient(135deg, #16a34a, #0f766e);
}

.yh-customer strong,
.yh-customer small {
  display: block;
}

.yh-customer strong {
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.yh-customer small {
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.yh-marquee-wrap {
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: calc(100% + 4vw);
  margin: 30px -2vw 52px;
  padding: 10px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.yh-review-marquee {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: yh-move 34s linear infinite;
}

.yh-review-marquee:hover {
  animation-play-state: paused;
}

.yh-photo {
  width: clamp(150px, 13vw, 210px);
  aspect-ratio: 330 / 520;
  overflow: hidden;
  border-radius: 18px;
  flex-shrink: 0;
  background: #f8fafc;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .54), 0 0 0 1px rgba(255, 255, 255, .12), 0 0 28px rgba(43, 124, 255, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.yh-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05);
  transition: transform .55s ease, filter .35s ease;
}

.yh-photo:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, .68), 0 0 34px rgba(43, 124, 255, .28);
}

.yh-photo:hover img {
  transform: scale(1.06);
  filter: saturate(1.16) contrast(1.08);
}

.yh-review .yh-timer {
  text-align: center;
  font-size: 50px;
  font-weight: 900;
  margin-top: 30px;
}

.yh-review .yh-offer {
  font-size: 12px;
  margin-top: 8px;
}

.yh-review .yh-buy {
  max-width: 420px;
  margin: 20px auto;
  padding: 18px;
  background: #2b7cff;
  font-size: 24px;
}

.yh-review .yh-small {
  font-size: 12px;
  margin-top: 5px;
}

.yh-compare {
  background: #000;
  padding: 50px 4% 70px;
  color: white;
}

.yh-compare-heading {
  text-align: center;
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 50px;
}

.yh-compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.yh-compare-box {
  padding: 40px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, .3);
}

.yh-wrong {
  background: linear-gradient(90deg, #520000, #670000);
}

.yh-rightbox {
  background: linear-gradient(90deg, #003900, #004d00);
}

.yh-box-title {
  font-size: 52px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}

.yh-bad {
  color: #ff4f78;
}

.yh-good {
  color: #7eff9d;
}

.yh-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.yh-item {
  display: flex;
  gap: 15px;
  font-size: 22px;
  line-height: 1.6;
}

.yh-cross {
  color: #ff2222;
  font-size: 28px;
}

.yh-tick {
  color: #00ff44;
  font-size: 28px;
}

.yh-compare .yh-timer {
  text-align: center;
  margin-top: 55px;
}

.yh-clock {
  font-size: 72px;
  font-weight: 900;
}

.yh-units {
  font-size: 14px;
  color: #bbb;
  letter-spacing: 8px;
}

.yh-compare .yh-offer {
  color: #ff3d3d;
  font-size: 16px;
  margin-top: 10px;
}

.yh-compare .yh-buy {
  max-width: 820px;
  margin: 35px auto;
  background: linear-gradient(90deg, #357dff, #4d93ff);
  padding: 30px;
  border-radius: 12px;
  font-size: 34px;
  font-weight: 900;
}

.yh-compare .yh-small {
  margin-top: 10px;
  font-size: 16px;
}

.yh-faq {
  background: #000;
  padding: 60px 8%;
}

.yh-faq-item {
  background: #173055;
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.yh-faq-question {
  width: 100%;
  padding: 26px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 26px;
  font-weight: 700;
  color: white;
  background: transparent;
  border: 0;
  font-family: inherit;
}

.yh-icon {
  font-size: 22px;
  transition: .3s;
}

.yh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: .4s;
  padding: 0 32px;
  color: #e3e7f0;
  font-size: 20px;
  line-height: 1.7;
}

.yh-faq-item.active .yh-faq-answer {
  max-height: 260px;
  padding: 0 32px 28px;
}

.yh-faq-item.active .yh-icon {
  transform: rotate(180deg);
}

.yh-footer {
  background: #000;
  color: white;
  padding: 70px 8% 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.yh-footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 70px;
}

.yh-brand {
  display: flex;
  flex-direction: column;
}

.yh-logo {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 18px;
  color: white;
  text-decoration: none;
}

.yh-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #c8c8c8;
}

.yh-footer-heading {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
}

.yh-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yh-links a {
  color: #d6d6d6;
  text-decoration: none;
  font-size: 18px;
  transition: .3s;
}

.yh-links a:hover {
  color: #4e8fff;
  padding-left: 5px;
}

.yh-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.yh-contact-list div,
.yh-contact-list a {
  font-size: 18px;
  color: #d6d6d6;
  text-decoration: none;
}

.yh-copyright {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.yh-copy {
  font-size: 16px;
  color: #999;
}

.yh-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.yh-bottom-links a {
  color: #999;
  text-decoration: none;
}

.yh-bottom-links a:hover {
  color: white;
}

.yh-content {
  background: #000;
  color: #fff;
  padding: 58px 8% 70px;
}

.yh-content-inner {
  max-width: 980px;
  margin: 0 auto;
}

.yh-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.yh-content h2 {
  font-size: 28px;
  margin: 34px 0 12px;
}

.yh-content p,
.yh-content li {
  color: #d6d6d6;
  font-size: 18px;
  line-height: 1.8;
}

.yh-content ul {
  padding-left: 24px;
}

.yh-form {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.yh-form-row {
  display: grid;
  gap: 8px;
}

.yh-form label {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.yh-form input,
.yh-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #090909;
  color: #fff;
  border-radius: 8px;
  padding: 15px 16px;
  font-size: 16px;
  font-family: inherit;
}

.yh-form textarea {
  min-height: 130px;
  resize: vertical;
}

.yh-form-error {
  min-height: 18px;
  color: #ff4f78;
  font-size: 14px;
}

.yh-form-success {
  display: none;
  padding: 16px;
  border-radius: 8px;
  background: #003900;
  color: #e8ffed;
  font-size: 16px;
}

.yh-form.is-success .yh-form-success {
  display: block;
}

.yh-form-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 180px;
  background: #2f7cff;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s;
}

.yh-form-button:hover {
  transform: scale(1.02);
}

.yh-checkout-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.yh-checkout-summary {
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 14px;
  padding: 34px;
  background: linear-gradient(90deg, #003900, #004d00);
}

.yh-price {
  margin: 24px 0;
  font-size: 42px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .yh-hero-container,
  .yh-checkout-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .yh-hero-title {
    font-size: 28px;
  }

  .yh-video-box {
    height: auto;
  }

  .yh-buy {
    font-size: 24px;
  }

  .yh-timer {
    font-size: 36px;
  }

  .yh-offer-card {
    width: 120px;
    height: 150px;
  }

  .yh-time {
    font-size: 34px;
  }

  .yh-offer-section .yh-buy {
    font-size: 18px;
    width: 90%;
  }

  .yh-heading {
    font-size: 32px;
  }

  .yh-earning-grid,
  .yh-compare-wrap {
    grid-template-columns: 1fr;
  }

  .yh-play {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .yh-review-title {
    font-size: 28px;
  }

  .yh-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(760px, 92vw);
    gap: 22px;
  }

  .yh-review-card {
    padding: 18px;
    border-radius: 18px;
  }

  .yh-review-card p {
    min-height: 0;
    font-size: 14px;
  }

  .yh-photo {
    width: 150px;
  }

  .yh-review .yh-timer {
    font-size: 32px;
  }

  .yh-compare-heading {
    font-size: 38px;
  }

  .yh-box-title {
    font-size: 34px;
  }

  .yh-item {
    font-size: 18px;
  }

  .yh-clock {
    font-size: 44px;
  }

  .yh-compare .yh-buy {
    font-size: 22px;
  }

  .yh-faq {
    padding: 30px 5%;
  }

  .yh-faq-question {
    font-size: 18px;
    padding: 18px;
  }

  .yh-faq-answer {
    font-size: 16px;
  }

  .yh-footer-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .yh-logo {
    font-size: 30px;
  }

  .yh-footer-heading {
    font-size: 22px;
  }

  .yh-desc {
    font-size: 16px;
  }

  .yh-copyright {
    flex-direction: column;
    text-align: center;
  }

  .yh-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .yh-review {
    padding-inline: 0;
  }

  .yh-review-grid {
    grid-template-columns: 1fr;
    width: min(420px, 90vw);
    margin-bottom: 38px;
  }

  .yh-review-card {
    padding: 16px;
  }

  .yh-stars {
    font-size: 17px;
  }

  .yh-marquee-wrap {
    margin-block: 22px 40px;
  }

  .yh-photo {
    width: 142px;
    border-radius: 16px;
  }
}
