/* ==============================================
   GIFT DONATION MLM SOFTWARE PAGE
   gift-donation.css — Page-specific styles
   Extends: css/style.css
   Theme: Violet / Rose / Deep-Navy / Amber
   ============================================== */

/* ===========================
   CSS VARIABLES — GIFT/DONATION ACCENT
   =========================== */
:root {
  --gd-primary:       #7c3aed;
  --gd-primary-dark:  #6d28d9;
  --gd-primary-light: #a78bfa;
  --gd-secondary:     #4c1d95;
  --gd-accent:        #ec4899;
  --gd-accent-light:  #f472b6;
  --gd-amber:         #f59e0b;
  --gd-amber-light:   #fcd34d;
  --gd-green:         #10b981;
  --gd-teal:          #06b6d4;
  --gd-dark:          #1e1b4b;
  --gd-gradient:      linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --gd-gradient-dark: linear-gradient(160deg, #1e1b4b 0%, #4c1d95 55%, #7c3aed 100%);
}

/* ===========================
   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(--gd-primary); }
.breadcrumb li[aria-current="page"] { color: var(--gray-900); font-weight: 600; }
.breadcrumb i { color: var(--gray-400); font-size: 0.65rem; }

/* ===========================
   HERO — GIFT DONATION TWO-COLUMN
   =========================== */
.hero-gift-donation {
  min-height: 680px;
  padding: 4.5rem 0 5.5rem;
  background: var(--gd-gradient-dark);
}
.hero-gd-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-gd-copy { max-width: 580px; }

/* ===========================
   GIFT FLOW DIAGRAM
   =========================== */
.gift-flow-diagram {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 0 60px rgba(124,58,237,0.3);
  animation: float 6s ease-in-out infinite;
}

/* Header */
.gfd-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.gfd-header i { color: var(--gd-primary-light); }
.gfd-badge {
  margin-left: auto;
  background: rgba(124,58,237,0.25);
  color: #c4b5fd;
  border: 1px solid rgba(124,58,237,0.35);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
}
/* Status pill */
.gfd-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gfd-status.pending  { background: rgba(245,158,11,0.2);  color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }
.gfd-status.verified { background: rgba(16,185,129,0.2);  color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.gfd-status.blocked  { background: rgba(239,68,68,0.2);   color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }

/* Flow rows */
.gfd-flow { display: flex; flex-direction: column; gap: 0; }

/* Donor row */
.gfd-donor-row {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.gfd-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.gfd-avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.gfd-avatar:hover { transform: scale(1.1); }
.gfd-node.sender .gfd-avatar {
  width: 54px; height: 54px;
  border-color: var(--gd-amber);
  background: rgba(245,158,11,0.15);
  color: var(--gd-amber-light);
  box-shadow: 0 0 20px rgba(245,158,11,0.3);
}
.gfd-node.receiver .gfd-avatar {
  width: 46px; height: 46px;
  border-color: var(--gd-primary-light);
  background: rgba(124,58,237,0.15);
  color: var(--gd-primary-light);
}
.gfd-node.level2 .gfd-avatar {
  width: 36px; height: 36px; font-size: 0.8rem;
  border-color: var(--gd-accent-light);
  background: rgba(236,72,153,0.12);
  color: var(--gd-accent-light);
}
.gfd-node.level3 .gfd-avatar {
  width: 28px; height: 28px; font-size: 0.7rem;
  border-color: #67e8f9;
  background: rgba(6,182,212,0.1);
  color: #67e8f9;
}
.gfd-node.queued .gfd-avatar {
  width: 26px; height: 26px; font-size: 0.65rem;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.3);
  border-style: dashed;
}
.gfd-node-name {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-align: center;
}
.gfd-node-sub {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.gfd-node-amount {
  font-size: 0.58rem;
  font-weight: 700;
  color: #86efac;
}

/* Arrow / connector between nodes */
.gfd-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.3rem auto;
  gap: 0.25rem;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
}
.gfd-arrow-line {
  width: 2px;
  height: 18px;
  background: linear-gradient(to bottom, rgba(124,58,237,0.6), rgba(236,72,153,0.3));
  margin: 0 auto;
}
.gfd-arrow-h {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(124,58,237,0.5), rgba(236,72,153,0.3));
  max-width: 40px;
}
.gfd-arrow-label {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
}
/* Multi-node row */
.gfd-multi-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
/* Transaction row */
.gfd-tx-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
}
.gfd-tx-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.gfd-tx-arrow {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #86efac;
  font-size: 0.8rem;
}
.gfd-tx-arrow-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gd-amber), var(--gd-green));
  position: relative;
}
.gfd-tx-arrow-line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--gd-green);
}
.gfd-tx-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-weight: 600;
}

