/* ============================================================
   THE ELITE NETWORK — SALES PAGE CSS
   Color Palette (Black Edition):
   Background:  #000000
   Card bg:     #111111
   Teal:        #00C9A7
   Yellow/Gold: #FFD166
   Red/Alert:   #EF476F
   Text:        #FFFFFF
   Muted:       #AAAAAA
   Borders:     #222222
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family: 'Tajawal', sans-serif;
  font-size: 17px;
  color: #FFFFFF;
  background: #000000;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}

.text-center { text-align: center; }

/* ============================================================
   SECTION 1 — STICKY SCARCITY BAR
   ============================================================ */
#scarcity-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: #FFF3CD;
  border-bottom: 2px solid #FFD166;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #0D1B2A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.scarcity-warning { color: #EF476F; font-size: 15px; }
.scarcity-text { color: #0D1B2A; }
.scarcity-divider { color: #aaa; }
.scarcity-label { color: #0D1B2A; }

.countdown-red {
  color: #EF476F;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
  background: #0D1B2A;
  padding: 2px 10px;
  border-radius: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 16px;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); opacity: 0.93; }
.btn:active { transform: translateY(0); }

.btn-large {
  font-size: 18px;
  padding: 18px 36px;
  min-height: 56px;
  border-radius: 10px;
}

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

.btn-primary {
  background: #00C9A7;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,201,167,0.35);
}

.btn-whatsapp {
  background: #00C9A7;
  color: #fff;
  width: 100%;
  display: block;
  font-size: 17px;
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0,201,167,0.35);
}

.btn-navy {
  background: #0D1B2A;
  color: #fff;
  width: 100%;
  display: block;
  font-size: 17px;
  padding: 16px 20px;
}

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
#hero {
  background: #000000;
  padding: 24px 0 0; /* sticky bar offset handled by JS on body */
  text-align: center;
  border-bottom: 1px solid #222222;
}

.hero-tag {
  display: inline-block;
  background: #111111;
  color: #00C9A7;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid #00C9A7;
}

