/* ============================================================
   STYLE.CSS — Wildfoxs Club | Premium Crypto Platform
   Theme: Dark Emerald-Black + Electric Cyan + Neon Purple
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary: #080c14;
  --secondary: #0d1220;
  --surface: #101828;
  --surface-2: #0a1020;

  --accent: #c9a227;
  --accent-hover: #ffb800;
  --accent-glow: rgba(201, 162, 39, 0.22);
  --accent-glow-sm: rgba(201, 162, 39, 0.1);
  --neon-green: #ffb800;
  --neon-purple: #e8c060;
  --danger: #ff6b6b;

  --gradient-hero: linear-gradient(
    135deg,
    #080c14 0%,
    #0d1220 55%,
    #0a1020 100%
  );
  --gradient-accent: linear-gradient(135deg, #c9a227 0%, #ffb800 100%);
  --gradient-card: linear-gradient(145deg, #0d1220 0%, #101828 100%);
  --gradient-green: linear-gradient(135deg, #c9a227, #ffb800);

  --text-primary: #fff8e7;
  --text-muted: #9a8a5c;
  --text-dim: #4a3d20;

  --border: #2a2010;
  --border-glow: rgba(201, 162, 39, 0.5);
  --glass: rgba(201, 162, 39, 0.04);
  --glass-border: rgba(201, 162, 39, 0.12);

  --font-heading: "DM Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(0, 229, 195, 0.12);
  --shadow-glow-lg: 0 0 80px rgba(0, 229, 195, 0.2);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection {
  background: var(--accent);
  color: var(--primary);
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  line-height: 1.85;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--accent-hover);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 14px;
}
.section-label::before {
  content: "// ";
  opacity: 0.45;
}

.section-heading {
  margin-bottom: 56px;
}
.section-heading h2 {
  margin-bottom: 14px;
}

.underline-accent {
  width: 56px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin: 18px auto 0;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-heading.aos-animate .underline-accent,
.section-heading:hover .underline-accent {
  width: 130px;
}

/* ── Utilities ──────────────────────────────────────────────── */
.section-pad {
  padding: 100px 0;
}
.section-pad-sm {
  padding: 64px 0;
}
.bg-secondary-custom {
  background-color: var(--secondary);
}
.bg-surface {
  background-color: var(--surface);
}

/* ── Scroll Progress Bar ────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-accent);
  z-index: 9999;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px var(--accent);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition-slow);
  background: transparent;
}
.navbar-custom.scrolled {
  background: rgba(8, 12, 20, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 13px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.7),
    0 1px 0 rgba(201, 162, 39, 0.12);
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-primary) !important;
  letter-spacing: -0.02em;
}
.navbar-brand span {
  color: var(--accent);
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-muted) !important;
  padding: 7px 15px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
  background: var(--glass);
}
.navbar-toggler {
  border: 1px solid var(--glass-border);
  padding: 6px 10px;
  background: var(--glass);
  border-radius: 8px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A227' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.mobile-menu {
  background: rgba(8, 12, 20, 0.97);
  backdrop-filter: blur(30px);
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  padding: 20px 0;
}
.mobile-menu .nav-link {
  padding: 10px 0 !important;
  font-size: 1rem !important;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-accent:hover::before {
  left: 150%;
}
.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-outline-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  padding: 11px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

/* ── HERO SECTION ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
  position: relative;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -10%,
      rgba(0, 229, 195, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 50% at 85% 75%,
      rgba(168, 85, 247, 0.07) 0%,
      transparent 55%
    );
  pointer-events: none;
  z-index: 0;
}

/* Decorative hex shapes */
.hero-hex {
  position: absolute;
  opacity: 0.04;
  border: 1px solid var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hex-spin 30s linear infinite;
}

#tsparticles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.28);
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease both;
}
.hero-badge .live-dot {
  width: 7px;
  height: 7px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.7s 0.15s ease both;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 510px;
  line-height: 1.85;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.7s 0.25s ease both;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.7s 0.35s ease both;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2.8rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass);
  animation: fadeInUp 0.7s 0.45s ease both;
}
.hero-stat {
  flex: 1;
  min-width: 100px;
  padding: 16px 20px;
  border-right: 1px solid var(--glass-border);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Dashboard Card */
.hero-dashboard-wrap {
  position: relative;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-dashboard {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  animation: float 6s ease-in-out infinite;
  max-width: 380px;
  margin: 0 auto;
}
.hero-dashboard::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 0 0 4px 4px;
}

.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.db-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.db-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--neon-green);
}

