/* assets/css/new_experience.css — "The Loop" 3D Orbital Career Journey */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --bg-dark: #070a12;
  --bg-card: rgba(10, 14, 26, 0.97);
  --bg-card-front: rgba(14, 19, 35, 0.98);
  --border-card: rgba(255, 255, 255, 0.1);
  --border-card-active: rgba(255, 255, 255, 0.22);
  --font-sans: 'Outfit', sans-serif;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Brand colors per phase (corrected) */
  --color-gvz: #f97316;
  --color-siemens-bs: #00828a;
  --color-siemens-ec: #14b8a6;
  --color-cukka: #22c55e;
  --color-yandex: #ef4444;
  --color-paypal: #0079c1;
  --color-paypal-sov: #3b82f6;
  --color-ai: #a78bfa;

  --card-width: 290px;
  --card-height: 390px;
}

/* ============================================================
   Reset & Body
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body.new-experience-body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(99, 102, 241, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(167, 139, 250, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, #0a0e1a 0%, #050710 100%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   Container
   ============================================================ */
.experience-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   Header
   ============================================================ */
.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7, 10, 18, 0.88);
}

.exp-logo img {
  height: 34px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.exp-logo img:hover {
  opacity: 1;
}

.btn-back-classic {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.btn-back-classic:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  text-align: left;
}

.hero-content {
  flex: 1.2;
}

.hero-visual {
  flex: 0.8;
  width: 100%;
  max-width: 460px;
}

/* Glassmorphic Trust Slideshow */
.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.5s forwards;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0f172a;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.slide img.stage-img {
  object-fit: cover;
  object-position: center 30%;
}

.slide img.contain-img {
  object-fit: contain;
  background: #0f172a;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem 0.6rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 40%, rgba(15, 23, 42, 0));
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  z-index: 3;
  pointer-events: none;
  letter-spacing: 0.3px;
}

.slideshow-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

.slideshow-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slideshow-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slideshow-dots .dot.active {
  background: var(--color-ai);
  width: 16px;
  border-radius: 3px;
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem 1.5rem;
    gap: 2.5rem;
  }
  .hero-visual {
    margin: 0 auto;
  }
  .advisory-networks-bar.hero-version {
    text-align: center;
  }
  .advisory-networks-bar.hero-version .monochrome-logos-row {
    justify-content: center;
  }
  .advisory-networks-bar.hero-version .brand-logo-item svg {
    transform-origin: center center;
  }
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-ai);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.1s forwards;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #94a3b8 60%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.25s forwards;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.4s forwards;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-author {
  font-size: 0.85rem;
  color: var(--text-tertiary, rgba(148, 163, 184, 0.7));
  letter-spacing: 0.03em;
  margin: 0.5rem 0 0;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.5s forwards;
}

/* ============================================================
   3D Orbit Section
   ============================================================ */
.orbit-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0 0;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.55s forwards;
}

.orbit-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 560px;
  margin: 0 auto;
  cursor: grab;
  user-select: none;
  overflow: visible;
}

.orbit-container.is-dragging {
  cursor: grabbing;
}

/* ============================================================
   Journey Card (Orbital)
   ============================================================ */
.journey-card {
  position: absolute;
  width: var(--card-width);
  height: var(--card-height);
  left: 50%;
  top: 55%;
  margin-left: calc(var(--card-width) / -2);
  margin-top: calc(var(--card-height) / -2);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.8s ease,
              filter 0.8s ease,
              border-color 0.5s ease,
              box-shadow 0.5s ease;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.journey-card.is-front {
  background: var(--bg-card-front);
  border-color: var(--border-card-active);
  pointer-events: auto;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 80px var(--card-glow, rgba(167, 139, 250, 0.1));
}

.journey-card.is-clickable {
  pointer-events: auto;
  cursor: pointer;
}

/* No transition during drag for responsive feel */
.orbit-container.is-dragging .journey-card {
  transition: none;
}

/* Card Accent Bar */
.card-accent {
  height: 3px;
  width: 100%;
  background: var(--card-color, var(--color-ai));
  opacity: 0.6;
  transition: opacity 0.5s, box-shadow 0.5s;
  flex-shrink: 0;
}

.journey-card.is-front .card-accent {
  opacity: 1;
  box-shadow: 0 2px 24px var(--card-color, var(--color-ai));
}

/* Card Inner */
.card-inner {
  padding: 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

/* Period Badge */
.card-period {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--card-color, var(--text-secondary));
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.8rem;
  width: fit-content;
}

.period-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--card-color, var(--text-secondary));
  flex-shrink: 0;
}

/* Card Icon */
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: var(--card-color, var(--text-secondary));
  flex-shrink: 0;
  transition: all 0.4s;
}

.journey-card.is-front .card-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

/* Card Company */
.card-company {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
}

/* Card Role */
.card-role {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

/* Hero Metric */
.card-metric {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--card-color, var(--color-ai));
  line-height: 1;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.4;
}

/* ============================================================
   Orbit Controls
   ============================================================ */
.orbit-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 0.5rem 0;
}

.orbit-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.orbit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.orbit-btn:active {
  transform: scale(0.95);
}

.orbit-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   Miniature Orbit Indicator
   ============================================================ */
.mini-orbit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-orbit {
  width: 120px;
  height: 50px;
}

.mini-orbit .orbit-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}

.mini-orbit .orbit-dot {
  fill: rgba(255, 255, 255, 0.15);
  transition: all 0.6s ease;
}

.mini-orbit .orbit-dot.active {
  r: 5;
  fill: var(--color-ai);
  filter: drop-shadow(0 0 6px var(--color-ai));
}

/* ============================================================
   Swipe Hint
   ============================================================ */
.swipe-hint {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 0.4rem 0 1rem;
  animation: swipeHintPulse 2.5s ease-in-out infinite;
}

