/* ==============================================
   GENERATION MLM SOFTWARE PAGE
   generation.css — Page-specific styles
   Extends: css/style.css
   Theme: Amber / Orange / Deep-Indigo
   ============================================== */

/* ===========================
   CSS OVERRIDES — GENERATION ACCENT
   =========================== */
:root {
  --gen-primary: #f59e0b;
  --gen-primary-dark: #d97706;
  --gen-primary-light: #fbbf24;
  --gen-secondary: #92400e;
  --gen-accent: #f97316;
  --gen-accent-light: #fb923c;
  --gen-dark: #1c1917;
  --gen-green: #22c55e;
}

/* ===========================
   BREADCRUMB BAR
   =========================== */
.breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.625rem 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb a { color: var(--gray-500); font-weight: 500; }
.breadcrumb a:hover { color: var(--gen-primary); }
.breadcrumb li[aria-current="page"] { color: var(--gray-900); font-weight: 600; }
.breadcrumb i { color: var(--gray-400); font-size: 0.65rem; }

/* ===========================
   EEAT AUTHOR BOX
   =========================== */
.eeat-author-box {
  display: flex;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.05), rgba(249,115,22,0.04));
  border: 1px solid rgba(245,158,11,0.2);
  border-left: 4px solid var(--gen-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.eeat-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gen-primary), var(--gen-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.375rem;
  flex-shrink: 0;
}
.eeat-name { font-weight: 700; font-size: 0.9375rem; color: var(--gray-900); margin-bottom: 0.5rem; }
.eeat-creds { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 0.625rem; }
.eeat-creds span { display: flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--gray-500); font-weight: 500; }
.eeat-creds i { color: var(--gen-primary); font-size: 0.75rem; }
.eeat-summary { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ===========================
   BG SECTION VARIANTS
   =========================== */
.bg-light-section { background: var(--gray-50); }
.bg-dark-section {
  background: linear-gradient(160deg, #1c1917 0%, #78350f 55%, #d97706 100%);
}

/* ===========================
   HERO — GENERATION TWO-COLUMN LAYOUT
   =========================== */
.hero-generation {
  min-height: 640px;
  padding: 4.5rem 0 5rem;
}
.hero-generation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-generation-copy { max-width: 560px; }

/* ===========================
   GENERATION HERO DIAGRAM
   =========================== */
.generation-hero-diagram {
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 100px;
}
.ghd-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.ghd-header i { color: var(--gen-primary-light); flex-shrink: 0; }
.ghd-badge {
  margin-left: auto;
  background: rgba(245,158,11,0.2);
  color: #fde68a;
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Generation row */
.ghd-gen {
  margin-bottom: 0.75rem;
}
.ghd-gen-label {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.ghd-gen-label.g0 { color: #fde68a; }
.ghd-gen-label.g1 { color: #6ee7b7; }
.ghd-gen-label.g2 { color: #93c5fd; }
.ghd-gen-label.g3 { color: #c4b5fd; }
.ghd-gen-label.g4 { color: #fca5a5; }

/* Gen connector */
.ghd-connector {
  width: 2px;
  height: 16px;
  background: linear-gradient(to bottom, rgba(245,158,11,0.5), rgba(249,115,22,0.2));
  margin: 0 auto 0.625rem;
}

/* Node row */
.ghd-row {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* Generation node */
.ghd-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  cursor: default;
  position: relative;
}
.ghd-node-avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  transition: transform 0.2s;
}
.ghd-node-avatar:hover { transform: scale(1.12); }
.ghd-node-name {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.1;
}
.ghd-node-pct {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

/* Node sizes */
.ghd-node.root .ghd-node-avatar {
  width: 54px; height: 54px;
  font-size: 1.2rem;
  border-color: var(--gen-primary-light);
  background: rgba(245,158,11,0.18);
  color: var(--gen-primary-light);
  box-shadow: 0 0 18px rgba(245,158,11,0.3);
}
.ghd-node.g1 .ghd-node-avatar {
  width: 42px; height: 42px; font-size: 0.9rem;
  border-color: #34d399; background: rgba(16,185,129,0.15); color: #34d399;
}
.ghd-node.g2 .ghd-node-avatar {
  width: 36px; height: 36px; font-size: 0.8rem;
  border-color: #60a5fa; background: rgba(59,130,246,0.12); color: #60a5fa;
}
.ghd-node.g3 .ghd-node-avatar {
  width: 30px; height: 30px; font-size: 0.7rem;
  border-color: #a78bfa; background: rgba(139,92,246,0.12); color: #a78bfa;
}
.ghd-node.g4 .ghd-node-avatar {
  width: 26px; height: 26px; font-size: 0.62rem;
  border-color: #f87171; background: rgba(239,68,68,0.12); color: #f87171;
}
.ghd-node.inactive .ghd-node-avatar {
  border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.25); border-style: dashed;
  width: 26px; height: 26px; font-size: 0.62rem;
}

/* Tooltip */
.ghd-node[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.9); color: #fff;
  font-size: 0.68rem; white-space: nowrap;
  padding: 3px 7px; border-radius: 4px;
  pointer-events: none; z-index: 10;
}

/* Summary bar */
.ghd-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0 0.875rem;
  padding: 0.875rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}
.ghd-sum-item { text-align: center; }
.ghd-sum-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gen-primary-light);
  font-family: var(--font-primary);
  line-height: 1;
}
.ghd-sum-item.total .ghd-sum-num { color: var(--gen-primary-light); font-size: 1.5rem; }
.ghd-sum-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.ghd-sum-sep { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.2); align-self: flex-start; padding-top: 2px; }

/* Progress bar */
.ghd-progress-wrap { margin-bottom: 0.875rem; }
.ghd-progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  margin-bottom: 0.375rem; font-weight: 500;
}
.ghd-progress-pct { font-weight: 700; color: var(--gen-primary-light); }
.ghd-progress-bar {
  height: 6px; background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full); overflow: hidden;
}
.ghd-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gen-primary), var(--gen-accent));
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}
.ghd-progress-sub { font-size: 0.63rem; color: rgba(255,255,255,0.35); margin-top: 0.3rem; text-align: center; }