.db-balance {
  margin-bottom: 18px;
}
.db-bal-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.db-bal-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.db-bal-cents {
  font-size: 1rem;
  color: var(--text-muted);
}
.db-bal-change {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--neon-green);
  margin-top: 2px;
}

.db-chart {
  margin-bottom: 18px;
}
.db-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
  padding: 0 2px;
}
.db-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  animation: bar-grow 1.2s ease both;
}
.db-bar.active {
  background: var(--gradient-accent);
  border-color: transparent;
}
.db-bar:nth-child(1) {
  animation-delay: 0.1s;
}
.db-bar:nth-child(2) {
  animation-delay: 0.15s;
}
.db-bar:nth-child(3) {
  animation-delay: 0.2s;
}
.db-bar:nth-child(4) {
  animation-delay: 0.25s;
}
.db-bar:nth-child(5) {
  animation-delay: 0.3s;
}
.db-bar:nth-child(6) {
  animation-delay: 0.35s;
}
.db-bar:nth-child(7) {
  animation-delay: 0.4s;
}
.db-bar:nth-child(8) {
  animation-delay: 0.45s;
}
.db-bar:nth-child(9) {
  animation-delay: 0.5s;
}
.db-bar:nth-child(10) {
  animation-delay: 0.55s;
}

.db-tokens {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.db-token-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
}
.db-token-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.db-token-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
}
.db-token-name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}
.db-token-qty {
  font-size: 0.62rem;
  color: var(--text-muted);
}
.db-token-val {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}
.db-token-pct {
  font-size: 0.62rem;
  color: var(--neon-green);
}
.db-token-pct.down {
  color: var(--danger);
}

/* Floating coins */
.floating-coin {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-mono);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 2;
  cursor: default;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce-down 2.2s ease-in-out infinite;
  cursor: pointer;
}
.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-chevron {
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  animation: arrow-pulse 1.6s ease infinite;
}

/* ── CRYPTO TICKER ───────────────────────────────────────────── */
.ticker-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-section::before,
.ticker-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker-section::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}
.ticker-section::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-coin-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.ticker-symbol {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}
.ticker-price {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.ticker-change {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
}
.ticker-change.up {
  color: var(--neon-green);
}
.ticker-change.down {
  color: var(--danger);
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-section {
  background: var(--secondary);
  padding: 100px 0;
}

.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  display: block;
}
.about-float-badge {
  position: absolute;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.about-float-badge.top-right {
  top: -18px;
  right: -18px;
}
.about-float-badge.bottom-left {
  bottom: -18px;
  left: -18px;
}
.float-badge-val {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.float-badge-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--accent-glow);
  border: 1px solid var(--border-glow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  font-size: 0.65rem;
}

/* ── FEATURES SECTION ───────────────────────────────────────── */
.features-section {
  background: var(--primary);
  padding: 100px 0;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 34px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  border-color: rgba(0, 229, 195, 0.4);
  box-shadow: 0 0 50px var(--accent-glow);
  transform: translateY(-10px);
}
.feature-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 26px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  transform: scale(1.12) rotate(6deg);
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 13px;
}
.feature-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* ── STATS SECTION ──────────────────────────────────────────── */
.stats-section {
  background: var(--secondary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 229, 195, 0.04) 0%,
    transparent 70%
  );
}
.stats-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 61, 48, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 61, 48, 0.4) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
}
.stats-inner {
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
}
.stat-icon {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.65;
  margin-bottom: 14px;
  display: block;
}
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 20px 0;
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-section {
  background: var(--primary);
  padding: 100px 0;
}

.step-card {
  text-align: center;
  padding: 36px 20px;
  position: relative;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
  transition: color 0.4s ease;
}
.step-card:hover .step-number {
  color: var(--accent);
}

.step-icon-wrap {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 26px;
  transition: var(--transition);
}
.step-card:hover .step-icon-wrap {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 35px var(--accent-glow);
  transform: scale(1.1);
}

