/* ═══════════════════════════════════════════════
   Vibe Coding للمحترفين الماليين — style.css
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy:   #0C1923;
  --navy2:  #111F2D;
  --navy3:  #172840;
  --gold:   #C8963A;
  --gold2:  #E5B860;
  --gold3:  #F5D490;
  --cream:  #F7F2E8;
  --muted:  #6B87A2;
  --white:  #FFFFFF;
  --green:  #2A9D6A;
  --red:    #D94F4F;
  --border: rgba(255,255,255,0.07);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--navy);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

/* noise texture */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .35;
}

/* ── UTILITIES ── */
.wrap        { max-width: 960px;  margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
.wrap-narrow { max-width: 720px;  margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }

@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }
.reveal { animation: revealFallback 0s 2s forwards; }

/* ── LABELS & TITLES ── */
.tag-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: .9rem;
}
.tag-label::before { content: ''; width: 24px; height: 2px; background: var(--gold2); }

h2.section-title { font-size: clamp(1.7rem,3.5vw,2.5rem); font-weight: 900; line-height: 1.25; margin-bottom: .8rem; }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.85; max-width: 560px; margin-bottom: 2.8rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(12,25,35,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,150,58,.15);
  padding: .85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand { font-size: .95rem; font-weight: 800; color: var(--gold2); }
.nav-brand span { color: var(--muted); font-weight: 400; font-size: .8rem; }

.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy); font-family: 'Tajawal', sans-serif;
  font-size: .82rem; font-weight: 800;
  padding: 9px 24px; border-radius: 8px; border: none;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,150,58,.4); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 1.5rem 5rem;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,150,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,150,58,.04) 1px, transparent 1px);
  background-size: 55px 55px; pointer-events: none;
}
.hero-glow {
  position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse, rgba(200,150,58,.16) 0%, transparent 68%);
  pointer-events: none;
}

/* instructor photo in hero */
.hero-photo-wrap {
  position: absolute; left: 3%; top: 50%; transform: translateY(-50%);
  width: 280px; height: 340px;
  border-radius: 20px; overflow: hidden;
  border: 2px solid rgba(200,150,58,.25);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  display: none;
}
@media(min-width:900px) { .hero-photo-wrap { display: block; } }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,58,.1); border: 1px solid rgba(200,150,58,.3);
  color: var(--gold2); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 1.8rem;
  animation: fadeD .6s ease both;
}
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold2); animation: pulse 2s infinite; }

@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.7); } }

.hero h1 {
  font-size: clamp(2.1rem,5.5vw,4rem);
  font-weight: 900; line-height: 1.2; margin-bottom: 1.5rem;
  animation: fadeD .6s .1s ease both;
}
.hero h1 .hl {
  color: transparent;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold3));
  -webkit-background-clip: text; background-clip: text;
}
.hero-body {
  font-size: 1.1rem; color: var(--muted); line-height: 1.9;
  max-width: 600px; margin-bottom: 2.5rem;
  animation: fadeD .6s .2s ease both;
}
.hero-proof {
  display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.8rem;
  animation: fadeD .6s .3s ease both;
}
.proof-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  padding: 7px 14px; border-radius: 8px; font-size: .82rem; color: var(--cream);
}
.proof-chip .ic { color: var(--gold2); }

.hero-cta { animation: fadeD .6s .4s ease both; }
.hero-eyebrow, .hero h1, .hero-body, .hero-proof, .hero-cta { opacity: 1; }

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy); font-family: 'Tajawal', sans-serif;
  font-size: 1.05rem; font-weight: 900;
  padding: 17px 48px; border-radius: 12px; border: none;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 32px rgba(200,150,58,.35);
  transition: transform .2s, box-shadow .2s;
  animation: glowPulse 3s 2s infinite;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(200,150,58,.5); }

