/* ============================================
   EWC - Additional Animations & Page-Specific Styles
   ============================================ */

/* Glow Ring Effect */
.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240,185,11,0.15);
  animation: expandRing 4s ease-out infinite;
  pointer-events: none;
}
@keyframes expandRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Numbered List with Gold bullets */
.gold-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.gold-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65;
}
.gold-list li::before {
  content: '✦';
  color: var(--gold); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0;
}

/* Check List */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
}
.check-list li::before {
  content: '✓';
  color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* Highlight Box */
.highlight-box {
  background: var(--gold-glow);
  border: 1px solid rgba(240,185,11,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
}

/* Principle Box */
.principle-box {
  background: linear-gradient(135deg, var(--black-3), var(--black-4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.principle-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,185,11,0.05) 0%, transparent 70%);
}

/* Leader Path Steps */
.path-steps { display: flex; flex-direction: column; gap: 0; }
.path-step {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.path-step:last-child { border-bottom: none; }
.path-step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: var(--black);
  font-family: 'Outfit', sans-serif;
}
.path-step-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.path-step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Social Link Tiles */
.social-tiles { display: flex; flex-wrap: wrap; gap: 16px; }
.social-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none;
  transition: var(--transition); flex: 1; min-width: 180px;
}
.social-tile:hover { border-color: var(--gold); background: var(--black-4); }
.social-tile-icon { font-size: 1.4rem; }
.social-tile-label { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.social-tile-sub { font-size: 0.75rem; color: var(--text-muted); }

/* Partner / Trust logos */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 2px; transition: var(--transition);
}
.trust-item:hover { color: var(--gold); }

/* Responsive Table */
.r-table { width: 100%; border-collapse: collapse; }
.r-table th {
  text-align: left; padding: 14px 20px;
  background: var(--black-3);
  font-size: 0.78rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px;
  border-bottom: 1px solid var(--border);
}
.r-table td {
  padding: 16px 20px; font-size: 0.88rem;
  color: var(--text-secondary); border-bottom: 1px solid var(--border);
}
.r-table tr:hover td { background: var(--black-3); color: var(--text-primary); }
.r-table td.gold { color: var(--gold); font-weight: 600; }

/* Stats Counter Animation */
.counter-num {
  display: inline-block;
  transition: var(--transition);
}

/* Gradient border */
.gradient-border {
  position: relative;
  border-radius: var(--radius-lg);
}
.gradient-border::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  z-index: -1;
  opacity: 0.4;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--black);
  cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(240,185,11,0.4);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
  z-index: 999;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); color: var(--black); }

/* Cookie / notification bar */
.notify-bar {
  background: var(--black-3);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 0.83rem; color: var(--text-secondary); text-align: center;
  position: relative; z-index: 10;
}
.notify-bar .gold-text { font-weight: 600; }
.notify-bar .close-bar {
  position: absolute; right: 16px;
  cursor: pointer; color: var(--text-muted); font-size: 1.1rem;
  transition: var(--transition);
}
.notify-bar .close-bar:hover { color: var(--gold); }
