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

:root {
  --bg: #470F1A;
  --panel: #6A1F26;
  --gold: #C4AA76;
  --white: #FFFFFF;
  --button-ink: #360B0B;
  --nav-bg: #360B10;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(196, 170, 118, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}

::selection {
  background: var(--gold);
  color: var(--button-ink);
}

img, svg {
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- layout helpers ---------- */

.container {
  max-width: 72rem; /* 6xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-5xl {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.relative { position: relative; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
}

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

/* ---------- ghost number ---------- */

.ghost-number {
  pointer-events: none;
  user-select: none;
  position: absolute;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(196, 170, 118, 0.1);
  line-height: 1;
  font-family: 'Cairo', sans-serif;
}

@media (min-width: 768px) {
  .ghost-number {
    font-size: 10rem;
  }
}

.ghost-01 { top: 6rem; left: 1.5rem; }
.ghost-02 { top: 2.5rem; right: 1.5rem; }
.ghost-03 { top: 2.5rem; left: 1.5rem; }
.ghost-04 { bottom: 2.5rem; right: 1.5rem; }
.ghost-05 { bottom: 1rem; left: 1.5rem; }

@media (min-width: 768px) {
  .ghost-01 { left: 4rem; }
  .ghost-02 { right: 4rem; }
  .ghost-03 { left: 4rem; }
  .ghost-04 { right: 4rem; }
  .ghost-05 { left: 4rem; }
}

/* ---------- eyebrow ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(196, 170, 118, 0.8);
  font-weight: 600;
  margin-bottom: 1rem;
}

.eyebrow::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: rgba(196, 170, 118, 0.5);
}

/* ---------- price block ---------- */

.price-block {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-old {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
}

@media (min-width: 768px) {
  .price-old { font-size: 1.25rem; }
}

.price-old::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(-6deg);
}

.price-old.price-old-small {
  font-size: 1rem;
}

.price-new {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
}

@media (min-width: 768px) {
  .price-new { font-size: 3.75rem; }
}

.price-new.price-new-small {
  font-size: 1.875rem;
}

.price-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

/* ---------- CTA button ---------- */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background: var(--white);
  color: var(--button-ink);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Cairo', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s, transform 0.3s;
}

.cta-button:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button.cta-nav {
  padding: 0.625rem 1.5rem;
  font-size: 13px;
}

.cta-button.cta-floating {
  padding: 0.75rem 1.25rem;
  font-size: 13px;
}

/* ---------- nav ---------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 1.5rem 0;
  background: transparent;
  transition: all 0.5s;
}

.navbar.scrolled {
  background: rgba(54, 11, 16, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 900;
}

.navbar-logo span {
  color: var(--white);
}

/* ---------- header / hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 10rem;
  padding-bottom: 7rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 12rem;
    padding-bottom: 9rem;
  }
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}

.hero p.subtext {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-wrap {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-cta-wrap .price-block {
  justify-content: center;
}

.hero-cta-wrap .cta-button {
  margin-top: 1.75rem;
}

.hero-fine-print {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- stats section ---------- */

.stats-section {
  background: rgba(54, 11, 16, 0.6);
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-value {
  font-size: 1.875rem;
  color: var(--gold);
  font-weight: 900;
  margin: 0;
}

@media (min-width: 768px) {
  .stat-value { font-size: 2.25rem; }
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* ---------- generic section ---------- */

section {
  position: relative;
}

.section-pad {
  padding: 7rem 0;
}

@media (min-width: 768px) {
  .section-pad { padding: 9rem 0; }
}

.section-pad-sm {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section-pad-sm { padding: 8rem 0; }
}

.bg-panel-30 { background: rgba(106, 31, 38, 0.3); }
.bg-panel-40 { background: rgba(106, 31, 38, 0.4); }
.bg-nav-60 { background: rgba(54, 11, 16, 0.6); }

h2.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

@media (min-width: 768px) {
  h2.section-title { font-size: 3rem; }
}

.section-title-lg {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .section-title-lg { font-size: 3rem; }
}

.gold { color: var(--gold); }

/* ---------- section 3: what is personal branding ---------- */

.subtext-lead {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.two-col {
  margin-top: 4rem;
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: repeat(2, 1fr); }
}

.word-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.word-grid .word-full {
  grid-column: span 2 / span 2;
}

.word-grid p {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
}

.word-underline {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-top: 0.5rem;
}

.body-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.body-text + .body-text {
  margin-top: 1.25rem;
}

/* ---------- section 4: why people stay invisible ---------- */

.fade-lines {
  margin-top: 1.5rem;
}

.fade-lines p {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 900;
  margin: 0.25rem 0;
}

@media (min-width: 768px) {
  .fade-lines p { font-size: 1.875rem; }
}

.fade-lines .dim { color: rgba(255, 255, 255, 0.3); }
.fade-lines .strong { color: var(--white); margin-top: 1.5rem; }
.fade-lines .dim-spaced { color: rgba(255, 255, 255, 0.3); margin-top: 1.5rem; }

.callout-gold {
  margin-top: 3rem;
  font-size: 1.875rem;
  color: var(--gold);
  font-weight: 900;
}

@media (min-width: 768px) {
  .callout-gold { font-size: 2.25rem; }
}

/* ---------- video card ---------- */

.video-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(196, 170, 118, 0.2);
  background: var(--bg);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #470F1A, #6A1F26);
}

.video-placeholder p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  padding: 0 1.5rem;
  text-align: center;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.35);
}

.video-play-overlay .play-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.video-play-overlay:hover .play-circle {
  transform: scale(1.1);
}

.video-pause-btn {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-pause-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.video-caption {
  padding: 1.5rem;
  text-align: right;
}

.video-caption p.title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.video-caption p.subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ---------- curriculum cards ---------- */

.eyebrow-wrap-right {
  max-width: 36rem;
  margin-right: auto;
  text-align: right;
}

.card-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

.curriculum-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: right;
  transition: background 0.3s, transform 0.3s;
}

.curriculum-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.25rem);
}

