/* ═══════════════════════════════════════════════════════════════════
   Generation MLM Software – Stylesheet  v1.0.0
   MLM Mind | css/generation.css
   Design: Deep teal/emerald SaaS premium UI
═══════════════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  /* Brand – Generation teal/emerald */
  --primary:        #0d9488;
  --primary-dark:   #0f766e;
  --primary-light:  #ccfbf1;
  --secondary:      #34d399;
  --secondary-dark: #10b981;
  --secondary-light:#ecfdf5;
  --accent:         #f59e0b;
  --accent-dark:    #d97706;
  --accent-light:   #fef3c7;
  --purple:         #8b5cf6;
  --blue:           #3b82f6;

  /* Dark palette */
  --dark:           #020c0b;
  --dark-2:         #051a17;
  --dark-3:         #082520;
  --dark-4:         #0d3530;
  --dark-5:         #164843;

  /* Mid / light */
  --mid:            #64748b;
  --mid-light:      #94a3b8;
  --border:         rgba(13,148,136,.22);
  --border-light:   rgba(13,148,136,.10);
  --light:          #ccfbf1;
  --light-2:        #d1fae5;
  --white:          #ffffff;

  /* Semantics */
  --success:        #10b981;
  --warning:        #f59e0b;
  --danger:         #ef4444;
  --info:           #06b6d4;

  /* Shadows */
  --shadow-xs:      0 1px 3px rgba(0,0,0,.08);
  --shadow-sm:      0 2px 8px rgba(0,0,0,.10);
  --shadow-md:      0 4px 20px rgba(0,0,0,.14);
  --shadow-lg:      0 8px 40px rgba(0,0,0,.20);
  --shadow-xl:      0 20px 60px rgba(0,0,0,.26);
  --glow:           0 0 40px rgba(13,148,136,.28);
  --glow-sm:        0 0 18px rgba(13,148,136,.22);
  --glow-purple:    0 0 24px rgba(139,92,246,.22);

  /* Radii */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      18px;
  --radius-xl:      26px;
  --radius-full:    999px;

  /* Typography */
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  /* Motion */
  --ease:           cubic-bezier(.4,0,.2,1);
  --ease-bounce:    cubic-bezier(.34,1.56,.64,1);
  --transition:     .3s var(--ease);

  /* Layout */
  --container:      1240px;
  --section-pad:    96px;
}

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Scroll Progress ───────────────────────────────────────────── */
.scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width .1s linear;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
}