.step-connector {
  position: absolute;
  top: 68px;
  left: 50%;
  right: 0;
  width: 100%;
  height: 2px;
  border-top: 2px dashed var(--border);
  z-index: 0;
  overflow: visible;
}
.step-connector::after {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-travel 3s linear infinite;
}
.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step-card > p {
  font-size: 0.87rem;
}

/* ── SERVICES SECTION ───────────────────────────────────────── */
.services-section {
  background: var(--secondary);
  padding: 100px 0;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  border-radius: inherit;
}
.service-card:hover::after {
  opacity: 0.06;
}
.service-card:hover {
  border-color: rgba(0, 229, 195, 0.4);
  box-shadow: 0 0 50px var(--accent-glow);
  transform: translateY(-7px);
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.2) rotate(-5deg);
}
.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.86rem;
  margin: 0;
}

/* ── APP SHOWCASE ───────────────────────────────────────────── */
.showcase-section {
  background: var(--primary);
  padding: 100px 0;
  overflow: hidden;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(0, 229, 195, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.mockup-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-phone {
  width: 258px;
  background: var(--surface);
  border: 2px solid var(--glass-border);
  border-radius: 42px;
  padding: 18px;
  box-shadow:
    var(--shadow-card),
    0 0 70px var(--accent-glow);
  animation: float 5.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.mockup-notch {
  width: 74px;
  height: 7px;
  background: var(--border);
  border-radius: 4px;
  margin: 0 auto 14px;
}
.mockup-screen {
  background: var(--secondary);
  border-radius: 26px;
  padding: 14px;
  min-height: 340px;
}
.mockup-screen-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.mockup-balance-big {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.mockup-change {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--neon-green);
  margin-bottom: 10px;
}
.mockup-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 56px;
  margin-bottom: 12px;
}
.mm-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  min-height: 6px;
}
.mockup-txs {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mockup-tx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}
.mockup-tx-name {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
}
.mockup-tx-amt {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--neon-green);
  font-weight: 700;
}
.mockup-tx-amt.red {
  color: var(--danger);
}

/* Orbit rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 195, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring-1 {
  width: 340px;
  height: 340px;
  animation: rotate-ring 22s linear infinite;
}
.orbit-ring-2 {
  width: 460px;
  height: 460px;
  animation: rotate-ring-reverse 30s linear infinite;
}

.orbit-coin {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* ── PARTNERS SECTION ───────────────────────────────────────── */
.partners-section {
  background: var(--secondary);
  padding: 80px 0;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.partner-logo {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  filter: grayscale(1);
  opacity: 0.5;
  transition: var(--transition);
  min-width: 120px;
}
.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  border-color: var(--border-glow);
  color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  background: var(--primary);
  padding: 100px 0;
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 7rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.07;
  font-family: var(--font-heading);
  font-weight: 800;
}
.testimonial-card:hover {
  border-color: rgba(0, 229, 195, 0.35);
  box-shadow: 0 0 50px var(--accent-glow);
  transform: translateY(-7px);
}
.t-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.t-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 26px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  object-fit: cover;
}
.t-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: block;
}
.t-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Swiper pagination dots */
.swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--accent);
}

/* ── BLOG SECTION ───────────────────────────────────────────── */
.blog-section {
  background: var(--secondary);
  padding: 100px 0;
}

.blog-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: rgba(0, 229, 195, 0.4);
  box-shadow: 0 0 50px var(--accent-glow);
  transform: translateY(-7px);
}
.blog-thumb {
  overflow: hidden;
  height: 200px;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.blog-card:hover .blog-thumb img {
  transform: scale(1.09);
}

.blog-body {
  padding: 28px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--neon-green);
  padding: 3px 10px;
  border-radius: 4px;
}
.blog-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}
.blog-card h4 {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.blog-card:hover h4 {
  color: var(--accent);
}
.blog-card p {
  font-size: 0.84rem;
  margin-bottom: 20px;
}
.blog-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.blog-link:hover {
  gap: 14px;
  color: var(--accent-hover);
}

/* ── NEWSLETTER SECTION ─────────────────────────────────────── */
.newsletter-section {
  background: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-inner {
  position: relative;
  z-index: 2;
}

/* Ambient orbs */
.nl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}
.nl-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 195, 0.18) 0%,
    transparent 70%
  );
  top: -120px;
  left: -100px;
}
.nl-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.14) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -80px;
  animation-delay: 3s;
}
.nl-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(57, 255, 20, 0.1) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1.5s;
}

