/* =============================================
   DEXTRADE — TRADE. INVEST. GROW.
   LOGO-MATCHED THEME: RICH GOLD + EMERALD GREEN
   FONT: Inter (headings) + DM Sans (body)
   ============================================= */

@import url('../fonts/fonts.css');

/* =============================================
   CSS VARIABLES — DEXTRADE LOGO PALETTE
   Rich Gold (#C9A84C / #D4AF37) + Emerald Green (#00A550 / #1DB954)
   on Near-Black Dark Background
   ============================================= */
:root {
  /* --- Dark backgrounds (near-black with a hint of deep green) --- */
  --bg-dark: #080a07;
  --bg-mid: #0d120a;
  --bg-alt: #111a0d;
  --bg-card: #141f10;

  /* --- Primary accent: Rich Gold (logo text, arrow, frame) --- */
  --amber: #c9a84c;
  --amber-light: #e8c96a;
  --amber-glow: #d4af37;
  --amber-deep: #8a6e1a;

  /* --- Secondary accent: Emerald Green (logo candles & D icon) --- */
  --teal: #00a550;
  --teal-light: #1db954;
  --teal-dim: #007a3a;

  /* --- Text --- */
  --text-primary: #f2f5ee;
  --text-muted: #4a6644;
  --text-soft: #9ab89e;

  /* --- Borders & shadows --- */
  --border-amber: rgba(201, 168, 76, 0.40);
  --border-teal: rgba(0, 165, 80, 0.30);
  --shadow-amber: 0 0 24px rgba(201, 168, 76, 0.45), 0 4px 24px rgba(0, 0, 0, 0.85);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(201, 168, 76, 0.18);
  --shadow-teal: 0 0 20px rgba(0, 165, 80, 0.38);

  /* --- Transition --- */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET
   ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--amber-glow), var(--teal));
  border-radius: 4px;
}

section[id] {
  scroll-margin-top: 75px;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-44px);
}

.reveal-right {
  transform: translateX(44px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 13px 0;
  background: rgba(8, 10, 7, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 165, 80, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
    padding: 9px 0;
    background: rgba(8, 10, 7, 0.97);
    border-bottom-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.88), 0 0 20px rgba(201, 168, 76, 0.08);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.nav-logo img {
  height: 63px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px "rgba(212, 160, 23, $($args[0].Groups[1].Value))");
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 7px;
  color: var(--text-white);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber-light));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta-desktop {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, var(--amber-glow) 100%);
  color: #020f06;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 18px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta-desktop:hover {
  box-shadow: 0 0 30px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", 0 6px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.nav-cta-mobile,
.nav-cta-mobile-row {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--amber-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.vs11 {
  padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(0, 30, 8, 0.75) 0%, rgba(5, 8, 3, 0.88) 50%, rgba(2, 8, 4, 0.95) 100%), url(../images/backgroundimages/5.jpg) center / cover no-repeat;
}



.vs12 {
  padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(30, 20, 5, 0.82) 0%, rgba(8, 6, 2, 0.88) 50%, rgba(0, 0, 0, 0.95) 100%), url(../images/backgroundimages/6.jpg) center / cover no-repeat;
}



.vs13 {
    padding: 55px 0 55px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(0, 30, 8, 0.75) 0%, rgba(5, 8, 3, 0.88) 50%, rgba(2, 8, 4, 0.95) 100%), url(../images/backgroundimages/7.jpg) center / cover no-repeat;
}


/* =============================================
   GLOBAL HELPERS
   ============================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.30);
  border-radius: 4px;
  padding: 5px 14px;
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.tag-icon {
  width: 13px;
  height: 13px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
  opacity: 0.85;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  background: linear-gradient(130deg, #ffffff 0%, var(--amber-light) 55%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  color: #d6ccb8;
  max-width: 600px;
  width: 100%;
  line-height: 1.8;
  margin-bottom: 44px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber-glow), var(--teal-light), var(--amber-glow), var(--amber-deep));
  border-radius: 3px;
  margin: 0 auto 40px;
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.45);
}

/* =============================================
   PAGE 01 — HERO  (v2 — UNIQUE / PREMIUM)
   ============================================= */
.hero {
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: linear-gradient(140deg, rgba(0, 30, 8, 0.70) 0%, rgba(5, 8, 3, 0.85) 50%, rgba(2, 8, 4, 0.95) 100%), url(../images/backgroundimages/1.jpg) center / cover no-repeat;

  padding: 100px 24px 0;
}

/* ── Noise texture overlay ── */
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── Fine dot-grid ── */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(201, 168, 76, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── Horizontal scan line ── */
.hero-scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 165, 80, 0.4) 20%, rgba(201, 168, 76, 0.7) 50%, rgba(0, 165, 80, 0.4) 80%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  animation: scanMove 8s linear infinite;
  top: 0;
}

@keyframes scanMove {
  0% {
    top: 0%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 0.6;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ── Ambient blobs ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  top: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.14) 0%, transparent 70%);
  animation: blobDrift1 14s ease-in-out infinite;
}

.hero-blob-2 {
  width: 700px;
  height: 700px;
  bottom: -100px;
  right: -160px;
  background: radial-gradient(circle, rgba(0, 165, 80, 0.10) 0%, transparent 70%);
  animation: blobDrift2 18s ease-in-out infinite;
}

.hero-blob-3 {
  width: 500px;
  height: 500px;
  top: 40%;
  left: 50%;
  margin-left: -250px;
  margin-top: -250px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  animation: blobDrift3 10s ease-in-out 3s infinite;
}

@keyframes blobDrift3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -30px) scale(1.06);
  }
}

@keyframes blobDrift1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -40px) scale(1.08);
  }
}

@keyframes blobDrift2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-35px, 30px) scale(1.06);
  }
}

/* ── Particles ── */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-110vh) rotate(720deg);
    opacity: 0;
  }
}

/* ══════════════════════════════════════════════
   HERO v2 — OUTER WRAPPER
══════════════════════════════════════════════ */
.hero-v2-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Eyebrow badge ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 50px;
  padding: 7px 18px 7px 12px;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.08);
  transition: var(--transition);
}

.hero-eyebrow:hover {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
  animation: eyebrowPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes eyebrowPulse {

  0%,
  100% {
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.9);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 16px rgba(34, 197, 94, 1);
    transform: scale(1.25);
  }
}

.eyebrow-chip {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber-light);
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 20px;
  padding: 2px 10px;
}

/* ── Stage: logo + headline side-by-side ── */
.hero-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  margin-bottom: 56px;
}

.hero-stage-line {
  flex: 1;
  height: 1px;
  max-width: 140px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5), transparent);
  position: relative;
}

.hero-stage-line::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--amber-light);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.9);
}

.hero-stage-line--left {
  margin-right: 0;
}

.hero-stage-line--left::before {
  right: 0;
}

.hero-stage-line--right::before {
  left: 0;
}

.hero-stage-core {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
  flex-direction: row-reverse;
}

/* ══════════════════════════════════════════════
   LOGO FRAME
══════════════════════════════════════════════ */
.hero-logo-frame {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Three orbit rings */
.hlf-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hlf-ring {
  position: absolute;
  border-radius: 50%;
}

.hlf-ring-1 {
  width: 390px;
  height: 390px;
  border: 1px dashed rgba(0, 165, 80, 0.28);
  animation: hlRingSpin 22s linear infinite;
}

.hlf-ring-2 {
  width: 460px;
  height: 460px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  animation: hlRingSpin 34s linear infinite reverse;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.06), inset 0 0 30px rgba(201, 168, 76, 0.06);
}