/* ── Container & Utilities ─────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--dark-2); }
.section-alt2 { background: var(--dark-3); }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mt-64  { margin-top: 64px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }
.mb-64  { margin-bottom: 64px; }
.text-center { text-align: center; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; }
h5, h6 { font-size: 1rem; }
p  { color: var(--mid-light); line-height: 1.7; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-full);
  font-size: .9rem; font-weight: 600; letter-spacing: .01em;
  transition: var(--transition); white-space: nowrap;
  border: 2px solid transparent;
}
.btn-lg  { padding: 15px 32px; font-size: 1rem; }
.btn-sm  { padding: 8px 18px; font-size: .82rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-primary   { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--glow-sm); color: #fff; }

.btn-secondary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); transform: translateY(-2px); color: #fff; }

.btn-outline   { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost-white { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost-white:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); color: #fff; }

.btn-cta-primary  { background: #fff; color: var(--primary-dark); border-color: #fff; }
.btn-cta-primary:hover  { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-2px); color: var(--primary-dark); }
.btn-cta-secondary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-cta-secondary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); color: #fff; }

/* ── Badges ────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.badge-primary   { background: rgba(13,148,136,.12); color: var(--primary); border: 1px solid rgba(13,148,136,.25); }
.badge-secondary { background: rgba(52,211,153,.12); color: var(--secondary); border: 1px solid rgba(52,211,153,.25); }
.badge-accent    { background: rgba(245,158,11,.12); color: var(--accent); border: 1px solid rgba(245,158,11,.25); }
.badge-success   { background: rgba(16,185,129,.12); color: var(--success); border: 1px solid rgba(16,185,129,.25); }

/* ── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb { background: var(--dark-2); border-bottom: 1px solid var(--border-light); padding: 10px 0; }
.bc-list {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .8rem; color: var(--mid);
}
.bc-list a { color: var(--mid); }
.bc-list a:hover { color: var(--primary); }
.bc-list .active { color: var(--white); font-weight: 600; }
.bc-list .fa-chevron-right { font-size: .6rem; color: var(--dark-5); }

/* ── Section Header ────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800; margin: 16px 0 18px;
  color: var(--white);
}
.section-title span { color: var(--secondary); }
.section-title em   { color: var(--accent); font-style: normal; }
.section-desc { max-width: 640px; margin: 0 auto; color: var(--mid-light); font-size: 1.05rem; }

/* ── Sec Tag ───────────────────────────────────────────────────── */
.sec-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(13,148,136,.1); border: 1px solid rgba(13,148,136,.2);
  color: var(--secondary); padding: 5px 14px; border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #010f0d 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(13,148,136,.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* Hero Copy */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,148,136,.12); border: 1px solid rgba(13,148,136,.3);
  color: var(--secondary); padding: 7px 16px; border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 3.8vw, 2.9rem); font-weight: 900;
  color: var(--white); margin-bottom: 20px; letter-spacing: -.025em;
  line-height: 1.15;
}
.hero h1 span { color: var(--secondary); }
.hero-sub { font-size: 1.05rem; color: var(--mid-light); margin-bottom: 32px; max-width: 540px; }
.hero-cta { margin-bottom: 40px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hstat { display: flex; flex-direction: column; }
.hstat-num {
  font-size: 1.6rem; font-weight: 900; color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hstat-label { font-size: .75rem; color: var(--mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* ── Generation Tree Visual ────────────────────────────────────── */
.gen-tree-wrap {
  background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  box-shadow: var(--shadow-xl), var(--glow);
  position: relative;
}
.tree-label { font-size: 1.05rem; font-weight: 800; color: var(--white); text-align: center; margin-bottom: 4px; }
.tree-sublabel { font-size: .75rem; color: var(--secondary); text-align: center; margin-bottom: 20px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* Generation tree structure */
.gen-tree { display: flex; flex-direction: column; align-items: center; gap: 0; }
.gen-row { display: flex; justify-content: center; align-items: center; gap: 8px; position: relative; flex-wrap: wrap; }
.gen-vline { width: 2px; height: 18px; background: linear-gradient(to bottom, var(--primary), rgba(13,148,136,.25)); margin: 0 auto; }
.gen-hline-wrap { display: flex; align-items: flex-start; justify-content: center; width: 100%; }
.gen-hline { height: 2px; flex: 1; background: linear-gradient(90deg, transparent, rgba(13,148,136,.4), transparent); max-width: 280px; margin-top: 16px; }

/* Gen Node */
.gen-node {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  position: relative;
}
.gen-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: var(--mid-light);
  transition: var(--transition);
}
.gen-node.you .gen-avatar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--secondary); color: #fff;
  width: 52px; height: 52px; font-size: .75rem;
  box-shadow: var(--glow-sm);
}
.gen-node.gen1 .gen-avatar { border-color: var(--secondary); color: var(--secondary); background: rgba(52,211,153,.12); }
.gen-node.gen2 .gen-avatar { border-color: rgba(52,211,153,.5); color: rgba(52,211,153,.8); }
.gen-node.gen3 .gen-avatar { border-color: rgba(13,148,136,.4); opacity: .85; }
.gen-node.gen4 .gen-avatar { border-color: rgba(13,148,136,.25); opacity: .7; }
.node-lbl { font-size: .6rem; color: var(--mid); font-weight: 700; text-align: center; white-space: nowrap; }
.gen-badge {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: .52rem; font-weight: 800;
  padding: 1px 5px; border-radius: var(--radius-full); white-space: nowrap;
}

/* Gen row labels */
.gen-row-label {
  font-size: .62rem; color: var(--secondary); font-weight: 700;
  background: rgba(13,148,136,.12); border: 1px solid rgba(13,148,136,.2);
  border-radius: var(--radius-full); padding: 2px 8px; white-space: nowrap;
  margin-right: 6px;
}

/* Tree legend */
.tree-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; justify-content: center; }
.tl-item { display: flex; align-items: center; gap: 5px; font-size: .67rem; color: var(--mid-light); }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* Tree stats */
.tree-stats {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 8px;
  margin-bottom: 16px;
}
.tree-stat {
  background: rgba(13,148,136,.08); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 10px 12px; text-align: center;
}
.ts-val { font-size: 1rem; font-weight: 800; color: var(--secondary); display: block; }
.ts-key { font-size: .65rem; color: var(--mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.sla-chip {
  position: absolute; top: 16px; right: 16px;
  background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius-full); padding: 4px 10px;
  font-size: .7rem; font-weight: 700; color: #10b981;
}

/* ── Stats Strip ───────────────────────────────────────────────── */
.stats-strip {
  background: var(--dark-2); border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light); padding: 40px 0;
}
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 28px; }
.stat-item { text-align: center; }
.stat-num {
  font-size: 2rem; font-weight: 900; display: block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .78rem; color: var(--mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── Cards ─────────────────────────────────────────────────────── */
.card {
  background: var(--dark-3); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(13,148,136,.05) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(13,148,136,.2), rgba(52,211,153,.1));
  border: 1px solid rgba(13,148,136,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--secondary); margin-bottom: 18px;
}
.card h4 { color: var(--white); margin-bottom: 10px; }
.card p  { font-size: .9rem; }

/* Card number variant */
.card .card-num {
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; margin-bottom: 6px;
}

/* ── Tabs ──────────────────────────────────────────────────────── */
.tabs-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 32px; padding-bottom: 0;
}
.tab-btn {
  padding: 10px 20px; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-size: .85rem; font-weight: 600; color: var(--mid-light);
  transition: var(--transition); border: 1px solid transparent;
  border-bottom: none; margin-bottom: -1px; position: relative;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active {
  color: var(--secondary); background: var(--dark-3);
  border-color: var(--border-light) var(--border-light) var(--dark-3);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Accordion / FAQ ───────────────────────────────────────────── */
.acc-item {
  border: 1px solid var(--border-light); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 10px; transition: var(--transition);
}
.acc-item.open { border-color: var(--border); }
.acc-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; text-align: left;
  font-size: .95rem; font-weight: 600; color: var(--white);
  background: var(--dark-3); transition: var(--transition);
}
.acc-q:hover { background: var(--dark-4); color: var(--secondary); }
.acc-q .acc-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(13,148,136,.12); border: 1px solid rgba(13,148,136,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--secondary); flex-shrink: 0;
  transition: transform var(--transition);
}
.acc-item.open .acc-q .acc-icon { transform: rotate(45deg); background: rgba(13,148,136,.2); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s var(--ease);
  background: var(--dark-2); padding: 0 22px;
}
.acc-item.open .acc-body {
  max-height: 800px; padding: 16px 22px 20px;
}
.acc-body p, .acc-body li { font-size: .92rem; color: var(--mid-light); line-height: 1.7; }
.acc-body ul { padding-left: 18px; list-style: disc; margin-top: 8px; }
.acc-body ul li { margin-bottom: 4px; }

