/* =====================================================================
   ProfitBrand AI — JV Page Stylesheet
   VJ Tech Labs © 2025
===================================================================== */

/* =====================================================================
   RESET & BASE
===================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* =====================================================================
   CSS VARIABLES
===================================================================== */
:root {
  --red: #e8292a;
  --orange: #ff6b35;
  --gold: #f5a623;
  --dark: #0f0f0f;
  --mid: #0f172a;
  --green: #16a34a;
  --purple:#7c3aed;
  --grad: linear-gradient(135deg, #e8292a 0%, #ff6b35 100%);
  --grad-dark: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
  --grad-gold: linear-gradient(135deg, #f5a623 0%, #f7931a 100%);
  --grad2: linear-gradient(135deg, #7c3aed, #8c65dd);
}

/* =====================================================================
   UTILITIES
===================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-center {
  text-align: center;
}
.grad-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text {
  color: var(--gold);
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}

/* =====================================================================
   HEADER / WELCOME SECTION
===================================================================== */
.welcome-section {
  background: url(../images/header-bg.png) no-repeat center top;
  background-attachment: scroll;
        background-size: auto;
        background-size: cover;
       

  
  padding: 0 0 60px;
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 41, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.welcome-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* NAV */
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.logo-area-jv {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-area-jv .sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 2px;
}
.header-link {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 20px;
}
.header-link li a {
  color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-block;
}
.header-link li a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
}
.header-link li a.get-link {
  background: var(--grad2);
  color: #fff;
  border: none;
  padding: 8px 18px;
  box-shadow: 0 4px 16px rgba(232, 41, 42, 0.3);
}
.header-link li a.get-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 41, 42, 0.4);
}

/* HERO CONTENT */
.header-bg {
  text-align: center;
  padding: 50px 0 20px;
  position: relative;
  z-index: 1;
}
.pre-heading-jv {
     font-size: clamp(13px, 1.8vw, 20px);
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-family: "inter", sans-serif;
}
.pre-heading-jv strong {
  color: var(--gold);
  font-weight: 700;
}

.hero-jv-h1 {
  font-size: clamp(24px, 4.2vw, 50px);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-jv-h1 .line {
  display: block;
  margin-bottom: 4px;
}
.hero-jv-h1 .hl-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 4px 16px;
  display: inline-block;
  margin: 3px 0;
}
.hero-jv-h1 .grad-t {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-jv-h1 .gold-t {
  color: var(--gold);
}
.hero-jv-h1 .ul-white {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
}
.hero-sub-jv {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 20px;
  font-family: "inter", sans-serif;
}
.contest-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  border: 2px solid rgba(245, 166, 35, 0.4);
  border-radius: 12px;
  padding: 12px 28px;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 800;
  color: var(--gold);
  margin: 10px 0 30px;
}

/* PRODUCT VISUAL */
.product-visual-wrap {
  /* max-width: 700px; */
  margin: 0px auto 0;
}
.product-visual-box {
  /* background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 20px;
  /* padding: 32px; */
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pv-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  min-width: 110px;
  transition: background 0.2s;
}
.pv-tag:hover {
  background: rgba(255, 255, 255, 0.14);
}
.pv-tag .pv-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
}

/* DATES */
.dates-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 40px auto 0;
}
.date-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.date-card.start {
  border-top: 3px solid var(--red);
}
.date-card.end {
  border-top: 3px solid var(--gold);
}
.date-card .dc-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.date-card .dc-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-family: "inter", sans-serif;
}
.date-card.start .dc-label {
  color: rgba(232, 41, 42, 0.8);
}
.date-card.end .dc-label {
  color: rgba(245, 166, 35, 0.8);
}
.date-card .dc-date {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: "inter", sans-serif;
}
.date-card.end .dc-date {
  color: var(--gold);
}
.date-card .dc-time {
     font-size: 18px;
    color: #fff;
    font-family: "inter", sans-serif;
    font-style: italic;
}