@keyframes glowPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(200,150,58,.35), 0 0 0 0 rgba(200,150,58,.3); }
  50%      { box-shadow: 0 8px 32px rgba(200,150,58,.35), 0 0 0 12px rgba(200,150,58,0); }
}
.cta-note { margin-top: .9rem; font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.cta-note strong { color: var(--red); }

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

/* ── PAIN ── */
.pain-section {
  background: var(--navy2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
}
.pain-opener { font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; line-height: 1.6; max-width: 700px; color: var(--cream); margin-bottom: 2.5rem; }
.pain-opener .q { color: var(--gold2); }
.pain-list { display: flex; flex-direction: column; gap: .85rem; max-width: 700px; }
.pain-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(217,79,79,.07); border: 1px solid rgba(217,79,79,.15);
  border-radius: 12px; padding: 1.1rem 1.3rem;
  font-size: .95rem; color: var(--cream); line-height: 1.7;
}
.pain-x { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.pain-bridge {
  margin-top: 2.5rem; padding: 1.4rem 1.6rem;
  background: rgba(200,150,58,.08); border: 1px solid rgba(200,150,58,.25); border-radius: 14px;
  font-size: 1rem; color: var(--cream); line-height: 1.8; max-width: 700px;
}
.pain-bridge strong { color: var(--gold2); }

/* ── TRANSFORMATION ── */
.transform-section { padding: 5rem 1.5rem; }
.transform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 820px; }
@media(max-width:600px) { .transform-grid { grid-template-columns: 1fr; } }
.t-card { border-radius: 16px; padding: 1.6rem; border: 1px solid var(--border); }
.t-card.before { background: rgba(217,79,79,.05); border-color: rgba(217,79,79,.15); }
.t-card.after  { background: rgba(42,157,106,.06); border-color: rgba(42,157,106,.18); }
.t-card-label { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: 7px; }
.t-card.before .t-card-label { color: var(--red); }
.t-card.after  .t-card-label { color: var(--green); }
.t-card ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.t-card li { font-size: .9rem; color: var(--muted); display: flex; align-items: flex-start; gap: 9px; line-height: 1.6; }
.t-card.after li { color: var(--cream); }
.t-bullet { flex-shrink: 0; margin-top: 3px; }

/* ── CURRICULUM ── */
.curriculum-section { background: var(--navy2); padding: 5rem 1.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.module-list { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.module { background: var(--navy); border-bottom: 1px solid var(--border); cursor: pointer; transition: background .2s; }
.module:last-child { border-bottom: none; }
.module:hover { background: var(--navy3); }
.module-header { display: flex; align-items: center; gap: 1.2rem; padding: 1.4rem 1.6rem; }
.mod-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: var(--navy); flex-shrink: 0;
}
.mod-meta { flex: 1; }
.mod-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.mod-time  { font-size: .78rem; color: var(--muted); }
.mod-arrow { color: var(--gold2); font-size: .9rem; transition: transform .3s; flex-shrink: 0; }
.module.open .mod-arrow { transform: rotate(180deg); }
.module-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .25s; padding: 0 1.6rem; }
.module.open .module-body { max-height: 800px; padding: 0 1.6rem 1.4rem; }
.module-body ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; padding-right: .5rem; border-right: 2px solid rgba(200,150,58,.25); }
.module-body li { font-size: .88rem; color: var(--muted); display: flex; align-items: flex-start; gap: 9px; line-height: 1.6; }
.module-body .check { color: var(--gold2); flex-shrink: 0; }
.module-bonus { background: rgba(200,150,58,.07); border: 1px solid rgba(200,150,58,.2); border-radius: 10px; padding: 1rem 1.2rem; margin-top: 1rem; font-size: .85rem; color: var(--gold3); }

/* ── DELIVERABLES ── */
.deliverables-section { padding: 5rem 1.5rem; }
.del-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1rem; }
.del-card {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.6rem;
  transition: transform .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.del-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(200,150,58,.04),transparent); opacity: 0; transition: opacity .3s; }
.del-card:hover { transform: translateY(-4px); border-color: rgba(200,150,58,.3); }
.del-card:hover::after { opacity: 1; }
.del-icon { font-size: 1.8rem; margin-bottom: .9rem; display: block; }
.del-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: .4rem; color: var(--cream); }
.del-card p  { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.del-tag {
  display: inline-block; margin-top: .8rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(200,150,58,.12); border: 1px solid rgba(200,150,58,.25);
  color: var(--gold3); padding: 3px 10px; border-radius: 100px;
}

/* ── NUMBERS STRIP ── */
.numbers-strip {
  background: rgba(200,150,58,.05);
  border-top: 1px solid rgba(200,150,58,.12); border-bottom: 1px solid rgba(200,150,58,.12);
  padding: 3.5rem 1.5rem;
}
.numbers-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 3rem; max-width: 700px; margin: 0 auto; }
.num-item { text-align: center; }
.num-item strong { font-family: 'Courier Prime', monospace; font-size: clamp(2.2rem,5vw,3.2rem); font-weight: 700; color: var(--gold2); display: block; line-height: 1; margin-bottom: 5px; }
.num-item span   { font-size: .8rem; color: var(--muted); }