/* Timer */
.gfd-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.75rem;
  margin: 0.5rem 0;
  font-size: 0.65rem;
  color: var(--gd-amber-light);
  font-weight: 700;
}
.gfd-timer i { font-size: 0.7rem; }
.gfd-timer-count { font-family: monospace; font-size: 0.875rem; color: #fcd34d; }

/* Summary bar */
.gfd-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.875rem 0 0.5rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}
.gfd-sum-item { text-align: center; }
.gfd-sum-num {
  display: block;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--gd-primary-light);
  font-family: var(--font-primary);
  line-height: 1;
}
.gfd-sum-item.total .gfd-sum-num { color: var(--gd-amber-light); font-size: 1.3rem; }
.gfd-sum-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.35); font-weight: 500; }
.gfd-sum-sep { font-size: 0.875rem; font-weight: 700; color: rgba(255,255,255,0.15); }

/* Legend */
.gfd-legend {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.gfd-leg-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
}
.gfd-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid;
}
.gfd-dot.sender-d  { border-color: var(--gd-amber);         background: rgba(245,158,11,0.25); }
.gfd-dot.recv-d    { border-color: var(--gd-primary-light); background: rgba(124,58,237,0.25); }
.gfd-dot.l2-d      { border-color: var(--gd-accent-light);  background: rgba(236,72,153,0.2); }
.gfd-dot.queue-d   { border-color: rgba(255,255,255,0.2);   background: transparent; border-style: dashed; }

/* ===========================
   EEAT AUTHOR BOX
   =========================== */
.eeat-author-box {
  display: flex;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(236,72,153,0.04));
  border: 1px solid rgba(124,58,237,0.18);
  border-left: 4px solid var(--gd-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: var(--gd-gradient);
  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(--gd-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-gd { background: var(--gd-gradient-dark); color: #fff; }
.bg-dark-gd .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.bg-dark-gd h2 { color: #fff; }
.bg-dark-gd .section-intro { color: rgba(255,255,255,0.6); }

/* ===========================
   INTRO DIFFERENCE CARDS
   =========================== */
.gd-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.gd-diff-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.875rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.gd-diff-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gd-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.gd-diff-card:hover { border-color: var(--gd-primary); box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.gd-diff-card:hover::after { opacity: 1; }
.gd-diff-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; flex-shrink: 0;
}
.gd-diff-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 0; }
.gd-diff-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* ===========================
   HOW IT WORKS — STEP GRID
   =========================== */
.how-gd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.how-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; overflow: hidden;
  transition: var(--transition);
}
.how-step:hover { border-color: var(--gd-primary); box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.how-step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gd-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.how-step:hover::before { opacity: 1; }
.step-num-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gd-gradient);
  color: #fff; font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}
.how-step h3 { font-size: 0.9375rem; font-weight: 700; color: var(--gray-900); margin: 0; }
.how-step p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; margin: 0; }
.step-alert {
  display: flex; align-items: flex-start; gap: 0.4rem;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.625rem;
  font-size: 0.78rem;
  color: #dc2626;
  font-weight: 500;
}
.step-alert i { flex-shrink: 0; margin-top: 1px; font-size: 0.75rem; }
.step-success {
  display: flex; align-items: flex-start; gap: 0.4rem;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.625rem;
  font-size: 0.78rem;
  color: #059669;
  font-weight: 500;
}
.step-success i { flex-shrink: 0; margin-top: 1px; font-size: 0.75rem; }

/* ===========================
   TABS COMPONENT
   =========================== */
.gd-tabs-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gd-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
  scrollbar-width: none;
}
.gd-tab-nav::-webkit-scrollbar { display: none; }
.gd-tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.gd-tab-btn:hover { color: var(--gd-primary); background: rgba(124,58,237,0.04); }
.gd-tab-btn.active {
  color: var(--gd-primary);
  border-bottom-color: var(--gd-primary);
  background: rgba(124,58,237,0.05);
}
.gd-tab-btn i { font-size: 0.875rem; }
.gd-tab-panel { display: none; padding: 2.5rem; }
.gd-tab-panel.active { display: block; }