.hlf-ring-3 {
  width: 530px;
  height: 530px;
  border: 1px dashed rgba(0, 165, 80, 0.12);
  animation: hlRingSpin 48s linear infinite;
}

@keyframes hlRingSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Orbiting dots */
.hlf-orbit-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hlf-odot {
  position: absolute;
  border-radius: 50%;
}

.hlf-odot-1 {
  width: 10px;
  height: 10px;
  background: var(--teal-light);
  box-shadow: 0 0 12px rgba(0, 165, 80, 0.9), 0 0 24px rgba(0, 165, 80, 0.5);
  animation: odotOrbit1 7s linear infinite;
}

.hlf-odot-2 {
  width: 8px;
  height: 8px;
  background: var(--amber-light);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.9);
  animation: odotOrbit2 11s linear infinite;
}

.hlf-odot-3 {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  animation: odotOrbit3 17s linear infinite;
}

@keyframes odotOrbit1 {
  from {
    transform: rotate(0deg) translateX(195px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(195px) rotate(-360deg);
  }
}

@keyframes odotOrbit2 {
  from {
    transform: rotate(120deg) translateX(230px) rotate(-120deg);
  }

  to {
    transform: rotate(480deg) translateX(230px) rotate(-480deg);
  }
}

@keyframes odotOrbit3 {
  from {
    transform: rotate(240deg) translateX(265px) rotate(-240deg);
  }

  to {
    transform: rotate(600deg) translateX(265px) rotate(-600deg);
  }
}

/* Coin image */
.hlf-coin-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hlf-coin-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  animation: hlCoinFloat 5s ease-in-out infinite;
  filter:
    drop-shadow(0 0 40px rgba(201, 168, 76, 0.65)) drop-shadow(0 0 80px rgba(0, 165, 80, 0.25)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

@keyframes hlCoinFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.025);
  }
}

/* Shine sweep */
.hlf-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 12%,
      transparent 25%);
  animation: hlShineRotate 6s linear infinite;
  pointer-events: none;
}

@keyframes hlShineRotate {
  to {
    transform: rotate(360deg);
  }
}

/* Floating micro chips */
.hlf-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  z-index: 4;
  color: var(--amber-light);
  background: rgba(212, 160, 23, 0.10);
  border: 1px solid rgba(212, 160, 23, 0.30);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 12px rgba(212, 160, 23, 0.15);
}

.hlf-chip img {
  width: 13px;
  height: 13px;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
  flex-shrink: 0;
}

.hlf-chip-1 {
  top: 2px;
  left: -50px;
  animation: chipFloat 6s ease-in-out infinite;
  color: var(--teal-light);
  background: rgba(34, 197, 94, 0.10);
  border-color: rgba(34, 197, 94, 0.30);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 12px rgba(34, 197, 94, 0.15);
}

.hlf-chip-1 img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

.hlf-chip-2 {
  bottom: 40px;
  right: -45px;
  animation: chipFloat 7.5s ease-in-out 1.5s infinite;
}

.hlf-chip-3 {
  bottom: -12px;
  left: 20px;
  animation: chipFloat 5.5s ease-in-out 3s infinite;
  color: var(--teal-light);
  background: rgba(34, 197, 94, 0.10);
  border-color: rgba(34, 197, 94, 0.30);
}

.hlf-chip-3 img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

@keyframes chipFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ══════════════════════════════════════════════
   HEADLINE BLOCK
══════════════════════════════════════════════ */
.hero-headline-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
}

.hero-h1-top {
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 0 80px rgba(255, 255, 255, 0.06),
    0 2px 0 rgba(0, 0, 0, 0.4);
}

.hero-h1-bottom {
  position: relative;
  display: inline-block;
}

.hero-h1-fx {
  font-size: clamp(3.2rem, 6.2vw, 5.5rem);
  background: linear-gradient(125deg,
      #6b4a0f 0%,
      var(--amber-deep) 15%,
      var(--amber) 35%,
      var(--amber-light) 55%,
      var(--amber-glow) 72%,
      #f5e070 88%,
      var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(201, 168, 76, 0.60));
  display: block;
  background-size: 200% auto;
  animation: fxShimmer 4s linear infinite;
}

@keyframes fxShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-h1-underline {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber-light), var(--teal), transparent);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.6);
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(220, 200, 160, 0.82);
  line-height: 1.65;
  margin-bottom: 12px;
}

.hero-sub strong {
  color: #fff;
  font-weight: 700;
}

.hero-tagline-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
  text-shadow: 0 0 12px rgba(212, 160, 23, 0.5);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.htd-sep {
  color: var(--teal);
  font-size: 0.5rem;
  opacity: 0.7;
}

/* ── CTA row ── */
.hero-v2-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Primary button */
.hv2-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  color: #021a09;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.hv2-btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg,
      var(--amber-deep) 0%,
      var(--amber) 35%,
      var(--amber-light) 65%,
      var(--amber-glow) 100%);
  background-size: 200% 100%;
  transition: background-position 0.4s ease, box-shadow 0.35s ease;
  z-index: 0;
}

.hv2-btn-primary:hover .hv2-btn-bg {
  background-position: right center;
}

.hv2-btn-primary>*:not(.hv2-btn-bg) {
  position: relative;
  z-index: 1;
}

.hv2-btn-primary img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.75;
}

.hv2-btn-arrow {
  width: 16px;
  height: 16px;
  color: #021a09;
  transition: transform 0.3s ease;
}

.hv2-btn-primary:hover .hv2-btn-arrow {
  transform: translateX(4px);
}

.hv2-btn-primary {
  box-shadow:
    0 0 22px rgba(212, 160, 23, 0.40),
    0 4px 16px rgba(0, 0, 0, 0.55);
}

.hv2-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 40px rgba(212, 160, 23, 0.60),
    0 8px 24px rgba(0, 0, 0, 0.55);
}

.hv2-btn-primary:active {
  transform: translateY(-1px);
}

/* Outline button */
.hv2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: pointer;
}

.hv2-btn-outline img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.6;
  transition: var(--transition);
}

.hv2-btn-outline:hover {
  border-color: rgba(34, 197, 94, 0.50);
  color: var(--teal-light);
  background: rgba(34, 197, 94, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.15);
}

.hv2-btn-outline:hover img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
  opacity: 1;
}

/* ══════════════════════════════════════════════
   STATS STRIP v2
══════════════════════════════════════════════ */
.hero-stats-v2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 160, 23, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  padding: 22px 10px;
  margin-bottom: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 8px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

/* top shimmer line */
.hero-stats-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 160, 23, 0.5) 30%,
      rgba(34, 197, 94, 0.5) 70%,
      transparent 100%);
}

.hstat-v2 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
}

.hstat-v2-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.10);
}

.hstat-v2-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

.hstat-v2-icon--amber {
  background: rgba(212, 160, 23, 0.10);
  border-color: rgba(212, 160, 23, 0.22);
  box-shadow: 0 0 14px rgba(212, 160, 23, 0.10);
}

.hstat-v2-icon--amber img {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.hstat-v2-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hstat-v2-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--amber-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.50);
  display: block;
}

.hstat-v2-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  white-space: nowrap;
}

.hstat-v2-sep {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(212, 160, 23, 0.25), transparent);
  flex-shrink: 0;
}

/* ── Scroll cue ── */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  animation: scueFade 3s ease-in-out 2s infinite;
}

.hsc-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(212, 160, 23, 0.6), transparent);
}