/* ── FOR WHO ── */
.forwhom-section { padding: 5rem 1.5rem; background: var(--navy3); }
.forwhom-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.fw-card { background: rgba(0,0,0,.2); border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem; text-align: center; }
.fw-icon   { font-size: 1.8rem; margin-bottom: .6rem; display: block; }
.fw-card strong { font-size: .95rem; display: block; margin-bottom: .3rem; color: var(--cream); }
.fw-card span   { font-size: .82rem; color: var(--muted); }
.notfor-box { background: rgba(217,79,79,.05); border: 1px solid rgba(217,79,79,.15); border-radius: 12px; padding: 1.2rem 1.5rem; font-size: .88rem; color: var(--muted); line-height: 1.8; }
.notfor-box strong { color: var(--red); }

/* ── INSTRUCTOR ── */
.instructor-section { padding: 5rem 1.5rem; }
.instructor-card {
  display: grid; grid-template-columns: 160px 1fr; gap: 2.5rem; align-items: start;
  background: var(--navy2); border: 1px solid rgba(200,150,58,.15);
  border-radius: 22px; padding: 2.5rem;
}
@media(max-width:640px) { .instructor-card { grid-template-columns: 1fr; text-align: center; } }
.instructor-avatar {
  width: 150px; height: 150px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden;
  border: 3px solid rgba(200,150,58,.35);
  box-shadow: 0 0 40px rgba(200,150,58,.2);
  background: linear-gradient(135deg, var(--gold), var(--navy3));
  display: flex; align-items: center; justify-content: center;
}
.instructor-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.instructor-avatar-placeholder { font-size: 3rem; }
.instructor-name  { font-size: 1.6rem; font-weight: 900; margin-bottom: .3rem; }
.instructor-title { font-size: .85rem; color: var(--gold2); font-weight: 600; margin-bottom: 1rem; }
.instructor-bio   { font-size: .9rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.2rem; }
.instructor-tags  { display: flex; flex-wrap: wrap; gap: 7px; }
@media(max-width:640px) { .instructor-tags { justify-content: center; } }
.itag { font-size: .72rem; font-weight: 700; background: rgba(200,150,58,.1); border: 1px solid rgba(200,150,58,.25); color: var(--gold3); padding: 4px 12px; border-radius: 100px; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--navy2); padding: 5rem 1.5rem; border-top: 1px solid var(--border); }
.t-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.2rem; }
.t-card-t { background: var(--navy); border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem; position: relative; }
.t-quote { font-size: 2.5rem; line-height: 1; color: rgba(200,150,58,.25); font-family: 'Courier Prime', monospace; margin-bottom: .5rem; }
.t-body  { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg,var(--gold),var(--navy3)); display: flex; align-items: center; justify-content: center; font-size: 1rem; overflow: hidden; }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-author-name { font-size: .85rem; font-weight: 700; color: var(--cream); }
.t-author-role { font-size: .75rem; color: var(--muted); }
.t-stars { color: var(--gold2); font-size: .85rem; margin-bottom: .7rem; letter-spacing: 2px; }