/* ===========================
   EARNING EXAMPLE TABLE
   =========================== */
.earn-example-wrap {
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: #fff;
}
.earn-ex-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.earn-ex-badge {
  background: rgba(245,158,11,0.15);
  color: var(--gd-amber-light);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.earn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.earn-table th {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.625rem 0.875rem;
  text-align: left;
}
.earn-table td {
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
}
.earn-table tr:last-child td { border-bottom: none; }
.earn-table tr:hover td { background: rgba(255,255,255,0.03); }
.earn-table .green-val { color: #34d399; font-weight: 700; }
.earn-table .total-row td { color: #fff; font-weight: 700; background: rgba(124,58,237,0.15); }
.earn-setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.earn-setup-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.875rem;
  text-align: center;
}
.earn-setup-val {
  font-size: 1.375rem; font-weight: 900;
  color: var(--gd-primary-light);
  font-family: var(--font-primary);
  display: block; margin-bottom: 0.25rem;
}
.earn-setup-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.earn-total-box {
  margin-top: 1.5rem;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}
.earn-total-val {
  font-size: 2rem; font-weight: 900;
  color: var(--gd-amber-light);
  font-family: var(--font-primary);
  line-height: 1;
  display: block; margin-bottom: 0.375rem;
}
.earn-total-lbl { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

/* ===========================
   COMMISSION CARDS
   =========================== */
.commission-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.comm-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);
  position: relative;
}
.comm-card:hover { border-color: var(--gd-primary); box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.comm-card.featured {
  border-color: var(--gd-primary);
  background: linear-gradient(135deg, rgba(124,58,237,0.04), rgba(236,72,153,0.03));
}
.comm-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}
.comm-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--gray-900); margin: 0; }
.comm-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; margin: 0; }
.comm-rate {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(124,58,237,0.08);
  color: var(--gd-primary);
  border: 1px solid rgba(124,58,237,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  width: fit-content;
}

/* ===========================
   ADVANCED FEATURES GRID
   =========================== */
.adv-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.adv-feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex; gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}
.adv-feature-card:hover { border-color: var(--gd-primary); box-shadow: var(--shadow-md); }
.adv-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.adv-feature-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.375rem; }
.adv-feature-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ===========================
   ADVANCED DONATION LOGIC SECTION
   =========================== */
.adv-logic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.adv-logic-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.875rem;
}
.adv-logic-content p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.logic-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.logic-steps li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--gray-700); line-height: 1.6;
}
.logic-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gd-gradient);
  color: #fff;
  font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.fraud-alert-box {
  background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(220,38,38,0.04));
  border: 1px solid rgba(239,68,68,0.2);
  border-left: 4px solid #dc2626;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
}
.fraud-alert-box h4 {
  font-size: 0.875rem; font-weight: 700; color: #dc2626; margin-bottom: 0.625rem;
  display: flex; align-items: center; gap: 0.375rem;
}
.fraud-alert-box ul { padding: 0 0 0 1rem; margin: 0; }
.fraud-alert-box li { font-size: 0.8375rem; color: var(--gray-700); margin-bottom: 0.25rem; line-height: 1.6; }