/* =====================================================================
   AFFILIATE LINK SECTION
===================================================================== */
.affiliate-section {
  background: #f4f4f4;
  padding: 70px 0;
}
.aff-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
}
.aff-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
  text-align: center;
}
.aff-card h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 20px;
}
.aff-link {
  display: block;
  background: #f9f9f9;
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 13px 20px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  transition: all 0.2s;
  text-align: center;
}
.aff-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff8f8;
}
.aff-link i {
  margin-right: 8px;
  color: var(--red);
}
.aff-btn {
  display: block;
  background: var(--grad2);
  color: #fff;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(232, 41, 42, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 20px;
  text-align: center;
}
.aff-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 41, 42, 0.4);
}
.lp-logo-placeholder {
  /* background: linear-gradient(135deg, #1a1a2e, #2d2d4e); */
  border-radius: 12px;
  padding: 18px;
  margin: 16px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
}

/* =====================================================================
   3 STEPS SECTION
===================================================================== */
.steps-section {
  background: var(--grad-dark);
  padding: 80px 0;
      background: url(../images/ryty.png) no-repeat center top;
    background-attachment: scroll;
    background-size: auto;
    background-size: cover;
}
.steps-title {
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 10px;
}
.steps-sub {
 font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    font-family: "inter", sans-serif;
}
.steps-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.step-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.step-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.step-num-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.step-pill {
  background: var(--grad2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.step-title {
font-size: clamp(15px, 1.8vw, 20px);
    font-weight: 700;
    color: #8655e3;
}

.step-desc {
 font-size: 18px;
    color: #fff;
    line-height: 1.8;
    font-family: "inter", sans-serif;
    font-weight: 300;
    padding-left: 85px;
}

/* =====================================================================
   SECTION ALTERNATES
===================================================================== */
.sec-white {
  background: #fff;
  padding: 80px 0;
}
.sec-light {
  background: #f7f7f7;
  padding: 80px 0;
}
.sec-dark {
  background: var(--dark);
  padding: 80px 0;
}
.sec-darkblue {
  background: #0f172a;
  padding: 80px 0;
}

.sec-badge {
font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color:  var(--purple);
    text-align: center;
    margin-bottom: 10px;
    
}
.sec-h {
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.3;
  color: #0f0f0f;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.sec-h.wh {
  color: #fff;
}
.sec-h .grad-t {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-h .gold-t {
  color: var(--gold);
}
.sec-p {
     font-size: clamp(14px, 1.7vw, 18px);
    color: #000;
    line-height: 1.85;
    font-family: "inter", sans-serif;
    font-weight: 300;
}
.sec-p.wh {
  color: rgba(255, 255, 255, 0.78);
}

/* 2-col story grid */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-grid.rev {
  direction: rtl;
}
.story-grid.rev > * {
  direction: ltr;
}
.story-visual-jv {
  /* background: var(--grad-dark); */
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.story-visual-jv::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(232, 41, 42, 0.06), transparent); */
}
.promo-list {
  margin: 16px 0;
}
.promo-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: #333;
  font-family: "inter", sans-serif;
  line-height: 1.65;
}
.promo-list li.wh {
  color: rgba(255, 255, 255, 0.82);
}
.pl-dot {
  width: 22px;
  height: 22px;
  background: var(--grad2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =====================================================================
   DEMO VIDEO SECTION
===================================================================== */
.demo-section {
  background: var(--grad-dark);
  padding: 80px 0;

      background: url(../images/ryty.png) no-repeat center top;
    background-attachment: scroll;
    background-size: auto;
    background-size: cover;
}
.video-container-jv {
  max-width: 860px;
  margin: 40px auto 0;
  /* background: #000; */
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); */
}
.vid-embed-jv {
  padding: 56.25% 0 0 0;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}
.vid-placeholder-jv {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 14px;
}
.play-btn-jv {
  width: 70px;
  height: 70px;
  background: var(--grad2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.2s;
}
.play-btn-jv:hover {
  transform: scale(1.1);
}

/* =====================================================================
   FUNNEL SECTION
===================================================================== */
.funnel-section {
  background: #0a0a1a;
  padding: 80px 0;
}
.funnel-grid {
  display: flex;
  gap: 14px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
.funnel-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  flex: 1;
  min-width: 120px;
  max-width: 170px;
  position: relative;
  transition: background 0.2s;
}
.funnel-step:hover {
  background: rgba(255, 255, 255, 0.07);
}
.funnel-step::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  font-weight: 300;
}
.funnel-step:last-child::after {
  display: none;
}
.fs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.fs-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.4;
}
.fs-price {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  color: var(--gold);
}
.fs-commission {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.fs-fe {
  border-top: 3px solid var(--red);
}
.fs-oto1 {
  border-top: 3px solid #f5a623;
}
.fs-oto2 {
  border-top: 3px solid #7c3aed;
}
.fs-oto3 {
  border-top: 3px solid #16a34a;
}
.fs-oto4 {
  border-top: 3px solid #0ea5e9;
}
.fs-oto5 {
  border-top: 3px solid #ec4899;
}
.fs-oto6 {
  border-top: 3px solid #64748b;
}
.funnel-aov {
  text-align: center;
  margin-top: 30px;
  background: rgba(245, 166, 35, 0.1);
  border: 2px solid rgba(245, 166, 35, 0.3);
  border-radius: 12px;
  padding: 16px 28px;
  display: inline-block;
}
.funnel-aov .av-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  font-family: "inter", sans-serif;
}
.funnel-aov .av-val {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--gold);
}

