/* Hespera Stocks — Ultra Premium Homepage */
:root {
  --hs-primary: #071a10;
  --hs-primary-mid: #0f2f1b;
  --hs-accent: #2e7d32;
  --hs-accent-bright: #22c55e;
  --hs-accent-light: #4ade80;
  --hs-gold: #d4a72c;
  --hs-gold-light: #f0d060;
  --hs-text: #0f172a;
  --hs-muted: #64748b;
  --hs-surface: #f4f8f5;
  --hs-white: #ffffff;
  --hs-shadow: 0 22px 60px rgba(7, 26, 16, 0.14);
  --hs-shadow-lg: 0 30px 80px rgba(7, 26, 16, 0.2);
  --hs-radius: 20px;
  --hs-radius-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--hs-text);
  background: var(--hs-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; transition: all 0.25s ease; }
img { max-width: 100%; height: auto; }

/* ── Top bar ── */
.hs-topbar {
  background: linear-gradient(90deg, var(--hs-primary), var(--hs-primary-mid));
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hs-topbar .container-fluid {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
}
.hs-topbar span { display: inline-flex; align-items: center; gap: 6px; }
.hs-topbar i { color: var(--hs-accent-light); }
.hs-topbar a { color: var(--hs-gold-light); font-weight: 600; }

/* ── Header ── */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 997;
  padding: 16px 0;
  transition: all 0.35s ease;
}
body.has-topbar #header { top: 37px; }
#header.header-transparent { background: transparent; }
#header.header-scrolled {
  top: 0 !important;
  background: rgba(7, 26, 16, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  padding: 10px 0;
}
#header .header-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
#header .logo img { max-height: 46px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }

.nav-menu ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; align-items: center; gap: 4px;
}
.nav-menu a {
  color: rgba(255,255,255,0.9);
  font-size: 14px; font-weight: 500;
  padding: 9px 16px; border-radius: 10px;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-menu a.active::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--hs-gold);
  border-radius: 2px;
}
.nav-menu .btn-log {
  background: linear-gradient(135deg, var(--hs-accent-bright), var(--hs-accent));
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(34,197,94,0.35);
  margin-left: 8px;
}
.nav-menu .btn-log:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(34,197,94,0.45);
}

/* Mobile toggle */
.mobile-nav-toggle {
  display: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.mobile-nav-active { overflow: hidden; }
.mobile-nav-active .nav-menu {
  display: block !important;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 85vw;
  background: linear-gradient(180deg, var(--hs-primary) 0%, var(--hs-primary-mid) 100%);
  padding: 80px 24px 24px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  z-index: 998;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-nav-active .nav-menu ul { flex-direction: column; align-items: stretch; gap: 4px; }
.mobile-nav-active .nav-menu a { display: block; padding: 14px 16px; }
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 996;
}
.mobile-nav-active .mobile-nav-overlay { display: block; }

/* ── Hero ── */
#intro {
  min-height: 100vh;
  position: relative;
  background: var(--hs-primary);
  padding-bottom: 60px;
}
body.has-topbar #intro { padding-top: 37px; }
.intro-container { width: 100%; height: 100vh; min-height: 640px; }
#introCarousel, #introCarousel .carousel-inner, #introCarousel .carousel-item { height: 100vh; min-height: 640px; }

.carousel-background {
  position: absolute; inset: 0;
  overflow: hidden;
}
.carousel-background img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 18s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.carousel-background::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(34,197,94,0.18) 0%, transparent 60%),
    linear-gradient(135deg, rgba(7,26,16,0.92) 0%, rgba(7,26,16,0.65) 45%, rgba(15,47,27,0.5) 100%);
}
.carousel-background::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.03'%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");
  opacity: 0.5;
  z-index: 1;
}

.carousel-container {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; padding: 130px 24px 100px;
}
.carousel-content {
  text-align: center; max-width: 860px;
}
.carousel-item.active .carousel-content {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--hs-accent-light);
  font-size: 13px; font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.carousel-content h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
}
.carousel-content h2 .text-gradient {
  background: linear-gradient(135deg, var(--hs-gold-light), var(--hs-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.carousel-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0 auto 36px;
  max-width: 580px;
  line-height: 1.75;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-bottom: 32px;
}
.btn-get-started {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--hs-gold-light), var(--hs-gold));
  color: var(--hs-primary) !important;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 36px rgba(212,167,44,0.45);
}
.btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(212,167,44,0.55);
  color: var(--hs-primary) !important;
}
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  color: #fff !important;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 500;
}
.hero-trust i { color: var(--hs-accent-light); font-size: 16px; }

#intro .carousel-control-prev, #intro .carousel-control-next {
  width: 52px; height: 52px;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  opacity: 1;
  backdrop-filter: blur(6px);
  transition: all 0.25s;
}
#intro .carousel-control-prev:hover, #intro .carousel-control-next:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.05);
}
#intro .carousel-control-prev { left: 28px; }
#intro .carousel-control-next { right: 28px; }
#intro .carousel-indicators {
  bottom: 100px;
}
#intro .carousel-indicators li {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  margin: 0 5px;
}
#intro .carousel-indicators li.active {
  background: var(--hs-gold);
  border-color: var(--hs-gold);
}