/* Queue visualiser */
.queue-visual {
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  color: #fff;
}
.queue-header {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 0.4rem;
}
.queue-header i { color: var(--gd-primary-light); }
.queue-list { display: flex; flex-direction: column; gap: 0.5rem; }
.queue-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.875rem;
  transition: background 0.2s;
}
.queue-item:hover { background: rgba(255,255,255,0.07); }
.queue-pos {
  font-size: 0.75rem; font-weight: 800;
  color: rgba(255,255,255,0.35);
  width: 24px; text-align: center;
}
.queue-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; flex-shrink: 0;
}
.queue-name { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.queue-sub { font-size: 0.68rem; color: rgba(255,255,255,0.35); }
.queue-badge {
  margin-left: auto;
  font-size: 0.6rem; font-weight: 700;
  padding: 2px 7px; border-radius: var(--radius-full);
}
.queue-badge.active-q  { background: rgba(16,185,129,0.2); color: #34d399; border: 1px solid rgba(16,185,129,0.3); }
.queue-badge.waiting-q { background: rgba(245,158,11,0.2); color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }
.queue-badge.next-q    { background: rgba(99,102,241,0.2);  color: #a5b4fc; border: 1px solid rgba(99,102,241,0.3); }
.queue-badge.blocked-q { background: rgba(239,68,68,0.2);   color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }

.queue-progress-wrap { margin-top: 1rem; }
.queue-progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.68rem; color: rgba(255,255,255,0.45);
  margin-bottom: 0.375rem; font-weight: 600;
}
.queue-progress-bar {
  height: 6px; background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full); overflow: hidden;
}
.queue-progress-fill {
  height: 100%;
  background: var(--gd-gradient);
  border-radius: var(--radius-full);
  width: 0; transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}

/* ===========================
   BENEFITS GRID
   =========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.875rem;
  transition: var(--transition);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.benefit-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.benefit-card h3 { font-size: 0.9375rem; font-weight: 700; color: #fff; margin: 0; }
.benefit-card p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin: 0; }

/* ===========================
   WHY CHOOSE US — DARK
   =========================== */
.why-gd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-gd-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: var(--transition);
}
.why-gd-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }
.why-gd-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.why-gd-card h3 { font-size: 0.9375rem; font-weight: 700; color: #fff; margin: 0; }
.why-gd-card p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

/* ===========================
   CASE STUDY — DARK PANEL
   =========================== */
.gd-case-card {
  background: linear-gradient(160deg, #1e1b4b, #4c1d95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.gd-case-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.gd-case-tag {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(245,158,11,0.15);
  color: #fcd34d;
  border: 1px solid rgba(245,158,11,0.3);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.875rem;
}
.gd-case-title { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.gd-case-sub { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.gd-case-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.gd-case-panel {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.gd-case-panel:last-child { border-right: none; }
.gd-case-panel-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; margin-bottom: 0.875rem;
}
.gd-case-panel h4 {
  font-size: 0.875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.gd-case-panel.problem .gd-case-panel-icon { background: rgba(239,68,68,0.15); color: #f87171; }
.gd-case-panel.problem h4 { color: #f87171; }
.gd-case-panel.solution .gd-case-panel-icon { background: rgba(59,130,246,0.15); color: #60a5fa; }
.gd-case-panel.solution h4 { color: #60a5fa; }
.gd-case-panel.results .gd-case-panel-icon { background: rgba(16,185,129,0.15); color: #34d399; }
.gd-case-panel.results h4 { color: #34d399; }
.gd-case-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.gd-case-list li {
  display: flex; align-items: flex-start; gap: 0.4rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.gd-case-list li i { flex-shrink: 0; margin-top: 2px; font-size: 0.72rem; }
.gd-case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-bottom: 0.875rem;
}
.gd-case-metric {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.875rem; text-align: center;
}
.gd-case-metric-val { font-size: 1.25rem; font-weight: 900; color: #34d399; font-family: var(--font-primary); line-height: 1; display: block; margin-bottom: 0.2rem; }
.gd-case-metric-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.4); line-height: 1.4; }
.gd-case-quote {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid #34d399;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.875rem 1.1rem;
  font-style: italic;
  font-size: 0.8125rem; color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.gd-case-quote cite { display: block; margin-top: 0.4rem; font-style: normal; font-weight: 600; font-size: 0.75rem; color: rgba(255,255,255,0.75); }

/* ===========================
   COMPARISON TABLE
   =========================== */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: #fff;
}
.comparison-table th {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}
.comparison-table th.highlight-col {
  background: var(--gd-primary);
  color: #fff;
}
.comparison-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  vertical-align: middle;
}
.comparison-table td.highlight-col {
  background: rgba(124,58,237,0.05);
  color: var(--gray-900);
  font-weight: 600;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--gray-50); }
.comparison-table tr:hover td.highlight-col { background: rgba(124,58,237,0.08); }
.check-yes { color: var(--gd-green); font-size: 1rem; }
.check-no  { color: #dc2626; font-size: 1rem; }
.check-partial { color: var(--gd-amber); font-size: 0.875rem; }

/* ===========================
   COMPLIANCE / ETHICS SECTION
   =========================== */
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.disclaimer-box {
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(236,72,153,0.04));
  border: 2px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.disclaimer-box h3 {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.0625rem; font-weight: 800;
  color: var(--gd-primary-dark); margin-bottom: 1rem;
}
.disclaimer-box p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 0.875rem; }
.disclaimer-box p:last-child { margin-bottom: 0; }
.ethics-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.ethics-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.9rem; color: var(--gray-700); line-height: 1.6;
}
.ethics-list li i { flex-shrink: 0; margin-top: 2px; font-size: 0.875rem; color: var(--gd-primary); }
.legal-note {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-left: 4px solid var(--gd-amber);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.legal-note h4 { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 700; color: #92400e; margin-bottom: 0.5rem; }
.legal-note p { font-size: 0.85rem; color: var(--gray-700); line-height: 1.75; margin: 0; }

/* ===========================
   FAQ ACCORDION
   =========================== */
.gd-faq-list { display: flex; flex-direction: column; gap: 0.625rem; }
.gd-faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.gd-faq-item.open {
  border-color: var(--gd-primary);
  box-shadow: 0 4px 16px rgba(124,58,237,0.1);
}
.gd-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.2s;
}
.gd-faq-trigger:hover { color: var(--gd-primary); }
.gd-faq-item.open .gd-faq-trigger { color: var(--gd-primary); }
.gd-faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem; color: var(--gray-500);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.gd-faq-item.open .gd-faq-icon {
  background: var(--gd-primary);
  color: #fff;
  transform: rotate(180deg);
}
.gd-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.gd-faq-body-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.8;
}
.gd-faq-body-inner p { margin-bottom: 0.625rem; }
.gd-faq-body-inner p:last-child { margin-bottom: 0; }

/* ===========================
   TESTIMONIAL SLIDER
   =========================== */
.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
}
.testimonial-slider {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testimonial-slide {
  min-width: calc(50% - 0.75rem);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s;
}
.testimonial-slide:hover { box-shadow: var(--shadow-xl); }
.ts-stars { display: flex; gap: 2px; }
.ts-star { color: var(--gd-amber); font-size: 0.9rem; }
.ts-text { font-size: 0.9375rem; color: var(--gray-700); line-height: 1.8; font-style: italic; flex: 1; }
.ts-author { display: flex; align-items: center; gap: 0.875rem; }
.ts-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gd-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.ts-name { font-weight: 700; font-size: 0.9rem; color: var(--gray-900); }
.ts-title { font-size: 0.8rem; color: var(--gray-500); }
.ts-result {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(16,185,129,0.1);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.2);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700; margin-top: 0.25rem;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.slider-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-600);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--gd-primary); border-color: var(--gd-primary); color: #fff; }
.slider-dots { display: flex; gap: 0.375rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.slider-dot.active { background: var(--gd-primary); transform: scale(1.3); }

/* ===========================
   CTA SECTION
   =========================== */
.gd-cta-section {
  background: var(--gd-gradient-dark);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gd-cta-section::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.025'%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");
  pointer-events: none;
}
.gd-cta-section .container { position: relative; z-index: 1; }
.gd-cta-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(245,158,11,0.15);
  color: var(--gd-amber-light);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}
.gd-cta-section h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.gd-cta-section p { color: rgba(255,255,255,0.65); max-width: 640px; margin: 0 auto 2.5rem; font-size: 1.0625rem; }
.gd-cta-actions {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.gd-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-top: 2.5rem;
}
.gd-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.5); font-weight: 500;
}
.gd-trust-item i { color: var(--gd-amber-light); font-size: 0.875rem; }

/* ===========================
   INFO CALLOUT
   =========================== */
.info-callout {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.15);
  border-left: 4px solid var(--gd-primary);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-callout i { color: var(--gd-amber); font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.info-callout strong { font-weight: 700; color: var(--gray-900); }
.info-callout p { margin: 0.25rem 0 0; font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* ===========================
   STATS BAR — PURPLE VARIANT
   =========================== */
.gd-stats-section {
  background: var(--gd-secondary);
  padding: 2.5rem 0;
}

/* ===========================
   DEMO FORM
   =========================== */
.gd-demo-section {
  background: var(--gray-50);
  padding: 5rem 0;
}
.gd-demo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}
.gd-demo-info h2 { margin-bottom: 1rem; }
.gd-demo-info p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1.5rem; }
.gd-demo-perks { display: flex; flex-direction: column; gap: 0.625rem; }
.gd-demo-perk {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.9rem; color: var(--gray-700); font-weight: 500;
}
.gd-demo-perk i { color: var(--gd-primary); font-size: 1rem; }
.gd-demo-form-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}
.gd-demo-form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.gd-demo-form-card > p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-field label { font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--gray-900);
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gd-primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit-btn {
  width: 100%;
  background: var(--gd-gradient);
  color: #fff;
  border: none;
  padding: 0.9375rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: opacity 0.2s, transform 0.2s;
}
.form-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center; padding: 2rem;
}
.form-success.show { display: block; }
.form-success i { font-size: 3rem; color: var(--gd-green); margin-bottom: 1rem; display: block; }
.form-success h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-600); font-size: 0.9375rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-gd-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-gift-visual { display: none; }
  .hero-gd-copy { max-width: 100%; text-align: center; }
  .hero-gd-copy .hero-actions { justify-content: center; }
  .hero-gd-copy .hero-trust { justify-content: center; }
  .hero-gd-copy .hero-badge { margin: 0 auto; }

  .gd-diff-grid { grid-template-columns: 1fr 1fr; }
  .how-gd-grid { grid-template-columns: 1fr 1fr; }
  .commission-cards-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .why-gd-grid { grid-template-columns: 1fr 1fr; }
  .adv-features-grid { grid-template-columns: 1fr; }
  .adv-logic-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .gd-case-body { grid-template-columns: 1fr; }
  .gd-case-panel { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .gd-case-panel:last-child { border-bottom: none; }
  .gd-case-metrics { grid-template-columns: 1fr 1fr; }
  .earn-setup-grid { grid-template-columns: 1fr 1fr; }
  .gd-demo-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonial-slide { min-width: 100%; }
}