/* ── Tables ────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
table { width: 100%; border-collapse: collapse; }
thead tr { background: rgba(13,148,136,.15); }
thead th {
  padding: 14px 18px; text-align: left; font-size: .82rem;
  font-weight: 700; color: var(--secondary); letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid var(--border-light); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(13,148,136,.05); }
tbody td {
  padding: 13px 18px; font-size: .9rem; color: var(--mid-light);
  vertical-align: middle;
}
tbody td strong { color: var(--white); }
.td-good { color: var(--success); font-weight: 700; }
.td-warn { color: var(--warning); font-weight: 700; }
.td-info { color: var(--info); font-weight: 700; }
.td-primary { color: var(--secondary); font-weight: 700; }
.td-accent  { color: var(--accent); font-weight: 700; }
.chip {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700;
}
.chip-green  { background: rgba(16,185,129,.12); color: #10b981; }
.chip-teal   { background: rgba(13,148,136,.12); color: var(--secondary); }
.chip-blue   { background: rgba(59,130,246,.12); color: #3b82f6; }
.chip-orange { background: rgba(245,158,11,.12); color: var(--accent); }
.chip-red    { background: rgba(239,68,68,.12); color: var(--danger); }
.chip-purple { background: rgba(139,92,246,.12); color: var(--purple); }

/* ── How It Works ──────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step-card {
  background: var(--dark-3); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px 22px;
  position: relative; transition: var(--transition);
}
.step-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: -12px; left: 22px;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: #fff;
}
.step-icon { font-size: 1.8rem; color: var(--secondary); margin: 12px 0 14px; }
.step-card h4 { color: var(--white); margin-bottom: 8px; font-size: 1.05rem; }
.step-card p  { font-size: .88rem; }

/* ── Commission Cards ──────────────────────────────────────────── */
.comm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.comm-card {
  background: var(--dark-3); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px 22px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.comm-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.comm-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.comm-icon { font-size: 1.6rem; color: var(--secondary); margin-bottom: 12px; }
.comm-card h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.comm-card p  { font-size: .87rem; }
.comm-rate {
  display: inline-block; margin-top: 12px;
  background: rgba(13,148,136,.12); border: 1px solid rgba(13,148,136,.2);
  color: var(--secondary); padding: 3px 12px; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 700;
}

/* ── Benefits ──────────────────────────────────────────────────── */
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--dark-3); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 18px 20px;
  transition: var(--transition);
}
.benefit-item:hover { border-color: var(--border); background: var(--dark-4); }
.benefit-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md); flex-shrink: 0;
  background: rgba(13,148,136,.12); border: 1px solid rgba(13,148,136,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--secondary);
}
.benefit-item h5 { color: var(--white); margin-bottom: 4px; font-size: .95rem; }
.benefit-item p  { font-size: .84rem; }