.hero-scroll-cue span {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(212, 160, 23, 0.50);
}

@keyframes scueFade {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — HERO v2
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-stage {
    flex-direction: column;
    gap: 36px;
  }

  .hero-stage-line {
    display: none;
  }

  .hero-stage-core {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .hero-headline-block {
    align-items: center;
    text-align: center;
  }

  .hero-tagline-dots {
    justify-content: center;
  }

  .hero-v2-cta {
    justify-content: center;
  }

  .hlf-chip-1 {
    left: -20px;
  }

  .hlf-chip-2 {
    right: -20px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 90px 16px 0;
  }

  .hero-logo-frame {
    width: 260px;
    height: 260px;
  }

  .hlf-coin-img {
    width: 200px;
    height: 200px;
  }

  .hlf-ring-1 {
    width: 270px;
    height: 270px;
  }

  .hlf-ring-2 {
    width: 320px;
    height: 320px;
  }

  .hlf-ring-3 {
    width: 330px;
    height: 330px;
  }

  .hlf-chip {
    display: none;
  }

  .hero-stats-v2 {
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 16px;
    padding: 18px 8px;
  }

  .hstat-v2 {
    flex: 0 0 calc(50% - 8px);
    padding: 8px;
  }

  .hstat-v2-sep {
    display: none;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    padding: 6px 14px 6px 10px;
  }
}

/* =============================================
   PAGE 02 — ABOUT
   ============================================= */
.about {
  padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(30, 20, 5, 0.82) 0%, rgba(8, 6, 2, 0.88) 50%, rgba(0, 0, 0, 0.96) 100%), url(../images/backgroundimages/2.jpg) center / cover no-repeat;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 85% 50%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 0%, transparent 60%);
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient("rgba(34, 197, 94, $($args[0].Groups[1].Value))" 1px, transparent 1px),
    linear-gradient(90deg, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 1px, transparent 1px);
  background-size: 60px 60px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.about-img-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: "rgba(2, 15, 6, $($args[0].Groups[1].Value))";
  backdrop-filter: blur(10px);
  border: 1px solid "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 0 20px "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
}

.aio-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-primary);
}

.aio-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 6px "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
  flex-shrink: 0;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text .section-subtitle {
  margin-bottom: 28px;
  max-width: 100%;
}

.approach-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber-light);
  margin-bottom: 14px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: "rgba(4, 22, 11, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
  border-left: 3px solid var(--teal);
  border-radius: 9px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: #ffffff;
  line-height: 1.5;
  transition: var(--transition);
}

.approach-item:hover {
  border-left-color: var(--amber-light);
  color: var(--text-primary);
  transform: translateX(5px);
  background: "rgba(5, 28, 13, $($args[0].Groups[1].Value))";
}

.approach-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
  opacity: 0.8;
}

.about-bottom-highlight {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 8px;
  padding: 13px 24px;
  text-align: center;
  box-shadow: 0 0 16px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

/* =============================================
   PAGE 05 — WHAT IS CRYPTOCURRENCY
   ============================================= */
.crypto-explainer {
  padding: 30px 0 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(30, 20, 5, 0.82) 0%, rgba(8, 6, 2, 0.88) 50%, rgba(0, 0, 0, 0.96) 100%), url(../images/backgroundimages/4.jpg) center / cover no-repeat;
}

.ce-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 0%, transparent 70%);
}

.ce-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

.ce-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-items: center;
}

.ce-sub-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffdfb6;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
}

.ce-chars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ce-char-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(10, 74, 26, 0.38);
  border: 1px solid "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
  border-left: 3px solid #d4a017;
  border-radius: 11px;
  padding: 16px 18px;
  transition: var(--transition);
}

.ce-char-item:hover {
  border-left-color: var(--amber-light);
  transform: translateX(5px);
  background: "rgba(4, 26, 12, $($args[0].Groups[1].Value))";
}

.ce-char-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(243 243 243 / 7%);
  border: 1px solid rgb(255 151 0 / 22%);
  border-radius: 10px;
  padding: 10px;
}

.ce-char-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
  opacity: 0.9;
}

.ce-char-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.87rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--amber-light);
  margin-bottom: 4px;
}

.ce-char-item p {
  font-family: 'DM Sans';
  font-size: 0.82rem;
  color: #fff8ee;
  line-height: 1.6;
  margin: 0;
}

.ce-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.ce-visual-block {
  position: relative;
  border-radius: 18px;
  overflow: hidden;

}

.ce-visual-block img {
  width: 100%;

  filter: brightness(0.82) saturate(1.1);
}

.ce-visual-glow {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, transparent 50%, "rgba(2, 15, 6, $($args[0].Groups[1].Value))" 100%);
  pointer-events: none;
}

.ce-examples-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.ce-ex-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: "rgba(3, 20, 10, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
  border-radius: 12px;
  padding: 14px 8px;
  transition: var(--transition);
}

.ce-ex-pill:hover {
  border-color: var(--amber-light);
  transform: translateY(-5px);
  box-shadow: 0 0 20px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.ce-ex-pill img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ce-ex-pill span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-light);
  text-align: center;
}

/* =============================================
   PAGE 03 — BENEFITS OF CRYPTOCURRENCY (redesigned)
   ============================================= */


/* top glow bar */
.ben-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 30%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 50%, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 70%, transparent 100%);
  box-shadow: 0 0 20px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  z-index: 2;
}

/* radial glow overlay */
.ben-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 15% 50%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 50%, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 50% 100%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 55%);
  z-index: 0;
}

/* container */
.ben-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

/* accent word in title */
.ben-accent {
  background: linear-gradient(125deg, var(--amber-deep) 0%, var(--amber-light) 40%, var(--amber-glow) 75%, #ffe07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px "rgba(212, 160, 23, $($args[0].Groups[1].Value))");
}

/* ── Split row ── */
.ben-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}

/* reverse: content left, image right */
.ben-row--reverse {
  direction: rtl;
}

.ben-row--reverse>* {
  direction: ltr;
}

/* ── Image column ── */
.ben-img-col {
  position: relative;
}

.ben-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;

}

.ben-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 24px;
  filter: brightness(0.88) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.ben-img-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.2);
}

/* floating badges on the image */
.ben-img-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: "rgba(2, 15, 6, $($args[0].Groups[1].Value))";
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 8px 16px 8px 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-light);
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 2;
  white-space: nowrap;
}

.ben-img-badge img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
  flex-shrink: 0;
}

.ben-img-badge--tl {
  top: 18px;
  left: 18px;
}

.ben-img-badge--br {
  bottom: 18px;
  right: 18px;
  color: var(--teal-light);
  border-color: "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
}

.ben-img-badge--br img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

/* image glow */
.ben-img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}

.ben-img-glow--amber {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 70%);
}

/* ── Content column ── */
.ben-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* number tag */
.ben-num-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ben-num-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* heading */
.ben-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* description */
.ben-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* benefit points list */
.ben-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ben-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: "rgba(3, 18, 9, $($args[0].Groups[1].Value))";
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--amber);
  border-radius: 12px;
  padding: 14px 18px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.ben-point:hover {
  background: rgba(0, 18, 38, 0.9);
  border-color: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-left-color: var(--amber-glow);
  transform: translateX(6px);
}

.ben-point--teal {
  border-left-color: var(--teal);
}

.ben-point--teal:hover {
  border-left-color: var(--teal-light);
  border-color: "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
}

/* point icon */
.ben-point-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: var(--transition);
}