@media (max-width: 768px) {
  .hero-gift-donation { padding: 3rem 0 4rem; }
  .gd-diff-grid { grid-template-columns: 1fr; }
  .how-gd-grid { grid-template-columns: 1fr; }
  .commission-cards-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .why-gd-grid { grid-template-columns: 1fr; }
  .earn-setup-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .gd-tab-panel { padding: 1.5rem; }
  .earn-example-wrap { padding: 1.25rem; }
  .queue-visual { padding: 1.1rem; }
  .eeat-author-box { flex-direction: column; }
  .gd-demo-form-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .earn-setup-grid { grid-template-columns: 1fr; }
  .gd-case-metrics { grid-template-columns: 1fr 1fr; }
  .gd-tab-btn { min-width: 100px; font-size: 0.75rem; padding: 0.75rem 0.75rem; }
  .earn-table { font-size: 0.8rem; }
  .earn-table th, .earn-table td { padding: 0.5rem 0.625rem; }
}

/* ===========================
   STICKY BOTTOM BAR (MOBILE)
   =========================== */
.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 0.5rem;
  gap: 0.5rem;
  justify-content: space-around;
  align-items: center;
}
.sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.sticky-btn i { font-size: 1.1rem; }
.sticky-call { color: var(--gd-primary-dark); background: rgba(124,58,237,0.08); }
.sticky-call:hover { background: rgba(124,58,237,0.15); }
.sticky-demo { color: #fff; background: var(--gd-gradient); }
.sticky-demo:hover { opacity: 0.92; }
.sticky-whatsapp { color: #25d366; background: rgba(37,211,102,0.1); }
.sticky-whatsapp:hover { background: rgba(37,211,102,0.18); }

@media (max-width: 1024px) {
  .sticky-bottom-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 997;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gd-gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
  transition: var(--transition);
  opacity: 0.9;
}
.back-to-top:hover { opacity: 1; transform: translateY(-3px); }

/* ===========================
   FOOTER STYLES
   =========================== */
.site-footer {
  background: #0f0e1a;
  color: rgba(255,255,255,0.7);
}
.footer-main { padding: 4rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 0.625rem;
  text-decoration: none; margin-bottom: 1rem;
}
.footer-brand .logo-main { font-size: 1.1rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
.footer-brand .logo-sub { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 500; display: block; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact-links {
  display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem;
}
.footer-contact-links a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  font-weight: 500; text-decoration: none; transition: color 0.2s;
}
.footer-contact-links a:hover { color: var(--gd-primary-light); }
.footer-contact-links i { color: var(--gd-primary-light); font-size: 0.875rem; width: 16px; }
.footer-social { display: flex; gap: 0.625rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.footer-social a:hover { background: var(--gd-primary); color: #fff; border-color: var(--gd-primary); }
.footer-heading {
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85); margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 0.375rem;
}
.footer-links a:hover { color: var(--gd-primary-light); }
.footer-links a[aria-current="page"] { color: var(--gd-primary-light); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gd-primary-light); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.4); font-weight: 500; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; }
}

/* ===========================
   SECTION HEADER SHARED STYLES
   =========================== */
.content-section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.text-center { text-align: center; }
.section-tag {
  display: inline-flex; align-items: center;
  background: rgba(124,58,237,0.1);
  color: var(--gd-primary);
  border: 1px solid rgba(124,58,237,0.2);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 0.875rem;
}
.section-header h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}
.section-intro {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===========================
   HERO SECTION SHARED
   =========================== */
.hero-section {
  position: relative; overflow: hidden;
}
.hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none;
}
.shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  filter: blur(40px);
}
.shape-1 { width: 500px; height: 500px; top: -150px; left: -100px; }
.shape-2 { width: 350px; height: 350px; bottom: -100px; right: -80px; background: rgba(236,72,153,0.08); }
.shape-3 { width: 200px; height: 200px; top: 50%; right: 15%; background: rgba(245,158,11,0.06); }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===========================
   HERO TRUST ITEMS
   =========================== */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.875rem; margin-top: 1.75rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.65); font-weight: 500;
}
.trust-item i { color: var(--gd-green); font-size: 0.875rem; }