/* ── Feature Grid ──────────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card {
  background: var(--dark-3); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card .fc-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(13,148,136,.2), rgba(52,211,153,.1));
  border: 1px solid rgba(13,148,136,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--secondary); margin-bottom: 14px;
}
.feature-card h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.feature-card p  { font-size: .86rem; }
.feature-card ul { padding-left: 16px; list-style: disc; margin-top: 10px; }
.feature-card ul li { font-size: .84rem; color: var(--mid-light); margin-bottom: 4px; }

/* ── Advanced Logic Box ────────────────────────────────────────── */
.logic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.logic-card {
  background: var(--dark-3); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.logic-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); }
.logic-card h4 { color: var(--secondary); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.logic-card p  { font-size: .9rem; }
.logic-card ul { padding-left: 18px; list-style: disc; margin-top: 12px; }
.logic-card ul li { font-size: .87rem; color: var(--mid-light); margin-bottom: 5px; }
.logic-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(13,148,136,.12); border: 1px solid rgba(13,148,136,.2);
  color: var(--secondary); padding: 3px 10px; border-radius: var(--radius-full);
  font-size: .66rem; font-weight: 700; text-transform: uppercase;
}

/* ── Comparison Table ──────────────────────────────────────────── */
.comp-table thead th:first-child { width: 26%; }
.feature-icon-yes { color: var(--success); }
.feature-icon-no  { color: var(--danger); opacity: .6; }
.feature-icon-partial { color: var(--warning); }
.comp-highlight { background: rgba(13,148,136,.07) !important; }