.curriculum-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(196, 170, 118, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  margin-right: auto;
  transition: background 0.3s;
}

.curriculum-card:hover .curriculum-icon {
  background: rgba(196, 170, 118, 0.25);
}

.curriculum-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--gold);
}

.curriculum-card p.title {
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.curriculum-card p.text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ---------- timeline ---------- */

.timeline-wrap {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.timeline-grid {
  margin-top: 5rem;
  display: grid;
  gap: 2rem;
  position: relative;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .timeline-grid::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}

.timeline-item {
  position: relative;
  text-align: right;
}

.timeline-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
  margin-right: auto;
}

.timeline-week {
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0;
}

.timeline-title {
  font-size: 1.5rem;
  margin: 0.25rem 0 1rem;
  font-weight: 900;
}

.timeline-item ul li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  justify-content: flex-end;
  text-align: right;
  margin-bottom: 0.5rem;
}

.timeline-item ul li svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--gold);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.timeline-outro {
  text-align: center;
  margin-top: 5rem;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 900;
}

@media (min-width: 768px) {
  .timeline-outro { font-size: 1.875rem; }
}

.timeline-outro span.white {
  color: var(--white);
}

/* ---------- results ---------- */

.results-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: flex-end;
  text-align: right;
}

.result-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.result-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(196, 170, 118, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.result-check svg {
  width: 0.875rem;
  height: 0.875rem;
  stroke: var(--gold);
}

/* ---------- audience pills ---------- */

.pills-wrap {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pill {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- bonuses ---------- */

.bonus-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 170, 118, 0.2);
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: right;
  transition: background 0.3s;
}

.bonus-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bonus-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.bonus-old-value {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.bonus-tag {
  font-size: 0.625rem;
  color: var(--gold);
}

.bonus-card p.title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.bonus-card p.text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.bonus-total {
  text-align: center;
  margin-top: 3.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.bonus-total span {
  color: var(--gold);
  font-weight: 700;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: right;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
}

.faq-question span {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 700;
}

@media (min-width: 768px) {
  .faq-question span { font-size: 1.25rem; }
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

.faq-item.open .faq-answer-wrap {
  max-height: 200px;
}

.faq-answer-wrap p {
  padding-bottom: 1.5rem;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  padding-right: 2rem;
  margin: 0;
}

/* ---------- final CTA ---------- */

.final-cta {
  overflow: hidden;
}

.final-cta p.pretext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.final-cta p.pretext-gold {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.final-cta .hero-cta-wrap {
  margin-top: 3rem;
}

/* ---------- footer ---------- */

footer {
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---------- floating mobile CTA ---------- */

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transform: translateY(100%);
  transition: transform 0.5s;
}

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

.floating-cta-inner {
  background: rgba(54, 11, 16, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(196, 170, 118, 0.2);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.floating-cta-price {
  text-align: right;
}

.floating-cta-price .old {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  text-decoration: line-through;
  margin: 0;
}

.floating-cta-price .new {
  color: var(--gold);
  font-size: 1.125rem;
  font-weight: 900;
  margin: 0;
}

@media (min-width: 768px) {
  .floating-cta { display: none; }
}