.swipe-hint svg {
  width: 14px;
  height: 14px;
  animation: swipeHintSlide 2.5s ease-in-out infinite;
}

@keyframes swipeHintPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.65; }
}

@keyframes swipeHintSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.swipe-hint.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

/* ============================================================
   Footer
   ============================================================ */
.loop-footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.loop-footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.loop-footer p a {
  color: var(--color-ai);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.loop-footer p a:hover {
  color: #b59dfb;
  text-decoration: underline;
}

.brand-features-section {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.brand-features-section p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}

.monochrome-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  color: #64748b;
}

.brand-logo-item {
  transition: color 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.brand-logo-item:hover {
  color: #cbd5e1;
}

.social-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  color: #64748b;
}

.social-links-row a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links-row a:hover {
  color: #cbd5e1;
}

.social-links-row .text-link-cukka {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.social-links-row .text-link-pt {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.exp-logo a.logo-text {
  text-decoration: none;
  color: #f8fafc;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  transition: opacity 0.3s;
}

.exp-logo a.logo-text:hover {
  opacity: 0.85;
}

.exp-logo .logo-dot {
  color: #8b5cf6;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --card-width: 240px;
    --card-height: 340px;
  }

  .hero-section {
    padding: 2rem 1.5rem 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .exp-header {
    padding: 0.8rem 1rem;
  }

  .orbit-container {
    height: 480px;
  }

  .orbit-controls {
    gap: 1rem;
  }

  .card-inner {
    padding: 1.1rem 1rem;
  }

  .metric-value {
    font-size: 1.7rem;
  }

  .card-role {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  :root {
    --card-width: 210px;
    --card-height: 310px;
  }

  .hero-section {
    padding: 1.5rem 1rem 0.5rem;
  }

  .orbit-container {
    height: 420px;
  }

  .card-inner {
    padding: 0.9rem 0.8rem;
  }

  .card-icon {
    width: 34px;
    height: 34px;
  }

  .card-icon svg {
    width: 16px;
    height: 16px;
  }

  .metric-value {
    font-size: 1.5rem;
  }

  .btn-back-classic span {
    display: none;
  }
}

@media (min-width: 1200px) {
  :root {
    --card-width: 310px;
    --card-height: 410px;
  }

  .orbit-container {
    height: 600px;
  }
}

/* Header Actions & CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 50px;
  color: var(--color-ai);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.btn-header-cta:hover {
  background: var(--color-ai);
  color: #070a12;
  border-color: var(--color-ai);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.35);
  transform: translateY(-1px);
}

.btn-header-cta svg {
  color: inherit;
  flex-shrink: 0;
}

/* ============================================================
   Advisory & Private Equity CTA Section
   ============================================================ */
.advisory-cta-section {
  max-width: 1000px;
  margin: 4rem auto 2rem;
  padding: 0 2rem;
  width: 100%;
}

.advisory-card {
  display: flex;
  gap: 2.5rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.advisory-content {
  flex: 1.3;
  position: relative;
  z-index: 2;
}

.advisory-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advisory-intro {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

.advisory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.advisory-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.advisory-item-icon {
  flex-shrink: 0;
  color: var(--color-ai);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advisory-item-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.advisory-item-text strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.advisory-action-box {
  flex: 0.7;
  position: relative;
  display: flex;
  align-items: stretch;
}

.action-card-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.action-card-inner {
  position: relative;
  z-index: 2;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.action-card-inner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  color: var(--text-primary);
}

.action-card-inner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 1.8rem 0;
}

.btn-advisory-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  background: var(--color-ai);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  color: #070a12;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.2);
  width: 100%;
}

.btn-advisory-cta:hover {
  background: #b59dfb;
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.4);
  transform: translateY(-2px);
}

.btn-advisory-cta svg {
  transition: transform 0.3s ease;
}

.btn-advisory-cta:hover svg {
  transform: translateX(4px);
}

.advisory-networks-bar {
  margin-top: 3rem;
  text-align: center;
}

.networks-bar-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .advisory-card {
    flex-direction: column;
    padding: 2.5rem;
    gap: 2rem;
  }
  .advisory-action-box {
    width: 100%;
  }
  .action-card-inner {
    padding: 2.5rem 2rem;
  }
  .advisory-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .btn-header-cta span {
    display: none;
  }
}

@media (max-width: 480px) {
  .advisory-cta-section {
    padding: 0 1rem;
    margin-top: 3rem;
  }
  .advisory-card {
    padding: 1.5rem;
  }
  .advisory-title {
    font-size: 1.6rem;
  }
  .action-card-inner {
    padding: 1.8rem 1.2rem;
  }
}

/* ============================================================
   Hero CTA Button & Social Proof
   ============================================================ */
.hero-actions {
  margin-top: 2rem;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: var(--color-ai);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  color: #070a12;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.2);
}

.btn-hero-cta:hover {
  background: #b59dfb;
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.4);
  transform: translateY(-2px);
}

.btn-hero-cta svg {
  transition: transform 0.3s ease;
}

.btn-hero-cta:hover svg {
  transform: translateX(4px);
}

/* Hero section specific logo adjustments */
.advisory-networks-bar.hero-version {
  margin-top: 1.8rem;
  text-align: left;
}

.advisory-networks-bar.hero-version .networks-bar-title {
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  color: #64748b;
  opacity: 0.8;
}

.advisory-networks-bar.hero-version .monochrome-logos-row {
  gap: 1.5rem;
  justify-content: flex-start;
}

@media (max-width: 992px) {
  .advisory-networks-bar.hero-version {
    text-align: center;
  }
  .advisory-networks-bar.hero-version .monochrome-logos-row {
    justify-content: center;
  }
}