/* ── Testimonials / Slider ─────────────────────────────────────── */
.slider-section { background: var(--dark-2); }
.testimonial-slider { position: relative; overflow: hidden; }
.ts-track { display: flex; transition: transform .5s var(--ease); }
.ts-slide {
  min-width: 100%; padding: 0 8px;
}
.testimonial-card {
  background: var(--dark-3); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 36px;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.tc-quote {
  font-size: 1.05rem; color: var(--mid-light); line-height: 1.75;
  font-style: italic; margin-bottom: 28px;
}
.tc-stars { color: var(--accent); margin-bottom: 20px; font-size: 1.1rem; letter-spacing: 3px; }
.tc-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: #fff;
  margin: 0 auto 14px;
}
.tc-name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.tc-title { font-size: .82rem; color: var(--secondary); }
.slider-controls { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 28px; }
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(13,148,136,.12); border: 1px solid rgba(13,148,136,.25);
  color: var(--secondary); font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.slider-btn:hover { background: rgba(13,148,136,.25); color: #fff; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(13,148,136,.25); transition: var(--transition); cursor: pointer;
}
.slider-dot.active { background: var(--secondary); width: 22px; border-radius: 4px; }

/* ── Why MLM Mind ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--dark-3); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 18px 20px;
  transition: var(--transition);
}
.why-item:hover { border-color: var(--border); }
.why-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md); flex-shrink: 0;
  background: linear-gradient(135deg, rgba(13,148,136,.2), rgba(52,211,153,.1));
  border: 1px solid rgba(13,148,136,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--secondary);
}
.why-item h5 { color: var(--white); margin-bottom: 4px; }
.why-item p  { font-size: .86rem; }
.why-visual {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  box-shadow: var(--shadow-lg), var(--glow);
}
.metrics-list { display: flex; flex-direction: column; gap: 14px; }
.metric-row { display: flex; flex-direction: column; gap: 5px; }
.metric-label { font-size: .82rem; font-weight: 600; color: var(--mid-light); display: flex; justify-content: space-between; }
.metric-label span { color: var(--secondary); font-weight: 700; }
.metric-bar-bg {
  height: 8px; background: rgba(13,148,136,.12);
  border-radius: var(--radius-full); overflow: hidden;
}
.metric-bar {
  height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full); width: 0%;
  transition: width 1.2s var(--ease);
}

/* ── Case Study ────────────────────────────────────────────────── */
.case-study-wrap {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.cs-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25);
  color: var(--accent); padding: 5px 14px; border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.cs-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cs-body  { font-size: .95rem; color: var(--mid-light); margin-bottom: 20px; line-height: 1.75; }
.cs-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.cs-met {
  background: rgba(13,148,136,.08); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 14px 12px; text-align: center;
}
.cs-met-val { font-size: 1.4rem; font-weight: 900; color: var(--secondary); display: block; }
.cs-met-key { font-size: .7rem; color: var(--mid); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* Case Study chart area */
.cs-visual {
  background: var(--dark-4); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--border-light);
}
.cs-chart-title { font-size: .85rem; font-weight: 700; color: var(--white); text-align: center; margin-bottom: 18px; }
.cs-bars { display: flex; align-items: flex-end; justify-content: space-around; height: 160px; gap: 8px; }
.cs-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.cs-bar {
  width: 100%; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  transition: height 1.2s var(--ease);
  max-width: 44px; margin: 0 auto;
}
.cs-bar-label { font-size: .65rem; color: var(--mid); font-weight: 600; white-space: nowrap; }
.cs-bar-val { font-size: .7rem; color: var(--secondary); font-weight: 800; }