/* Stats */
.hs-stats {
  position: relative; z-index: 3;
  margin-top: -70px;
  padding: 0 24px;
}
.hs-stats-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--hs-white);
  border-radius: var(--hs-radius);
  box-shadow: var(--hs-shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(46,125,50,0.08);
}
.hs-stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid #edf2ef;
  position: relative;
  transition: background 0.3s;
}
.hs-stat:hover { background: #fafffb; }
.hs-stat:last-child { border-right: 0; }
.hs-stat .stat-icon {
  width: 40px; height: 40px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(74,222,128,0.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--hs-accent);
  font-size: 20px;
}
.hs-stat strong {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--hs-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  word-break: break-word;
}
.hs-stat span { font-size: 12px; color: var(--hs-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* Live ticker */
.hs-ticker {
  background: var(--hs-primary);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  overflow: hidden;
}
.hs-ticker-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.15);
  color: var(--hs-accent-light);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  margin-right: 24px;
}
.hs-ticker-wrap {
  display: flex; align-items: center;
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
}
.hs-ticker-track {
  display: flex; gap: 48px;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hs-ticker-item {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hs-ticker-item strong { color: var(--hs-gold-light); }
.hs-ticker-item .t-up { color: var(--hs-accent-light); }
.hs-ticker-item .t-down { color: #f87171; }

/* ── Sections ── */
section { padding: 100px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hs-accent);
  background: rgba(46,125,50,0.08);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2, .section-header h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--hs-primary);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.section-header p {
  color: var(--hs-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.section-bg {
  background: var(--hs-surface);
  position: relative;
}
.section-bg::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,125,50,0.15), transparent);
}

/* About */
#about { background: var(--hs-white); }
.about-visual { position: relative; }
.about-main-img {
  width: 100%; border-radius: var(--hs-radius);
  box-shadow: var(--hs-shadow-lg);
  object-fit: cover; min-height: 360px;
}
.about-float-img {
  position: absolute; bottom: -24px; right: -16px;
  width: 45%; max-width: 220px;
  border-radius: var(--hs-radius-sm);
  box-shadow: var(--hs-shadow);
  border: 4px solid var(--hs-white);
}
.about-highlight {
  padding: 32px;
  background: var(--hs-surface);
  border-radius: var(--hs-radius);
  border: 1px solid #e8f0ea;
}
.about-highlight h4 {
  font-size: 1.35rem; font-weight: 800;
  color: var(--hs-primary); margin: 20px 0 12px;
}
.about-highlight p { color: var(--hs-muted); margin-bottom: 20px; line-height: 1.75; }
.about-docs-panel {
  margin-bottom: 8px;
  padding: 22px;
  background: linear-gradient(145deg, #fff 0%, #f8fcf9 100%);
  border: 1px solid #dfece3;
  border-radius: var(--hs-radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 28px rgba(7,26,16,0.06);
}
.about-docs-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.about-doc-card {
  margin: 0;
  background: #fff;
  border: 1px solid #e4ede7;
  border-radius: var(--hs-radius-sm);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(7,26,16,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(7,26,16,0.12);
}
.about-doc-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f9fcfa 0%, #f1f7f3 100%);
  padding: 16px;
}
.about-doc-featured img { height: 380px; padding: 18px; }
.about-doc-card figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hs-accent);
  background: rgba(46,125,50,0.06);
  border-top: 1px solid #e8f0ea;
}
.about-doc-card figcaption i { font-size: 15px; }
.about-checklist { list-style: none; padding: 0; margin: 0; }
.about-checklist li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; color: var(--hs-text); font-size: 14px; font-weight: 500;
}
.about-checklist i { color: var(--hs-accent-bright); font-size: 20px; }
.about-cols { margin-top: 10px; }
.about-col {
  background: var(--hs-white);
  border: 1px solid #e8f0ea;
  border-radius: var(--hs-radius);
  padding: 0 0 32px;
  height: 100%;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.about-col-media {
  position: relative;
  margin: 0 0 24px;
  padding: 36px 24px 28px;
  background: linear-gradient(160deg, #f0f9f3 0%, #e8f5ec 55%, #f8fcfa 100%);
  border-bottom: 1px solid #e4ede7;
}
.about-col-strategy .about-col-media {
  background: linear-gradient(160deg, #f0f9f3 0%, #e8f5ec 45%, #faf6eb 100%);
}
.about-col-security .about-col-media {
  background: linear-gradient(160deg, #f3f0ff 0%, #ebe6ff 55%, #faf8ff 100%);
}
.about-col-team .about-col-media {
  background: linear-gradient(160deg, #fff8ed 0%, #fff1d6 55%, #fffcf5 100%);
}
.about-col-returns .about-col-media {
  background: linear-gradient(160deg, #edfaf3 0%, #dff5ea 55%, #f6fdf9 100%);
}
.about-card-img {
  height: 110px;
  width: auto;
  max-width: 88%;
  margin: 0 auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(7,26,16,0.12));
}
.hs-feature-sigil {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: -34px 0 18px;
  position: relative;
  z-index: 5;
  padding: 0 20px;
}
.hs-feature-sigil::before,
.hs-feature-sigil::after {
  content: '';
  position: absolute;
  top: 28px;
  width: calc(50% - 46px);
  height: 1px;
  pointer-events: none;
}
.hs-feature-sigil::before { left: 16px; }
.hs-feature-sigil::after { right: 16px; }
.hs-feature-sigil-frame {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hs-feature-sigil-ring {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  box-shadow: 0 10px 28px rgba(7, 26, 16, 0.14);
}
.hs-feature-sigil-core {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 10px 26px rgba(7, 26, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.hs-feature-sigil-core::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  border: 1px solid rgba(7, 26, 16, 0.08);
  pointer-events: none;
}
.hs-feature-sigil-core i {
  position: relative;
  font-size: 27px;
  line-height: 1;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 6px rgba(7, 26, 16, 0.08));
}
.hs-feature-sigil-caption {
  margin-top: 11px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(7, 26, 16, 0.05);
}
.about-col:hover .hs-feature-sigil-frame,
.service-box:hover .hs-feature-sigil-frame { transform: translateY(-4px); }

.about-col-strategy .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(212, 167, 44, 0.45) 70%, rgba(46, 125, 50, 0.35));
}
.about-col-strategy .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(212, 167, 44, 0.45) 70%, rgba(46, 125, 50, 0.35));
}
.about-col-strategy .hs-feature-sigil-ring {
  background: conic-gradient(
    from 210deg,
    var(--hs-accent) 0deg,
    var(--hs-gold) 95deg,
    var(--hs-accent-light) 185deg,
    var(--hs-gold-light) 265deg,
    var(--hs-accent) 360deg
  );
}
.about-col-strategy .hs-feature-sigil-core {
  box-shadow:
    0 10px 26px rgba(7, 26, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -8px 18px rgba(46, 125, 50, 0.05);
}
.about-col-strategy .hs-feature-sigil-core::after { border-color: rgba(212, 167, 44, 0.14); }
.about-col-strategy .hs-feature-sigil-core i {
  background: linear-gradient(140deg, var(--hs-primary) 0%, var(--hs-accent) 52%, var(--hs-gold) 100%);
}
.about-col-strategy .hs-feature-sigil-caption {
  color: #8b6914;
  background: linear-gradient(90deg, rgba(212, 167, 44, 0.04), rgba(212, 167, 44, 0.12), rgba(212, 167, 44, 0.04));
  border: 1px solid rgba(212, 167, 44, 0.22);
}
.about-col-strategy:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(46, 125, 50, 0.18); }

.about-col-security .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.42) 70%, rgba(91, 33, 182, 0.32));
}
.about-col-security .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(124, 58, 237, 0.42) 70%, rgba(91, 33, 182, 0.32));
}
.about-col-security .hs-feature-sigil-ring {
  background: conic-gradient(
    from 210deg,
    #5b21b6 0deg,
    #7c3aed 95deg,
    #a78bfa 185deg,
    #6d28d9 265deg,
    #5b21b6 360deg
  );
}
.about-col-security .hs-feature-sigil-core {
  box-shadow:
    0 10px 26px rgba(7, 26, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -8px 18px rgba(124, 58, 237, 0.06);
}
.about-col-security .hs-feature-sigil-core::after { border-color: rgba(124, 58, 237, 0.16); }
.about-col-security .hs-feature-sigil-core i {
  background: linear-gradient(140deg, #312e81 0%, #7c3aed 55%, #a78bfa 100%);
}
.about-col-security .hs-feature-sigil-caption {
  color: #5b21b6;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.04), rgba(124, 58, 237, 0.12), rgba(124, 58, 237, 0.04));
  border: 1px solid rgba(124, 58, 237, 0.22);
}
.about-col-security:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(124, 58, 237, 0.2); }

.about-col-team .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.42) 70%, rgba(180, 83, 9, 0.32));
}
.about-col-team .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(217, 119, 6, 0.42) 70%, rgba(180, 83, 9, 0.32));
}
.about-col-team .hs-feature-sigil-ring {
  background: conic-gradient(
    from 210deg,
    #b45309 0deg,
    #d97706 95deg,
    #fbbf24 185deg,
    #ea580c 265deg,
    #b45309 360deg
  );
}
.about-col-team .hs-feature-sigil-core {
  box-shadow:
    0 10px 26px rgba(7, 26, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -8px 18px rgba(217, 119, 6, 0.06);
}
.about-col-team .hs-feature-sigil-core::after { border-color: rgba(217, 119, 6, 0.16); }
.about-col-team .hs-feature-sigil-core i {
  background: linear-gradient(140deg, #78350f 0%, #d97706 55%, #fbbf24 100%);
}
.about-col-team .hs-feature-sigil-caption {
  color: #92400e;
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.04), rgba(217, 119, 6, 0.12), rgba(217, 119, 6, 0.04));
  border: 1px solid rgba(217, 119, 6, 0.22);
}
.about-col-team:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(217, 119, 6, 0.2); }