.ben-point-icon--amber {
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.ben-point-icon--amber img {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.ben-point-icon--teal {
  background: "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
}

.ben-point-icon--teal img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

.ben-point-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ben-point:hover .ben-point-icon {
  transform: scale(1.1);
}

/* point text */
.ben-point>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ben-point-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.ben-point-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.79rem;
  color: #cbcbcb;
  line-height: 1.55;
}

/* ── row separator ── */
.ben-row+.ben-row {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0;
  padding-top: 80px;
  margin-bottom: 80px;
}

/* ── Disclaimer ── */
.ben-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 12px;
  padding: 16px 22px;
  margin-top: 0;
  box-shadow: 0 0 14px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.ben-disc-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ben-disc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.1);
  opacity: 0.7;
}

.ben-disclaimer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(224, 160, 80, 0.75);
  line-height: 1.65;
}

/* =============================================
   PAGE 06 — TOP 10 CRYPTOCURRENCIES
   ============================================= */
.top10-section {
  padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgb(0 6 14 / 31%) 0%, rgb(10 6 0 / 55%) 50%, rgb(0 8 18 / 48%) 100%), url(../images/backgroundimages/background4.jpg) center / cover no-repeat;
}

/* Golden radial glow overlay */
.top10-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 90% 15%, rgba(255, 179, 71, 0.08) 0%, transparent 55%);
}

.top10-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

.top10-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

/* ── Top10 section header overrides ── */
.top10-section .section-tag {
  color: var(--amber-light);
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-color: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  box-shadow: 0 0 16px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.top10-section .section-tag .tag-icon {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.3);
}

.top10-section .divider {
  background: linear-gradient(90deg, transparent, var(--amber-light), var(--amber-glow), var(--amber-light), transparent);
  box-shadow: 0 0 16px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.top10-section .section-subtitle {
  color: #d4c4a0;
}

/* ── Coin Card ── */
.coin-card {
  background: linear-gradient(271deg, rgb(22 92 177 / 52%) 0%, rgb(5 42 99 / 35%) 100%);
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 18px;
  padding: 4px 4px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", inset 0 1px 0 rgba(255, 179, 71, 0.08);
}

/* Golden shimmer top bar */
.coin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-deep) 20%, var(--amber-light) 50%, var(--amber-glow) 70%, transparent 100%);
  opacity: 0.85;
}

/* Subtle inner glow */
.coin-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 60%);
  pointer-events: none;
}

.coin-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 179, 71, 0.65);
  box-shadow:
    0 0 36px "rgba(212, 160, 23, $($args[0].Groups[1].Value))",
    0 20px 48px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 200, 100, 0.15);
}

/* Rank badge — golden */
.coin-card-rank {
  position: absolute;
  top: 12px;
  left: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  color: #000;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, var(--amber-glow) 100%);
  border-radius: 5px;
  padding: 3px 7px;
  box-shadow: 0 0 10px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

/* Coin logo circle — golden border */
.coin-card-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 18, 0, 0.95) 0%, rgba(5, 12, 25, 0.98) 100%);
  border: 2px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 14px;
  padding: 11px;
  box-shadow:
    0 0 22px "rgba(212, 160, 23, $($args[0].Groups[1].Value))",
    inset 0 0 12px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  flex-shrink: 0;
  transition: var(--transition);
}

.coin-card:hover .coin-card-logo {
  border-color: var(--amber-glow);
  box-shadow:
    0 0 32px rgba(255, 179, 71, 0.5),
    inset 0 0 18px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  transform: scale(1.08);
}

.coin-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px "rgba(212, 160, 23, $($args[0].Groups[1].Value))");
}

.coin-card-info {
  margin-bottom: 10px;
}

/* Coin name — bright white */
.coin-card-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
  margin-bottom: 3px;
}

/* Symbol — golden */
.coin-card-sym {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 10px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

/* Description — soft warm white */
.coin-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #ffffff;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

/* Tag badge — golden fill */
.coin-card-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #021a09;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, var(--amber-glow) 100%);
  border-radius: 5px;
  padding: 4px 11px;
  box-shadow: 0 0 12px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

/* ── Bottom Note ── */
.top10-bottom-note {
  background: linear-gradient(135deg, rgba(20, 10, 0, 0.88) 0%, "rgba(3, 20, 10, $($args[0].Groups[1].Value))" 100%);
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 14px;
  padding: 22px 40px;
  text-align: center;
  box-shadow: 0 0 28px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", inset 0 1px 0 rgba(255, 179, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.note-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.note-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
  opacity: 0.85;
}

.top10-bottom-note p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.9rem;
  color: #c8b99a;
  line-height: 1.7;
}

/* =============================================
   PAGE 07 — WHY CRYPTO WITH US
   ============================================= */
.why-us-section {
  padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(30, 20, 5, 0.82) 0%, rgba(8, 6, 2, 0.88) 50%, rgba(0, 0, 0, 0.96) 100%), url(../images/backgroundimages/8.jpg) center / cover no-repeat;
}

.why-us-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 15% 40%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 85% 60%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(255, 179, 71, 0.06) 0%, transparent 55%);
}



.why-us-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

/* Section title accent word */
.why-accent {
  background: linear-gradient(125deg, var(--amber-deep) 0%, var(--amber-light) 40%, var(--amber-glow) 75%, #ffe07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px "rgba(212, 160, 23, $($args[0].Groups[1].Value))");
}

.why-us-section .section-tag {
  color: var(--amber-light);
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-color: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  box-shadow: 0 0 16px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.why-us-section .section-tag .tag-icon {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.3);
}

.why-us-section .divider {
  background: linear-gradient(90deg, transparent, var(--amber-light), var(--amber-glow), var(--amber-light), transparent);
  box-shadow: 0 0 18px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.why-us-section .section-subtitle {
  color: #d4c4a0;
}

/* ── Cards Grid ── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* ── Card Base ── */
.why-card {
    background: linear-gradient(2deg, rgb(8 67 3 / 87%) 0%, rgb(0 33 56 / 70%) 100%);
    border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
    border-radius: 20px;
    padding: 34px 28px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55), 0 0 0 1px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", inset 0 1px 0 rgba(255, 179, 71, 0.07);
}

/* Golden shimmer top border */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-deep) 25%, var(--amber-light) 50%, var(--amber-glow) 75%, transparent 100%);
  opacity: 0.75;
  transition: var(--transition);
}

/* Inner ambient glow */
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 65%);
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 179, 71, 0.55);
  box-shadow:
    0 0 40px "rgba(212, 160, 23, $($args[0].Groups[1].Value))",
    0 20px 50px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 200, 100, 0.12);
}

.why-card:hover::before {
  opacity: 1;
}

/* ── Card Top Row: icon + number ── */
.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Number badge top-right */
.why-card-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #000;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, var(--amber-glow) 100%);
  border-radius: 5px;
  padding: 3px 9px;
  line-height: 1.4;
  box-shadow: 0 0 10px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  flex-shrink: 0;
}

/* Icon wrapper */
.why-card-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.why-card-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
  border-radius: 14px;
  padding: 13px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.why-card-icon--amber {
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-color: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.why-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
  opacity: 0.9;
}

.why-card-icon--amber img {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.why-card:hover .why-card-icon {
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-color: rgba(255, 179, 71, 0.45);
  transform: scale(1.1) rotate(-3deg);
}

.why-card:hover .why-card-icon img {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.35);
}