/* ── Earnings Simulator ────────────────────────────────────────── */
.simulator-wrap {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow-lg), var(--glow);
}
.sim-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.sim-group { display: flex; flex-direction: column; gap: 6px; }
.sim-group label { font-size: .82rem; font-weight: 600; color: var(--mid-light); }
.sim-group input, .sim-group select {
  background: var(--dark-4); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 10px 14px;
  color: var(--white); font-size: .9rem; font-family: var(--font-body);
  transition: var(--transition);
}
.sim-group input:focus, .sim-group select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,148,136,.15);
}
.sim-group select option { background: var(--dark-3); }
.sim-results {
  background: var(--dark-4); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px;
}
.sim-results-title { font-size: .82rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.sim-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.sim-row:last-child { border-bottom: none; }
.sim-row-label { font-size: .87rem; color: var(--mid-light); }
.sim-row-val { font-size: .95rem; font-weight: 700; color: var(--white); }
.sim-total { background: rgba(13,148,136,.1); border: 1px solid rgba(13,148,136,.25); border-radius: var(--radius-md); padding: 14px 18px; margin-top: 14px; display: flex; justify-content: space-between; align-items: center; }
.sim-total-label { font-size: .9rem; font-weight: 700; color: var(--white); }
.sim-total-val { font-size: 1.4rem; font-weight: 900; color: var(--secondary); }

/* ── Sustainability Section ────────────────────────────────────── */
.sustain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.sustain-card {
  background: var(--dark-3); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px;
  text-align: center; transition: var(--transition);
}
.sustain-card:hover { border-color: var(--border); transform: translateY(-3px); }
.sustain-icon { font-size: 2rem; margin-bottom: 12px; }
.sustain-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.sustain-card p  { font-size: .86rem; }

/* ── CTA Section ───────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, #010d0b 50%, var(--dark-3) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(13,148,136,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.25);
  color: var(--secondary); padding: 6px 16px; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 18px; line-height: 1.15; }
.cta-title span { color: var(--secondary); }
.cta-sub { font-size: 1.05rem; color: var(--mid-light); margin-bottom: 36px; }
.cta-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 36px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .84rem; color: var(--mid-light); }
.trust-item i { color: var(--secondary); }

/* ── Sticky Bar ────────────────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(2,12,11,.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; max-width: var(--container); margin: 0 auto; gap: 16px;
}
.sticky-copy h5 { color: var(--white); font-size: .95rem; margin-bottom: 2px; }
.sticky-copy p  { font-size: .78rem; color: var(--mid); margin: 0; }
.sticky-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Back to Top ───────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 72px; right: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md), var(--glow-sm);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); color: #fff; transform: translateY(-3px); }

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--dark-2); border-top: 1px solid var(--border-light);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 16px;
}
.footer-logo .logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: #fff;
}
.footer-brand p { font-size: .88rem; color: var(--mid); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark-4); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--mid-light); transition: var(--transition);
}
.social-btn:hover { background: rgba(13,148,136,.2); border-color: var(--border); color: var(--secondary); }
.footer-col h6 { font-size: .82rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .86rem; color: var(--mid); transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid var(--border-light); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: var(--mid); margin: 0; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: .78rem; color: var(--mid); transition: var(--transition); }
.footer-legal a:hover { color: var(--secondary); }

/* ── AOS Animations ────────────────────────────────────────────── */
[data-aos] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .hero-wrap { grid-template-columns: 1fr; gap: 36px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .steps-grid, .comm-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
  .logic-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .case-study-wrap { grid-template-columns: 1fr; }
  .cs-metrics { grid-template-columns: repeat(3,1fr); }
  .sim-form { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  :root { --section-pad: 56px; }
  .steps-grid, .comm-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .cs-metrics { grid-template-columns: 1fr 1fr; }
  .sticky-inner { flex-direction: column; gap: 8px; padding: 10px 16px; }
  .sticky-copy { text-align: center; }
  .sim-results-title { font-size: .75rem; }
  .hero-stats { gap: 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