.about-col-returns .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.42) 70%, rgba(22, 101, 52, 0.32));
}
.about-col-returns .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(34, 197, 94, 0.42) 70%, rgba(22, 101, 52, 0.32));
}
.about-col-returns .hs-feature-sigil-ring {
  background: conic-gradient(
    from 210deg,
    #166534 0deg,
    var(--hs-accent) 95deg,
    var(--hs-accent-light) 185deg,
    #22c55e 265deg,
    #166534 360deg
  );
}
.about-col-returns .hs-feature-sigil-core {
  box-shadow:
    0 10px 26px rgba(7, 26, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -8px 18px rgba(46, 125, 50, 0.06);
}
.about-col-returns .hs-feature-sigil-core::after { border-color: rgba(46, 125, 50, 0.16); }
.about-col-returns .hs-feature-sigil-core i {
  background: linear-gradient(140deg, var(--hs-primary) 0%, var(--hs-accent) 55%, var(--hs-accent-light) 100%);
}
.about-col-returns .hs-feature-sigil-caption {
  color: #166534;
  background: linear-gradient(90deg, rgba(46, 125, 50, 0.04), rgba(46, 125, 50, 0.12), rgba(46, 125, 50, 0.04));
  border: 1px solid rgba(46, 125, 50, 0.22);
}
.about-col-returns:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(46, 125, 50, 0.2); }
.about-col::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--hs-accent), var(--hs-accent-light));
  transform: scaleX(0);
  transition: transform 0.35s;
}
.about-col:hover {
  transform: translateY(-8px);
  box-shadow: var(--hs-shadow);
  border-color: rgba(46,125,50,0.2);
}
.about-col:hover::before { transform: scaleX(1); }
.about-col h2.title { font-size: 1.15rem !important; margin: 0 16px 12px; font-weight: 700; }
.about-col h2.title a { color: var(--hs-primary); }
.about-col p { color: var(--hs-muted); font-size: 14px; margin: 0 20px; line-height: 1.7; }