/* Card */
.nl-card {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.06) 0%,
    rgba(168, 85, 247, 0.04) 60%,
    rgba(10, 15, 14, 0) 100%
  );
  border: 1px solid rgba(0, 229, 195, 0.2);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 80px rgba(0, 229, 195, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.3);
}
.nl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 229, 195, 0.5),
    transparent
  );
}

/* Badge */
.nl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.25);
  border-radius: 40px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* Heading */
.nl-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.12;
  margin-bottom: 16px;
}
.nl-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nl-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 28px;
}

/* Pills */
.nl-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.nl-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.nl-pill i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* Form */
.nl-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 16px;
}
.nl-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.nl-input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-dim);
  font-size: 0.95rem;
  pointer-events: none;
}
.nl-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(0, 229, 195, 0.45);
  border-radius: 12px;
  padding: 14px 18px 14px 42px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  box-shadow:
    0 0 0 3px rgba(0, 229, 195, 0.06),
    inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.nl-input:focus {
  border-color: rgba(0, 229, 195, 0.85);
  background: rgba(0, 229, 195, 0.05);
  box-shadow:
    0 0 0 4px rgba(0, 229, 195, 0.14),
    inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.nl-input::placeholder {
  color: var(--text-dim);
}
.nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-accent);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.nl-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine-sweep 2.5s ease-in-out infinite;
}
.nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 195, 0.35);
}

.nl-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 576px) {
  .nl-card {
    padding: 36px 22px;
  }
  .nl-form {
    flex-direction: column;
  }
  .nl-btn {
    justify-content: center;
  }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, #0a0e18 0%, #080c14 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 -6px 40px rgba(201, 162, 39, 0.1);
  padding: 80px 0 0;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-primary);
}
.footer-logo span {
  color: var(--accent);
}
.footer-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 16px 0 24px;
  max-width: 250px;
  line-height: 1.85;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links li a {
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-dim);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}
.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ── BACK TO TOP ────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 70px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  box-shadow: 0 6px 24px var(--accent-glow);
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-content {
    padding-top: 30px;
  }
  .hero-dashboard {
    margin-top: 48px;
  }
  .step-connector {
    display: none;
  }
  .stat-divider {
    display: none;
  }
  .about-float-badge {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-pad {
    padding: 72px 0;
  }
  .hero-stats {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .hero-stat {
    min-width: 80px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-cta-group .btn-accent,
  .hero-cta-group .btn-outline-accent {
    justify-content: center;
  }
  .hero-stat-value {
    font-size: 1.05rem;
  }
  .floating-coin {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   REFERENCE-MATCH OVERRIDES & NEW COMPONENTS
══════════════════════════════════════════════════════════════ */

/* Hero with background image */
#hero {
  background-image: url("https://picsum.photos/1920/1080?random=99");
  background-size: cover;
  background-position: center right;
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(6, 15, 13, 0.72) 0%,
      rgba(6, 15, 13, 0.82) 60%,
      rgba(6, 15, 13, 0.96) 100%
    ),
    radial-gradient(
      ellipse 90% 70% at 50% 50%,
      rgba(6, 15, 13, 0.3) 0%,
      rgba(6, 15, 13, 0.75) 100%
    );
}
#hero > * {
  z-index: 1;
}
#tsparticles {
  z-index: 1 !important;
}
.hero-content {
  z-index: 2 !important;
}
.scroll-indicator {
  z-index: 2 !important;
}

/* Accent word highlight in hero title */
.hero-title .accent-word {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

/* ── Highlighted (accent-filled) feature card ── */
.feature-card.card-highlight {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 12px 50px rgba(0, 229, 195, 0.35) !important;
}
.feature-card.card-highlight h3,
.feature-card.card-highlight p {
  color: var(--primary) !important;
}
.feature-card.card-highlight .feature-icon-wrap {
  background: rgba(0, 0, 0, 0.15) !important;
  color: var(--primary) !important;
}
.feature-card.card-highlight::before {
  display: none;
}
.feature-card.card-highlight:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 229, 195, 0.45) !important;
}