/* ===========================
   HERO BADGE
   =========================== */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem; width: fit-content;
}
.hero-badge i { color: var(--gd-amber-light); }

/* ===========================
   HERO HEADLINE / SUBHEADLINE
   =========================== */
.hero-headline {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-family: var(--font-primary);
}
.hero-subheadline {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}

/* ===========================
   STATS GRID
   =========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-box {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-box:last-child { border-right: none; }
.stat-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  font-family: var(--font-primary);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-number span { font-size: 0.7em; color: var(--gd-amber-light); }
.stat-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.5); font-weight: 500; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-box:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-box:last-child { border-bottom: none; }
}

/* ===========================
   ANIMATION CLASSES
   =========================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-fade-up  { animation: fadeUp  0.6s ease both; }
.animate-fade-left { animation: fadeLeft 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===========================
   BUTTON STYLES (page-level overrides)
   =========================== */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}
.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--gd-primary-dark), var(--gd-accent));
  padding: 0.625rem 0;
  text-align: center;
}
.announcement-bar p {
  font-size: 0.875rem; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem; margin: 0;
}
.ann-link {
  color: #fff; font-weight: 700; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; gap: 0.25rem;
  transition: border-color 0.2s;
}
.ann-link:hover { border-bottom-color: #fff; }
.announcement-bar i { font-size: 0.875rem; }