/* Services */
#services {
  background: var(--hs-surface);
  background-image: radial-gradient(ellipse 60% 40% at 100% 0%, rgba(34,197,94,0.06) 0%, transparent 60%);
}
#services .box {
  background: var(--hs-white);
  border-radius: var(--hs-radius);
  padding: 0 0 32px;
  height: 100%;
  border: 1px solid #e8f0ea;
  margin-bottom: 24px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#services .box .box-num {
  position: absolute; top: 16px; right: 20px;
  font-size: 48px; font-weight: 800;
  color: rgba(46,125,50,0.08);
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}
#services .box:hover {
  transform: translateY(-6px);
  box-shadow: var(--hs-shadow);
  border-color: rgba(46,125,50,0.15);
}
#services .service-box-media {
  border-bottom: 1px solid #e4ede7;
}
#services .service-box .service-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
  filter: saturate(1.02);
}
#services .service-box .hs-feature-sigil {
  margin: -34px 0 16px;
}
#services .box h3.title {
  font-size: 1.1rem !important;
  margin: 0 24px 10px;
  font-weight: 700;
  color: var(--hs-primary);
}
#services .box p.description {
  color: var(--hs-muted);
  font-size: 14px;
  margin: 0 24px;
  line-height: 1.7;
}

.service-box-analytics .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(212, 167, 44, 0.45) 70%, rgba(46, 125, 50, 0.35));
}
.service-box-analytics .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(212, 167, 44, 0.45) 70%, rgba(46, 125, 50, 0.35));
}
.service-box-analytics .hs-feature-sigil-ring {
  background: conic-gradient(from 210deg, var(--hs-accent) 0deg, var(--hs-gold) 95deg, var(--hs-accent-light) 185deg, var(--hs-gold-light) 265deg, var(--hs-accent) 360deg);
}
.service-box-analytics .hs-feature-sigil-core {
  box-shadow: 0 10px 26px rgba(7, 26, 16, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -8px 18px rgba(46, 125, 50, 0.05);
}
.service-box-analytics .hs-feature-sigil-core::after { border-color: rgba(212, 167, 44, 0.14); }
.service-box-analytics .hs-feature-sigil-core i {
  background: linear-gradient(140deg, var(--hs-primary) 0%, var(--hs-accent) 52%, var(--hs-gold) 100%);
}
.service-box-analytics .hs-feature-sigil-caption {
  color: #8b6914;
  background: linear-gradient(90deg, rgba(212, 167, 44, 0.04), rgba(212, 167, 44, 0.12), rgba(212, 167, 44, 0.04));
  border: 1px solid rgba(212, 167, 44, 0.22);
}
.service-box-analytics:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(46, 125, 50, 0.18); }

.service-box-deposits .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.42) 70%, rgba(29, 78, 216, 0.32));
}
.service-box-deposits .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(37, 99, 235, 0.42) 70%, rgba(29, 78, 216, 0.32));
}
.service-box-deposits .hs-feature-sigil-ring {
  background: conic-gradient(from 210deg, #1d4ed8 0deg, #2563eb 95deg, #60a5fa 185deg, #1e40af 265deg, #1d4ed8 360deg);
}
.service-box-deposits .hs-feature-sigil-core {
  box-shadow: 0 10px 26px rgba(7, 26, 16, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -8px 18px rgba(37, 99, 235, 0.06);
}
.service-box-deposits .hs-feature-sigil-core::after { border-color: rgba(37, 99, 235, 0.16); }
.service-box-deposits .hs-feature-sigil-core i {
  background: linear-gradient(140deg, #1e3a8a 0%, #2563eb 55%, #60a5fa 100%);
}
.service-box-deposits .hs-feature-sigil-caption {
  color: #1d4ed8;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.04), rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.22);
}
.service-box-deposits:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(37, 99, 235, 0.2); }

.service-box-referrals .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.42) 70%, rgba(180, 83, 9, 0.32));
}
.service-box-referrals .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(217, 119, 6, 0.42) 70%, rgba(180, 83, 9, 0.32));
}
.service-box-referrals .hs-feature-sigil-ring {
  background: conic-gradient(from 210deg, #b45309 0deg, #d97706 95deg, #fbbf24 185deg, #ea580c 265deg, #b45309 360deg);
}
.service-box-referrals .hs-feature-sigil-core {
  box-shadow: 0 10px 26px rgba(7, 26, 16, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -8px 18px rgba(217, 119, 6, 0.06);
}
.service-box-referrals .hs-feature-sigil-core::after { border-color: rgba(217, 119, 6, 0.16); }
.service-box-referrals .hs-feature-sigil-core i {
  background: linear-gradient(140deg, #78350f 0%, #d97706 55%, #fbbf24 100%);
}
.service-box-referrals .hs-feature-sigil-caption {
  color: #92400e;
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.04), rgba(217, 119, 6, 0.12), rgba(217, 119, 6, 0.04));
  border: 1px solid rgba(217, 119, 6, 0.22);
}
.service-box-referrals:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(217, 119, 6, 0.2); }