/* ── URGENCY BAR ── */
.urgency-bar { background: rgba(217,79,79,.08); border-top: 1px solid rgba(217,79,79,.2); border-bottom: 1px solid rgba(217,79,79,.2); padding: 1.4rem 1.5rem; text-align: center; }
.urgency-bar p { font-size: .9rem; color: var(--cream); margin-bottom: .8rem; }
.urgency-bar strong { color: var(--red); }
.cd-row   { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cd-unit  { text-align: center; }
.cd-num   { font-family: 'Courier Prime', monospace; font-size: 2rem; font-weight: 700; color: var(--white); background: var(--navy2); border: 1px solid rgba(200,150,58,.2); border-radius: 8px; padding: 8px 16px; display: block; min-width: 65px; }
.cd-label { font-size: .68rem; color: var(--muted); margin-top: 3px; letter-spacing: .08em; }
.cd-sep   { font-size: 1.5rem; color: var(--gold2); align-self: center; margin-top: -8px; }

/* ── PRICING ── */
.pricing-section { padding: 5rem 1.5rem; text-align: center; }
.pricing-card {
  max-width: 560px; margin: 0 auto;
  background: var(--navy2); border: 2px solid rgba(200,150,58,.35);
  border-radius: 24px; padding: 2.8rem 2.5rem;
  position: relative; overflow: hidden;
}
.pricing-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 5px; background: linear-gradient(90deg,var(--gold),var(--gold2),var(--gold3),var(--gold2),var(--gold)); }
.pricing-badge { position: absolute; top: 20px; left: 20px; background: var(--red); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.pricing-name  { font-size: 1.1rem; font-weight: 700; color: var(--muted); margin-bottom: .5rem; }
.pricing-price { font-family: 'Courier Prime', monospace; font-size: clamp(3rem,8vw,5rem); font-weight: 700; color: var(--white); line-height: 1; margin-bottom: .4rem; }
.pricing-price sup { font-size: 1.8rem; vertical-align: top; margin-top: .8rem; color: var(--gold2); }
.pricing-was  { font-size: .9rem; color: var(--muted); text-decoration: line-through; margin-bottom: .3rem; }
.pricing-save { display: inline-block; background: rgba(42,157,106,.15); border: 1px solid rgba(42,157,106,.3); color: var(--green); font-size: .8rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; margin-bottom: 1.8rem; }
.pricing-includes { text-align: right; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .7rem; }
.p-item   { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--cream); line-height: 1.6; }
.p-check  { color: var(--green); flex-shrink: 0; font-size: 1rem; }
.btn-buy {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy); font-family: 'Tajawal', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  padding: 18px; border-radius: 12px; border: none;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 32px rgba(200,150,58,.35);
  transition: transform .2s, box-shadow .2s;
  animation: glowPulse 3s 1s infinite;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(200,150,58,.5); }
.pricing-guarantee { margin-top: 1.2rem; display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .78rem; color: var(--muted); }
.pricing-footer-note { margin-top: 1rem; font-size: .78rem; color: var(--muted); }

/* ── FAQ ── */
.faq-section { padding: 5rem 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; max-width: 720px; }
.faq-item { background: var(--navy2); border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { padding: 1.2rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .97rem; font-weight: 700; color: var(--cream); user-select: none; }
.faq-q:hover { background: rgba(255,255,255,.02); }
.faq-ic { color: var(--gold2); font-size: 1rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s; font-size: .88rem; color: var(--muted); line-height: 1.85; padding: 0 1.5rem; }
.faq-item.open .faq-a { max-height: 300px; padding: .2rem 1.5rem 1.3rem; }

/* ── FINAL CTA ── */
.final-cta { background: var(--navy3); border-top: 1px solid var(--border); padding: 6rem 1.5rem; text-align: center; }
.final-cta h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; margin-bottom: 1rem; }
.final-cta p  { font-size: 1rem; color: var(--muted); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.8; }

/* ── STICKY BAR ── */
.sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(12,25,35,.96); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(200,150,58,.2);
  padding: 1rem 1.5rem; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(100%); transition: transform .4s ease;
}
.sticky.show { transform: translateY(0); }
.sticky-left p { font-size: .88rem; color: var(--cream); }
.sticky-left strong { color: var(--gold2); }
.sticky-price { font-family: 'Courier Prime', monospace; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.sticky-was   { font-size: .72rem; color: var(--muted); text-decoration: line-through; }

/* ── FOOTER ── */
footer { background: #070F17; padding: 2.5rem 1.5rem; text-align: center; border-top: 1px solid var(--border); }
footer p { font-size: .78rem; color: var(--muted); line-height: 2; }
footer a { color: var(--gold2); text-decoration: none; }

/* ── INLINE TECH STACK STYLES ── */
.tech-pill { background: var(--navy2); border: 1px solid rgba(200,150,58,.2); border-radius: 10px; padding: .6rem 1.2rem; font-size: .88rem; color: var(--cream); font-weight: 600; }
.tech-note { padding: 1rem 1.3rem; background: rgba(200,150,58,.07); border: 1px solid rgba(200,150,58,.2); border-radius: 10px; }
.tech-note p { font-size: .88rem; color: var(--gold3); line-height: 1.8; }
.tech-equals { background: linear-gradient(135deg, var(--gold), var(--gold2)); border-radius: 10px; padding: .6rem 1.4rem; font-size: .9rem; color: var(--navy); font-weight: 800; }