.hero-headline {
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hero-headline-sub {
  display: block;
  font-size: clamp(18px, 3.6vw, 29px); /* ~60% of headline */
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
  margin-top: 0;
}

.hero-sub-teal {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: #00C9A7;
  margin-bottom: 8px;
}

.hero-sub-italic {
  font-size: 18px;
  font-style: italic;
  color: #AAAAAA;
  margin-bottom: 20px;
}

.hero-body {
  font-size: 17px;
  color: #AAAAAA;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-guarantee-hint { display: none; }

/* Video embedded inside hero — no gap from headlines */
.hero-video-wrap {
  background: #111;
  margin: 0 -18px; /* bleed to edges of container */
  padding: 32px 18px 0;
  padding-bottom: 36px; /* space before body text */
}

/* ============================================================
   SECTION 3 — VIDEO (now embedded inside hero)
   ============================================================ */
#video-section {
  background: #111111;
  padding: 60px 0;
  text-align: center;
}

.video-wrapper {
  max-width: 700px;
  margin: 0 auto 20px;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #333;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.play-btn:hover { background: rgba(255,255,255,0.28); }

.video-caption {
  color: #FFD166;
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
}

/* ============================================================
   SECTION 4 — PAIN
   ============================================================ */
#pain {
  background: #000000;
  padding: 70px 0;
}

.section-title {
  font-size: clamp(22px, 4.5vw, 34px);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.4;
}

.dark-title { color: #FFFFFF; }
.red-title  { color: #EF476F; }

.pain-card {
  background: #111111;
  border: 1.5px solid #2a1a1d;
  border-radius: 12px;
  padding: 28px 28px 20px;
  margin-bottom: 36px;
}

.pain-list li {
  font-size: 16px;
  color: #FFFFFF;
  padding: 10px 0;
  border-bottom: 1px solid #222222;
  line-height: 1.6;
}

.pain-list li:last-child { border-bottom: none; }

.navy-banner {
  background: #111111;
  border: 1px solid #222222;
  border-radius: 12px;
  padding: 28px 30px;
  text-align: center;
}

.banner-line-1 {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 900;
  color: #FFD166;
  margin-bottom: 10px;
}

.banner-line-2 {
  font-size: 16px;
  color: #AAAAAA;
  line-height: 1.7;
}

.banner-invest {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 700;
  color: #00C9A7;
  line-height: 1.6;
}

/* ============================================================
   SECTION 5 — MECHANISM
   ============================================================ */
#mechanism {
  background: #000000;
  padding: 70px 0;
}

.mechanism-body {
  font-size: 17px;
  color: #AAAAAA;
  margin-bottom: 30px;
  line-height: 1.7;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead tr th {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 900;
  text-align: right;
}

.col-bad  { background: #EF476F; color: #fff; }
.col-good { background: #00C9A7; color: #fff; }

.comparison-table tbody tr {
  border-bottom: 1px solid #222222;
}

.comparison-table tbody tr:last-child { border-bottom: none; }

.comparison-table tbody tr:nth-child(odd)  { background: #111111; }
.comparison-table tbody tr:nth-child(even) { background: #161616; }

.comparison-table tbody td {
  padding: 14px 20px;
  color: #FFFFFF;
  line-height: 1.6;
}

.comparison-table tbody td:first-child {
  color: #AAAAAA;
}

.comparison-table tbody td:last-child {
  color: #00A88A;
  font-weight: 600;
}

/* ============================================================
   SECTION 6 — CREDIBILITY
   ============================================================ */
#credibility {
  background: #000000;
  padding: 70px 0;
  border-top: 1px solid #222222;
}

.big-number {
  font-size: clamp(52px, 12vw, 88px);
  font-weight: 900;
  color: #00C9A7;
  line-height: 1;
  margin-bottom: 10px;
}

.credibility-text {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 36px;
}

.screenshot-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.screenshot-placeholder {
  width: 200px;
  height: 320px;
  background: #111111;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #AAAAAA;
  font-weight: 600;
  border: 2px dashed #333333;
  flex-shrink: 0;
}

.credibility-small {
  font-size: 14px;
  color: #AAAAAA;
}

/* ============================================================
   SECTION 7 — MODULES
   ============================================================ */
#modules {
  background: #000000;
  padding: 70px 0;
  border-top: 1px solid #222222;
}

.modules-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.module-card {
  background: #111111;
  border: 1.5px solid #222222;
  border-radius: 14px;
  padding: 26px 28px;
  transition: box-shadow 0.2s;
}

.module-card:nth-child(even) {
  background: #111111;
  border-color: #222222;
}

.module-card:hover {
  box-shadow: 0 6px 24px rgba(0,201,167,0.12);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.module-icon { font-size: 22px; }

.module-number {
  background: #00C9A7;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
}

.module-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.module-desc {
  font-size: 15px;
  color: #AAAAAA;
  margin-bottom: 12px;
  line-height: 1.7;
}

.module-result {
  font-size: 15px;
  font-weight: 700;
  color: #00C9A7;
  background: #0a1f1c;
  padding: 8px 14px;
  border-radius: 8px;
}

/* ============================================================
   SECTION 8 — SOCIAL PROOF
   ============================================================ */
#social-proof {
  background: #000000;
  padding: 70px 0;
  border-top: 1px solid #222222;
}

.testimonial-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 36px;
}

.testimonial-placeholder {
  width: 220px;
  height: 360px;
  background: #111111;
  border: 2px solid #222222;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #AAAAAA;
  font-weight: 600;
  flex-shrink: 0;
}

.proof-banner {
  background: #111111;
  border: 1px solid #222222;
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.proof-number {
  font-size: clamp(36px, 8vw, 60px);
  font-weight: 900;
  color: #FFD166;
  line-height: 1;
}

.proof-label {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   SECTION 9 — VALUE STACK
   ============================================================ */
#value-stack {
  background: #000000;
  padding: 70px 0;
  border-top: 1px solid #222222;
}

.alert-label {
  background: #EF476F;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  padding: 12px 22px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 24px;
}

.value-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  border-right: 4px solid #00C9A7;
}

.value-table thead tr {
  background: #111111;
  border-bottom: 2px solid #00C9A7;
}

.value-table thead th {
  color: #fff;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.value-table thead th:last-child {
  text-align: center;
  width: 160px;
}

.value-table tbody td {
  padding: 16px 20px;
  vertical-align: top;
  line-height: 1.6;
}

.value-table tbody td:last-child {
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
  font-size: 16px;
  color: #AAAAAA;
}

.value-table small {
  display: block;
  color: #AAAAAA;
  font-size: 13px;
  margin-top: 4px;
  font-weight: 400;
}

.row-blue td  { background: #0d1a1f; }
.row-gray td  { background: #111111; }
.row-white td { background: #0d0d0d; }

.row-total td {
  background: #1a1500;
  font-weight: 800;
  font-size: 17px;
  color: #FFD166;
}

.row-launch td {
  background: #000000;
  border-top: 2px solid #00C9A7;
  color: #fff;
  vertical-align: middle;
}

.row-launch td:first-child strong { color: #FFD166; }
.row-launch td:first-child small  { color: #aaa; font-size: 12px; }

.price-strikethrough {
  text-decoration: line-through;
  color: #999;
  font-size: 15px;
}

.total-strikethrough {
  font-size: 20px;
  font-weight: 800;
}

.launch-price {
  color: #00C9A7;
  font-size: 26px;
  font-weight: 900;
}

/* ============================================================
   SECTION 10 — SOCIAL PROOF 2 (replaces guarantee)
   ============================================================ */
#social-proof-2 {
  background: #111111;
  padding: 70px 0;
  border-top: 1px solid #222222;
}

.sp2-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 36px;
}

.sp2-cards-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.sp2-card {
  width: 220px;
  height: 360px;
  background: #1A1A1A;
  border-radius: 16px;
  border: 2px solid #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #AAAAAA;
  font-weight: 600;
  flex-shrink: 0;
}

.sp2-banner {
  background: #00C9A7;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

.sp2-number {
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 900;
  color: #000000;
  line-height: 1;
  margin-bottom: 8px;
}

.sp2-label {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

/* ============================================================
   SECTION 11 — URGENCY
   ============================================================ */
#urgency {
  background: #000000;
  padding: 70px 0;
  border-top: 2px solid #EF476F;
}

.urgency-label {
  font-size: 22px;
  font-weight: 700;
  color: #EF476F;
  margin-bottom: 16px;
}

.countdown-main {
  font-size: clamp(48px, 12vw, 80px);
  font-weight: 900;
  color: #EF476F;
  font-variant-numeric: tabular-nums;
  letter-spacing: 4px;
  margin-bottom: 28px;
  background: #111111;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 12px;
}

.urgency-list {
  max-width: 600px;
  margin: 0 auto 24px;
  text-align: right;
}

.urgency-list li {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 8px 0;
  border-bottom: 1px dashed #3a1520;
}

.urgency-list li:last-child { border-bottom: none; }

.urgency-spots {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 10px;
}

.urgency-spots strong {
  color: #EF476F;
  font-size: 26px;
}

/* ============================================================
   SECTION 12 — DOUBLE CTA
   ============================================================ */
#cta {
  background: #000000;
  padding: 70px 0;
  border-top: 1px solid #222222;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-card {
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
}

.cta-primary {
  background: #00C9A7;
  color: #fff;
}

.cta-secondary {
  background: #111111;
  border: 2px solid #333333;
  color: #FFFFFF;
}

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

.cta-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-card p {
  font-size: 15px;
  margin-bottom: 6px;
}

.cta-sub {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 20px !important;
}

.cta-primary h3  { color: #fff; }
.cta-primary p   { color: rgba(255,255,255,0.9); }

/* ============================================================
   SECTION 13 — FAQ
   ============================================================ */
#faq {
  background: #000000;
  padding: 70px 0;
  border-top: 1px solid #222222;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid #222222;
  border-radius: 10px;
  overflow: hidden;
  background: #111111;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-family: 'Tajawal', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: right;
  transition: background 0.2s;
}

.faq-question:hover { background: #1a1a1a; }

.faq-question[aria-expanded="true"] {
  background: #0a1f1c;
  color: #00C9A7;
}

.faq-arrow {
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #aaa;
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: #00C9A7;
}

.faq-answer {
  display: none;
  padding: 16px 22px 20px;
  font-size: 15px;
  color: #AAAAAA;
  line-height: 1.8;
  border-top: 1px solid #222222;
  background: #0d0d0d;
}

.faq-answer.open { display: block; }

/* ============================================================
   SECTION 14 — FINAL CTA
   ============================================================ */
#final-cta {
  background: #000000;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #222222;
}

.final-warning {
  font-size: clamp(16px, 3vw, 20px);
  color: #aaa;
  margin-bottom: 18px;
  line-height: 1.7;
}

.final-bold-yellow {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 900;
  color: #FFD166;
  margin-bottom: 28px;
}

#final-cta .btn-primary {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 18px;
}

.final-urgency-text {
  font-size: 15px;
  color: #aaa;
  margin-top: 10px;
}

.final-urgency-text strong {
  color: #EF476F;
  font-size: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #000000;
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid #222222;
}

#footer p {
  font-size: 13px;
  color: #555;
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */

/* Stack CTA cards on mobile */
@media (max-width: 640px) {
  #scarcity-bar {
    font-size: 12px;
    padding: 8px 10px;
    gap: 4px 8px;
  }

  .countdown-red { font-size: 14px; }

  #hero { padding: 16px 0 0; }

  .hero-headline { font-size: 28px; }

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

  .screenshot-row,
  .testimonial-row {
    flex-direction: column;
    align-items: center;
  }

  .screenshot-placeholder,
  .testimonial-placeholder,
  .sp2-card {
    width: 90%;
    height: 260px;
  }

  .comparison-table { font-size: 13px; }
  .comparison-table thead tr th { padding: 12px; font-size: 14px; }
  .comparison-table tbody td { padding: 10px 12px; }

  .value-table { font-size: 13px; }
  .value-table tbody td { padding: 12px; }
  .launch-price { font-size: 20px; }

  .countdown-main {
    font-size: 42px;
    letter-spacing: 2px;
    padding: 8px 18px;
  }

  .module-card { padding: 20px 18px; }

  .pain-card { padding: 20px 16px; }

  .navy-banner { padding: 20px 18px; }

  .btn-large { font-size: 16px; padding: 16px 22px; }

  .faq-question { font-size: 15px; padding: 14px 16px; }

  #final-cta { padding: 60px 0; }

  .cta-card { padding: 28px 20px; }
}

/* Tablet tweaks */
@media (max-width: 768px) and (min-width: 641px) {
  .cta-grid { grid-template-columns: 1fr 1fr; }

  .screenshot-row { flex-wrap: wrap; }
}

/* ============================================================
   UTILITY — Subtle entrance animation on scroll
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