/* ── Service image cards (How We Help Society) ── */
.service-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
  border: 1px solid var(--border);
  cursor: default;
}
.service-img-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.service-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.service-img-card:hover .service-img-bg {
  transform: scale(1.06);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 15, 13, 0.92) 0%,
    rgba(6, 15, 13, 0.55) 60%,
    rgba(6, 15, 13, 0.2) 100%
  );
  transition: var(--transition);
}
.service-img-card.card-highlight .service-img-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 229, 195, 0.92) 0%,
    rgba(0, 229, 195, 0.65) 60%,
    rgba(0, 229, 195, 0.25) 100%
  );
}
.service-img-content {
  position: relative;
  z-index: 1;
  padding: 28px;
}
.service-img-card.card-highlight .service-img-content h4,
.service-img-card.card-highlight .service-img-content p {
  color: var(--primary);
}
.service-img-card.card-highlight .service-img-content .service-cat {
  color: rgba(6, 15, 13, 0.7);
  border-color: rgba(6, 15, 13, 0.3);
}
.service-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.service-img-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.service-img-content p {
  font-size: 0.84rem;
  margin: 0;
  color: var(--text-muted);
}

/* ── How It Works — reference style ── */
.how-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.how-card:hover {
  border-color: rgba(0, 229, 195, 0.35);
  box-shadow: 0 0 45px var(--accent-glow);
  transform: translateY(-7px);
}
.how-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.how-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
  transition: var(--transition);
  animation: ring-pulse 3s ease-in-out infinite;
}
.how-card:hover .how-icon-circle {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: scale(1.1);
  animation: none;
}
.how-card.how-highlight .how-icon-circle {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 25px var(--accent-glow);
}
.how-connector {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 2px;
  border-top: 2px dashed var(--border);
  z-index: 2;
  transform: translateY(-50%);
}
.how-connector::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-travel 2.5s linear infinite;
}

/* ══════════════════════════════════════════════════════════════
   INNER PAGE STYLES (shared across about, business-plan,
   contact, blog, blog-single pages)
══════════════════════════════════════════════════════════════ */

/* ── Page Hero Banner ──────────────────────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 70% at 50% 110%,
      rgba(0, 229, 195, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 85% 20%,
      rgba(168, 85, 247, 0.06) 0%,
      transparent 55%
    );
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb-custom a {
  color: var(--accent);
}
.breadcrumb-custom .sep {
  color: var(--border-glow);
  opacity: 0.6;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  max-width: 560px;
}

/* ── CTA Banner (shared) ───────────────────────────────────── */
.cta-banner {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 229, 195, 0.06) 0%,
    transparent 70%
  );
}
.cta-banner > * {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  margin-bottom: 12px;
}
.cta-banner p {
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ══ ABOUT PAGE ════════════════════════════════════════════ */

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent),
    var(--neon-purple),
    transparent
  );
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--primary);
  box-shadow: 0 0 12px var(--accent-glow);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 0.87rem;
  margin: 0;
}

/* Mission/Vision cards */
.mv-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}
.mv-card:hover {
  border-color: rgba(0, 229, 195, 0.35);
  box-shadow: 0 0 45px var(--accent-glow);
  transform: translateY(-6px);
}
.mv-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.mv-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

/* Core values grid */
.value-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(0, 229, 195, 0.35);
  box-shadow: 0 0 35px var(--accent-glow);
  transform: translateY(-5px);
}
.value-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.value-card h5 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.82rem;
  margin: 0;
}

/* Team cards */
.team-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  border-color: rgba(0, 229, 195, 0.35);
  box-shadow: 0 0 45px var(--accent-glow);
  transform: translateY(-7px);
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.07);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 15, 13, 0.85), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-socials {
  display: flex;
  gap: 8px;
}
.team-soc-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
  transition: var(--transition);
}
.team-soc-btn:hover {
  background: var(--accent);
  color: var(--primary);
}
.team-body {
  padding: 20px;
}
.team-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══ BUSINESS PLAN PAGE ════════════════════════════════════ */

/* Pricing cards */
.pricing-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 50px var(--accent-glow);
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pricing-card.popular::before {
  transform: scaleX(1);
}
.pricing-card:hover::before {
  transform: scaleX(1);
}
.pricing-card:hover {
  border-color: rgba(0, 229, 195, 0.4);
  box-shadow: 0 0 50px var(--accent-glow);
  transform: translateY(-8px);
}
.pricing-card.popular:hover {
  transform: translateY(-10px);
}