/* Glow behind icon */
.why-icon-glow {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.why-icon-glow--amber {
  background: radial-gradient(circle, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 70%);
}

/* Card heading */
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Card description */
.why-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  color: #c8b99a;
  line-height: 1.72;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Tag badge */
.why-card-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #021a09;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 55%, var(--amber-glow) 100%);
  border-radius: 5px;
  padding: 4px 12px;
  margin-top: 16px;
  width: fit-content;
  box-shadow: 0 0 14px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  position: relative;
  z-index: 1;
}

.why-card-tag--amber {
  background: linear-gradient(135deg, var(--amber-deep) 0%, var(--amber) 50%, var(--amber-light) 100%);
}

/* Big bg watermark number */
.why-card-bg-number {
  position: absolute;
  bottom: -10px;
  right: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 6rem;
  color: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.why-card-tag--amber {
  background: linear-gradient(135deg, var(--amber-deep) 0%, var(--amber) 50%, var(--amber-light) 100%);
}

/* Big bg watermark number */
.why-card-bg-number {
  position: absolute;
  bottom: -12px;
  right: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 5.5rem;
  color: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* ── Stats Row ── */
.why-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 10, 0, 0.88) 0%, "rgba(3, 20, 10, $($args[0].Groups[1].Value))" 100%);
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 18px;
  padding: 28px 0;
  box-shadow: 0 0 32px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", inset 0 1px 0 rgba(255, 179, 71, 0.08);
}

.why-stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.why-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.why-stat-icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.why-stat-val {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  background: linear-gradient(125deg, #ffffff 0%, var(--amber-light) 55%, var(--amber-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: none;
}

.why-stat-lbl {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a89070;
}

.why-stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, "rgba(212, 160, 23, $($args[0].Groups[1].Value))", transparent);
  flex-shrink: 0;
}

/* =============================================
   PAGE 08 — FAQs
   ============================================= */
.faq-section {
  padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(0, 30, 8, 0.75) 0%, rgba(5, 8, 3, 0.88) 50%, rgba(2, 8, 4, 0.95) 100%), url(../images/backgroundimages/9.jpg) center / cover no-repeat;
}



.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient("rgba(212, 160, 23, $($args[0].Groups[1].Value))" 1px, transparent 1px),
    linear-gradient(90deg, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 1px, transparent 1px);
  background-size: 58px 58px;
}

.faq-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

/* Section tag & accent overrides */
.faq-section .section-tag {
  color: var(--amber-light);
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-color: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  box-shadow: 0 0 16px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.faq-section .section-tag .tag-icon {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.3);
}

.faq-section .divider {
  background: linear-gradient(90deg, transparent, var(--amber-light), var(--amber-glow), var(--amber-light), transparent);
  box-shadow: 0 0 18px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.faq-section .section-subtitle {
  color: #d4c4a0;
}

.faq-accent {
  background: linear-gradient(125deg, var(--amber-deep) 0%, var(--amber-light) 40%, var(--amber-glow) 75%, #ffe07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px "rgba(212, 160, 23, $($args[0].Groups[1].Value))");
}

/* ── Two-column grid ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── FAQ Item ── */
.faq-item {
    background: linear-gradient(160deg, rgb(8 67 3) 0%, rgb(21 59 101 / 65%) 100%);
    border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
    position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-deep) 25%, var(--amber-light) 50%, transparent 100%);
  opacity: 0.5;
  transition: var(--transition);
}

.faq-item.open,
.faq-item:hover {
  border-color: rgba(255, 179, 71, 0.45);
  box-shadow: 0 0 32px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", 0 8px 36px rgba(0, 0, 0, 0.55);
}

.faq-item.open::before,
.faq-item:hover::before {
  opacity: 1;
}

/* ── Question Button ── */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 1;
}

.faq-q-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 8px;
  padding: 7px;
  transition: var(--transition);
}

.faq-q-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.faq-item.open .faq-q-icon,
.faq-item:hover .faq-q-icon {
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-color: rgba(255, 179, 71, 0.5);
}

.faq-question span:nth-child(2) {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #f0e6d3;
  letter-spacing: -0.005em;
  line-height: 1.4;
  transition: var(--transition);
}

.faq-item.open .faq-question span:nth-child(2),
.faq-item:hover .faq-question span:nth-child(2) {
  color: #fff;
}

/* Chevron icon */
.faq-chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 6px;
  transition: var(--transition);
}

.faq-chevron img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.5;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-chevron {
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-color: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.faq-item.open .faq-chevron img {
  transform: rotate(180deg);
  opacity: 1;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

/* ── Answer Panel ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #b8a898;
  line-height: 1.78;
  padding-top: 2px;
  border-top: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  padding-top: 14px;
}

/* ── Bottom CTA ── */
.faq-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(14, 6, 0, 0.88) 0%, "rgba(3, 20, 10, $($args[0].Groups[1].Value))" 100%);
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 16px;
  padding: 24px 40px;
  box-shadow: 0 0 30px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", inset 0 1px 0 rgba(255, 179, 71, 0.07);
  flex-wrap: wrap;
}

.faq-cta-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 12px;
  padding: 11px;
}

.faq-cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.faq-cta-text {
  flex: 1;
  min-width: 200px;
}

.faq-cta-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #d4c4a0;
  line-height: 1.5;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--amber-deep) 0%, var(--amber) 40%, var(--amber-light) 75%, var(--amber-glow) 100%);
  color: #021a09;
  border-radius: 9px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 22px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 38px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", 0 8px 24px rgba(0, 0, 0, 0.5);
}

.faq-cta-btn img {
  width: 15px;
  height: 15px;
  filter: brightness(0);
  opacity: 0.8;
}

/* =============================================
   FOOTER — REDESIGNED
   ============================================= */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(269deg, rgb(0 6 14 / 56%) 0%, rgb(0 0 0 / 70%) 60%, rgb(0 4 10 / 62%) 100%), url(../images/backgroundimages/10.jpg) center / cover no-repeat;
  border-top: none;
}

/* Radial glow overlays */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at 15% 30%, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 70%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 5%, "rgba(212, 160, 23, $($args[0].Groups[1].Value))" 0%, transparent 55%);
}

/* Subtle grid texture */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient("rgba(34, 197, 94, $($args[0].Groups[1].Value))" 1px, transparent 1px),
    linear-gradient(90deg, "rgba(34, 197, 94, $($args[0].Groups[1].Value))" 1px, transparent 1px);
  background-size: 55px 55px;
}

/* Top glow bar */
.footer-glow-line {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 165, 80, 0.5) 20%, rgba(201, 168, 76, 0.95) 50%, rgba(0, 165, 80, 0.5) 80%, transparent 100%);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.50), 0 0 10px rgba(0, 165, 80, 0.30);
}

/* ── Newsletter / CTA Banner ── */
.footer-cta-banner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 44px 0;
}

.footer-cta-inner {
  background: linear-gradient(135deg, rgba(0, 20, 42, 0.92) 0%, "rgba(3, 20, 10, $($args[0].Groups[1].Value))" 100%);
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 18px;
  padding: 32px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 0 40px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", inset 0 0 60px "rgba(34, 197, 94, $($args[0].Groups[1].Value))";
  position: relative;
  overflow: hidden;
}

.footer-cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-light), var(--teal-light), transparent);
  border-radius: 18px 18px 0 0;
}

.footer-cta-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.footer-cta-text h3 span {
  background: linear-gradient(125deg, var(--amber-light), var(--amber-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cta-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--amber-deep), var(--amber), var(--amber-light));
  color: #021a09;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 24px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px "rgba(212, 160, 23, $($args[0].Groups[1].Value))", 0 8px 24px rgba(0, 0, 0, 0.5);
}