/* Legend */
.ghd-legend {
  display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap;
}
.ghd-leg-item {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.67rem; color: rgba(255,255,255,0.4);
}
.ghd-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 2px solid; flex-shrink: 0;
}
.ghd-dot.root { border-color: var(--gen-primary-light); background: rgba(245,158,11,0.35); }
.ghd-dot.g1 { border-color: #34d399; background: rgba(16,185,129,0.3); }
.ghd-dot.g2 { border-color: #60a5fa; background: rgba(59,130,246,0.25); }
.ghd-dot.g3 { border-color: #a78bfa; background: rgba(139,92,246,0.25); }
.ghd-dot.g4 { border-color: #f87171; background: rgba(239,68,68,0.25); }

/* ===========================
   INTRO TEXT & CARDS
   =========================== */
.gen-intro-text {
  max-width: 860px;
  margin: 0 auto 3rem;
}
.gen-intro-text p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.gen-intro-text p:last-child { margin-bottom: 0; }

.gen-intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.genic-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.genic-card:hover {
  border-color: var(--gen-primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.genic-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.375rem; flex-shrink: 0;
}
.genic-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 0; }
.genic-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* ===========================
   HOW IT WORKS — GRID STEPS
   =========================== */
.how-gen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.hgg-step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.hgg-step:hover {
  border-color: var(--gen-primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.hgg-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gen-primary), var(--gen-accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.hgg-step:hover::before { opacity: 1; }
.hgg-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(249,115,22,0.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--gen-primary); font-size: 1.375rem; flex-shrink: 0;
}
.hgg-step-num {
  font-size: 2.5rem; font-weight: 900;
  color: rgba(245,158,11,0.08);
  font-family: var(--font-primary); line-height: 1;
  position: absolute; top: 1rem; right: 1.25rem;
}
.hgg-step h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 0; line-height: 1.4; }
.hgg-step p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* ===========================
   TYPES OF GENERATION PLANS — ACCORDION
   =========================== */
.gen-types-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.genta-item { border-bottom: 1px solid var(--gray-200); }
.genta-item:last-child { border-bottom: none; }
.genta-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.5rem;
  background: #fff; border: none; cursor: pointer;
  text-align: left; gap: 1rem; transition: background 0.2s;
}
.genta-trigger:hover { background: var(--gray-50); }
.genta-item.open .genta-trigger { background: rgba(245,158,11,0.03); }
.genta-trig-left { display: flex; align-items: center; gap: 1rem; flex: 1; }
.genta-trig-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.125rem; flex-shrink: 0;
}
.genta-trig-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.2rem; }
.genta-trig-sub { font-size: 0.8rem; color: var(--gray-500); font-weight: 400; }
.genta-arrow { color: var(--gray-400); font-size: 0.875rem; transition: transform 0.3s; flex-shrink: 0; }
.genta-item.open .genta-arrow { transform: rotate(180deg); color: var(--gen-primary); }
.genta-body {
  display: none;
  padding: 0 1.5rem 1.5rem 4rem;
  background: rgba(245,158,11,0.02);
}
.genta-item.open .genta-body { display: block; }
.genta-body p { font-size: 0.9375rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; }
.genta-body p:last-of-type { margin-bottom: 1.25rem; }
.genta-stats { display: flex; gap: 1rem; flex-wrap: wrap; }
.genta-stat {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem; min-width: 130px; text-align: center;
}
.genta-stat-num { display: block; font-size: 1.375rem; font-weight: 900; color: var(--gen-primary); font-family: var(--font-primary); }
.genta-stat-lbl { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }

/* ===========================
   KEY FEATURES — GRID WITH ICONS
   =========================== */
.gen-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.genf-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.875rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.genf-card:hover {
  border-color: var(--gen-primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.genf-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gen-primary), var(--gen-accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.genf-card:hover::after { transform: scaleX(1); }
.genf-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.25rem; flex-shrink: 0;
}
.genf-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--gray-900); margin: 0; line-height: 1.35; }
.genf-card p { font-size: 0.8375rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ===========================
   BENEFITS — DUAL ACCORDION
   =========================== */
.gen-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.gen-benefits-accordion {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); overflow: hidden;
}
.gen-benefits-accordion + .gen-benefits-accordion {
  border-left: none;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}