/* =====================================================================
   CONTEST / PRIZES
===================================================================== */
.contest-section {
  background: #fff;
  padding: 80px 0;
}
.contest-banner {
  background: var(--grad2);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
  margin-bottom: 50px;
}
.cb-amount {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.cb-label {
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.cb-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-family: "inter", sans-serif;
}
.phase-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #eee;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.phase-label {
  display: inline-block;
  background: var(--grad2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.phase-dates {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pd-item {
  font-size: 15px;
  color: #333;
}
.pd-item strong {
  color: var(--red);
}
.prize-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.prize-table th {
  background: var(--grad-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  text-align: left;
}
.prize-table th:last-child,
.prize-table td:last-child {
  text-align: right;
}
.prize-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}
.prize-table tr:last-child td {
  border-bottom: none;
}
.prize-table tr:nth-child(even) td {
  background: #fafafa;
}
.prize-rank {
  font-weight: 800;
  color: #0f0f0f;
  font-size: 16px;
}
.prize-amount {
  font-weight: 900;
  color: var(--red);
  font-size: 16px;
}
.prize-table tr:first-child .prize-amount {
  color: #f5a623;
  font-size: 20px;
}
.prize-table tr:nth-child(2) .prize-amount {
  color: #888;
  font-size: 18px;
}
.prize-table tr:nth-child(3) .prize-amount {
  color: #cd7f32;
  font-size: 17px;
}
.contest-note {
  background: #fff8f0;
  border: 2px solid rgba(232, 41, 42, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: #555;
  font-family: "inter", sans-serif;
  line-height: 1.7;
  margin-top: 20px;
}
.contest-note strong {
  color: var(--red);
}

/* =====================================================================
   WHY PROMOTE SECTION
===================================================================== */
.why-section {
  background: var(--grad-dark);
  padding: 80px 0;
}
.promote-tick {
  margin-top: 20px;
}
.promote-tick li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "inter", sans-serif;
  line-height: 1.65;
}
.promote-tick li .ptick {
  width: 22px;
  height: 22px;
  background: rgba(232, 41, 42, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =====================================================================
   RECIPROCATE SECTION
===================================================================== */
.reciprocate-section {
  background: #fff;
  padding: 80px 0;
}
.cate-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #eee;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-top: 30px;
}
.track-record-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.tr-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid #eee;
}
.tr-num {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.tr-label {
  font-size: 13px;
  color: #666;
  font-family: "inter", sans-serif;
  font-weight: 400;
}
.leaderboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.lb-card {
  background: var(--grad-dark);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lb-product {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.lb-position {
  display: inline-block;
  background: var(--grad2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.lb-stats {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "inter", sans-serif;
  line-height: 1.7;
}
.lb-stats strong {
  color: var(--gold);
}

/* =====================================================================
   NEED ANYTHING / CONTACT
===================================================================== */
.need-section {
  background: var(--grad-dark);
  padding: 80px 0;

  background: url(../images/header-bg.png) no-repeat center top;
    background-attachment: scroll;
    background-size: auto;
    background-size: cover;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 40px auto 0;
}
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}
.cc-avatar {
    width: 200px;
    height: 200px;
    background: #8c65dd;
    border-radius: 20px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    overflow: hidden;
    padding: 10px;
}

.cc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cc-name {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.cc-role {
font-size: 16px;
    color: #fff;
    font-family: "inter", sans-serif;
    margin-bottom: 20px;
}
.cc-btn {
  display: block;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.2s;
  text-align: center;
}
.cc-btn.skype {
  background: rgba(0, 175, 240, 0.15);
  color: #00aff0;
  border: 1px solid rgba(0, 175, 240, 0.3);
}
.cc-btn.skype:hover {
  background: rgba(0, 175, 240, 0.25);
}
.cc-btn.facebook {
  background: rgba(24, 119, 242, 0.15);
  color: #1877f2;
  border: 1px solid rgba(24, 119, 242, 0.3);
}
.cc-btn.facebook:hover {
  background: rgba(24, 119, 242, 0.25);
}
.cc-btn i {
  margin-right: 8px;
}

/* =====================================================================
   FOOTER
===================================================================== */
.footer-jv {
  background: #080808;
  padding: 50px 20px 30px;
  text-align: center;
  border-top: 1px solid #1e1e1e;
}
.footer-cta-box {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(232, 41, 42, 0.3);
  border-radius: 16px;
  padding: 36px;
  max-width: 700px;
  margin: 0 auto 40px;
}
.footer-cta-box h3 {
  font-size: clamp(16px, 2.5vw, 26px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-cta-box p {
 font-size: 16px;
    color: #fff;
    font-family: "inter", sans-serif;
    margin-bottom: 20px;
}
.footer-aff-btn {
  display: inline-block;
  background: var(--grad2);
  color: #fff;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(232, 41, 42, 0.3);
  transition: transform 0.2s;
}
.footer-aff-btn:hover {
  transform: translateY(-2px);
}
.footer-links-jv {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}
.footer-links-jv a {
  color: #fff;
  font-size: 16px;
  transition: color 0.2s;
}
.footer-links-jv a:hover {
  color: var(--red);
}
.footer-copy {
color: #fff;
    font-size: 16px;
    font-family: "inter", sans-serif;
}

/* =====================================================================
   ANIMATIONS
===================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeInUp 0.6s ease both;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}

/* =====================================================================
   RESPONSIVE
===================================================================== */
@media (max-width: 1024px) {
  .funnel-grid {
    gap: 10px;
  }
  .funnel-step {
    min-width: 100px;
    max-width: 150px;
    padding: 18px 10px;
  }
  .funnel-step::after {
    right: -14px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .story-grid,
  .story-grid.rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .track-record-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sec-white,
  .sec-light,
  .sec-dark,
  .sec-darkblue,
  .affiliate-section,
  .steps-section,
  .demo-section,
  .funnel-section,
  .contest-section,
  .why-section,
  .reciprocate-section,
  .need-section {
    padding: 50px 0;
  }

  .header-wrap {
           flex-direction: column;
        align-items: center;
        gap: 12px;
    }
  
  .header-link {
    gap: 6px;
  }
  .header-link li a {
   font-size: 16px;
    padding: 6px 10px;
  }

  .dates-wrap {
    grid-template-columns: 1fr;
  }

  .aff-cards {
    grid-template-columns: 1fr;
  }

  .steps-card {
    padding: 24px 20px;
  }
  .step-desc {
    padding-left: 0;
  }

  .funnel-grid {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .funnel-step {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
  .funnel-step::after {
    display: none;
  }
  .funnel-step::before {
    content: "↓";
    display: block;
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 4px;
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
  }
  .funnel-step:last-child::before {
    display: none;
  }

  .contest-banner {
    padding: 24px 20px;
  }
  .phase-dates {
    flex-direction: column;
    gap: 8px;
  }

  .cate-card {
    padding: 24px 16px;
  }
  .leaderboard-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-box {
    padding: 24px 20px;
  }

}
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .product-visual-box {
    padding: 20px;
    gap: 10px;
  }
  .pv-tag {
    min-width: 90px;
    font-size: 12px;
    padding: 10px 12px;
  }
  .pv-tag .pv-icon {
    font-size: 18px;
  }
  .prize-table th,
  .prize-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
  .header-link {
    gap: 4px;
    justify-content: center;
    margin-top: 20px;
  }
  .header-link li a {
    font-size: 11px;
    padding: 5px 8px;
  }
  .header-link li a.get-link {
    font-size: 12px;
    padding: 7px 12px;
  }
}

/* Logo styling */
.logo-img {
  height: auto;
  max-height: 50px;
  width: auto;
}

/* Tablet */
@media (max-width: 768px) {
  .logo-img {
    max-height: 40px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logo-area-jv {
    flex-direction: column;
    align-items: center;
  }

  .logo-img {
    max-height: 35px;
  }

  .logo-area-jv .sub {
    font-size: 12px;
  }
}
.story-visual-jv {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}
.story-img {
  width: 100%;
  max-width: 520px;   /* adjust 500–580 if needed */
  height: auto;
  object-fit: contain;   /* 🔥 prevents cropping */
}
    .welcome-section .video_container img {
        border-radius: 0px;
        padding: 20px 20px 20px 20px;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border: 1px solid rgba(68, 136, 247, 0.22);
        overflow: hidden;
        border-radius: 30px 30px 30px 30px;
        background: rgba(55, 194, 241, 0.18);
    }

    @media (min-width: 768px) {
    .welcome-section .video_container img {
        border-radius: 0px;
        padding: 20px 20px 20px 20px;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border: 1px solid rgba(68, 136, 247, 0.22);
        overflow: hidden;
        border-radius: 30px 30px 30px 30px;
        background: rgba(55, 194, 241, 0.18);
    }
}
.cate-card {
    padding: 20px 20px 0 20px;
    text-align: center;
    position: relative;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 1px 33px #00000078;
}

.gradient-color2 {
    /* background-image: linear-gradient(90deg, rgb(11, 61, 255), rgb(10, 175, 240), rgb(11, 61, 255)); */
    background: linear-gradient(90deg, rgb(85, 61, 255) 0%, rgb(55, 196, 241) 23.9%, rgb(200, 130, 240) 47.54%, rgb(107, 179, 255) 69.67%, rgb(241, 105, 244) 100%) padding-box text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reciprocate-card {
    padding: 20px;
    text-align: center;
    position: relative;
    border-radius: 30px;
    /* border: 1px solid #FF00F5; */
    background-color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 1px 33px #00000078;
    /* background-image: linear-gradient(0deg, rgb(0, 0, 0) 5%, rgb(38, 38, 38) 100%); */
}


.price {
    background-image: url(../images/poio.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0 80px 0;
    background-position: center center;
}