.footer-cta-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
  opacity: 0.8;
}

/* ── Main grid ── */
.footer-main {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 44px 44px;
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1fr;
  gap: 48px;
}

/* ── Brand column ── */
.footer-brand .logo-wrap img {
  height: 58px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px "rgba(212, 160, 23, $($args[0].Groups[1].Value))");
}

.footer-brand p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #c8d8e8;
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 24px;
  box-shadow: 0 0 14px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.footer-tagline::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 8px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  flex-shrink: 0;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fsocial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: "rgba(4, 22, 11, $($args[0].Groups[1].Value))";
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  cursor: pointer;
}

.fsocial-btn img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.65;
  transition: var(--transition);
}

.fsocial-btn:hover {
  border-color: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  transform: translateY(-3px);
  box-shadow: 0 4px 16px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.fsocial-btn:hover img {
  opacity: 1;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

/* ── Links columns ── */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber-light), var(--teal));
  box-shadow: 0 0 8px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  color: #b0c8dc;
  margin-bottom: 11px;
  transition: var(--transition);
  position: relative;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  opacity: 0.5;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--amber-light);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  background: var(--amber-light);
  opacity: 1;
  box-shadow: 0 0 6px "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
}

/* ── Stats bar ── */
.footer-stats-bar {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.fstat-item {
  background: "rgba(3, 20, 10, $($args[0].Groups[1].Value))";
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.fstat-item:hover {
  background: "rgba(4, 26, 12, $($args[0].Groups[1].Value))";
}

.fstat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  border: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.fstat-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.fstat-val {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(125deg, #fff 0%, var(--amber-light) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.fstat-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

/* ── Disclaimer ── */
.footer-disclaimer {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px 28px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: transparent;
}

.footer-disc-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-disc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg) brightness(1.1);
  opacity: 0.7;
}

.footer-disclaimer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(200, 216, 230, 0.55);
  line-height: 1.65;
}

/* ── Bottom bar ── */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8aacbe;
}

.footer-sep {
  color: var(--amber-light);
  opacity: 0.5;
  font-size: 1rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width:1100px) {
  .hero-container {
    grid-template-columns: 1fr 1.2fr 0.85fr;
    gap: 16px;
    padding: 0 28px;
  }

  .orbit-ring-3 {
    width: 440px;
    height: 440px;
  }

  .orbit-ring-2 {
    width: 370px;
    height: 370px;
  }

  .orbit-ring-1 {
    width: 290px;
    height: 290px;
  }

  .top10-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-cta-banner {
    padding: 36px 28px 0;
  }

  .footer-stats-bar {
    padding: 0 28px 36px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:900px) {

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-cta-desktop {
    display: none;
  }

    .nav-links {
        background: linear-gradient(150deg, rgba(8, 10, 7, 0.98) 0%, rgba(12, 18, 9, 0.98) 100%);
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        backdrop-filter: blur(24px);
        border-left: 1px solid rgba(201, 168, 76, 0.25);
        padding: 80px 0 40px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 14px 28px;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .nav-cta-mobile-row {
    display: flex;
    padding: 20px 28px 0;
  }

  .nav-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: #020f06;
    border-radius: 8px;
    width: 100%;
  }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    text-align: center;
    gap: 0;
    min-height: unset;
    padding-top: 16px;
    padding-bottom: 32px;
  }



  .orbit-ring-1,
  .orbit-ring-2,
  .orbit-ring-3 {
    display: none;
  }

  .orbit-dot {
    display: none;
  }

  .hero-center {
    display: none;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    align-items: center;
    padding: 0;
  }

  .hero-year-badge {
    align-self: center;
    font-size: 0.6rem;
    padding: 4px 12px 4px 10px;
    margin-bottom: 14px;
  }

  .hero-headline-line1 {
    font-size: 2.6rem;
  }

  .hero-headline-accent {
    font-size: 2.8rem;
  }

  .hero-title-divider {
    justify-content: center;
    margin: 12px auto 14px;
  }

  .htd-line {
    max-width: 50px;
  }

  .hero-tagline-main {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .hero-tagline-sub {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
  }

  /* Feature pills — horizontal row on mobile */
  .hero-feature-pills {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    align-items: stretch;
  }

  .hfpill {
    max-width: none;
    flex: 1 1 calc(33% - 8px);
    min-width: 100px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    gap: 8px;
    border-left: none;
    border-top: 3px solid var(--amber);
  }

  .hfpill-icon {
    width: 32px;
    height: 32px;
  }

  .hfpill-text {
    align-items: center;
  }

  .hfpill-title {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .hfpill-sub {
    font-size: 0.6rem;
  }

  /* CTA buttons — full width stacked */
  .hero-cta-row {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.8rem;
  }

  /* Taglines */
  .hero-taglines-list {
    align-items: center;
    gap: 6px;
  }

  .tagline-item {
    font-size: 0.78rem;
    justify-content: center;
  }

  /* Stats strip */
  .hero-stats-strip {
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 12px;
  }

  .hstat {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 12px 8px;
    border-bottom: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  }

  .hstat:nth-child(1),
  .hstat:nth-child(3) {
    border-right: 1px solid "rgba(212, 160, 23, $($args[0].Groups[1].Value))";
  }

  .hstat-divider {
    display: none;
  }

  .hstat-val {
    font-size: 1rem;
  }

  .hstat-lbl {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  /* About */
  .about-container {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 0 24px;
  }

  .about {
    padding: 64px 0 72px;
  }

  /* Reduce section vertical padding on mobile */
  .benefits-section,
  .top10-section,
  .why-us-section,
  .faq-section {
    padding: 64px 0 72px;
  }

  .crypto-explainer {
    padding: 48px 0 56px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits redesign — stack on tablet */
  .ben-container {
    padding: 0 24px;
  }

  .ben-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
  }

  .ben-row--reverse {
    direction: ltr;
  }

  .ben-row+.ben-row {
    padding-top: 56px;
    margin-bottom: 56px;
  }

  .ben-heading {
    font-size: 1.7rem;
  }

  /* Crypto */
  .ce-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ce-container {
    padding: 0 24px;
  }

  /* Top 10 */
  .top10-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top10-container {
    padding: 0 24px;
  }

  /* Why Us */
  .why-us-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .why-us-grid>.why-card:nth-child(1),
  .why-us-grid>.why-card:nth-child(6) {
    grid-column: 1 / -1 !important;
  }

  .why-card-inner {
    flex-direction: column;
    gap: 16px;
  }

  .why-us-container {
    padding: 0 24px;
  }

  .why-stats-row {
    flex-wrap: wrap;
    gap: 0;
    padding: 20px;
  }

  .why-stat-item {
    width: 50%;
    max-width: 100%;
    padding: 14px 0;
  }

  .why-stat-divider {
    display: none;
  }

  /* FAQ */
  .faq-container {
    padding: 0 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-bottom-cta {
    padding: 24px 28px;
    gap: 16px;
  }

  /* Footer */
  .footer-cta-banner {
    padding: 28px 24px 0;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 28px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 36px;
  }

  .footer-brand {
   
  }

  .footer-stats-bar {
    padding: 0 24px 32px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-disclaimer {
    padding: 0 24px 24px;
  }

  .footer-bottom {
    padding: 18px 24px;

    gap: 8px;
  }
}

@media (max-width:580px) {

  /* Why Us mobile */
  .why-us-grid {
    grid-template-columns: 1fr !important;
  }

  .why-us-grid>.why-card:nth-child(1),
  .why-us-grid>.why-card:nth-child(6) {
    grid-column: 1 / -1 !important;
  }

  .top10-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Benefits — even tighter on small phones */
  .ben-row {
    gap: 28px;
    margin-bottom: 40px;
  }

  .ben-row+.ben-row {
    padding-top: 40px;
    margin-bottom: 40px;
  }

  .ben-heading {
    font-size: 1.45rem;
  }

  .ben-img-badge {
    font-size: 0.62rem;
    padding: 6px 12px 6px 8px;
  }

  /* FAQ small screens */
  .faq-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-question {
    padding: 16px 16px;
    gap: 10px;
  }

  .faq-question span:nth-child(2) {
    font-size: 0.84rem;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.open .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
  }

  .faq-cta-text {
    min-width: unset;
  }

  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 28px;
  }

  .footer-cta-inner {
    padding: 22px 18px;
  }

  .ce-examples-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 1.7rem;
  }

  /* Hero small phones */
  .hero-headline-line1 {
    font-size: 2.2rem;
  }

  .hero-headline-accent {
    font-size: 2.4rem;
  }

  /* Pills stacked 1 per row on very small screens */
  .hfpill {
    flex: 1 1 100%;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 10px 14px;
    gap: 12px;
    border-left: 3px solid var(--amber);
    border-top: none;
  }

  .hfpill-text {
    align-items: flex-start;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    max-width: 100%;
  }

  .hero-container,
  .about-container,
  .ben-container,
  .ce-container,
  .top10-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Also reduce padding on containers not listed above */
  .why-us-container,
  .faq-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-cta-banner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-stats-bar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-disclaimer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Prevent coin cards from being too narrow at 320px */
  .top10-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Crypto pill icons — 5 in a row is too tight, use 3+2 */
  .ce-examples-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /* section subtitle smaller on small phones */
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  /* Hero orbs should not overflow visually on tiny screens */
  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3 {
    opacity: 0.5;
  }

  /* footer CTA banner – fix padding override conflict */
  .footer-cta-banner {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .phone-float-card {
    display: none;
  }
}

/* =============================================
   TOUCH DEVICES — disable hover transforms
   ============================================= */
@media (hover: none) and (pointer: coarse) {

  .coin-card:hover,
  .why-card:hover,
  .ce-char-item:hover,
  .ben-point:hover,
  .ben-img-wrap:hover img,
  .hfpill:hover,
  .approach-item:hover,
  .footer-links a:hover,
  .nav-links a:hover {
    transform: none;
  }

  .ben-img-wrap:hover img {
    transform: none;
    filter: brightness(0.88) saturate(1.1);
  }
}

/* =============================================
   EXTRA SMALL — 375px (iPhone SE, small Android)
   ============================================= */
@media (max-width: 375px) {
  .hero-headline-line1 {
    font-size: 1.9rem;
  }

  .hero-headline-accent {
    font-size: 2.1rem;
  }

  .coin-card-logo {
    width: 52px;
    height: 52px;
  }

  .coin-card-name {
    font-size: 0.85rem;
  }

  .coin-card-desc {
    font-size: 0.72rem;
  }

  .ce-examples-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .ben-heading {
    font-size: 1.3rem;
  }

  .ben-point {
    padding: 12px 14px;
    gap: 12px;
  }

  .ben-point-icon {
    width: 36px;
    height: 36px;
  }

  .why-card {
    padding: 24px 18px 22px;
  }

  .faq-question span:nth-child(2) {
    font-size: 0.8rem;
  }

  .footer-cta-inner {
    padding: 18px 14px;
  }

  .footer-cta-text h3 {
    font-size: 1.1rem;
  }

  .nav-logo img {
    height: 48px;
  }
}


/* =============================================
   BUSINESS SECTORS SECTION
   ============================================= */

.sectors-section {
  position: relative;
  padding: 100px 0 110px;

      background: linear-gradient(140deg, rgba(0, 30, 8, 0.75) 0%, rgba(5, 8, 3, 0.88) 50%, rgba(2, 8, 4, 0.95) 100%), url(../images/backgroundimages/3.jpg) center / cover no-repeat;

  overflow: hidden;
}





.sectors-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(212, 160, 23, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 0% 100%, rgba(34, 197, 94, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 50%, rgba(212, 160, 23, 0.06) 0%, transparent 55%);
  z-index: 0;
}

.sectors-glow-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 165, 80, 0.5) 25%, rgba(201, 168, 76, 0.95) 50%, rgba(0, 165, 80, 0.5) 75%, transparent 100%);
  box-shadow: 0 0 22px rgba(201, 168, 76, 0.45);
  z-index: 2;
}

.sectors-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sectors-accent {
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Grid --- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* --- Card --- */
.sector-card {
  position: relative;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 23, 0.18);
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
}

.sector-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 160, 23, 0.2);
}