.service-box-returns .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.42) 70%, rgba(22, 101, 52, 0.32));
}
.service-box-returns .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(34, 197, 94, 0.42) 70%, rgba(22, 101, 52, 0.32));
}
.service-box-returns .hs-feature-sigil-ring {
  background: conic-gradient(from 210deg, #166534 0deg, var(--hs-accent) 95deg, var(--hs-accent-light) 185deg, #22c55e 265deg, #166534 360deg);
}
.service-box-returns .hs-feature-sigil-core {
  box-shadow: 0 10px 26px rgba(7, 26, 16, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -8px 18px rgba(46, 125, 50, 0.06);
}
.service-box-returns .hs-feature-sigil-core::after { border-color: rgba(46, 125, 50, 0.16); }
.service-box-returns .hs-feature-sigil-core i {
  background: linear-gradient(140deg, var(--hs-primary) 0%, var(--hs-accent) 55%, var(--hs-accent-light) 100%);
}
.service-box-returns .hs-feature-sigil-caption {
  color: #166534;
  background: linear-gradient(90deg, rgba(46, 125, 50, 0.04), rgba(46, 125, 50, 0.12), rgba(46, 125, 50, 0.04));
  border: 1px solid rgba(46, 125, 50, 0.22);
}
.service-box-returns:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(46, 125, 50, 0.2); }

.service-box-support .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.42) 70%, rgba(6, 182, 212, 0.32));
}
.service-box-support .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(8, 145, 178, 0.42) 70%, rgba(6, 182, 212, 0.32));
}
.service-box-support .hs-feature-sigil-ring {
  background: conic-gradient(from 210deg, #0e7490 0deg, #0891b2 95deg, #22d3ee 185deg, #155e75 265deg, #0e7490 360deg);
}
.service-box-support .hs-feature-sigil-core {
  box-shadow: 0 10px 26px rgba(7, 26, 16, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -8px 18px rgba(8, 145, 178, 0.06);
}
.service-box-support .hs-feature-sigil-core::after { border-color: rgba(8, 145, 178, 0.16); }
.service-box-support .hs-feature-sigil-core i {
  background: linear-gradient(140deg, #164e63 0%, #0891b2 55%, #22d3ee 100%);
}
.service-box-support .hs-feature-sigil-caption {
  color: #0e7490;
  background: linear-gradient(90deg, rgba(8, 145, 178, 0.04), rgba(8, 145, 178, 0.12), rgba(8, 145, 178, 0.04));
  border: 1px solid rgba(8, 145, 178, 0.22);
}
.service-box-support:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(8, 145, 178, 0.2); }

.service-box-protection .hs-feature-sigil::before {
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.42) 70%, rgba(91, 33, 182, 0.32));
}
.service-box-protection .hs-feature-sigil::after {
  background: linear-gradient(270deg, transparent, rgba(124, 58, 237, 0.42) 70%, rgba(91, 33, 182, 0.32));
}
.service-box-protection .hs-feature-sigil-ring {
  background: conic-gradient(from 210deg, #5b21b6 0deg, #7c3aed 95deg, #a78bfa 185deg, #6d28d9 265deg, #5b21b6 360deg);
}
.service-box-protection .hs-feature-sigil-core {
  box-shadow: 0 10px 26px rgba(7, 26, 16, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -8px 18px rgba(124, 58, 237, 0.06);
}
.service-box-protection .hs-feature-sigil-core::after { border-color: rgba(124, 58, 237, 0.16); }
.service-box-protection .hs-feature-sigil-core i {
  background: linear-gradient(140deg, #312e81 0%, #7c3aed 55%, #a78bfa 100%);
}
.service-box-protection .hs-feature-sigil-caption {
  color: #5b21b6;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.04), rgba(124, 58, 237, 0.12), rgba(124, 58, 237, 0.04));
  border: 1px solid rgba(124, 58, 237, 0.22);
}
.service-box-protection:hover .hs-feature-sigil-ring { box-shadow: 0 14px 34px rgba(124, 58, 237, 0.2); }

/* Markets */
#markets { background: var(--hs-surface); }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.market-card {
  background: var(--hs-white);
  border: 1px solid #e8f0ea;
  border-radius: var(--hs-radius);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(7,26,16,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 148px;
}
.market-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hs-shadow);
  border-color: rgba(46,125,50,0.2);
}
.market-logo {
  height: 64px;
  width: 64px;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8f0ea;
  box-shadow: 0 8px 22px rgba(7,26,16,0.08);
}
.market-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--hs-accent), #166534);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}
.market-symbol {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: var(--hs-primary);
  letter-spacing: 0.06em;
}
.market-name {
  display: block;
  font-size: 11px;
  color: var(--hs-muted);
  font-weight: 600;
  line-height: 1.3;
}