.genb-item { border-bottom: 1px solid var(--gray-200); }
.genb-item:last-child { border-bottom: none; }
.genb-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.375rem;
  background: #fff; border: none; cursor: pointer;
  text-align: left; gap: 0.875rem; transition: background 0.2s;
}
.genb-trigger:hover { background: var(--gray-50); }
.genb-item.open .genb-trigger { background: rgba(245,158,11,0.03); }
.genb-trig-left { display: flex; align-items: center; gap: 0.875rem; flex: 1; }
.genb-trig-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
.genb-trig-title { font-size: 0.9375rem; font-weight: 700; color: var(--gray-900); }
.genb-arrow { color: var(--gray-400); font-size: 0.8rem; transition: transform 0.3s; flex-shrink: 0; }
.genb-item.open .genb-arrow { transform: rotate(180deg); color: var(--gen-primary); }
.genb-body {
  display: none;
  padding: 0 1.375rem 1.375rem 3.5rem;
  background: rgba(245,158,11,0.02);
}
.genb-item.open .genb-body { display: block; }
.genb-body p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.8; margin: 0; }

/* ===========================
   COMPARISON TABLE
   =========================== */
.gencomp-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.gencomp-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem; min-width: 700px;
}
.gencomp-table thead th {
  padding: 1.125rem 1.25rem;
  font-weight: 700; font-size: 0.9rem;
  text-align: left; border-bottom: 2px solid var(--gray-200);
}
.gencomp-table thead th:first-child { background: var(--gray-50); color: var(--gray-700); }
.gencomp-table thead th.col-highlight {
  background: linear-gradient(135deg, var(--gen-primary), var(--gen-accent));
  color: #fff;
}
.gencomp-table tbody tr:hover { background: var(--gray-50); }
.gencomp-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle; color: var(--gray-700);
}
.gencomp-table td:first-child {
  font-weight: 600; color: var(--gray-900); background: var(--gray-50);
}
.gencomp-table td.cell-yes { color: var(--gen-green); font-weight: 700; }
.gencomp-table td.cell-no { color: var(--danger); }
.gencomp-table td.col-highlight { background: rgba(245,158,11,0.05); font-weight: 600; color: #92400e; }
.gencomp-table tr:last-child td { border-bottom: none; }
.gencomp-table i { margin-right: 0.25rem; }

/* ===========================
   WHO SHOULD USE — GRID
   =========================== */
.gen-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.genw-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  transition: var(--transition);
}
.genw-card:hover {
  border-color: var(--gen-primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.genw-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
}
.genw-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 0; }
.genw-card p { font-size: 0.8375rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ===========================
   CASE STUDY CARD
   =========================== */
.gen-case-study-card {
  background: linear-gradient(135deg, #1c1917 0%, #78350f 55%, #b45309 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gen-case-study-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  pointer-events: none;
}
.gencs-header {
  display: flex; align-items: flex-start; gap: 1.5rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.gencs-logo {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--gen-primary-light); flex-shrink: 0;
}
.gencs-company h3 { font-size: 1.375rem; font-weight: 800; color: #fff; margin-bottom: 0.375rem; }
.gencs-company p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin: 0; }
.gencs-badge {
  margin-left: auto;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.3);
  color: #fde68a;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 700;
}
.gencs-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-bottom: 2rem;
}
.gencs-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem; text-align: center;
}
.gencs-stat-num {
  display: block; font-size: 1.75rem; font-weight: 900;
  color: var(--gen-primary-light); font-family: var(--font-primary);
  line-height: 1; margin-bottom: 0.375rem;
}
.gencs-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.gencs-body p { font-size: 0.9375rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 1rem; }
.gencs-body p:last-child { margin-bottom: 0; }
.gencs-quote {
  border-left: 3px solid var(--gen-primary-light);
  padding: 1rem 1.25rem;
  background: rgba(245,158,11,0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 1.5rem;
  font-style: italic; font-size: 0.9375rem;
  color: rgba(255,255,255,0.85); line-height: 1.7;
}

/* ===========================
   WHY CHOOSE — ACCORDION
   =========================== */
.gen-why-accordion {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); overflow: hidden;
}
.genwhy-item { border-bottom: 1px solid var(--gray-200); }
.genwhy-item:last-child { border-bottom: none; }
.genwhy-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.5rem;
  background: #fff; border: none; cursor: pointer;
  text-align: left; gap: 1rem; transition: background 0.2s;
}
.genwhy-trigger:hover { background: var(--gray-50); }
.genwhy-item.open .genwhy-trigger { background: rgba(245,158,11,0.03); }
.genwhy-trig-left { display: flex; align-items: center; gap: 1rem; flex: 1; }
.genwhy-trig-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.125rem; flex-shrink: 0;
}
.genwhy-trig-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.2rem; }
.genwhy-trig-sub { font-size: 0.8rem; color: var(--gray-500); font-weight: 400; }
.genwhy-arrow { color: var(--gray-400); font-size: 0.875rem; transition: transform 0.3s; flex-shrink: 0; }
.genwhy-item.open .genwhy-arrow { transform: rotate(180deg); color: var(--gen-primary); }
.genwhy-body {
  display: none;
  padding: 0 1.5rem 1.5rem 4rem;
  background: rgba(245,158,11,0.02);
}
.genwhy-item.open .genwhy-body { display: block; }
.genwhy-body p { font-size: 0.9375rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 0.875rem; }
.genwhy-body p:last-child { margin-bottom: 0; }