.sector-card:nth-child(even) {
  border-color: rgba(34, 197, 94, 0.18);
}

.sector-card:nth-child(even):hover {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(34, 197, 94, 0.2);
}

.sector-card-inner {
  position: relative;
  z-index: 1;
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* --- Icon --- */
.sector-icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.sector-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.18) 0%, rgba(212, 160, 23, 0.06) 100%);
  border: 2px solid rgba(212, 160, 23, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sector-icon img {
  width: 30px;
  height: 30px;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(1.1);
}

.sector-icon--green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.06) 100%);
  border-color: rgba(34, 197, 94, 0.35);
}

.sector-icon--green img {
  filter: invert(1) sepia(1) saturate(6) hue-rotate(100deg) brightness(1.1);
}

.sector-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 160, 23, 0.25);
  animation: sectorRingSpin 14s linear infinite;
  pointer-events: none;
}

.sector-icon-ring--green {
  border-color: rgba(34, 197, 94, 0.25);
  animation-direction: reverse;
  animation-duration: 10s;
}

@keyframes sectorRingSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sector-card:hover .sector-icon {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(212, 160, 23, 0.4);
}

.sector-card:nth-child(even):hover .sector-icon {
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.4);
}

/* --- Title --- */
.sector-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber-glow);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.sector-card:nth-child(even) .sector-title {
  color: var(--teal-light);
}

/* --- Desc --- */
.sector-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.75;
  flex: 1;
}

/* --- Tag --- */
.sector-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.28);
  border-radius: 50px;
  padding: 4px 14px;
  margin-top: 4px;
}

.sector-tag--green {
  color: var(--teal);
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.28);
}

/* --- Card glow bg --- */
.sector-card-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: var(--transition);
}

.sector-card-glow--green {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
}

.sector-card:hover .sector-card-glow {
  width: 220px;
  height: 220px;
  opacity: 1.4;
}

/* --- Stat Strip --- */
.sectors-stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: 16px;
  padding: 28px 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.sectors-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}

.sstat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--amber-glow), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sstat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sectors-stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(212, 160, 23, 0.3), transparent);
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .sectors-section {
    padding: 70px 0 80px;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .sector-card-inner {
    padding: 28px 22px 24px;
  }

  .sectors-stat-strip {
    gap: 10px;
    padding: 20px 10px;
  }

  .sectors-stat {
    padding: 10px 20px;
  }

  .sectors-stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3), transparent);
  }

  .sstat-num {
    font-size: 1.8rem;
  }
}


/* =============================================
   SECTOR CARD ID ANCHORS — SCROLL OFFSET FIX
   ============================================= */
#forex,
#crypto,
#fintech,
#market-research,
#education,
#arbitrage {
  scroll-margin-top: 85px;
}


