/* ── Hide WP theme chrome ── */
div.header-top, .CustomAnnouncedBar, .AnnouncedCustomSection {
  display: none !important;
}
.footertop, .footer-c {
  display: none !important;
}

/* Override footer.php's inline <style> that forces header-top back on mobile portrait.
   Higher specificity (body class prefix) beats the equal-!important rule that loads later. */
body.page-template-landingpagepyqdecoded-php div.header-top,
body.page-template-landingpagepyqdecoded-php .CustomAnnouncedBar,
body.page-template-landingpagepyqdecoded-php .AnnouncedCustomSection {
  display: none !important;
}

/* Override theme's white-background content wrappers — all breakpoints */
body.page-template-landingpagepyqdecoded-php #content,
body.page-template-landingpagepyqdecoded-php .container.only-id {
  background: #0A0A0F !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

footer.pyq-footer {
  background: #0A0A0F !important;
}

:root {
  --flame: #FF4D00;
  --flame-light: #FF6B2B;
  --gold: #FFB800;
  --gold-glow: #FFCB45;
  --dark: #0A0A0F;
  --dark-card: #12121A;
  --dark-surface: #1A1A26;
  --dark-border: #2A2A3A;
  --light: #F0F0F5;
  --muted: #8888A0;
  --green: #00D68F;
  --green-dark: #00B377;
  --red-urgent: #FF2D55;
  --white: #FFFFFF;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── URGENCY BAR ─── */
.pyq-urgency-bar {
  background: linear-gradient(90deg, var(--red-urgent), #FF0040, var(--flame));
  background-size: 200% 100%;
  animation: pyqBarShimmer 3s ease-in-out infinite;
  padding: 10px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes pyqBarShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.pyq-urgency-bar .pulse-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pyqPulse 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes pyqPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.countdown-inline {
  display: inline-flex;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
}

.countdown-inline span {
  background: rgba(0,0,0,0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ─── NAVBAR ─── */
.pyq-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  position: sticky;
  top: 39px;
  z-index: 99;
}

.pyq-brand {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--white);
}

.pyq-brand em {
  color: var(--flame);
  font-style: normal;
}

.pyq-nav-cta {
  background: var(--flame);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.pyq-nav-cta:hover { background: var(--flame-light); transform: translateY(-1px); color: var(--white); }

/* ─── HERO ─── */
.pyq-hero {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pyq-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,77,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.pyq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,0,0.12);
  border: 1px solid rgba(255,77,0,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--flame-light);
  margin-bottom: 32px;
  animation: pyqFadeInDown 0.6s ease-out;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes pyqFadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.pyq-free-tag {
  background: var(--green);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.pyq-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
  animation: pyqFadeInDown 0.8s ease-out;
}

.pyq-hero h1 .accent {
  background: linear-gradient(135deg, var(--flame), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pyq-hero-sub {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--muted);
  margin-bottom: 32px;
  animation: pyqFadeInDown 1s ease-out;
  font-style: italic;
}

.pyq-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: pyqFadeInDown 1.2s ease-out;
}

.pyq-hero-stat { text-align: center; }

.pyq-hero-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.pyq-hero-stat .label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

.pyq-hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: pyqFadeInDown 1.4s ease-out;
}

.pyq-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--flame), var(--flame-light));
  color: var(--white);
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 30px rgba(255,77,0,0.35);
}

.pyq-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,77,0,0.5);
  color: var(--white);
  text-decoration: none;
}

.pyq-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--light);
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--dark-border);
  transition: all 0.3s;
}

.pyq-cta-ghost:hover {
  border-color: var(--muted);
  background: rgba(255,255,255,0.03);
  color: var(--light);
  text-decoration: none;
}

.pyq-hero-note {
  font-size: 13px;
  color: var(--muted);
  animation: pyqFadeInDown 1.6s ease-out;
}

.pyq-hero-note strong { color: var(--red-urgent); }

/* ─── COUNTDOWN ─── */
.pyq-countdown-section {
  padding: 48px 24px;
  text-align: center;
}

.pyq-countdown-box {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,45,85,0.08), rgba(255,77,0,0.08));
  border: 1px solid rgba(255,45,85,0.2);
  border-radius: 20px;
  padding: 40px 32px;
}

.pyq-countdown-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--red-urgent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.pyq-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pyq-cd-unit {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 90px;
}

.pyq-cd-unit .val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.pyq-cd-unit .lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.pyq-countdown-warning {
  margin-top: 20px;
  font-size: 15px;
  color: var(--light);
  font-weight: 600;
}

.pyq-countdown-warning span { color: var(--red-urgent); }

/* ─── SECTIONS COMMON ─── */
.pyq-lp section { padding: 80px 24px; }

.pyq-ct {
  max-width: 960px;
  margin: 0 auto;
}

.pyq-section-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--flame);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.pyq-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.pyq-section-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}

/* ─── FEATURES ─── */
.pyq-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pyq-feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pyq-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--flame), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.pyq-feature-card:hover::before { opacity: 1; }
.pyq-feature-card:hover { border-color: rgba(255,77,0,0.3); transform: translateY(-4px); }