/* ===========================
   EARNING EXAMPLE
   =========================== */
.gen-example-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.gen-example-params {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 2rem;
}
.gen-example-params h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--gray-900);
  margin-bottom: 1.5rem; padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--gray-100);
  display: flex; align-items: center; gap: 0.625rem;
}
.gen-example-params h3 i { color: var(--gen-primary); }
.gen-param-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem; gap: 1rem;
}
.gen-param-row:last-child { border-bottom: none; }
.gen-param-key { color: var(--gray-600); font-weight: 500; }
.gen-param-val { font-weight: 700; color: var(--gray-900); }
.gen-param-val.highlight { color: var(--gen-primary); font-size: 1rem; }

.gen-example-breakdown { display: flex; flex-direction: column; gap: 0.875rem; }
.gen-earn-level {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.125rem 1.375rem;
  display: flex; align-items: center; gap: 1.25rem;
  transition: var(--transition);
}
.gen-earn-level:hover { border-color: var(--gen-primary); box-shadow: var(--shadow-md); }
.gen-earn-gen-badge {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.78rem;
  flex-shrink: 0; font-family: var(--font-primary);
}
.gen-earn-gen-badge.g1 { background: rgba(245,158,11,0.15); color: #d97706; border: 2px solid var(--gen-primary); }
.gen-earn-gen-badge.g2 { background: rgba(16,185,129,0.15); color: #059669; border: 2px solid #10b981; }
.gen-earn-gen-badge.g3 { background: rgba(59,130,246,0.15); color: #2563eb; border: 2px solid #3b82f6; }
.gen-earn-gen-badge.g4 { background: rgba(139,92,246,0.15); color: #7c3aed; border: 2px solid #8b5cf6; }
.gen-earn-gen-badge.g5 { background: rgba(239,68,68,0.15); color: #dc2626; border: 2px solid #ef4444; }
.gen-earn-gen-badge.bonus { background: rgba(245,158,11,0.2); color: #92400e; border: 2px solid var(--gen-primary); }
.gen-earn-info { flex: 1; }
.gen-earn-info h4 { font-size: 0.875rem; font-weight: 700; color: var(--gray-900); margin: 0 0 0.2rem; }
.gen-earn-info p { font-size: 0.775rem; color: var(--gray-500); margin: 0; }
.gen-earn-amount { font-size: 1.2rem; font-weight: 900; color: var(--gen-primary); font-family: var(--font-primary); white-space: nowrap; }
.gen-earn-total {
  background: linear-gradient(135deg, #78350f, #d97706);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.gen-earn-total h4 { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; margin: 0; }
.gen-earn-total-amount { font-size: 2rem; font-weight: 900; color: #fff; font-family: var(--font-primary); }
.gen-earn-total-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* ===========================
   TESTIMONIALS
   =========================== */
.gen-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.gent-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: var(--transition);
}
.gent-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.gent-stars { color: var(--gen-primary); font-size: 0.875rem; }
.gent-quote { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; font-style: italic; flex: 1; }
.gent-author { display: flex; align-items: center; gap: 0.875rem; }
.gent-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
.gent-name { font-weight: 700; font-size: 0.875rem; color: var(--gray-900); }
.gent-role { font-size: 0.775rem; color: var(--gray-500); }

/* ===========================
   FAQ ACCORDION
   =========================== */
.gen-faq-accordion {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); overflow: hidden;
  max-width: 880px; margin: 0 auto;
}
.gen-faq-item { border-bottom: 1px solid var(--gray-200); }
.gen-faq-item:last-child { border-bottom: none; }
.gen-faq-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: #fff; border: none; cursor: pointer;
  text-align: left; gap: 1rem; transition: background 0.2s;
}
.gen-faq-trigger:hover { background: var(--gray-50); }
.gen-faq-item.open .gen-faq-trigger { background: rgba(245,158,11,0.03); }
.gen-faq-q { font-size: 1rem; font-weight: 700; color: var(--gray-900); flex: 1; line-height: 1.4; }
.gen-faq-arrow { color: var(--gray-400); font-size: 0.875rem; transition: transform 0.3s; flex-shrink: 0; }
.gen-faq-item.open .gen-faq-arrow { transform: rotate(180deg); color: var(--gen-primary); }
.gen-faq-body {
  display: none;
  padding: 0 1.5rem 1.375rem;
  background: rgba(245,158,11,0.02);
}
.gen-faq-item.open .gen-faq-body { display: block; }
.gen-faq-body p { font-size: 0.9375rem; color: var(--gray-700); line-height: 1.8; margin: 0; }

/* ===========================
   DEMO FORM
   =========================== */
.gen-demo-form-wrap {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 3rem;
  max-width: 780px; margin: 0 auto;
  box-shadow: var(--shadow-xl);
}
.gen-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-bottom: 1.25rem;
}
.gen-form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.gen-form-group.full { grid-column: 1 / -1; }
.gen-form-group label { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
.gen-form-group input,
.gen-form-group select,
.gen-form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem; color: var(--gray-900);
  font-family: var(--font-body); transition: border-color 0.2s; background: #fff;
}
.gen-form-group input:focus,
.gen-form-group select:focus,
.gen-form-group textarea:focus {
  outline: none; border-color: var(--gen-primary);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.gen-form-group textarea { resize: vertical; min-height: 100px; }
.gen-form-group .field-error { font-size: 0.8rem; color: var(--danger); display: none; }
.gen-form-group.has-error input,
.gen-form-group.has-error select { border-color: var(--danger); }
.gen-form-group.has-error .field-error { display: block; }
.gen-form-submit {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap; margin-top: 1.5rem;
}
.gen-form-note {
  font-size: 0.8125rem; color: var(--gray-500);
  display: flex; align-items: center; gap: 0.35rem;
}
.gen-form-note i { color: var(--gen-primary); }
.gen-form-success {
  display: none;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center; color: #78350f;
}
.gen-form-success.visible { display: block; }
.gen-form-success i { font-size: 2rem; color: var(--gen-primary); margin-bottom: 0.75rem; }

/* ===========================
   STICKY CTA BAR (mobile)
   =========================== */
.gen-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #78350f, #d97706);
  padding: 0.875rem 1.5rem; z-index: 999;
  align-items: center; justify-content: space-between;
  gap: 1rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.gen-sticky-cta p { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 600; margin: 0; }
.gen-sticky-cta .btn { white-space: nowrap; flex-shrink: 0; }

/* ===========================
   INTERNAL LINKS SECTION
   =========================== */
.gen-internal-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem; margin-top: 2rem;
}
.gen-int-link-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex; align-items: center; gap: 0.875rem;
  text-decoration: none; transition: var(--transition);
}
.gen-int-link-card:hover {
  border-color: var(--gen-primary);
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.gen-int-link-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
.gen-int-link-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--gray-900); }
.gen-int-link-text span { font-size: 0.775rem; color: var(--gray-500); }

/* ===========================
   SCROLL REVEAL
   =========================== */
.sr-hidden { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sr-hidden.sr-visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
  .gen-features-grid { grid-template-columns: repeat(3, 1fr); }
  .gen-who-grid { grid-template-columns: repeat(3, 1fr); }
  .gen-internal-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .hero-generation-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-generation-copy { max-width: 100%; }
  .hero-generation { padding: 3rem 0 3.5rem; }
  .generation-hero-diagram { position: static; }
  .gen-intro-cards { grid-template-columns: repeat(2, 1fr); }
  .how-gen-grid { grid-template-columns: repeat(2, 1fr); }
  .gen-features-grid { grid-template-columns: repeat(2, 1fr); }
  .gen-benefits-grid { grid-template-columns: 1fr; }
  .gen-benefits-accordion + .gen-benefits-accordion { border-left: 1px solid var(--gray-200); border-radius: var(--radius-xl); }
  .gen-who-grid { grid-template-columns: repeat(2, 1fr); }
  .gencs-stats { grid-template-columns: repeat(2, 1fr); }
  .gen-example-container { grid-template-columns: 1fr; }
  .gen-testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gen-internal-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .gen-intro-cards { grid-template-columns: 1fr; }
  .how-gen-grid { grid-template-columns: 1fr; }
  .gen-features-grid { grid-template-columns: 1fr 1fr; }
  .gen-who-grid { grid-template-columns: 1fr 1fr; }
  .gencs-stats { grid-template-columns: 1fr 1fr; }
  .gen-case-study-card { padding: 2rem 1.5rem; }
  .gen-demo-form-wrap { padding: 2rem 1.5rem; }
  .gen-form-grid { grid-template-columns: 1fr; }
  .gen-testimonials-grid { grid-template-columns: 1fr; }
  .gen-sticky-cta { display: flex; }
  .genta-body, .genb-body, .genwhy-body { padding: 0 1rem 1.25rem 1rem; }
  .gen-faq-accordion { max-width: 100%; }
}
@media (max-width: 480px) {
  .gen-features-grid { grid-template-columns: 1fr; }
  .gen-who-grid { grid-template-columns: 1fr; }
  .gen-internal-links { grid-template-columns: 1fr; }
  .gen-earn-total-amount { font-size: 1.5rem; }
}