/* =============================================
   ABOUT — COMPANY OVERVIEW BLOCKS
   ============================================= */

.about-accent {
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-overview-block {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-left: 4px solid var(--amber-glow);
  border-radius: 14px;
  padding: 24px 24px 22px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.about-overview-block:hover {
  border-color: rgba(212, 160, 23, 0.5);
  border-left-color: var(--amber-glow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 160, 23, 0.12);
  transform: translateX(4px);
}

.about-overview-block--green {
  border-color: rgba(34, 197, 94, 0.22);
  border-left-color: var(--teal-light);
}

.about-overview-block--green:hover {
  border-color: rgba(34, 197, 94, 0.5);
  border-left-color: var(--teal-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 197, 94, 0.12);
}

/* Header row inside block */
.aob-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.aob-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.18), rgba(212, 160, 23, 0.06));
  border: 1px solid rgba(212, 160, 23, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aob-icon img {
  width: 20px;
  height: 20px;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(1.1);
}

.aob-icon--green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.06));
  border-color: rgba(34, 197, 94, 0.35);
}

.aob-icon--green img {
  filter: invert(1) sepia(1) saturate(6) hue-rotate(100deg) brightness(1.1);
}

.aob-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber-glow);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.aob-title--green {
  color: var(--teal-light);
}

.aob-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.85;
}

.aob-desc strong {
  color: var(--amber-light);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 640px) {
  .about-overview-block {
    padding: 18px 16px;
    border-radius: 10px;
  }

  .aob-title {
    font-size: 0.9rem;
  }

  .aob-desc {
    font-size: 0.84rem;
  }
}


/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.how-it-works {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(30, 20, 5, 0.82) 0%, rgba(8, 6, 2, 0.88) 50%, rgba(0, 0, 0, 0.96) 100%), url(../images/backgroundimages/background1.jpg) center / cover no-repeat;
}

.hiw-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(0, 165, 80, 0.07) 0%, transparent 60%);
}

.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

.hiw-accent {
  background: linear-gradient(125deg, var(--amber-deep) 0%, var(--amber-light) 40%, var(--amber-glow) 75%, #f5e070 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(201, 168, 76, 0.5));
}

/* Steps row */
.hiw-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  flex-wrap: nowrap;
}

/* Single step card */
.hiw-step {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(160deg, rgba(20, 31, 16, 0.95) 0%, rgba(10, 15, 8, 0.98) 100%);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 20px;
  padding: 32px 20px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(201, 168, 76, 0.08);
}

.hiw-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.6;
  transition: var(--transition);
}

.hiw-step:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.50);
  box-shadow: 0 0 36px rgba(201, 168, 76, 0.20), 0 16px 40px rgba(0, 0, 0, 0.65);
}

.hiw-step:hover::before { opacity: 1; }

/* Step number */
.hiw-step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 16px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  padding: 4px 12px;
}

/* Step icon */
.hiw-step-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.06) 100%);
  border: 2px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 15px;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.12);
}

.hiw-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.hiw-step-icon--green {
  background: linear-gradient(135deg, rgba(0, 165, 80, 0.18) 0%, rgba(0, 165, 80, 0.06) 100%);
  border-color: rgba(0, 165, 80, 0.35);
  box-shadow: 0 0 20px rgba(0, 165, 80, 0.12);
}

.hiw-step-icon--green img {
  filter: invert(1) sepia(1) saturate(6) hue-rotate(100deg) brightness(1.1);
}

.hiw-step:hover .hiw-step-icon {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.35);
  border-color: rgba(201, 168, 76, 0.6);
}

/* Step heading */
.hiw-step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

/* Step description */
.hiw-step p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

/* Step tag */
.hiw-step-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #021a09;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 55%, var(--amber-glow) 100%);
  border-radius: 5px;
  padding: 4px 12px;
  width: fit-content;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.30);
}

.hiw-step-tag--green {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dim) 0%, var(--teal) 55%, var(--teal-light) 100%);
  box-shadow: 0 0 12px rgba(0, 165, 80, 0.30);
}

/* Connector between steps */
.hiw-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  position: relative;
  margin-bottom: 16px;
}

.hiw-connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.60), rgba(0, 165, 80, 0.60));
  border-radius: 2px;
  position: relative;
}

.hiw-connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.8);
  position: absolute;
  animation: connDotPulse 2s ease-in-out infinite;
}

@keyframes connDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(201, 168, 76, 0.8); }
  50%       { transform: scale(1.4); box-shadow: 0 0 16px rgba(201, 168, 76, 1); }
}

/* Responsive */
@media (max-width: 900px) {
  .hiw-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .hiw-step {
    max-width: 400px;
    width: 100%;
  }
  .hiw-connector {
    width: auto;
    height: 40px;
    margin: 0;
  }
  .hiw-connector-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.60), rgba(0, 165, 80, 0.60));
  }
  .hiw-container {
    padding: 0 24px;
  }
}

@media (max-width: 580px) {
  .hiw-step {
    padding: 24px 16px 20px;
  }
  .how-it-works {
    padding: 64px 0 72px;
  }
}

/* =============================================
   SECTOR CARD — ENHANCED DESIGN
   ============================================= */
.sector-card {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(20, 31, 16, 0.97) 0%, rgba(10, 15, 8, 0.98) 100%);
  border: 1px solid rgba(201, 168, 76, 0.20);
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.60), inset 0 1px 0 rgba(201, 168, 76, 0.07);
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-deep) 25%, var(--amber-light) 50%, var(--amber-glow) 75%, transparent 100%);
  opacity: 0.55;
  transition: var(--transition);
}

.sector-card:hover::before { opacity: 1; }

.sector-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.50);
  box-shadow: 0 0 36px rgba(201, 168, 76, 0.18), 0 20px 50px rgba(0, 0, 0, 0.75);
}

.sector-card:nth-child(even) {
  border-color: rgba(0, 165, 80, 0.20);
}

.sector-card:nth-child(even)::before {
  background: linear-gradient(90deg, transparent 0%, var(--teal-dim) 25%, var(--teal) 50%, var(--teal-light) 75%, transparent 100%);
}

.sector-card:nth-child(even):hover {
  border-color: rgba(0, 165, 80, 0.50);
  box-shadow: 0 0 36px rgba(0, 165, 80, 0.15), 0 20px 50px rgba(0, 0, 0, 0.75);
}

/* =============================================
   WHY-CARD — ENHANCED DESIGN
   ============================================= */
.why-card {
  background: linear-gradient(160deg, rgba(20, 31, 16, 0.95) 0%, rgba(8, 12, 6, 0.98) 100%);
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: 20px;
  padding: 34px 28px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(201, 168, 76, 0.07);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-deep) 25%, var(--amber-light) 50%, var(--amber-glow) 75%, transparent 100%);
  opacity: 0.6;
  transition: var(--transition);
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-9px);
  border-color: rgba(201, 168, 76, 0.50);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.18), 0 20px 50px rgba(0, 0, 0, 0.70);
}

.why-card:hover::before { opacity: 1; }

/* FAQ item enhanced */
.faq-item {
  background: linear-gradient(160deg, rgba(20, 31, 16, 0.96) 0%, rgba(10, 15, 8, 0.98) 100%);
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-deep) 25%, var(--amber-light) 50%, transparent 100%);
  opacity: 0.4;
  transition: var(--transition);
}

.faq-item.open,
.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.12), 0 8px 36px rgba(0, 0, 0, 0.55);
}

.faq-item.open::before,
.faq-item:hover::before { opacity: 1; }
