/* ═══════════════════════════════════════════
   LAYOUT BASE
════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main>section {
  padding: clamp(120px, 15vh, 180px) 0;
  position: relative;
}

.section-break {
  height: 12vh;
  min-height: 120px;
  pointer-events: none;
}


.novus-concept,
.results-stats,
.mockup-section,
.cta-section {
  overflow: hidden;
}


.cta-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ═══════════════════════════════════════════
   EYEBROW (reusable component)
════════════════════════════════════════════ */
.eyebrow {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: #080808;
  color: #cf9f00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  border-radius: 100px;
  font-family: sans-serif;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(243, 230, 51, 0.1);
}

.eyebrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: conic-gradient(transparent, transparent, transparent, #cf9f00, transparent 20%);
  animation: rotateData 4s linear infinite !important;
  z-index: -2;
}

.eyebrow::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: #080808;
  border-radius: 100px;
  z-index: -1;
}

@keyframes rotateData {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.eyebrow:hover::before {
  animation-duration: 1.5s;
  filter: brightness(1.5);
}


/* ═══════════════════════════════════════════
   NOVUS CONCEPT
════════════════════════════════════════════ */
.novus-concept {
  padding: 120px 20px;
  position: relative;
  text-align: center;
}

.novus-concept .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.novus-concept h2 {
  font-family: sans-serif;
  font-size: clamp(2rem, 2vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 50px;
}

.text-gradient,
.gold-text {
  background: linear-gradient(180deg, #ffffff 0%, rgb(255, 238, 3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.definition-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 60px;
}

.main-promise p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #cccccc;
  font-weight: 300;
}

.benefit-pills {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: float-pill 4s ease-in-out infinite;
  font-family: sans-serif;
  color: var(--text-primary);
}

.pill .pill-icon {
  width: 24px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  color: #ede24d;
}

.pill span {
  font-size: 14px;
  font-weight: 600;
  color: #eee;
}

.pill:hover {
  background: rgba(221, 237, 77, 0.05);
  border-color: #ede24d;
  transform: translateX(10px);
}

.highlight-pill {
  background: linear-gradient(90deg, rgba(226, 237, 77, 0.1) 0%, transparent 100%);
}

.pill:nth-child(1) {
  animation-duration: 5s;
}

.pill:nth-child(2) {
  animation-duration: 6s;
}

.pill:nth-child(3) {
  animation-duration: 5.5s;
}

@keyframes float-pill {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.hightlight {
  color: var(--text-primary);
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.hightlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #b88900;
  opacity: 0.3;
}

.glow-up {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 80vw, 600px);
  height: clamp(300px, 80vw, 600px);
  background: radial-gradient(circle, rgba(234, 237, 77, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .definition-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pill:hover {
    transform: none;
  }

  .hightlight::after {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   SERVICES — Cards + Promise Layout
════════════════════════════════════════════ */
.services-section {
  padding: 120px 0 0;
  font-family: sans-serif;
  color: var(--text-primary);
  overflow: hidden;
}

.svc-eyebrow-row {
  margin-bottom: 60px;
}

/* ── Body: cards (left) + promise (right) ── */
.svc-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

/* ── Cards column ── */
.svc-cards-col {
  opacity: 0;
}

/* anime.js entrance */

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── Card ── */
.svc-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  /* anime.js */
  transition: border-color 0.4s ease,
    background 0.4s ease,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 137, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-card:hover {
  border-color: rgba(179, 137, 0, 0.3);
  background: rgba(179, 137, 0, 0.025);
  transform: translateY(-4px);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card--wide {
  grid-column: span 2;
}

/* Card top row: SVG + number */
.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.svc-svg-wrap {
  width: 86px;
  height: 75px;
  flex-shrink: 0;
}

.svc-svg-wrap svg {
  width: 100%;
  height: 100%;
}

.svc-num {
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(179, 137, 0, 0.45);
  letter-spacing: 0.12em;
}

/* Card middle: name + desc */
.svc-mid {
  flex: 1;
  margin-bottom: 22px;
}

.svc-name {
  font-family: sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}

.svc-desc {
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.7;
  margin: 0;
}

/* Card CTA */
.svc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 10px 16px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  margin-top: auto;
}

.svc-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.svc-btn:hover {
  border-color: rgba(179, 137, 0, 0.4);
  color: var(--gold-light);
  background: rgba(179, 137, 0, 0.07);
}

.svc-btn:hover span {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────
   SVG ANIMATIONS
   All start paused; .svc-animated activates them.
───────────────────────────────────────── */

/* ── Capital Raising: bars ── */
.svc-bar {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: scaleY(0);
  animation: svcBarUp 0.85s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-play-state: paused;
}

.svc-bar--1 {
  fill: rgba(179, 137, 0, 0.38);
  animation-delay: 0.10s;
}

.svc-bar--2 {
  fill: rgba(179, 137, 0, 0.62);
  animation-delay: 0.28s;
}

.svc-bar--3 {
  fill: rgba(179, 137, 0, 0.88);
  animation-delay: 0.46s;
}

@keyframes svcBarUp {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

/* Trend line draw (dasharray = ~42) */
.svc-trendline {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: svcLineDraw 0.85s ease 0.65s both;
  animation-play-state: paused;
}

/* Arrow up fade */
.svc-arrow-up {
  opacity: 0;
  animation: svcFadeIn 0.4s ease 1.35s both;
  animation-play-state: paused;
}

/* Shared dot: capital + trading */
.svc-dot {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation:
    svcFadeIn 0.4s ease 1.25s both,
    svcDotPulse 2.5s ease-in-out 1.7s infinite;
  animation-play-state: paused;
}

@keyframes svcDotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.55;
  }
}

/* ── M&A: circles slide in ── */
.svc-circle-l,
.svc-circle-r {
  transform-box: fill-box;
  transform-origin: center;
}

.svc-circle-l {
  animation: svcSlideFromLeft 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
  animation-play-state: paused;
}

.svc-circle-r {
  animation: svcSlideFromRight 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
  animation-play-state: paused;
}

@keyframes svcSlideFromLeft {
  from {
    transform: translateX(-14px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes svcSlideFromRight {
  from {
    transform: translateX(14px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.svc-overlap {
  opacity: 0;
  animation: svcFadeIn 0.6s ease 0.9s both;
  animation-play-state: paused;
}

.svc-center-dot {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  animation: svcPopIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) 1.1s both;
  animation-play-state: paused;
}

/* ── Strategic Advisory: rings + needle ── */
.svc-ring {
  opacity: 0;
  animation: svcFadeIn 0.5s ease both;
  animation-play-state: paused;
}

.svc-ring--3 {
  animation-delay: 0.1s;
}

.svc-ring--2 {
  animation-delay: 0.25s;
}

.svc-ring--1 {
  animation-delay: 0.4s;
}

.svc-needle {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  /* pivot = center of circle at bottom of the line's bbox */
  animation:
    svcNeedleIn 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both,
    svcNeedleIdle 4s ease-in-out 1.95s infinite;
  animation-play-state: paused;
}

@keyframes svcNeedleIn {
  from {
    transform: rotate(115deg);
  }

  to {
    transform: rotate(-12deg);
  }
}

@keyframes svcNeedleIdle {

  0%,
  100% {
    transform: rotate(-12deg);
  }

  50% {
    transform: rotate(12deg);
  }
}

/* ── Sales & Trading: candles ── */
.svc-candle {
  opacity: 0;
  animation: svcFadeIn 0.4s ease both;
  animation-play-state: paused;
}

/* stagger by pair (wick + body) */
.svc-svg--trading .svc-candle:nth-child(2),
.svc-svg--trading .svc-candle:nth-child(3) {
  animation-delay: 0.1s;
}

.svc-svg--trading .svc-candle:nth-child(4),
.svc-svg--trading .svc-candle:nth-child(5) {
  animation-delay: 0.3s;
}

.svc-svg--trading .svc-candle:nth-child(6),
.svc-svg--trading .svc-candle:nth-child(7) {
  animation-delay: 0.5s;
}

.svc-svg--trading .svc-candle:nth-child(8),
.svc-svg--trading .svc-candle:nth-child(9) {
  animation-delay: 0.7s;
}

/* price line draw (dasharray = ~52) */
.svc-priceline {
  stroke-dasharray: 52;
  stroke-dashoffset: 52;
  animation: svcLineDraw 0.9s ease 0.6s both;
  animation-play-state: paused;
}

/* ── Research & Analysis: edges + nodes ── */
.svc-edge {
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  animation: svcLineDraw 0.65s ease both;
  animation-play-state: paused;
}

.svc-edge--h {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.svc-svg--research .svc-edge:nth-child(1) {
  animation-delay: 0.20s;
}

.svc-svg--research .svc-edge:nth-child(2) {
  animation-delay: 0.35s;
}

.svc-svg--research .svc-edge:nth-child(3) {
  animation-delay: 0.50s;
}

.svc-svg--research .svc-edge:nth-child(4) {
  animation-delay: 0.65s;
}

.svc-svg--research .svc-edge:nth-child(5) {
  animation-delay: 0.82s;
}

.svc-svg--research .svc-edge:nth-child(6) {
  animation-delay: 0.98s;
}

.svc-node {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  animation:
    svcPopIn 0.4s ease-in-out both,
    svcNodePulse 3s ease-in-out infinite;
  animation-play-state: paused;
}

.svc-svg--research .svc-node:nth-child(7) {
  animation-delay: 1.10s, 1.60s;
}

.svc-svg--research .svc-node:nth-child(8) {
  animation-delay: 1.22s, 1.85s;
}

.svc-svg--research .svc-node:nth-child(9) {
  animation-delay: 1.34s, 2.10s;
}

.svc-svg--research .svc-node:nth-child(10) {
  animation-delay: 1.46s, 2.35s;
}

@keyframes svcNodePulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.svc-center-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: svcRingPulse 3s ease-in-out 1.5s infinite;
  animation-play-state: paused;
}

@keyframes svcRingPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* ── Shared keyframes ── */
@keyframes svcLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes svcFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes svcPopIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* ── Master switch: .svc-animated activates all ── */
.svc-animated .svc-bar,
.svc-animated .svc-trendline,
.svc-animated .svc-arrow-up,
.svc-animated .svc-dot,
.svc-animated .svc-circle-l,
.svc-animated .svc-circle-r,
.svc-animated .svc-overlap,
.svc-animated .svc-center-dot,
.svc-animated .svc-ring,
.svc-animated .svc-needle,
.svc-animated .svc-candle,
.svc-animated .svc-priceline,
.svc-animated .svc-edge,
.svc-animated .svc-node,
.svc-animated .svc-center-ring {
  animation-play-state: running;
}

/* ── Promise column ── */
.svc-promise-col {
  position: relative;
}

.svc-promise-sticky {
  position: sticky;
  top: 140px;
}

.svc-h2 {
  font-family: sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0 0 40px;
}

/* Promise list */
.promise-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  /* anime.js entrance */
  transform: translateX(20px);
}

.promise-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.promise-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
}

.promise-text {
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.promise-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(179, 137, 0, 0.3);
  padding-bottom: 3px;
  transition: gap 0.3s ease, border-color 0.3s ease;
}

.promise-cta-link:hover {
  gap: 14px;
  border-color: var(--gold);
}

/* ── Ticker (unchanged) ── */
.services-ticker {
  margin-top: 100px;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 25px 0;
  background: rgba(179, 137, 0, 0.02);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scrollTicker 30s linear infinite;
  gap: 50px;
  will-change: transform;
}

.ticker-track span {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  font-family: sans-serif;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .svc-body {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .svc-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-promise-col {
    order: -1;
  }

  .svc-cards-col {
    order: 1;
    opacity: 1;
  }

  .svc-promise-sticky {
    position: relative;
    top: 0;
  }

  /* Reveal everything immediately on mobile (no JS dependency) */
  .svc-card {
    opacity: 1;
  }

  .promise-item {
    opacity: 1;
    transform: none;
  }

  /* Run SVG animations without waiting for JS */
  .svc-bar,
  .svc-trendline,
  .svc-arrow-up,
  .svc-dot,
  .svc-circle-l,
  .svc-circle-r,
  .svc-overlap,
  .svc-center-dot,
  .svc-ring,
  .svc-needle,
  .svc-candle,
  .svc-priceline,
  .svc-edge,
  .svc-node,
  .svc-center-ring {
    animation-play-state: running;
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card--wide {
    grid-column: span 1;
  }
}





/* ═══════════════════════════════════════════
  METRICS / STATISTICS
════════════════════════════════════════════ */
.results-stats {
  padding: clamp(80px, 15vh, 150px) 0;
  font-family: sans-serif;
  color: var(--text-primary);
  position: relative;
}

.results-header {
  text-align: center;
  margin-bottom: clamp(50px, 10vh, 100px);
}

.results-header h2 {
  font-size: clamp(2rem, 2vw, 3.5rem);
  font-weight: 800;
}

.results-header p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0.8;
}

.num-wrapper {
  margin-bottom: 10px;
}

.num-value {
  font-family: 'Outfit Variable', 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -2px;
}

.num-value::after {
  content: attr(data-suffix);
  color: var(--gold);
  font-size: 0.5em;
  margin-left: 5px;
  font-weight: 300;
}

.num-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #666;
  font-weight: 600;
  display: block;
}

.card-light {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(179, 137, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat-card:hover .card-light {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animated elements created via anime.js start out invisible. */
.reveal-up,
.reveal-right,
.service-card,
.stat-card,
.method-item {
  opacity: 0;
  will-change: transform, opacity;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   SUCCESS STORIES
════════════════════════════════════════════ */
.cases-section {
  padding: 100px 0;
  position: relative;
  font-family: sans-serif;
}

.cases-grid-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 100px;
}

.cases-sticky-aside {
  position: sticky;
  top: 15vh;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-premium {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid var(--gold);
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 30px;
}

.cases-sticky-aside h2 {
  font-size: clamp(2.5rem, 2vw, 4rem);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.cases-sticky-aside p {
  font-weight: 500;
  color: var(--text-secondary);
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  opacity: 0.5;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: relative;
}

.mouse::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
  0% {
    top: 4px;
    opacity: 1;
  }

  100% {
    top: 16px;
    opacity: 0;
  }
}

.cases-stack {
  padding-bottom: 20vh;
}

.case-card {
  position: sticky;
  top: 15vh;
  min-height: 500px;
  margin-bottom: 15vh;
  transition: transform 0.5s ease-out, filter 0.5s;
  perspective: 1000px;
}

.card-inner {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}

.company-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.company-logo span {
  font-weight: 300;
  opacity: 0.6;
}

.result-value {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.result-value small {
  font-size: 1rem;
  color: var(--gold);
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.card-main p {
  font-family: "Inter", sans-serif;
  margin: 15px 0;
  line-height: 1.6;
  color: var(--text-secondary);
}

.card-footer blockquote {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.card-footer cite {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  font-style: normal;
}

.case-card:nth-child(1) {
  z-index: 1;
}

.case-card:nth-child(2) {
  z-index: 2;
}

.case-card:nth-child(3) {
  z-index: 3;
}

@media (max-width: 1024px) {
  .cases-grid-container {
    grid-template-columns: 1fr;
  }

  .cases-sticky-aside {
    position: relative;
    height: auto;
    top: 0;
    margin-bottom: 50px;
  }

  .case-card {
    top: 10vh;
  }
}

/* ═══════════════════════════════════════════
   METHODOLOGY
════════════════════════════════════════════ */
.methodology-section {
  padding: clamp(80px, 12vh, 150px) 0;
  color: var(--text-primary);
  font-family: sans-serif;
  overflow: hidden;
}

.method-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.method-header h2 {
  font-size: clamp(2.2rem, 2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0;
}

.method-header p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
}

.method-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline-track {
  position: absolute;
  top: 45px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.track-progress {
  width: 0%;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
  transition: width 8s cubic-bezier(0.23, 1, 0.32, 1);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.method-item {
  text-align: center;
}

.method-inner {
  transition: transform 0.4s ease;
}

.method-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
}

.icon-box {
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s ease;
}

.icon-box svg {
  width: 32px;
  height: 32px;
}

.icon-box.gold-fill {
  background: var(--gold) !important;
  border: none !important;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.4), 0 0 20px rgba(179, 137, 0, 0.4);
  overflow: visible;
}

.icon-box.gold-fill::before,
.icon-box.gold-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.icon-box.gold-fill::before {
  animation: success-ripple 3s ease-out infinite;
}

.icon-box.gold-fill::after {
  animation: success-ripple 3s ease-out infinite 1.5s;
}

@keyframes success-ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.icon-box.gold-fill svg {
  position: relative;
  z-index: 3;
  animation: icon-float-mini 4s ease-in-out infinite;
}

.icon-box.gold-fill {
  background: linear-gradient(135deg,
      #b38900 0%, #ffcc33 45%, #ffffff 50%,
      #ffcc33 55%, #b38900 100%) !important;
  background-size: 400% 400% !important;
  animation: gold-shimmer 6s linear infinite;
}

@keyframes gold-shimmer {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes icon-float-mini {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.step-num {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #000;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
}

.method-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.method-info p {
  font-size: 0.9rem;
  color: #d3d3d3;
  line-height: 1.6;
}

.method-item:hover {
  transform: translateY(-10px);
}

.method-item:hover .icon-box {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(179, 137, 0, 0.2);
  background: #111;
}

@media (max-width: 900px) {
  .method-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .timeline-track {
    left: 65px;
    top: 0;
    width: 1px;
    height: 100%;
  }

  .method-item {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 30px;
  }

  .method-icon-wrap {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ═══════════════════════════════════════════
   LENIS SMOOTH SCROLL
════════════════════════════════════════════ */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ═══════════════════════════════════════════
  3D ISOMETRIC MOCKUP
════════════════════════════════════════════ */

.mockup-section {
  padding: clamp(100px, 14vh, 160px) 0 0;
  position: relative;
  overflow: hidden;
  font-family: sans-serif;
}

/* Background: isometric grid in SVG inline via CSS */
.mockup-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(179, 137, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 137, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.mockup-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 100vw, 900px);
  height: clamp(200px, 55vw, 500px);
  background: radial-gradient(ellipse at center,
      rgba(179, 137, 0, 0.07) 0%,
      transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Header */
.mockup-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.mockup-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 20px;
  color: var(--text-primary);
}

.mockup-header p {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
}

/* Feature badges */
.mockup-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.feature-badge i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.feature-badge:hover {
  border-color: rgba(179, 137, 0, 0.3);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(179, 137, 0, 0.05);
}

.feature-badge--gold {
  background: rgba(179, 137, 0, 0.1);
  border-color: rgba(179, 137, 0, 0.35);
  color: var(--gold-light);
}

.feature-badge--gold i {
  color: var(--gold);
}

/* ── sometric Stage ── */
.mockup-stage {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 80px;
  z-index: 2;
  /* Smooth fade at the side edges. */
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 8%,
      black 75%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 8%,
      black 75%,
      transparent 100%);
}

/*Wrapper that receives the isometric transformation. */
.iso-wrapper {
  position: relative;
  width: min(1100px, 92vw);
  /*Isometric transformation: perspective + rotation */
  transform:
    perspective(1400px) rotateX(18deg) rotateZ(-4deg) scale(0.95);
  transform-origin: center top;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── Main screen ── */
.iso-screen--main {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(179, 137, 0, 0.12);
}

/* Browser Chrome */
.screen-chrome {
  background: #0d0d0d;
  border-radius: 16px;
  overflow: hidden;
}

.chrome-bar {
  background: #141414;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chrome-dots {
  display: flex;
  gap: 6px;
}

.chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.chrome-dots span:nth-child(1) {
  background: #ff5f56;
}

.chrome-dots span:nth-child(2) {
  background: #febc2e;
}

.chrome-dots span:nth-child(3) {
  background: #27c840;
}

.chrome-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Inter', monospace;
  max-width: 280px;
  margin: 0 auto;
}

.chrome-url i {
  font-size: 0.6rem;
  color: #27c840;
}

/* ── Dashboard ── */
.dashboard {
  display: flex;
  height: 520px;
  background: #080808;
}

/* Sidebar */
.dash-sidebar {
  width: 56px;
  background: #0a0a0a;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 0;
  flex-shrink: 0;
}

.sidebar-logo {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: sans-serif;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sidebar-item {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  cursor: default;
  transition: all 0.2s;
}

.sidebar-item.active {
  background: rgba(179, 137, 0, 0.15);
  color: var(--gold);
}

.sidebar-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #b38900, #ffcc33);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: #000;
  margin-top: auto;
}

/* Dashboard main */
.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 16px 18px;
  gap: 14px;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-title h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.topbar-date {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(39, 200, 64, 0.1);
  border: 1px solid rgba(39, 200, 64, 0.2);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #27c840;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: #27c840;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.topbar-alert {
  position: relative;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.alert-count {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 12px;
  height: 12px;
  background: #b38900;
  border-radius: 50%;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
}

/* KPI cards */
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kpi-card--gold {
  background: rgba(179, 137, 0, 0.08);
  border-color: rgba(179, 137, 0, 0.2);
}

.kpi-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}

.kpi-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Outfit Variable', sans-serif;
  letter-spacing: -0.5px;
}

.kpi-card--gold .kpi-value {
  color: var(--gold-light);
}

.kpi-delta {
  font-size: 0.58rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: 'Inter', sans-serif;
}

.kpi-delta--up {
  color: #27c840;
}

.kpi-delta--neutral {
  color: rgba(255, 255, 255, 0.35);
}

/* Content: graph + table */
.dash-content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

/* Chart card*/
.dash-chart-card,
.dash-table-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chart-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
}

.chart-tabs {
  display: flex;
  gap: 2px;
}

.chart-tab {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.3);
  cursor: default;
  font-family: 'Inter', sans-serif;
}

.chart-tab.active {
  background: rgba(179, 137, 0, 0.15);
  color: var(--gold);
}

.chart-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chart-svg {
  width: 100%;
  flex: 1;
}

.chart-x-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}

.chart-x-labels span {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: 'Inter', monospace;
}

.chart-legend {
  display: flex;
  gap: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
}

.legend-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
}

.legend-line--gold {
  background: #ffcc33;
}

.legend-line--gray {
  background: rgba(255, 255, 255, 0.3);
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.3) 0px,
      rgba(255, 255, 255, 0.3) 4px,
      transparent 4px,
      transparent 7px);
}

/* Table*/
.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-see-all {
  font-size: 0.58rem;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: default;
}

.positions-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
}

.positions-table th {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 6px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.positions-table td {
  font-size: 0.65rem;
  padding: 6px 6px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ticker {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Outfit Variable', monospace;
  letter-spacing: 0.5px;
}

.ret {
  font-weight: 700;
  font-size: 0.62rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.ret--up {
  color: #27c840;
  background: rgba(39, 200, 64, 0.1);
}

.ret--down {
  color: #ff5f56;
  background: rgba(255, 95, 86, 0.1);
}

/* ── Floating Cards ── */
.iso-float {
  position: absolute;
  z-index: 10;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.iso-float--alert {
  bottom: -20px;
  left: -40px;
  animation: float-card-a 6s ease-in-out infinite;
}

.iso-float--metric {
  top: 60px;
  right: -50px;
  animation: float-card-b 5s ease-in-out infinite;
}

@keyframes float-card-a {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-12px) translateX(4px);
  }
}

@keyframes float-card-b {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-8px) translateX(-4px);
  }
}

.float-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.float-icon--green {
  background: rgba(39, 200, 64, 0.15);
  color: #27c840;
}

.float-icon--gold {
  background: rgba(179, 137, 0, 0.15);
  color: var(--gold);
}

.float-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.float-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

.float-sub {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.float-value {
  font-size: 0.88rem;
  font-weight: 800;
  font-family: 'Outfit Variable', sans-serif;
  white-space: nowrap;
}

.float-value--green {
  color: #27c840;
}

.float-value--gold {
  color: var(--gold-light);
}

/*Mockup responsiveness */
@media (max-width: 900px) {
  .iso-wrapper {
    transform:
      perspective(1200px) rotateX(12deg) rotateZ(-2deg) scale(0.92);
  }

  .iso-float--alert {
    left: -10px;
  }

  .iso-float--metric {
    right: -10px;
  }
}

@media (max-width: 640px) {
  .iso-wrapper {
    transform:
      perspective(1000px) rotateX(8deg) rotateZ(0deg) scale(1);
  }

  .iso-float {
    display: none;
  }

  .dash-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-content-grid {
    grid-template-columns: 1fr;
  }

  .dash-table-card {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-section {
  padding: clamp(100px, 14vh, 160px) 0;
  font-family: sans-serif;
  position: relative;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky left side */
.faq-aside {
  position: sticky;
  top: 120px;
}

.faq-aside h2 {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 20px;
  color: var(--text-primary);
}

.faq-aside p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 320px;
}

.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.3s ease;
  border-bottom: 1px solid rgba(179, 137, 0, 0.3);
  padding-bottom: 4px;
}

.faq-cta-link:hover {
  gap: 12px;
  border-bottom-color: var(--gold);
}

/* List of FAQs */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* question button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  text-align: left;
  font-family: sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #fff;
}

.faq-question[aria-expanded="true"] {
  color: #fff;
}

/* Icon + / × */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: rgba(179, 137, 0, 0.15);
  border-color: rgba(179, 137, 0, 0.4);
}

.faq-icon-bar {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-icon-bar--h {
  width: 12px;
  height: 1.5px;
}

.faq-icon-bar--v {
  width: 1.5px;
  height: 12px;
}

.faq-question[aria-expanded="true"] .faq-icon-bar--h {
  background: var(--gold);
}

.faq-question[aria-expanded="true"] .faq-icon-bar--v {
  transform: rotate(90deg) scaleY(0);
  background: var(--gold);
  opacity: 0;
}

/* Response with animation */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s ease,
    padding 0.35s ease;
  opacity: 0;
  padding-bottom: 0;
}

.faq-answer.open {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 28px;
}

.faq-answer[hidden] {
  display: block;
  /* overwrites hidden to allow animation. */
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.faq-answer p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-aside {
    position: relative;
    top: 0;
  }

  .faq-aside p {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════
   CTA SPLIT
════════════════════════════════════════════ */
.cta-section {
  padding: clamp(100px, 14vh, 160px) 0;
  position: relative;
  overflow: hidden;
  font-family: sans-serif;
}

.cta-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 100vw, 1000px);
  height: clamp(200px, 60vw, 600px);
  background: radial-gradient(ellipse at top center,
      rgba(179, 137, 0, 0.1) 0%,
      transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(179, 137, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 137, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT */
.cta-left h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 22px;
  color: var(--text-primary);
}

.cta-left>p {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 440px;
}

/* Trust items */
.cta-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.trust-item i {
  color: var(--gold);
  font-size: 0.78rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/* Avatars */
.cta-avatars {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars-stack {
  display: flex;
}

.avatar-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: #fff;
  margin-left: -10px;
  font-family: 'Inter', sans-serif;
}

.avatars-stack .avatar-bubble:first-child {
  margin-left: 0;
}

.avatars-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

.avatars-label strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

/*Form card*/
.cta-form-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(179, 137, 0, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

/* Gold line at the top of the card.*/
.cta-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(179, 137, 0, 0.6) 40%,
      rgba(255, 220, 50, 0.9) 50%,
      rgba(179, 137, 0, 0.6) 60%,
      transparent);
}

.form-header {
  margin-bottom: 28px;
}

.form-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Form */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: border-color 0.3s ease, background 0.3s ease;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(179, 137, 0, 0.5);
  background: rgba(179, 137, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(179, 137, 0, 0.08);
}

.form-group textarea {
  resize: none;
  line-height: 1.6;
}

/* Custom Select */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  padding-right: 40px;
  cursor: pointer;
}

.select-wrapper select option {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.85);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transition: color 0.3s, transform 0.3s;
}

.select-wrapper:focus-within .select-arrow {
  color: var(--gold);
  transform: translateY(-50%) rotate(180deg);
}

/* submit button*/
.form-submit {
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #ffcc33 0%, #b38900 100%);
  border: none;
  border-radius: 14px;
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(179, 137, 0, 0.3);
  margin-top: 4px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(179, 137, 0, 0.5);
}

.form-submit:active {
  transform: translateY(0);
}

.submit-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.form-submit:hover .submit-icon {
  transform: translateX(4px);
}

/* Loading state */
.form-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.form-submit.loading .submit-text::after {
  content: '...';
  animation: ellipsis 1s steps(4) infinite;
}

@keyframes ellipsis {
  0% {
    content: '';
  }

  25% {
    content: '.';
  }

  50% {
    content: '..';
  }

  75% {
    content: '...';
  }
}

/* Disclaimer */
.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  justify-content: center;
}

.form-disclaimer i {
  font-size: 0.65rem;
  color: rgba(179, 137, 0, 0.4);
  flex-shrink: 0;
}

/* Success status */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(39, 200, 64, 0.12);
  border: 1px solid rgba(39, 200, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #27c840;
  animation: success-pop 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes success-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.form-success p strong {
  color: var(--gold);
}

/* Responsive CTA */
@media (max-width: 960px) {
  .cta-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-left>p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .cta-trust {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-form-card {
    padding: 28px 22px;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: sans-serif;
  overflow: hidden;
}

/* Superior golden shine */
.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(179, 137, 0, 0.6) 30%,
      rgba(255, 220, 50, 0.9) 50%,
      rgba(179, 137, 0, 0.6) 70%,
      transparent 100%);
  box-shadow: 0 0 30px rgba(179, 137, 0, 0.3);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}

/* brand column */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo .logo-mark {
  font-size: 1.2rem;
  background: linear-gradient(to right, #b38900 20%, #ffdb6e 40%, #ffdb6e 60%, #b38900 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 5s linear infinite;
}

.footer-logo .logo-text {
  font-family: sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo .logo-text strong {
  font-weight: 800;
  color: #fff;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 280px;
  margin-bottom: 30px;
  font-weight: 400;
}

/*Social media */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(179, 137, 0, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(179, 137, 0, 0.15);
}

/* Navigation columns */
.footer-nav-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

/* Contact column */
.footer-contact-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #000;
  background: linear-gradient(135deg, #ffcc33 0%, #b38900 100%);
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(179, 137, 0, 0.2);
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(179, 137, 0, 0.4);
  color: #000;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.footer-contact-info i {
  color: var(--gold);
  opacity: 0.7;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/*Bottom footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'Inter', sans-serif;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
}

/*Responsive footer */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 30px 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 24px 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════
  UTILITIES
════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}