/* Pricing */
#pricing { background: var(--hs-white); }
.pricing-box {
  background: var(--hs-white);
  border: 2px solid #e8f0ea;
  border-radius: var(--hs-radius);
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  margin-bottom: 24px;
  transition: all 0.35s;
  position: relative;
}
.pricing-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--hs-accent), var(--hs-accent-light));
  border-radius: var(--hs-radius) var(--hs-radius) 0 0;
}
.pricing-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--hs-shadow-lg);
  border-color: rgba(46,125,50,0.25);
}
.pricing-box.pricing-featured {
  border-color: var(--hs-accent);
  transform: scale(1.04);
  box-shadow: var(--hs-shadow-lg);
  z-index: 2;
}
.pricing-box.pricing-featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-ribbon {
  position: absolute; top: 20px; right: -32px;
  background: linear-gradient(135deg, var(--hs-gold), var(--hs-gold-light));
  color: var(--hs-primary);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(212,167,44,0.3);
}
.pricing-box h3 { font-size: 1.3rem !important; color: var(--hs-primary); margin: 0 0 8px; font-weight: 700; }
.pricing-box .plan-tag { font-size: 12px; color: var(--hs-muted); margin-bottom: 20px; }
.pricing-box .cur {
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--hs-surface);
  border-radius: var(--hs-radius-sm);
}
.pricing-box .cur h2 {
  font-size: 2.75rem !important;
  background: linear-gradient(135deg, var(--hs-accent), var(--hs-accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0; font-weight: 800;
}
.price-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f2;
  color: var(--hs-muted);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.price-list li i { color: var(--hs-accent-bright); font-size: 18px; }
.pricing-button .btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--hs-accent), #166534);
  border: 0; border-radius: 999px;
  padding: 14px 32px; font-weight: 700;
  transition: all 0.25s;
}
.pricing-featured .pricing-button .btn-primary {
  background: linear-gradient(135deg, var(--hs-gold), var(--hs-gold-light));
  color: var(--hs-primary);
}
.pricing-button .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,0.3); }

