/* ============================================================
   BioScript New Design System — #0d0d0d Redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #111111;
  --max-width: 1100px;
  --accent: #a855f7;
  --accent-hover: #7c3aed;
  --text-primary: #ffffff;
  --text-muted: #9ca3af;
  --text-accent: #a855f7;
  --green: #22c55e;
  --red: #ef4444;
  --gold: #f59e0b;
  --border: #1e1e1e;
  --radius-card: 12px;
  --radius-btn: 6px;
  --section-pad-desktop: 96px;
  --section-pad-mobile: 64px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Structural rules ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad-desktop) 0;
  min-height: auto;
}

section + section {
  border-top: 1px solid #1a1a1a;
}

.section-alt {
  background-color: var(--bg-secondary);
  padding: var(--section-pad-desktop) 0;
  min-height: auto;
}

@media (max-width: 768px) {
  .section, .section-alt, .footer {
    padding: var(--section-pad-mobile) 24px;
  }
}

.footer {
  background: #080808;
  padding: var(--section-pad-desktop) 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ---------- Typography ---------- */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}

h2 span {
  color: var(--accent);
}

@media (max-width: 768px) {
  h1 { font-size: 32px !important; line-height: 1.1 !important; margin-bottom: 24px !important; }
  h2 { font-size: 28px !important; }
  .price-massive { font-size: 56px !important; }
  .cta-price-display { font-size: 54px !important; }
  .section, .section-alt, .footer { padding: var(--section-pad-mobile) 20px; }
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ---------- Responsiveness Utilities ---------- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.table-responsive::-webkit-scrollbar {
  height: 4px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* ---------- Buttons & CTA ---------- */
.btn-cta {
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  padding: 20px 48px;
  border-radius: var(--radius-btn);
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cta:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

.btn-full {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .btn-cta:not(.nav-cta) { width: 100%; }
  
  .nav-cta {
    font-size: 13px !important;
    padding: 8px 16px !important;
    width: auto !important;
  }
}

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
}

.trust-line {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin-top: 10px;
}

/* ---------- Pricing Strikethrough ---------- */
.price-tag {
  font-size: 64px;
  font-weight: 900;
}

.price-regular {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 20px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Pain & Solution ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.pain-card {
  padding: 40px;
  border-radius: 12px;
}
.pain-red { background: #1a0a0a; border: 1px solid #3a1a1a; }
.pain-green { background: #0a1a0a; border: 1px solid #1a3a1a; }
.pain-card h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; margin-bottom: 24px; }
.pain-list { list-style: none; }
.pain-list li { margin-bottom: 12px; display: flex; gap: 12px; font-size: 15px; line-height: 2; }
.pain-red .pain-list li { color: #fca5a5; }
.pain-green .pain-list li { color: #86efac; }
.pain-red h4 { color: #ef4444; }
.pain-green h4 { color: #22c55e; }



/* ---------- Platform & Template Grids ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.platform-grid img {
  border-radius: 10px;
  border: 1px solid #1e1e1e;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

#templateGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  #templateGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

#loadMoreBtn {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  margin: 32px auto 0;
  transition: all 0.2s ease;
}

#loadMoreBtn:hover {
  background: var(--accent);
  color: #ffffff;
}

/* ---------- Vertical Step Flow v2 ---------- */
.step-flow-v2 {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
}
.step-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}
.step-item:last-child { margin-bottom: 0; }
.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 2;
}
.step-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 24px;
  flex: 1;
  text-align: left;
}
.step-card h4 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
}
.step-line-v {
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -40px;
  width: 2px;
  border-left: 2px dotted var(--accent);
  z-index: 1;
}
.step-item:last-child .step-line-v { display: none; }

.highlight-box {
  background: #1a0d2e;
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 20px;
  max-width: 540px;
  margin: 64px auto 0;
  text-align: center;
}

@media (max-width: 768px) {
  .platform-grid { grid-template-columns: 1fr; }
  .step-item { gap: 16px; flex-direction: column; align-items: flex-start; }
  .step-line-v { left: 19px; top: 40px; bottom: 0; }
}

/* ---------- Step Flow ---------- */
.flow-container {
  max-width: 600px;
  margin: 48px auto 0;
  position: relative;
}
.flow-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.flow-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.flow-line {
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed #3d1a6e;
  z-index: 0;
}

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

@media (max-width: 768px) {
  .pain-grid, .grid-2, .grid-3, .grid-5 { grid-template-columns: 1fr; }
}

/* ---------- Hover Scroll Frames ---------- */
.hover-scroll-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
  background: #000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.hover-scroll-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 5s ease-in-out;
  transform: translateY(0);
}

.hover-scroll-frame:hover img {
  transform: translateY(calc(-100% + var(--frame-height, 320px)));
}

.dashboard-frame { --frame-height: 320px; height: 320px; }
.template-frame { --frame-height: 400px; height: 400px; border-radius: 16px; border-color: #2a2a2a; }

@media (max-width: 768px) {
  .dashboard-frame { --frame-height: 240px; height: 240px; }
  .template-frame { --frame-height: 300px; height: 300px; }
}

@keyframes demo-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(168, 85, 247, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

.demo-btn-anime {
  animation: demo-pulse 2s infinite;
  display: inline-block;
}

/* ---------- Founder Card ---------- */
.founder-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 48px auto 0;
  text-align: left;
}

.founder-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1a0d2e;
  border: 2px solid var(--accent);
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
}

/* ---------- Comparison Table v2 ---------- */
.compare-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  margin-top: 48px;
  background: #0d0d0d;
}
.compare-table th {
  background: #1a0d2e;
  color: #fff;
  padding: 16px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
}
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid #1e1e1e;
  font-size: 15px;
}
.compare-table tr:nth-child(even) { background: #111; }
.compare-table tr:nth-child(odd) { background: #0d0d0d; }
.compare-table .cell-highlight {
  color: #22c55e;
  font-weight: 800;
}
.compare-table .text-muted { color: #9ca3af; }

/* ---------- Offer "NOT" Sections ---------- */
.offer-not-list {
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
}
.offer-not-list li {
  font-size: 18px;
  color: #9ca3af;
  margin-bottom: 12px;
}
.offer-this-is {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Full Offer Reveal ---------- */
.price-massive {
  font-size: 80px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin: 10px 0;
}
.reveal-checklist {
  list-style: none;
  max-width: 560px;
  margin: 48px auto;
  text-align: left;
  padding: 0;
}
.reveal-checklist li {
  font-size: 16px;
  margin-bottom: 14px;
  color: #fff;
  display: flex;
  gap: 12px;
}
.payment-icons {
  font-size: 13px;
  color: #6b7280;
  margin-top: 12px;
}

/* ---------- FAQ interactions ---------- */
.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
}
.faq-item.active .faq-a { max-height: 200px; padding-bottom: 24px; }

/* ---------- Hero Trust Pills ---------- */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.hero-pill {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Redesigned CTA Block ---------- */
.cta-price-display {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  margin: 10px 0;
  color: #ffffff;
}
.cta-strikethrough {
  color: #6b7280;
  font-size: 14px;
}
.cta-subtext {
  color: #9ca3af;
  font-size: 14px;
}
.urgency-bar {
  background: #111;
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 4px;
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

/* ---------- Final Sections: Earnings & Decision ---------- */
.card-earning {
    text-align: center;
    transition: transform 0.3s ease;
}
.card-earning:hover { transform: translateY(-5px); }

.path-card {
    border-radius: 12px;
    padding: 32px;
}
.path-red {
    background: #1a0a0a;
    border: 1px solid #3a1a1a;
}
.path-green {
    background: #0a1a0a;
    border: 1px solid #1a3a1a;
}

/* ---------- Guarantee Section ---------- */
.guarantee-card {
    max-width: 620px;
    margin: 0 auto;
    background: #0a140a;
    border: 1px solid #1a3a1a;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

/* ---------- FAQ Accordion v2 ---------- */
.faq-v2 {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item-v2 {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item-v2:hover { border-color: var(--accent); }

.faq-q-v2 {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-q-v2 .arrow {
    color: var(--accent);
    transition: transform 0.3s ease;
    font-size: 14px;
}
.faq-item-v2.active .arrow { transform: rotate(180deg); }

.faq-a-v2 {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    color: #9ca3af;
    line-height: 1.8;
}
.faq-item-v2.active .faq-a-v2 {
    max-height: 400px;
    padding-bottom: 24px;
}

/* ---------- Image Quality & Protection ---------- */
img {
  image-rendering: auto;
  image-rendering: smooth;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Protect all images from right-click, drag, copy, download */
img,
.hover-scroll-frame img,
.dashboard-frame img,
.template-frame img,
.founder-avatar img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* ---------- Footer Docs Bar ---------- */
.footer-docs-bar { 
  background: rgba(168, 85, 247, 0.1); 
  border: 1px solid rgba(168, 85, 247, 0.3); 
  border-radius: 12px; 
  padding: 14px 24px; 
  margin: 32px auto 0; 
  display: inline-flex; 
  align-items: center; 
  gap: 16px; 
  flex-wrap: wrap; 
  justify-content: center; 
}
.footer-docs-label { 
  color: #a855f7; 
  font-weight: 800; 
  font-size: 11px; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
}
.footer-docs-links { 
  display: flex; 
  gap: 12px; 
  font-size: 13px; 
  color: #9ca3af; 
  align-items: center; 
}
.footer-docs-links a { 
  color: inherit; 
  text-decoration: none; 
  transition: 0.2s; 
}
.footer-docs-links a:hover { 
  color: #fff; 
}
/* ---------- Real User Wins (WhatsApp Testimonials) ---------- */
.wins-section { padding: 96px 0; border-top: 1px solid #1e1e1e; background: #0d0d0d; position: relative; }
.wins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 48px auto; max-width: 1000px; }
.win-card { text-align: center; }

/* Premium Mockup Frame */
.win-mockup { 
    background: #080808; 
    border: 2px solid #22c55e; 
    border-radius: 16px; 
    padding: 12px; 
    margin-bottom: 20px; 
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.1), inset 0 0 20px rgba(34, 197, 94, 0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.win-mockup:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15); 
}
.win-img { width: 100%; border-radius: 8px; display: block; filter: brightness(0.9); transition: filter 0.3s; }
.win-mockup:hover .win-img { filter: brightness(1); }

.win-caption { color: #22c55e; font-weight: 700; font-size: 15px; letter-spacing: 0.02em; }

.trust-block { background: linear-gradient(135deg, #0d0d0d, #080808); border: 2px solid #22c55e; border-radius: 20px; padding: 56px 40px; max-width: 720px; margin: 80px auto 40px; text-align: center; box-shadow: 0 20px 80px rgba(34, 197, 94, 0.08); }
.trust-icon { font-size: 56px; margin-bottom: 24px; display: block; filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.3)); }
.trust-text { color: #d1d5db; font-size: 17px; line-height: 1.8; margin-bottom: 32px; }
.btn-wins { background: var(--accent); color: #fff; font-size: 19px; font-weight: 800; padding: 20px 44px; border-radius: 10px; text-decoration: none; display: inline-block; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3); }
.btn-wins:hover { background: var(--accent-hover); transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4); }

@media (max-width: 768px) {
    .wins-grid { grid-template-columns: 1fr; gap: 40px; }
    .trust-block { padding: 40px 24px; margin-top: 64px; }
    .trust-text { font-size: 15px; }
}