.plan-tier {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.plan-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.plan-roi {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-roi-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.plan-range {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.plan-features li i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-features li.disabled {
  opacity: 0.35;
}
.plan-features li.disabled i {
  color: var(--text-dim);
}

/* Referral table */
.ref-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.ref-table th {
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.ref-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.ref-table tr:last-child td {
  border-bottom: none;
}
.ref-table tr:hover td {
  background: var(--glass);
}
.ref-level {
  font-weight: 700;
  color: var(--text-primary);
}
.ref-pct {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

/* Withdrawal rule card */
.rule-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.rule-card:hover {
  border-color: rgba(0, 229, 195, 0.3);
  transform: translateY(-4px);
}
.rule-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.rule-card h5 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.rule-card p {
  font-size: 0.8rem;
  margin: 0;
}

/* FAQ accordion */
.faq-accordion .accordion-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
}
.faq-accordion .accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(140deg);
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent);
  background: var(--glass);
}
.faq-accordion .accordion-body {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0 24px 20px;
  line-height: 1.8;
}

/* ══ CONTACT PAGE ══════════════════════════════════════════ */

.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: rgba(0, 229, 195, 0.35);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-6px);
}
.ci-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}
.contact-info-card:hover .ci-icon {
  background: var(--accent-glow);
  box-shadow: 0 0 20px var(--accent-glow);
}
.ci-title {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.ci-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.ci-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Contact form */
.contact-form-wrap {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label-custom {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control-custom {
  width: 100%;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--secondary);
}
.form-control-custom::placeholder {
  color: var(--text-dim);
}
textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

/* Map wrapper */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) hue-rotate(175deg);
}

/* ══ BLOG PAGE ═════════════════════════════════════════════ */

/* Sidebar */
.sidebar-widget {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: block;
}
.sidebar-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.sidebar-cat-item:last-child {
  border-bottom: none;
}
.sidebar-cat-item:hover {
  color: var(--accent);
  padding-left: 4px;
}
.sidebar-cat-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 2px 8px;
  color: var(--accent);
}

.sidebar-recent-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-recent-post:last-child {
  border-bottom: none;
}
.sidebar-recent-thumb {
  width: 60px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.sidebar-recent-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: var(--transition);
}
.sidebar-recent-title:hover {
  color: var(--accent);
}
.sidebar-recent-date {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--glass);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.05em;
}
.tag-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.page-btn:hover,
.page-btn.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* ══ BLOG SINGLE PAGE ══════════════════════════════════════ */

.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.post-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
}
.post-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.post-meta-divider {
  color: var(--border);
}
.post-meta-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.post-content h2,
.post-content h3 {
  color: var(--text-primary);
  margin: 2em 0 0.8em;
}
.post-content h2 {
  font-size: 1.6rem;
}
.post-content h3 {
  font-size: 1.25rem;
}
.post-content p {
  margin-bottom: 1.4em;
}
.post-content a {
  color: var(--accent);
  border-bottom: 1px solid var(--glass-border);
}
.post-content a:hover {
  color: var(--accent-hover);
  border-color: var(--accent);
}
.post-content ul,
.post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}
.post-content li {
  margin-bottom: 6px;
}
.post-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 2em 0;
  padding: 20px 28px;
  background: var(--glass);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.05rem;
}
.post-content img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  margin: 20px 0;
}
.post-content code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: var(--secondary);
  padding: 2px 8px;
  border-radius: 5px;
  color: var(--accent);
}

.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.share-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.share-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

@media (max-width: 767px) {
  .page-hero {
    padding: 140px 0 60px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .post-content {
    padding: 28px 20px;
  }
  .cta-banner {
    padding: 40px 24px;
  }
}

/* ── NAV AUTH BUTTONS (Sign In / Sign Up) ── */
.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-signin {
  background: transparent;
  color: #c9a227;
  border: 1px solid rgba(201,162,39,0.5);
}
.nav-signin:hover {
  background: rgba(201,162,39,0.12);
  border-color: #c9a227;
  color: #ffb800;
}
.nav-signup {
  background: linear-gradient(135deg, #c9a227, #ffb800);
  color: #000;
  border: none;
  box-shadow: 0 2px 12px rgba(201,162,39,0.35);
}
.nav-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,162,39,0.5);
  color: #000;
}