/* Testimonials */
#testimonials {
  background: linear-gradient(180deg, var(--hs-surface) 0%, var(--hs-white) 100%);
}
.testimonial-item {
  background: var(--hs-white);
  border-radius: var(--hs-radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--hs-shadow);
  margin: 16px;
  position: relative;
  border: 1px solid #e8f0ea;
}
.testimonial-item::before {
  content: '\201C';
  position: absolute; top: 16px; left: 28px;
  font-size: 72px; line-height: 1;
  color: rgba(46,125,50,0.12);
  font-family: Georgia, serif;
}
.testimonial-stars {
  color: var(--hs-gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-img {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--hs-white);
  box-shadow: 0 4px 20px rgba(46,125,50,0.2);
  margin-bottom: 18px;
}
.testimonial-item h3 { font-size: 1.15rem !important; margin: 0 0 4px; font-weight: 700; }
.testimonial-item h4 { font-size: 13px; color: var(--hs-accent); font-weight: 600; margin: 0 0 18px; }
.testimonial-item p { color: var(--hs-muted); font-size: 15px; margin: 0; line-height: 1.8; font-style: italic; }
.testimonials-carousel .owl-dots {
  text-align: center; margin-top: 20px;
}
.testimonials-carousel .owl-dot span {
  width: 10px; height: 10px;
  background: #d1d5db !important;
  border-radius: 50%;
}
.testimonials-carousel .owl-dot.active span { background: var(--hs-accent) !important; }

/* Community Forum */
#community {
  background: linear-gradient(180deg, var(--hs-white) 0%, var(--hs-surface) 45%, #eef6f0 100%);
  padding-bottom: 90px;
}
.community-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hs-accent);
  background: rgba(46,125,50,0.1);
  border: 1px solid rgba(46,125,50,0.18);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.community-stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--hs-primary), var(--hs-primary-mid));
  border-radius: var(--hs-radius);
  box-shadow: var(--hs-shadow-lg);
  color: var(--hs-white);
}
.community-stat {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.community-stat:last-child { border-right: 0; }
.community-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--hs-white);
  margin-bottom: 4px;
}
.community-stat span:not(.live-pulse) {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.community-stat-rating .community-stars {
  color: var(--hs-gold-light);
  font-size: 11px;
  margin-top: 6px;
  letter-spacing: 2px;
}
.community-stat-live {
  position: relative;
}
.live-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--hs-accent-bright);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.community-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--hs-white);
  border: 1px solid #e8f0ea;
  border-radius: var(--hs-radius-sm);
  box-shadow: var(--hs-shadow);
}
.community-toolbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--hs-primary);
  font-size: 14px;
}
.community-toolbar-left i { color: var(--hs-accent); font-size: 20px; }
.new-post-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--hs-accent-bright), var(--hs-accent));
  color: var(--hs-white);
  padding: 4px 10px;
  border-radius: 999px;
  animation: badgePop 0.5s ease;
}
@keyframes badgePop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.forum-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.forum-filter-btn {
  border: 1px solid #e2ebe4;
  background: var(--hs-surface);
  color: var(--hs-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
}
.forum-filter-btn:hover {
  border-color: rgba(46,125,50,0.35);
  color: var(--hs-accent);
}
.forum-filter-btn.active {
  background: linear-gradient(135deg, var(--hs-accent), #166534);
  border-color: transparent;
  color: var(--hs-white);
  box-shadow: 0 4px 16px rgba(46,125,50,0.3);
}
.forum-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.forum-post {
  background: var(--hs-white);
  border: 1px solid #e8f0ea;
  border-radius: var(--hs-radius);
  padding: 22px 24px;
  box-shadow: var(--hs-shadow);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.35s;
}
.forum-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow-lg);
  border-color: rgba(46,125,50,0.2);
}
.forum-post.is-hidden { display: none; }
.forum-post.is-new {
  animation: forumSlideIn 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  border-color: rgba(34,197,94,0.45);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12), var(--hs-shadow-lg);
}
@keyframes forumSlideIn {
  0% { opacity: 0; transform: translateY(-16px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.forum-post-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.forum-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--hs-white);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.forum-author { flex: 1; min-width: 0; }
.forum-author-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.forum-author h4 {
  margin: 0;
  font-size: 15px !important;
  font-weight: 700;
  color: var(--hs-primary);
}
.forum-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--hs-accent);
  background: rgba(46,125,50,0.1);
  padding: 3px 8px;
  border-radius: 999px;
}
.forum-verified i { font-size: 14px; }
.forum-meta {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--hs-muted);
}
.forum-flag { font-size: 14px; }
.forum-time {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--hs-muted);
  background: var(--hs-surface);
  padding: 6px 10px;
  border-radius: 999px;
}
.forum-post-body { margin-bottom: 16px; }
.forum-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs-accent);
  background: rgba(46,125,50,0.08);
  border: 1px solid rgba(46,125,50,0.15);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.forum-rating {
  color: var(--hs-gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.forum-post-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--hs-text);
}
.forum-post-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f2;
}
.forum-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hs-muted);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.forum-like:hover, .forum-like.is-liked { color: var(--hs-accent); }
.forum-like.is-liked i { color: var(--hs-accent-bright); }
.community-disclaimer {
  margin: 32px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--hs-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.community-disclaimer i { color: var(--hs-accent); font-size: 18px; }

@media (max-width: 991px) {
  .community-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .community-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .community-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .forum-feed { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .community-stats-bar { grid-template-columns: 1fr; padding: 20px; }
  .community-stat { border-right: 0 !important; }
  .community-toolbar { flex-direction: column; align-items: stretch; }
  .forum-filter-tabs { justify-content: flex-start; }
  .forum-post { padding: 18px; }
}

/* Transactions */
#transaction { background: var(--hs-white); }
.transaction-box {
  border-radius: var(--hs-radius);
  border: 1px solid #e8f0ea;
  overflow: hidden;
  box-shadow: var(--hs-shadow);
}
.transaction-box .nav-tabs {
  border-bottom: 0;
  padding: 0;
  background: var(--hs-surface);
  display: flex;
}
.transaction-box .nav-link {
  flex: 1; text-align: center;
  border: 0; color: var(--hs-muted);
  font-weight: 700; padding: 18px;
  font-size: 14px;
  border-bottom: 3px solid transparent;
  transition: all 0.25s;
}
.transaction-box .nav-link.active {
  color: var(--hs-accent);
  background: var(--hs-white);
  border-bottom-color: var(--hs-accent);
}
.transaction-box .table { margin: 0; font-size: 14px; }
.transaction-box .table thead th {
  font-weight: 700; color: var(--hs-primary);
  border: 0; padding: 16px;
  background: var(--hs-surface);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.transaction-box .table tbody td, .transaction-box .table tbody th {
  padding: 14px 16px;
  vertical-align: middle;
  border-color: #f1f5f2;
}
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-processed, .status-completed, .status-approved {
  background: rgba(34,197,94,0.12); color: #15803d;
}
.status-pending {
  background: rgba(234,179,8,0.12); color: #a16207;
}
.status-rejected, .status-failed {
  background: rgba(239,68,68,0.1); color: #b91c1c;
}

/* FAQ */
#faq { background: var(--hs-surface); }
#faq-list { list-style: none; padding: 0; margin: 0; max-width: 820px; margin: 0 auto; }
#faq-list li {
  background: var(--hs-white);
  border-radius: var(--hs-radius-sm);
  margin-bottom: 12px;
  border: 1px solid #e8f0ea;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
#faq-list li:hover { box-shadow: 0 4px 20px rgba(7,26,16,0.06); }
#faq-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 26px;
  color: var(--hs-primary);
  font-weight: 600;
  font-size: 15px;
}
#faq-list li a:not(.collapsed) { color: var(--hs-accent); }
#faq-list li a i { color: var(--hs-accent); transition: transform 0.3s; }
#faq-list li a:not(.collapsed) i { transform: rotate(180deg); }
#faq-list li .collapse p {
  padding: 0 26px 22px;
  color: var(--hs-muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* Payments */
.payments-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.payments-grid .pay-badge {
  background: var(--hs-white);
  border: 1px solid #e8f0ea;
  border-radius: var(--hs-radius-sm);
  padding: 18px 32px;
  font-weight: 600;
  color: var(--hs-primary);
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(7,26,16,0.04);
}
.payments-grid .pay-badge i { font-size: 22px; color: var(--hs-accent); }
.payments-grid .pay-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow);
  border-color: var(--hs-accent);
}
.payments-grid .pay-card {
  background: var(--hs-white);
  border: 1px solid #e8f0ea;
  border-radius: var(--hs-radius);
  padding: 24px 20px;
  text-align: center;
  min-width: 140px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(7,26,16,0.04);
}
.payments-grid .pay-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hs-shadow);
}
.payments-grid .pay-card img {
  height: 44px; width: auto; margin-bottom: 12px;
  object-fit: contain;
}
.payments-grid .pay-card span {
  display: block; font-weight: 600;
  font-size: 13px; color: var(--hs-primary);
}

