:root {
  --bg: #0b0d10;
  --card-bg: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --muted: #a1a1aa;

  --pink: #ff5ea8;
  --blue: #4da3ff;
  --green: #2dffb3;
  --purple: #9b6bff;

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

body {
  color: #eaeaea;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.product-page {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* HERO */
.hero {
    margin-top: 10vh;
  display: flex;
  gap: 40px;
  background: linear-gradient(180deg, #39393961, #0b0b0b);
  border-radius: 14px;
  padding: 40px;
}

.hero-left {
  flex: 2;
}

.hero-right {
  flex: 1;
}

/* BADGES */
.badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.badge {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 10px;
  background: #222;
  color: #ccc;
}

.badge.premium {
  background: #4b1b1b;
  color: #ff9a9a;
}

.badge.best {
  background: #3a2a10;
  color: #ffd27a;
}

/* TEXT */
h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.subtitle {
  color: #aaa;
  max-width: 520px;
}

.meta {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  color: #bbb;
}

/* PRICE CARD */
.price-card {
  background: #111;
  border: 1px solid #222;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
}

.pay-label {
  font-size: 12px;
  color: #888;
}

.price-card h2 {
  font-size: 36px;
  margin: 16px 0;
}

.cta-btn {
  width: 100%;
  padding: 14px;
  background: #ff8103;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 12px;
}

.cta-btn:hover {
  background: #a869253e;
}

.ghost-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #333;
  color: #ccc;
  border-radius: 10px;
  cursor: pointer;
}

.guarantee {
  font-size: 12px;
  color: #777;
  margin-top: 12px;
}

/* SECTIONS */
.section {
  margin-top: 50px;
}

.section h3 {
  margin-bottom: 10px;
}

.section p {
  color: #aaa;
  max-width: 800px;
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 24px;
}

.card h4 {
  margin-bottom: 12px;
}

.card ul {
  list-style: none;
  color: #bbb;
}

.card ul.green li {
  color: #6dff9c;
}

/* FIT SECTION */
.fit-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.fit-card {
  padding: 24px;
  border-radius: 12px;
}

.fit-card.good {
  background: #0f1f16;
  border: 1px solid #1f3f2a;
}

.fit-card.bad {
  background: #1f0f0f;
  border: 1px solid #3f1f1f;
}

.fit-card ul {
  margin-top: 10px;
  color: #ccc;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  h1 {
    font-size: 32px;
  }

  .subtitle {
    max-width: 100%;
    font-size: 14px;
  }

  .meta {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
  }

  .price-card {
    padding: 24px;
  }

  .price-card h2 {
    font-size: 28px;
  }

  .cta-btn,
  .ghost-btn {
    font-size: 14px;
    padding: 12px;
  }
}

/* ========================= */
/* 📱 SMALL MOBILE (<=576px) */
/* ========================= */

@media (max-width: 576px) {

  .product-page {
    padding: 20px 15px;
  }

  .hero {
    margin-top: 5vh;
    padding: 20px 15px;
  }

  h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .badges {
    flex-wrap: wrap;
  }

  .badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .subtitle {
    font-size: 13px;
  }

  .meta {
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .price-card {
    padding: 20px;
  }

  .price-card h2 {
    font-size: 24px;
  }

  .cta-btn {
    padding: 12px;
  }

  .ghost-btn {
    padding: 10px;
  }

  .guarantee {
    font-size: 11px;
  }
}


/* course details  */
:root {
  --bg: #0b0b0b;
  --card: #111;
  --border: #222;
  --text: #f1f1f1;
  --muted: #9a9a9a;

  --neon-yellow: #f2dc8c;
  --neon-glow: rgba(255, 216, 77, 0.35);
}

.syllabus-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.syllabus-title {
  font-size: 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-icon {
  color: var(--neon-yellow);
  text-shadow: 0 0 10px var(--neon-glow);
}

.syllabus-item {
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #121212, #0e0e0e);
}

.syllabus-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  align-items: center;
  color: var(--text);
  cursor: pointer;
}

.module-no {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: var(--neon-yellow);
  font-size: 13px;
}

.module-title {
  font-size: 15px;
}

.arrow {
  justify-self: end;
  transition: transform 0.3s ease;
  color: #aaa;
}

/* CONTENT */
.syllabus-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.syllabus-content p {
  padding-bottom: 18px;
  font-size: 14px;
}

/* ACTIVE STATE */
.syllabus-item.active {
  border-color: var(--neon-yellow);
  box-shadow: 0 0 20px rgba(255, 216, 77, 0.08);
}

.syllabus-item.active .arrow {
  transform: rotate(180deg);
  color: var(--neon-yellow);
}

.syllabus-item.active .syllabus-content {
  max-height: 160px;
  padding-top: 10px;
}
/* brand logo  */
.brands {
  padding: 4rem 2rem;
  text-align: center;
}

.brands-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.brand-logo {
  height: 35px;
  opacity: 0.55;
  filter: grayscale(100%) brightness(0.9);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.brand-logo:hover {
  opacity: 0.9;
  filter: grayscale(0%) brightness(1);
}

@media (max-width: 768px) {
  .brands-row {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .brand-logo {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
}
/* bug bounty  */
 .program-section {
  padding: 100px 40px;
  background: radial-gradient(circle , #1a160857, #0b0d10);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,200,80,0.12);
  color: #ffd36a;
  font-size: 13px;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  margin-bottom: 14px;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #cfcfcf;
  font-size: 16px;
}

.grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: linear-gradient(180deg, #141108, #040a05);
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  box-shadow:
    0 0 0 1px rgba(255,215,120,0.12),
    0 30px 80px rgba(0,0,0,0.8);
}

.card-large {
  grid-column: span 2;
}

.small {
  font-size: 14px;
}

.dashed {
  border: 1px dashed rgba(255,215,120,0.25);
  background: transparent;
}

.icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.card h3, .card h4 {
  margin-bottom: 10px;
}

.card p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.6;
}

.card ul {
  margin: 18px 0;
  padding-left: 0;
  list-style: none;
}

.card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #d9d9d9;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chips span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,215,120,0.12);
  color: #ffd36a;
  border: 1px solid rgba(255,215,120,0.25);
}

.ctab {
  margin-top: 60px;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  color: #000;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.card {
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
  position: relative;
}

/* lift + glow */
.card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(255,215,120,0.25),
    0 40px 120px rgba(0,0,0,0.9);
}

/* soft inner glow */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255,215,120,0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}
.ctab {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.ctab:hover {
  transform: translateY(-3px);
  /* box-shadow:
    0 10px 50px rgba(255, 255, 255, 0.5);
  filter: brightness(1.05); */
}

.ctab:active {
  transform: translateY(0);
}

/* job  */
.career-section {
  padding: 110px 40px;
  background: radial-gradient(circle , #1a160857, #0b0d10);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,200,80,0.12);
  color: #ffd36a;
  font-size: 13px;
  margin-bottom: 24px;
}

h1 {
  font-size: 46px;
  margin-bottom: 14px;
}

.subtitle {
  max-width: 760px;
  margin: 0 auto 60px;
  color: #cfcfcf;
  font-size: 16px;
}

/* GRID */
.grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.card {
  background: linear-gradient(180deg, #141108, #0a0904);
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  box-shadow:
    0 0 0 1px rgba(255,215,120,0.12),
    0 30px 80px rgba(0,0,0,0.85);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(255,215,120,0.28),
    0 45px 110px rgba(0,0,0,0.95);
}

.card-large {
  grid-column: span 2;
}

.small {
  font-size: 14px;
}

.dashed {
  border: 1px dashed rgba(255,215,120,0.25);
  background: transparent;
}

.icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.card h3, .card h4 {
  margin-bottom: 10px;
}

.card p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.6;
}

/* LIST */
.card ul {
  margin: 18px 0;
  padding-left: 0;
  list-style: none;
}

.card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #d9d9d9;
}

/* CHIPS */
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chips span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,215,120,0.12);
  color: #ffd36a;
  border: 1px solid rgba(255,215,120,0.25);
}


/* LEGAL TEXT */
.legal {
  max-width: 820px;
  margin: 30px auto 0;
  font-size: 12px;
  color: #9a9a9a;
  line-height: 1.6;
}


/* cta section  */
.cta-section {
  padding: 140px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Inter, system-ui, sans-serif;
}

.cta-box {
  max-width: 880px;
  width: 100%;
  padding: 60px 60px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(180deg, #141108, #0a0904);
  box-shadow:
    0 0 0 1px rgba(255,215,120,0.18),
    0 40px 120px rgba(0,0,0,0.9);
  position: relative;
}

/* subtle corner markers */
.cta-box::before,
.cta-box::after {
  content: "+";
  position: absolute;
  color: rgba(255,215,120,0.4);
  font-size: 20px;
}

.cta-box::before {
  top: -12px;
  left: -12px;
}

.cta-box::after {
  bottom: -12px;
  right: -12px;
}

.cta-box h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.cta-box p {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-secondary {
  padding: 14px 26px;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,215,120,0.35);
  font-size: 14px;
  cursor: pointer;
  transition:
    transform .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.btn-secondary:hover {
  background: rgba(255,215,120,0.12);
  transform: translateY(-2px);
}

.btn-primary {
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #ffcc55, #ffb700);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .cta-box {
    padding: 40px 28px;
  }

  .cta-box h2 {
    font-size: 26px;
  }
}



/* ===============================
   CALLBACK POPUP – ISOLATED CSS
   =============================== */

.callback-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.callback-popup.active {
  display: flex;
}

/* Modal */
.callback-modal {
  width: 340px;
  background: radial-gradient(circle at top, #111, #000);
  border: 1px solid #222;
  border-radius: 18px;
  padding: 28px 24px;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  position: relative;
  animation: callbackIn 0.35s ease;
}

/* Animation */
@keyframes callbackIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Close */
.callback-close {
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
}

.callback-close:hover {
  opacity: 1;
}

/* Headings */
.callback-modal h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.callback-sub {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 18px;
}

/* Inputs */
.callback-modal input,
.callback-modal textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
  font-size: 14px;
}

.callback-modal input:focus,
.callback-modal textarea:focus {
  outline: none;
  border-color: #ffe600;
}

/* Submit */
.callback-submit {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  background: linear-gradient(135deg, #ffe600, #ffb700);
  color: #000;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.callback-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 230, 0, .25);
}

/* Legal */
.callback-legal {
  display: block;
  font-size: 10.5px;
  color: #999;
  margin-top: 12px;
  line-height: 1.4;
}

.callback-popup {
  display: none;
}

.callback-popup.active {
  display: flex;
}

/* Optional scroll lock */
body.no-scroll {
  overflow: hidden;
}