/* ═══════════════════════════════════════════════
   MADWESS – Shared Stylesheet
   Used by: index.html, faq.html, privacy-policy.html, our-story.html
═══════════════════════════════════════════════ */

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card2: #15151e;
  --border: rgba(255,255,255,0.07);
  --yellow: #f5c830;
  --yellow2: #e6b520;
  --blue: #4a90e2;
  --green: #00e676;
  --text: #e8e8f0;
  --muted: #7a7a9a;
  --radius: 16px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 1000;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff !important;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--yellow); }
.nav-link {
  color: var(--muted) !important;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color .2s;
  padding: 6px 14px !important;
}
.nav-link:hover { color: #fff !important; }
.nav-link.active-page { color: var(--yellow) !important; }
.btn-nav-login {
  color: var(--text) !important;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 16px !important;
}
.btn-nav-start {
  background: var(--yellow);
  color: #000 !important;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 18px !important;
  transition: all .25s;
}
.btn-nav-start:hover {
  background: #d4a820;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,200,48,.4);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(245,200,48,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero h1 .highlight {
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
.page-hero .meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.page-hero .meta span { display: flex; align-items: center; gap: 5px; }
.page-hero .meta i { color: var(--yellow); }

/* ─── INNER PAGE CONTENT ─── */
.page-content { padding: 20px 0 80px; }

/* Content card */
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  margin-bottom: 16px;
  transition: border-color .3s;
}
.content-card:hover { border-color: rgba(245,200,48,.15); }

/* Section heading inside cards */
.content-card h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.content-card h2 .icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.icon-yellow { background: rgba(245,200,48,.15); color: var(--yellow); }
.icon-blue   { background: rgba(74,144,226,.15);  color: var(--blue); }
.icon-green  { background: rgba(0,230,118,.15);   color: var(--green); }
.icon-purple { background: rgba(156,39,176,.15);  color: #ce93d8; }
.icon-orange { background: rgba(255,152,0,.15);   color: #ffb300; }

.content-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.content-card p:last-child { margin-bottom: 0; }

.content-card ul {
  list-style: none; padding: 0; margin: 12px 0;
}
.content-card ul li {
  font-size: 0.88rem; color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.7;
}
.content-card ul li:last-child { border-bottom: none; }
.content-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Last updated chip */
.last-updated {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,200,48,.08);
  border: 1px solid rgba(245,200,48,.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.7rem;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 32px;
}

/* Sidebar TOC */
.toc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 80px;
}
.toc-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.toc-list { list-style: none; padding: 0; }
.toc-list li { margin-bottom: 6px; }
.toc-list a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all .2s;
}
.toc-list a:hover, .toc-list a.active {
  background: rgba(245,200,48,.08);
  color: var(--yellow);
}
.toc-list a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* ─── HERO (homepage) ─── */
.hero {
  min-height: 100vh;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,200,48,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,144,226,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,200,48,.1);
  border: 1px solid rgba(245,200,48,.25);
  border-radius: 40px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  display: block;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,100%{box-shadow:0 0 0 0 rgba(245,200,48,.4)}
  50%{box-shadow:0 0 0 6px rgba(245,200,48,0)}
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 18px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.btn-primary-cta {
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,200,48,.5);
}
.btn-secondary-cta {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 12px;
}
.btn-secondary-cta:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}
.hero-rating {
  display: flex; align-items: center; gap: 10px;
  margin-top: 28px;
}
.avatar-stack { display: flex; }
.avatar-stack img, .avatar-stack .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
  object-fit: cover;
}
.avatar-stack .av {
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: #fff;
}
.avatar-stack .av:first-child { margin-left: 0; }
.rating-stars { color: #fbbf24; font-size: 0.75rem; letter-spacing: 1px; }
.rating-text { font-size: 0.75rem; color: var(--muted); }
.rating-text strong { color: #fff; }

/* ─── HERO PHONE MOCKUP ─── */
.hero-phone {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding: 40px 0 60px;
}
.phone-outer {
  width: 300px;
  background: #fff;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 60px 120px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.1);
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes float {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)}
}
.phone-inner {
  background: #0d0d18;
  border-radius: 36px;
  overflow: hidden;
}
.phone-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px 6px;
}
.phone-statusbar .time { font-size: 0.7rem; font-weight: 700; color: #fff; }
.phone-statusbar .icons { display: flex; gap: 4px; align-items: center; }
.phone-statusbar .icons span { font-size: 0.55rem; color: #fff; }
.phone-island {
  width: 90px; height: 26px;
  background: #000;
  border-radius: 20px;
  margin: 0 auto 12px;
}
.phone-profile { text-align: center; padding: 0 16px 14px; }
.phone-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.phone-creator-name { font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.phone-creator-role { font-size: 0.62rem; color: var(--muted); margin-bottom: 10px; }
.phone-links { display: flex; justify-content: center; gap: 8px; }
.phone-link-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--muted);
}
.phone-products { padding: 0 12px; }
.phone-product {
  display: flex; align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.phone-prod-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.phone-prod-info { flex: 1; padding: 0 10px; }
.phone-prod-name { font-size: 0.65rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.phone-prod-badge {
  display: inline-block;
  font-size: 0.48rem; font-weight: 700;
  padding: 1px 5px; border-radius: 4px;
  letter-spacing: .5px; text-transform: uppercase;
}
.badge-best { background: rgba(245,200,48,.2); color: var(--yellow); }
.badge-new  { background: rgba(74,144,226,.2);  color: var(--blue); }
.phone-prod-price { font-size: 0.75rem; font-weight: 800; color: #fff; }
.phone-revenue {
  margin: 6px 12px 0;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px 4px 16px;
}
.phone-rev-label { font-size: 0.58rem; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.phone-rev-label i { color: var(--yellow); }
.phone-rev-amount { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
.earnings-badge {
  position: absolute;
  bottom: 20px; right: -50px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  animation: float2 3.5s ease-in-out infinite;
  white-space: nowrap;
  z-index: 3;
}
@keyframes float2 {
  0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-10px) rotate(-1deg)}
}
.earnings-badge .icon-wrap {
  width: 30px; height: 30px;
  background: rgba(245,200,48,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 0.85rem;
}
.earnings-badge .badge-text span { font-size: 0.58rem; color: var(--muted); display: block; }
.earnings-badge .badge-text strong { font-size: 0.82rem; font-weight: 800; color: var(--yellow); }
.badge-arrow { font-size: 0.6rem; color: var(--green); }

/* ─── TICKER ─── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  overflow: hidden; padding: 14px 0; position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg-dark), transparent); }
.ticker-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 24px; font-size: 0.78rem; color: var(--muted); white-space: nowrap;
}
.ticker-item .tag {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 3px 10px;
  font-size: 0.7rem; font-weight: 600; color: var(--text);
}
.ticker-dot { color: var(--yellow); font-size: 0.5rem; }

/* ─── STATS ─── */
.stats-section { padding: 60px 0; }
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -1px;
  color: #fff; line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.stat-divider { width: 1px; background: var(--border); height: 50px; align-self: center; }

/* ─── SECTION COMMON ─── */
.section-label {
  display: inline-block;
  background: rgba(245,200,48,.1);
  border: 1px solid rgba(245,200,48,.2);
  border-radius: 20px; padding: 4px 14px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--yellow); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -1px;
  color: #fff; line-height: 1.2; margin-bottom: 10px;
}
.section-title .highlight { color: var(--yellow); }
.section-sub { font-size: 0.88rem; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ─── FEATURES ─── */
.features-section { padding: 80px 0; }
.features-bento { display: grid; gap: 14px; }
.features-row-1 { grid-template-columns: 1.6fr 1fr 1fr; }
.features-row-2 { grid-template-columns: 1fr 1fr 1.6fr; }
.features-row-3 { grid-template-columns: 1fr 1fr; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 26px;
  transition: all .3s; position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover {
  border-color: rgba(245,200,48,.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 16px;
}
.fi-yellow { background: rgba(245,200,48,.15); color: var(--yellow); }
.fi-blue   { background: rgba(74,144,226,.15);  color: var(--blue); }
.fi-green  { background: rgba(0,230,118,.15);   color: var(--green); }
.fi-teal   { background: rgba(0,188,212,.15);   color: #00bcd4; }
.fi-purple { background: rgba(156,39,176,.15);  color: #ce93d8; }
.fi-orange { background: rgba(255,152,0,.15);   color: #ffb300; }
.feature-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-desc  { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

/* Checkout demo */
.checkout-demo {
  background: var(--bg-dark); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 14px; margin-top: 18px;
}
.checkout-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.checkout-card-icon {
  width: 36px; height: 22px;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  border-radius: 5px; flex-shrink: 0;
}
.checkout-dots { flex: 1; height: 8px; background: rgba(255,255,255,.1); border-radius: 4px; }
.checkout-pay-badge { background: var(--blue); color: #fff; font-size: 0.6rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.checkout-btns { display: flex; gap: 8px; margin-top: 10px; }
.checkout-btn { flex: 1; padding: 8px 0; border-radius: 8px; font-size: 0.68rem; font-weight: 700; text-align: center; cursor: pointer; }
.checkout-btn-primary { background: var(--yellow); color: #000; }
.checkout-btn-secondary { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--muted); }

/* Chart bars */
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 70px; margin-top: 20px; }
.chart-bar { flex: 1; border-radius: 5px 5px 0 0; background: rgba(74,144,226,.25); transition: height .6s ease; min-height: 8px; }
.chart-bar.hi  { background: var(--yellow); }
.chart-bar.mid { background: var(--blue); }

/* Email demo */
.email-demo { margin-top: 18px; background: var(--bg-dark); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 14px; }
.email-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.email-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.email-lines { flex: 1; }
.email-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,.12); margin-bottom: 4px; }
.email-line.short { width: 55%; }
.email-line.long  { width: 85%; }
.email-line.med   { width: 70%; }
.email-open-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 6px 14px; border-radius: 20px; margin-top: 6px; cursor: pointer;
}
.checkout-toggle {
  display: flex; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 3px; gap: 3px;
}
.checkout-toggle span {
  padding: 5px 14px; border-radius: 6px;
  font-size: 0.68rem; font-weight: 600; cursor: pointer; color: var(--muted); transition: all .2s;
}
.checkout-toggle span.active { background: var(--yellow); color: #000; }

/* ─── STEPS ─── */
.steps-section { padding: 80px 0; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; height: 100%; position: relative; transition: all .3s;
}
.step-card:hover { border-color: rgba(245,200,48,.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.step-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 16px;
}
.step-icon.upload { background: rgba(245,200,48,.15); color: var(--yellow); }
.step-icon.share  { background: rgba(0,230,118,.15);  color: var(--green); }
.step-icon.earn   { background: rgba(255,183,0,.15);  color: #ffb700; }
.step-num { position: absolute; top: 16px; right: 16px; font-size: 0.65rem; font-weight: 800; color: rgba(255,255,255,.12); letter-spacing: 1px; }
.step-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }
.steps-connector { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.15); font-size: 1.2rem; }

/* ─── CREATORS ─── */
.creators-section { padding: 80px 0; }
.creator-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center; transition: all .3s;
}
.creator-card:hover { border-color: rgba(245,200,48,.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.creator-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
}
.creator-name     { font-size: 0.9rem;  font-weight: 700; color: #fff; margin-bottom: 4px; }
.creator-handle   { font-size: 0.72rem; color: var(--muted); margin-bottom: 14px; }
.creator-earnings { font-size: 0.75rem; color: var(--green); font-weight: 700; }
.creator-earnings span { color: var(--muted); font-weight: 400; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 80px 0; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; height: 100%; transition: all .3s;
}
.testimonial-card:hover { border-color: rgba(245,200,48,.2); transform: translateY(-3px); }
.t-stars    { color: #fbbf24; font-size: 0.75rem; margin-bottom: 12px; letter-spacing: 2px; }
.t-text     { font-size: 0.8rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.t-author   { display: flex; align-items: center; justify-content: space-between; }
.t-author-info { display: flex; align-items: center; gap: 10px; }
.t-avatar   { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #fff; }
.t-name     { font-size: 0.78rem; font-weight: 700; color: #fff; }
.t-role     { font-size: 0.65rem; color: var(--muted); }
.t-earnings { font-size: 0.7rem; font-weight: 700; color: var(--yellow); }

/* ─── PRICING ─── */
.pricing-section { padding: 80px 0; }
.pricing-toggle {
  display: inline-flex; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 40px; padding: 4px; gap: 4px; margin-bottom: 48px;
}
.pricing-toggle span {
  padding: 7px 20px; border-radius: 30px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; color: var(--muted); transition: all .25s;
  display: flex; align-items: center; gap: 6px;
}
.pricing-toggle span.active { background: var(--yellow); color: #000; }
.save-badge { background: var(--green); color: #000; font-size: 0.6rem; font-weight: 800; padding: 2px 6px; border-radius: 10px; }
.pricing-card {
  background: #0e0e18; border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 28px 24px; height: 100%; transition: all .3s;
  position: relative; overflow: hidden;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,.6); border-color: rgba(255,255,255,.15); }
.pricing-card.featured { border-color: rgba(74,144,226,.5); background: linear-gradient(160deg, rgba(74,144,226,.1), rgba(10,10,20,.95)); box-shadow: 0 0 40px rgba(74,144,226,.15); }
.pricing-card.business { border-color: rgba(245,200,48,.4); background: linear-gradient(160deg, rgba(245,200,48,.08), rgba(10,10,20,.95)); }
.plan-ribbon { display: inline-block; font-size: 0.6rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.ribbon-green  { background: rgba(0,230,118,.15);  color: var(--green);  border: 1px solid rgba(0,230,118,.3); }
.ribbon-yellow { background: rgba(245,200,48,.15); color: var(--yellow); border: 1px solid rgba(245,200,48,.3); }
.ribbon-blue   { background: rgba(74,144,226,.15); color: var(--blue);   border: 1px solid rgba(74,144,226,.3); }
.plan-name { font-size: 1rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.plan-desc { font-size: 0.74rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.plan-price { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 4px; }
.plan-price .currency { font-size: 0.9rem; font-weight: 700; color: var(--muted); margin-top: 10px; }
.plan-price .amount   { font-size: 3rem; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; }
.plan-price .period   { font-size: 0.72rem; color: var(--muted); align-self: flex-end; margin-bottom: 6px; margin-left: 4px; }
.plan-period-sub { font-size: 0.7rem; color: var(--muted); margin-bottom: 22px; }
.plan-features { list-style: none; padding: 0; margin-bottom: 0; border-top: 1px solid rgba(255,255,255,.06); padding-top: 14px; }
.plan-features li { display: flex; align-items: center; gap: 9px; font-size: 0.76rem; color: var(--text); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li .fc { font-weight: 700; color: #fff; }
.plan-features li i.bi-check-circle-fill { color: var(--green); font-size: 0.7rem; flex-shrink: 0; }
.view-all-btn {
  width: 100%; background: transparent; border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; color: var(--muted); font-size: 0.78rem; font-weight: 600;
  padding: 10px; cursor: pointer; margin-top: 14px; transition: all .2s;
  font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.view-all-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-plan { width: 100%; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all .3s; text-align: center; display: block; text-decoration: none; margin-top: 14px; border: none; font-family: inherit; }
.btn-plan-outline { background: transparent; border: 1px solid rgba(255,255,255,.15) !important; color: #fff; }
.btn-plan-outline:hover { border-color: rgba(255,255,255,.4) !important; color: #fff; }
.btn-plan-yellow { background: var(--yellow); color: #000; }
.btn-plan-yellow:hover { background: #e6b520; box-shadow: 0 8px 25px rgba(245,200,48,.4); }
.btn-plan-blue { background: var(--blue); color: #fff; }
.btn-plan-blue:hover { background: #3a7fd4; box-shadow: 0 8px 25px rgba(74,144,226,.4); }

/* ─── FAQ ─── */
.faq-section { padding: 80px 0; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(245,200,48,.2); }
.faq-question {
  width: 100%; background: none; border: none; color: #fff;
  font-size: 0.88rem; font-weight: 600; font-family: inherit;
  text-align: left; padding: 18px 20px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; transition: color .2s;
}
.faq-question:hover { color: var(--yellow); }
.faq-question .faq-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--muted); transition: all .3s; flex-shrink: 0;
}
.faq-item.open .faq-icon { background: rgba(245,200,48,.15); color: var(--yellow); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; font-size: 0.82rem; color: var(--muted); line-height: 1.7; padding: 0 20px; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 18px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  margin: 60px 0; border-radius: 24px;
  background: linear-gradient(135deg, #1a1a40, #4a90e2, #f5c830);
  padding: 70px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 12px; }
.cta-banner p  { font-size: 0.9rem; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.btn-cta-white {
  background: #fff; color: var(--blue); border: none; border-radius: 10px;
  padding: 13px 30px; font-weight: 800; font-size: 0.88rem; cursor: pointer;
  transition: all .3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.3); }

/* ─── FOOTER ─── */
.footer { border-top: 1px solid var(--border); padding: 50px 0 30px; background: rgba(0,0,0,.2); }
.footer-brand { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-brand span { color: var(--yellow); }
.footer-desc  { font-size: 0.78rem; color: var(--muted); line-height: 1.7; max-width: 220px; }
.footer-title { font-size: 0.8rem; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .5px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--muted); cursor: pointer; transition: all .2s; text-decoration: none;
}
.social-icon:hover { background: rgba(245,200,48,.15); border-color: rgba(245,200,48,.3); color: var(--yellow); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy  { font-size: 0.74rem; color: var(--muted); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 0.74rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--yellow); }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ─── GLOW BLOBS ─── */
.glow-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.section-wrapper { position: relative; overflow: hidden; }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .features-row-1, .features-row-2 { grid-template-columns: 1fr 1fr; }
  .features-row-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .features-row-1, .features-row-2, .features-row-3 { grid-template-columns: 1fr; }
  .hero-phone { margin-top: 40px; }
  .earnings-badge { right: 0; bottom: 10px; }
  .btn-secondary-cta { margin-left: 0; margin-top: 10px; }
  .stat-divider { display: none; }
  .steps-connector { display: none; }
  .phone-outer { width: 240px; }
  .content-card { padding: 24px 20px; }
  .toc-card { position: static; margin-bottom: 20px; }
}
@media (max-width: 576px) {
  .btn-secondary-cta { display: none; }
  .cta-banner { padding: 40px 20px; }
}