.pyq-feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.pyq-feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.pyq-feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── WHO IS THIS FOR ─── */
.pyq-who-section { background: var(--dark-card); }

.pyq-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pyq-who-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pyq-who-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(0,214,143,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
}

.pyq-who-item p {
  font-size: 16px;
  color: var(--light);
  line-height: 1.5;
}

.pyq-who-item p strong { color: var(--white); }

/* ─── CURRICULUM ─── */
.pyq-curriculum-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pyq-curr-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.pyq-curr-item:hover { border-color: rgba(255,77,0,0.3); }

.pyq-curr-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 600;
  color: var(--flame);
  opacity: 0.5;
  min-width: 48px;
}

.pyq-curr-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pyq-curr-item p {
  font-size: 13px;
  color: var(--muted);
}

.pyq-curr-tag {
  margin-left: auto;
  background: rgba(255,184,0,0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* ─── MENTOR ─── */
.pyq-mentor-card {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--dark-card), var(--dark-surface));
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.pyq-mentor-avatar {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.pyq-mentor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pyq-mentor-info { flex: 1; min-width: 260px; }

.pyq-mentor-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 4px;
}

.pyq-mentor-info .subtitle {
  color: var(--flame);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.pyq-mentor-info p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.pyq-mentor-stats {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.pyq-mentor-stats .ms { text-align: left; }

.pyq-mentor-stats .ms .val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}

.pyq-mentor-stats .ms .lbl {
  font-size: 12px;
  color: var(--muted);
}

/* ─── SOCIAL PROOF ─── */
.pyq-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.pyq-proof-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 28px;
}

.pyq-proof-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.pyq-proof-card blockquote {
  font-size: 15px;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.pyq-proof-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.pyq-proof-author span {
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
}

.pyq-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,214,143,0.12);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 8px;
}

/* ─── COMPARISON ─── */
.pyq-compare-table {
  margin-top: 40px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.pyq-compare-table th, .pyq-compare-table td {
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
}

.pyq-compare-table thead th {
  background: var(--dark-surface);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.pyq-compare-table thead th:nth-child(2) { color: var(--flame); }

.pyq-compare-table tbody td {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  color: var(--light);
}

.pyq-compare-table tbody td:nth-child(2) { color: var(--green); font-weight: 700; }
.pyq-compare-table tbody td:nth-child(3) { color: var(--muted); }

/* ─── FINAL CTA ─── */
.pyq-final-cta {
  text-align: center;
  padding: 80px 24px 100px;
  position: relative;
}

.pyq-final-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(255,77,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pyq-price-block {
  margin: 32px auto;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

.pyq-price-old {
  font-size: 28px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
}

.pyq-price-new {
  font-family: 'JetBrains Mono', monospace;
  font-size: 56px;
  font-weight: 600;
  color: var(--green);
}

.pyq-price-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

.pyq-scarcity-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,45,85,0.1);
  border: 1px solid rgba(255,45,85,0.2);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red-urgent);
  margin-bottom: 32px;
}

/* ─── FAQ ─── */
.pyq-faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pyq-faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
}

.pyq-faq-q {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.pyq-faq-q:hover { background: rgba(255,255,255,0.02); }

.pyq-faq-q .arrow {
  transition: transform 0.3s;
  color: var(--flame);
  font-size: 18px;
}

.pyq-faq-item.open .pyq-faq-q .arrow { transform: rotate(180deg); }

.pyq-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pyq-faq-item.open .pyq-faq-a { max-height: 200px; }

.pyq-faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.pyq-footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--dark-border);
  font-size: 13px;
  color: var(--muted);
}

.pyq-footer a { color: var(--flame); text-decoration: none; }

/* ─── FLOATING CTA ─── */
.pyq-float-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--dark-border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.pyq-float-cta.visible { transform: translateY(0); }

.pyq-float-cta .float-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
}

.pyq-float-cta .float-text span { color: var(--gold); font-weight: 800; }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .pyq-navbar { padding: 12px 16px; }
  .pyq-brand { font-size: 15px; }
  .pyq-nav-cta { padding: 8px 16px; font-size: 13px; }
  .pyq-lp section { padding: 60px 16px; }
  .pyq-hero { padding: 60px 16px 40px; }
  .pyq-hero-stats { gap: 24px; }
  .pyq-hero-stat .num { font-size: 28px; }
  .pyq-mentor-card { padding: 32px 24px; }
  .pyq-mentor-avatar { width: 100px; height: 100px; }
  .pyq-compare-table th, .pyq-compare-table td { padding: 14px 12px; font-size: 13px; }
  .pyq-cd-unit { min-width: 70px; padding: 12px 16px; }
  .pyq-cd-unit .val { font-size: 28px; }
  .pyq-price-new { font-size: 40px; }
  .pyq-curr-tag { display: none; }
  .pyq-float-cta .float-text { font-size: 12px; }
}

/* ── Raise WhatsApp & scroll-to-top above sticky CTA footer ── */
#ht-ctc-chat { bottom: 90px !important; }
.scrollToTopBtn { bottom: 160px !important; }

/* ── Comparison table: horizontal scroll on mobile only ── */
.pyq-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pyq-table-scroll .pyq-compare-table { min-width: 520px; }