/* CTA Banner */
.hs-cta {
  padding: 0;
  margin: 0;
}
.hs-cta-inner {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 56px 48px;
  border-radius: var(--hs-radius);
  background: linear-gradient(135deg, var(--hs-primary) 0%, var(--hs-primary-mid) 50%, #1a4d2e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--hs-shadow-lg);
}
.hs-cta-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(34,197,94,0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(212,167,44,0.15) 0%, transparent 50%);
}
.hs-cta-inner > * { position: relative; z-index: 1; }
.hs-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 14px;
}
.hs-cta-inner p {
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}
.hs-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Compliance */
#compliance {
  background: linear-gradient(165deg, var(--hs-primary) 0%, #0a2518 50%, var(--hs-primary-mid) 100%);
  color: #fff;
  padding: 100px 0;
}
#compliance .section-header h2 { color: #fff; }
#compliance .section-header p { color: rgba(255,255,255,0.7); }
.hs-trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--hs-radius);
  padding: 36px 28px;
  height: 100%;
  transition: all 0.35s;
  backdrop-filter: blur(8px);
}
.hs-trust-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(74,222,128,0.3);
}
.trust-doc-preview {
  position: relative;
  margin: -8px -8px 20px;
  border-radius: var(--hs-radius-sm);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.trust-doc-preview img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  background: linear-gradient(180deg, #f8fcfa 0%, #eef6f1 100%);
}
.trust-doc-label {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(7,26,16,0.72);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
}
.trust-doc-label i { font-size: 13px; color: var(--hs-accent-light); }
.hs-trust-card h5 { color: #fff; font-size: 1.1rem; margin: 0 0 10px; font-weight: 700; }
.hs-trust-card p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0 0 20px; line-height: 1.7; }
.hs-trust-card .btn-outline-trust {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(74,222,128,0.4);
  color: var(--hs-accent-light);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.hs-trust-card .btn-outline-trust:hover {
  background: rgba(34,197,94,0.2);
  color: #fff;
}
.hs-trust-notice {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--hs-radius);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  display: flex; gap: 20px; align-items: flex-start;
}
.hs-trust-notice .notice-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(34,197,94,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--hs-accent-light);
}
.hs-trust-notice h5 { color: var(--hs-accent-light); margin: 0 0 6px; font-size: 1rem; font-weight: 700; }
.hs-trust-notice p { color: rgba(255,255,255,0.8); margin: 0; font-size: 14px; line-height: 1.7; }
.hs-trust-notice a { color: var(--hs-gold-light); font-weight: 600; }

/* Contact */
#contact {
  background: var(--hs-surface);
  background-image: linear-gradient(rgba(244,248,245,0.92), rgba(244,248,245,0.92)), url('../custom/images/bg-contact.jpg');
  background-size: cover;
  background-position: center;
}
.contact-info { margin-bottom: 48px; }
.contact-address, .contact-phone, .contact-email {
  text-align: center;
  padding: 32px 24px;
  background: var(--hs-white);
  border-radius: var(--hs-radius);
  border: 1px solid #e8f0ea;
  height: 100%;
  transition: all 0.3s;
}
.contact-address:hover, .contact-phone:hover, .contact-email:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow);
}
.contact-info i {
  font-size: 40px;
  color: var(--hs-accent);
  margin-bottom: 14px;
  display: block;
}
.contact-info h3 { font-size: 1rem !important; margin: 0 0 8px; font-weight: 700; color: var(--hs-primary); }
.contactForm {
  max-width: 720px; margin: 0 auto;
  background: var(--hs-white);
  padding: 44px;
  border-radius: var(--hs-radius);
  box-shadow: var(--hs-shadow);
  border: 1px solid #e8f0ea;
}
.contactForm .form-control {
  border: 1px solid #e2e8f0;
  border-radius: var(--hs-radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  transition: all 0.25s;
}
.contactForm .form-control:focus {
  border-color: var(--hs-accent);
  box-shadow: 0 0 0 4px rgba(46,125,50,0.1);
}
.contactForm button[type="submit"] {
  background: linear-gradient(135deg, var(--hs-accent-bright), var(--hs-accent));
  color: #fff; border: 0;
  padding: 16px 48px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 8px 28px rgba(34,197,94,0.3);
  transition: all 0.25s;
}
.contactForm button[type="submit"]:hover { transform: translateY(-2px); }

/* Footer */
#footer {
  background: var(--hs-primary);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
#footer h3, #footer h4 { color: #fff; font-size: 1.1rem; margin: 0 0 22px; font-weight: 700; }
#footer .footer-brand { margin-bottom: 16px; }
#footer .footer-brand img { max-height: 40px; margin-bottom: 16px; }
#footer .footer-info p { font-size: 14px; line-height: 1.8; }
#footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
#footer .footer-links li { padding: 7px 0; }
#footer .footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
#footer .footer-links a:hover { color: var(--hs-accent-light); padding-left: 4px; }
#footer .social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: #fff; margin-right: 8px;
  font-size: 17px;
  transition: all 0.25s;
}
#footer .social-links a:hover {
  background: var(--hs-accent);
  border-color: var(--hs-accent);
  transform: translateY(-3px);
}
#footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* Back to top */
.back-to-top {
  position: fixed; right: 28px; bottom: 28px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--hs-accent-bright), var(--hs-accent));
  color: #fff;
  border-radius: 14px;
  display: none;
  align-items: center; justify-content: center;
  z-index: 996;
  box-shadow: 0 6px 24px rgba(34,197,94,0.4);
  font-size: 18px;
}
.back-to-top:hover { transform: translateY(-4px); color: #fff; }

/* Responsive */
@media (max-width: 991px) {
  .nav-menu { display: none; }
  .mobile-nav-toggle { display: flex; }
  .hs-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hs-stat:nth-child(2) { border-right: 0; }
  .pricing-box.pricing-featured { transform: none; }
  .hs-cta-inner { padding: 40px 28px; margin-bottom: 60px; }
  .hs-trust-notice { flex-direction: column; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .about-float-img { position: static; width: 60%; margin-top: 16px; }
  .about-docs-grid { grid-template-columns: 1fr; }
  .about-doc-card img { height: 280px; }
  .about-doc-featured img { height: 320px; }
  .trust-doc-preview img { height: 240px; }
}
@media (max-width: 575px) {
  .hs-stats-inner { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-get-started, .btn-hero-secondary { width: 100%; max-width: 280px; justify-content: center; }
  .contactForm { padding: 28px 20px; }
}